﻿@charset "UTF-8";

*[lang=en] {
    direction: ltr;
    text-align: left;
}
.data-hiddin {
    direction: ltr;
    unicode-bidi: bidi-override;
}
/* ws-grid, ws-table */
table.ws-grid, table.ws-table {
    flex-grow: 1;
    border-collapse: collapse;
    width: 100%;
}

    table.ws-grid caption, table.ws-table caption {
        width: 100%;
        padding: 5px 15px;
        margin-top: 5px;
        font-size: 15px;
        background: #e1e1e1;
        color: #00A09D;
    }

    table.ws-grid thead, table.ws-table thead {
        height: 40px;
        background: #f9f9f9;
    }

        table.ws-grid thead div.ws-grid-tool {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            padding: 5px 5px;
        }

            table.ws-grid thead div.ws-grid-tool > input.ws-grid-search {
                flex-grow: 1;
                max-width: 300px;
                margin: 6px 0 5px 0;
                border: 1px solid #b9b9b9;
                padding: 5px 5px;
                background: #fff;
                min-height: 18px;
                border-radius: 3px;
            }

            table.ws-grid thead div.ws-grid-tool > .nav {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                flex-grow: 1;
                justify-content: flex-end;
            }

                table.ws-grid thead div.ws-grid-tool > .nav > i {
                    padding: 10px;
                    display: inline-flex;
                    margin-bottom: 3px;
                }

                    table.ws-grid thead div.ws-grid-tool > .nav > i:hover {
                        cursor: pointer;
                        color: #00A09D;
                        background: #eeeeee;
                    }

        table.ws-grid thead tr th, table.ws-grid tbody tr td, table.ws-table thead tr th, table.ws-table tbody tr td {
            padding: 3px;
            text-align: right;
            cursor: pointer;
            border-bottom: 1px solid #dee2e6;
        }

            table.ws-grid tbody tr td[lang=en], table.ws-table tbody tr td[lang=en] {
                text-align: left;
                direction: ltr;
            }

        table.ws-grid thead tr th, table.ws-table thead tr th {
            border-bottom: 2px solid #cbcfd3;
            font-weight: bold;
            text-align: center;
        }

            table.ws-grid thead tr th.asc:after, table.ws-grid thead tr th.desc:after {
                font-family: fontawesome;
                margin-right: 10px;
                color: #00a0b5;
                line-height: 10px;
            }

            table.ws-grid thead tr th.asc:after {
                content: '\f0de';
            }

            table.ws-grid thead tr th.desc:after {
                content: '\f0dd';
            }

    table.ws-grid tbody tr, table.ws-table tbody tr {
        height: 30px;
    }

        table.ws-grid tbody tr:hover, table.ws-grid tbody tr:nth-child(even):hover {
            background: #e1e1e1;
        }

        table.ws-grid tbody tr.no-data:hover {
            background: none;
        }

        table.ws-grid tbody tr:nth-child(even), table.ws-table tbody tr:nth-child(even) {
            background: #f1f1f1;
        }

        table.ws-grid tbody tr.selected, table.ws-grid tbody tr.selected:hover {
            background: #fcefdc;
        }

    table.ws-grid .chk-col {
        width: 0.1%;
        white-space: nowrap;
    }

        table.ws-grid .chk-col .grchk {
            margin-left: 5px;
        }

    table.ws-grid td i.ic.icc, table.ws-table td i.ic.icc {
        width: 100%;
        text-align: center;
    }

    table.ws-grid td i.ic:before, table.ws-table td i.ic:before {
        font-size: 16px;
        margin: 0 5px;
    }

    table.ws-grid td i.ic.ibtn:before, table.ws-table td i.ic.ibtn:before {
        font-size: 20px;
        margin-left: 5px;
    }

    table.ws-grid td .checked:before, table.ws-table td .checked:before {
        color: #0b0;
    }

    table.ws-grid td .unchecked:before, table.ws-table td .unchecked:before {
        color: #b00;
    }

    table.ws-grid td a, table.ws-grid td a:visited, table.ws-table td a, table.ws-table td a:visited {
        text-decoration: none;
    }

    table.ws-grid.card, table.ws-table.card {
        display: flex;
        flex-direction: column;
    }

        table.ws-grid.card tbody, table.ws-grid.card thead, table.ws-grid.card tbody tr, table.ws-grid.card thead tr,
        table.ws-table.card tbody, table.ws-table.card thead, table.ws-table.card tbody tr, table.ws-table.card thead tr {
            display: flex;
            flex-direction: column;
            flex-basis: min-content;
            flex-shrink: 0;
            flex-grow: 1;
        }
            /* table.card tbody, table.card thead {
display: flex;
flex-direction: row;
flex-basis: min-content;
flex-grow: 1;
flex-wrap: wrap;
}
table.card tbody tr, table.card thead tr {
display: flex;
flex-direction: column;
flex-basis: min-content;
flex-grow: 1;
width: 33%;
flex-wrap: wrap;
}*/
            table.ws-grid.card tbody tr, table.ws-grid.card thead tr, table.ws-table.card tbody tr, table.ws-table.card thead tr {
                border: 1px solid #dee2e6;
                border-radius: 5px;
                margin-top: 3px;
            }

                table.ws-grid.card thead tr th, table.ws-grid.card tbody tr td, table.ws-table.card thead tr th, table.ws-table.card tbody tr td {
                    border-bottom: none;
                }

                table.ws-grid.card thead tr th, table.ws-table.card thead tr th {
                    border-bottom: none;
                }
/* ws-explorer */
.ws-filemanager {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    border: 1px solid #ccc;
    height: 300px;
    overflow-y: auto;
    resize: vertical;
    outline: 0;
    border-radius: 3px;
}

    .ws-filemanager .toolbar {
        display: flex;
        flex-direction: row-reverse;
        justify-items: flex-end;
        border-radius: 3px 3px 0 0;
        border-bottom: 1px solid #ccc;
        min-height: 25px;
        padding: 5px;
        background-color: #f9f9f9;
        -webkit-sticky: sticky;
        position: sticky;
        top: 0;
        user-select: none;
        box-shadow: 0 3px 4px #ccc;
    }

        .ws-filemanager .toolbar i {
            border-radius: 4px;
            padding: 6px;
            margin: 1px -1px;
            color: #444;
            font-size: 16px;
            width: 16px;
            text-align: center;
            cursor: pointer;
        }

            .ws-filemanager .toolbar i:hover {
                color: #00A09D;
                background: #eeeeee;
            }

            .ws-filemanager .toolbar i.split {
                flex-basis: 1px;
                min-width: 1px;
                border: 0;
                padding: 0;
                margin: 0 7px 0 4px;
                background: #999;
            }

    .ws-filemanager .ws-fm-body {
        display: flex;
        flex-direction: row-reverse;
        height: calc(100% - 51px);
    }

        .ws-filemanager .ws-fm-body .ws-fm-nav {
            width: 170px;
            border-right: 1px solid #ccc;
            padding: 5px;
            overflow: auto;
            height: 100%;
        }

        .ws-filemanager .ws-fm-body .ws-fm-container {
            flex-grow: 4;
            overflow-y: auto;
            padding: 5px;
            height: 100%;
        }

ul.ws-tree {
    direction: ltr;
}

    ul.ws-tree li {
        list-style-type: none;
        cursor: pointer;
    }

        ul.ws-tree li label {
            cursor: pointer;
        }

        ul.ws-tree li ul {
            padding: 0 0 0 10px;
            display: none;
        }

        ul.ws-tree li label:only-child {
            margin-left: 17px;
        }

        ul.ws-tree li label:not(:only-child):before {
            font-family: fontawesome;
            content: "\f0fe";
            display: inline-block;
            margin-right: 6px;
        }

        ul.ws-tree li label.active:not(:only-child):before {
            font-family: fontawesome;
            content: "\f146";
            display: inline-block;
            margin-right: 6px;
        }

    ul.ws-tree i {
        margin: 0 5px 0 0;
    }
/*ul.ws-explorer {
list-style: none;
display:flex;
flex-direction:row-reverse;
flex-wrap:wrap;
}
ul.ws-explorer li {
display: flex;
flex-direction: column;
min-width: 80px;
max-width: 80px;
flex-wrap: wrap;
margin: 5px 0 5px 5px;
padding: 5px;
text-align: center;
border-radius: 4px;
cursor: pointer;
}
ul.ws-explorer li:hover {
color: #00A09D;
background: #eeeeee;
}
ul.ws-explorer li.selected, ul.ws-explorer li.selected:hover {
color: #00A09D;
background: #fcefdc;
}
ul.ws-explorer li i {
font-size: 40px;
}
ul.ws-explorer li div.fn {
margin: 5px 1px 0;
line-height:20px;
word-wrap:break-word;
}
ul.ws-explorer li div.fs {
font-size: 11px;
line-height: 15px;
direction: ltr;
font-family: sans-serif;
}*/
ul.ws-explorer {
    list-style: none;
    display: flex;
    flex-direction: column;
}

    ul.ws-explorer li {
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        margin: 1px 3px;
        text-align: left;
        cursor: pointer;
        padding: 5px 0;
        align-content: center;
        align-items: center;
    }

        ul.ws-explorer li:hover {
            color: #00A09D;
            background: #eeeeee;
        }

        ul.ws-explorer li.selected, ul.ws-explorer li.selected:hover {
            color: #00A09D;
            background: #fcefdc;
        }

        ul.ws-explorer li i {
            padding: 5px;
            font-size: 18px;
            line-height: 15px;
        }

        ul.ws-explorer li div.fn {
            align-content: center;
            width: 450px;
            padding: 0 5px;
        }

        ul.ws-explorer li div.fs {
            width: 70px;
            padding: 0 5px;
            direction: ltr;
            font-family: sans-serif;
            font-size: 12px;
        }

        ul.ws-explorer li div.dm {
            width: 130px;
            padding: 0 5px;
            direction: ltr;
            font-family: sans-serif;
            font-size: 12px;
        }
/* ws-input */
div.ctrl {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3px;
    width: 33.33%;
}

    div.ctrl.w-full {
        width: 100%;
    }

    div.ctrl.w-double {
        width: 66.66%;
    }

    div.ctrl.w-half {
        width: 16.66%;
    }

    div.ctrl label {
        padding: 3px 5px;
        white-space: nowrap;
    }

        div.ctrl label[data-caption]:not([data-caption=""]):before {
            content: attr(data-caption)':';
        }

    div.ctrl > span {
        display: flex;
        flex-direction: row;
    }

        div.ctrl > span.select2 {
            display: flex;
            flex-direction: column;
        }

    div.ctrl input, div.ctrl select, div.ctrl textarea, span.txt {
        border: 1px solid #b9b9b9;
        padding: 5px 5px;
        background: #fff;
        min-height: 18px;
        border-radius: 3px;
        width: 10px;
        flex-grow: 1;
    }

        div.ctrl input[type=checkbox], input[type=checkbox] {
            width: 20px;
        }

    div.ctrl > input, div.ctrl > select, div.ctrl > textarea, div.ctrl > span.txt {
        width: 100%;
    }

    div.ctrl span.txt {
        background: #eee;
        border-color: #eee;
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }

    div.ctrl select {
        padding: 4px 5px;
    }

    div.ctrl textarea {
        overflow: auto;
        resize: none;
    }

        div.ctrl input:focus, div.ctrl select:focus, div.ctrl textarea:focus {
            user-select: none;
            outline: none;
            background: #eff;
        }

        div.ctrl input.required, div.ctrl select.required, div.ctrl textarea.required {
            border-bottom: 1px solid #de3009;
        }

        div.ctrl input:disabled, div.ctrl select:disabled, div.ctrl textarea:disabled {
            background: #eee;
            color: #666;
            cursor: not-allowed;
        }

            div.ctrl input:disabled::selection, div.ctrl select:disabled::selection, div.ctrl textarea:disabled::selection {
                background: transparent;
            }

    div.ctrl span input, div.ctrl span select {
        border-radius: 0 3px 3px 0;
    }

        div.ctrl span input[data-format=date]:read-only {
            background: #fff;
            color: #222;
            cursor: text;
        }

            div.ctrl span input[data-format=date]:read-only:focus {
                background: #ffd;
            }

        div.ctrl span input[data-format] {
            direction: ltr;
            text-align: left;
        }

    div.ctrl span img.captcha-img {
        width: 100px;
        border: 1px solid #b9b9b9;
        border-bottom-color: #de3009;
        border-right: none;
    }

    div.ctrl span i {
        min-width: 36px;
        border: 1px solid #b9b9b9;
        border-right: none;
        background: #f9f9f9;
        font-size: initial;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        div.ctrl span i.required {
            border-bottom-color: #de3009;
        }

        div.ctrl span i:hover {
            color: #00A09D;
        }

        div.ctrl span i:last-of-type {
            border-radius: 3px 0 0 3px;
        }
/* ws-editor */
div.ws-editor, textarea.ws-editor {
    border: 1px solid #ccc;
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    resize: vertical;
    outline: 0;
    border-radius: 3px;
}

textarea.ws-editor {
    line-height: 15px;
    font-family: Consolas;
    font-size: 12px;
    direction: ltr;
    text-align: left;
}

div.ws-editor-toolbar {
    border-radius: 3px 3px 0 0;
    border: 1px solid #ccc;
    border-bottom: none;
    min-height: 25px;
    padding: 5px;
    background: #f9f9f9;
    /*    -webkit-sticky: sticky;
position: sticky;*/
    top: 0;
    box-shadow: 0 3px 4px #ccc;
    user-select: none;
    direction: ltr;
}

    div.ws-editor-toolbar > i, .ws-editor-toolbar select, .ws-editor-toolbar option {
        border-radius: 4px;
        padding: 6px 0;
        margin: 1px;
        color: #444;
        font-size: 16px;
        width: 27px;
        text-align: center;
        cursor: pointer;
        min-width: auto;
    }

    div.ws-editor-toolbar select {
        padding-bottom: 4px;
        width: auto;
        text-align: left;
        font-size: 12px;
        border: none;
        background: none;
        font-family: Arial, Tahoma;
    }

    div.ws-editor-toolbar option {
        text-align: left;
        font-size: 12px;
        font-family: Arial, Tahoma;
    }

    div.ws-editor-toolbar > i:hover {
        color: #00A09D;
        background: #eeeeee;
    }

    div.ws-editor-toolbar > i.split {
        clear: both;
        padding: 0 1px 0 0;
        margin: 0 3px;
        background: #ccc;
        cursor: default;
    }

    div.ws-editor-toolbar .color-picker {
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
/* ws-dialog */
.ws-dialog-container {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.ws-editor-dialog {
    outline: 0;
    background: #fff;
    border-radius: 4px;
    padding: 1px;
    color: #474747;
    font-family: Arial;
    user-select: none;
    font-size: 13px;
    min-width: 400px;
    margin: 100px auto;
    -webkit-box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    direction: ltr;
}

    .ws-editor-dialog > .header {
        padding: 5px 10px;
        background: #f5f5f5;
        font-weight: 700;
        display: flex;
    }

        .ws-editor-dialog > .header .close {
            padding: 0;
            cursor: pointer;
            margin: 5px 0 0 auto;
        }

    .ws-editor-dialog > .body {
        padding: 10px;
    }

    .ws-editor-dialog > .footer {
        padding: 5px 10px;
        background: #f5f5f5;
    }

        .ws-editor-dialog > .footer .btn {
            padding: 2px 8px;
            min-width: 40px;
            margin-right: 2px;
        }
/* ws-messagebox */
.ws-messagebox {
    width: 300px;
    opacity: 0.95;
    text-align: right;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9999;
}

    .ws-messagebox a, .ws-messagebox a:visited {
        color: #07f;
        font-weight: bold;
        text-decoration: none;
        outline: none;
    }

    .ws-messagebox .msg {
        padding: 10px;
        margin: 10px;
        cursor: pointer;
        box-shadow: 1px 2px 5px 1px #aaa;
        border-radius: 6px;
        background: #2980b9;
        color: #fff;
    }

        .ws-messagebox .msg b {
            color: #fff;
        }

        .ws-messagebox .msg.error {
            background: #b00;
        }

        .ws-messagebox .msg.success {
            background: #4b0;
        }

        .ws-messagebox .msg.warning {
            background: #fb2;
            color: #000;
        }

        .ws-messagebox .msg.info {
            background: #07d;
        }
/* ws-tabcontrol */
div.ws-tabcontrol {
    width: 100%;
    background: #ffffff;
    border: 1px solid #f5f5f5;
}

    div.ws-tabcontrol > ul {
        list-style: none;
        display: flex;
        flex-direction: row;
        background: #f5f5f5;
    }

        div.ws-tabcontrol > ul > li {
            cursor: pointer;
            padding: 10px 16px;
            transition: 0.3s;
            border: 0;
            border-bottom: 2px solid #f5f5f5;
        }

            div.ws-tabcontrol > ul > li:hover {
                background: #ddd;
                border-bottom-color: #ddd;
            }

            div.ws-tabcontrol > ul > li.active {
                border-bottom-color: #00A09D;
            }

    div.ws-tabcontrol > div {
        clear: both;
        display: none;
        padding: 20px;
        overflow-y: auto;
    }
/* multi column */
.col-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .col-row.col {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .col-row[class*="col"] {
        text-align: justify;
    }

    .col-row > div {
        -webkit-transition: all .3s ease 0s;
        -moz-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
        padding: 10px;
        border-radius: 10px;
    }

    .col-row.hover > div:hover {
        -webkit-box-shadow: 0px 3px 14px 0px #6e6e6e;
        box-shadow: 0px 3px 14px 0px #6e6e6e;
    }

    .col-row > div.right {
        text-align: right;
    }

    .col-row > div.left {
        text-align: left;
        direction: ltr;
    }

    .col-row > div > :is(h1, h2, h3, h4, h5, h6) {
        margin: 10px 0;
    }

    .col-row.col2 > div {
        width: 50%;
    }

    .col-row.col3 > div {
        width: 33.33%;
    }

    .col-row.col4 > div {
        width: 25%;
    }

    .col-row.col5 > div {
        width: 20%;
    }

    .col-row.col6 > div {
        width: 16.66%;
    }

    .col-row img {
        width: 80%;
        height: auto;
    }

    .col-row div.small {
        font-size: 80%;
    }
/* ws-loading */
.ws-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: #262626a8;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .ws-loading .rotating {
        border: 6px solid #e1e1e1;
        border-radius: 50%;
        border-top-color: #1c86db;
        width: 50px;
        height: 50px;
        -webkit-animation: ws-loading-spin 1s linear infinite; /* Safari */
        animation: ws-loading-spin 1s linear infinite;
    }

.ws-popup {
    display: none;
    position: fixed;
    background: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    overflow: auto;
    left: 0;
    top: 0;
}

    .ws-popup div.container {
        margin: 150px auto 0;
        max-width: 350px;
        border: 1px solid #ccc;
        -webkit-box-shadow: 0px 2px 5px 1px #aaa;
        box-shadow: 0px 2px 5px 1px #aaa;
    }
/* Safari */
@-webkit-keyframes ws-loading-spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes ws-loading-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* ws-shop */
.ws-shop {
    padding: 20px 0;
}

    .ws-shop.hover > div:hover {
        -webkit-box-shadow: 0px 2px 5px 1px #aaa;
        box-shadow: 0px 2px 5px 1px #aaa;
        border-radius: 3px;
    }

    .ws-shop a, .ws-shop a:visited {
        color: #000;
    }

    .ws-shop .product-list {
    }

        .ws-shop .product-list .item {
            min-height: 350px;
            display: flex;
            align-content: space-between;
            flex-direction: column;
            flex-wrap: nowrap;
            justify-content: space-around;
        }

            .ws-shop .product-list .item > div:first-child {
                width: 100%;
                height: 300px;
                text-align: center;
            }

            .ws-shop .product-list .item .item-d .title {
                text-align: right;
                padding: 10px 0;
            }

            .ws-shop .product-list .item .item-d {
                width: 100%;
                display: flex;
                flex-direction: column;
            }

                .ws-shop .product-list .item .item-d .description {
                    text-align: right;
                    box-shadow: none;
                    font-size: 12px;
                    color: #888;
                    margin: 0;
                    padding: 10px 0;
                }

    .ws-shop .prices {
        padding: 10px 0 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        font-weight: bold;
        direction: ltr;
    }

        .ws-shop .prices div {
            flex-grow: 1;
            text-align: left;
            direction: rtl;
        }

            .ws-shop .prices div.old-price {
                text-decoration: line-through;
                font-size: 90%;
                color: #c0c2c5;
            }

            .ws-shop .prices div.discount-percent {
                color: #fff;
                background-color: var(--primary-bgcolor-dark);
                border-radius: 7px;
                padding: 1px 7px;
                flex-grow: 0;
                font-size: 85%;
                text-align: center;
                font-weight: 300;
            }

        .ws-shop .prices .price-name {
            font-size: 10px;
            margin-right: 5px;
            flex-grow: 0;
        }

    .ws-shop .text-no-basket {
        border-radius: 3px;
        background: #f5f5f5;
        padding: 6px 0;
        text-align: center;
    }

    .ws-shop .no-stock {
        padding: 6px 0;
        font-weight: 700;
        color: #aaa;
    }

    .ws-shop .detail {
        display: flex;
        flex-direction: row;
        padding: 20px 0;
    }
        /*.ws-shop .detail a, .ws-shop .detail a:visited {
    color:inherit;
}*/
        .ws-shop .detail .gallery {
            width: 30%;
        }

            .ws-shop .detail .gallery img {
                width: 100%;
                height: auto;
            }

        .ws-shop .detail .info {
            display: flex;
            flex-direction: column;
            width: 70%;
            padding-right: 20px;
        }

        .ws-shop .detail .head {
            display: flex;
            flex-direction: column;
            font-size: 14px;
            font-weight: bold;
            padding: 10px 0 5px;
        }

        .ws-shop .detail .content {
            display: flex;
            flex-direction: row;
        }

        .ws-shop .detail .attributes {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-top: 1px solid #dfdfdf;
            padding-left: 20px;
            flex-grow: 1;
        }

        .ws-shop .detail .subject {
            font-size: 12px;
            color: #b9b9b9;
            font-weight: normal;
        }

        .ws-shop .detail ul.special-properies {
            list-style: none;
        }

            .ws-shop .detail ul.special-properies li span {
                padding: 2px 5px 2px 10px;
                font-weight: 600;
            }

        .ws-shop .detail .summery {
            display: flex;
            flex-direction: column;
            justify-content: end;
            background: #f5f5f5;
            border: 1px solid #e4e4e4;
            border-radius: 8px;
            padding: 10px;
            min-width: 220px;
        }

        .ws-shop .detail .prices {
            flex-direction: column;
            align-items: flex-start;
            font-size: 17px;
        }

    .ws-shop .add-to-basket {
        width: 100%;
        background-color: var(--primary-bgcolor-dark);
    }

.ws-basket {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--primary-bgcolor-dark);
    border-radius: 5px;
    padding: 3px 10px 0;
}

    .ws-basket i:before {
        font-size: 17px;
        color: #fff;
    }

    .ws-basket .count {
        margin-left: 5px;
        font-size: 120%;
        font-weight: bold;
        color: #fff;
    }

.basket-products {
    margin-top: 20px;
}

    .basket-products > .product, .basket-products > .basket-head-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .basket-products > .basket-head-row {
        font-weight: bold;
        background: #f5f5f5;
        padding: 10px 0;
    }

        .basket-products > .product > .image, .basket-products > .basket-head-row > .image {
            width: 80px;
            height: auto;
            margin-left: 10px;
        }

            .basket-products > .product > .image img {
                width: 100%;
                height: auto;
            }

        .basket-products > .product > .name, .basket-products > .basket-head-row > .name {
            flex-grow: 1;
            margin-left: 10px;
        }

        .basket-products > .product > .product-d, .basket-products > .basket-head-row > .product-d {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

            .basket-products > .product > .product-d > .controls, .basket-products > .basket-head-row > .product-d > .controls {
                display: flex;
                flex-direction: row;
                justify-content: space-around;
                margin-left: 30px;
            }

                .basket-products > .product > .product-d > .controls *, .basket-products > .basket-head-row > .product-d > .controls * {
                    margin: 0 3px;
                }

                .basket-products > .product > .product-d > .controls > .count, .basket-products > .basket-head-row > .product-d > .controls > .count {
                    width: 40px;
                    text-align: center;
                }

            .basket-products > .product > .product-d > .prices, .basket-products > .basket-head-row > .product-d > .prices {
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                min-width: 130px;
            }

                .basket-products > .product > .product-d > .prices .price, .basket-products > .product > .product-d > .prices .final-price,
                .basket-products > .basket-head-row > .product-d > .prices .price, .basket-products > .basket-head-row > .product-d > .prices .final-price {
                    margin-left: 10px;
                }

                .basket-products > .product > .product-d > .prices .price, .basket-products > .basket-head-row > .product-d > .prices .price {
                    text-decoration: line-through;
                    color: #bbb;
                }

                .basket-products > .product > .product-d > .prices .final-price, .basket-products > .basket-head-row > .product-d > .prices .final-price {
                }

                .basket-products > .product > .product-d > .prices .unit, .basket-products > .basket-head-row > .product-d > .prices .unit {
                    margin: 0 5px;
                }

            .basket-products > .product > .product-d > .total-price, .basket-products > .basket-head-row > .product-d > .total-price {
                min-width: 130px;
                font-weight: bold;
            }

                .basket-products > .product > .product-d > .total-price .unit, .basket-products > .basket-head-row > .product-d > .total-price .unit {
                    margin: 0 5px;
                }

.checkout-total {
    padding: 5px 5px 5px 50px;
    border-top: 1px solid #ccc;
    font-weight: bold;
    text-align: left;
    background: #f5f5f5;
}
    .checkout-total > .total-price {
        margin: 5px;
    }

    .checkout-total .total-price {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

        .checkout-total .total-price .unit {
            margin: 0 5px;
        }
/* Properies ul two column */
ul.properies {
    list-style: none;
    display: flex;
    flex-direction: column;
}

    ul.properies li {
        display: flex;
        flex-direction: row;
        margin: 1px;
    }

        ul.properies li > div {
            padding: 10px;
            margin-left: 10px;
            flex-basis: 300px;
        }

        ul.properies li .caption {
            background: #f9f9f9;
        }

        ul.properies li .value {
            flex-grow: 1;
        }

@media only screen and (max-width:480px) {
    .ws-shop .product-list .item {
        flex-direction: row;
        min-height: 70px;
        justify-content: space-between;
        margin-bottom: 10px;
    }

        .ws-shop .product-list .item > div:first-child {
            width: 120px;
            height: auto;
            text-align: right;
        }

        .ws-shop .product-list .item .item-d {
            justify-content: space-between;
        }

            .ws-shop .product-list .item .item-d .title {
                padding: 0;
            }

    .ws-shop .detail {
        flex-direction: column;
        padding: 15px;
    }

        .ws-shop .detail .attributes {
            padding: 20px 0;
        }

        .ws-shop .detail .prices {
            flex-direction: row;
            margin-bottom: 10px;
        }

    .ws-shop .prices {
        padding: 0;
    }

    .ws-shop .detail .info {
        width: 100%;
    }

    .ws-shop .detail .content {
        flex-direction: column;
    }

    .ws-basket {
        margin-left: 40px;
    }

    .basket-products > .basket-head-row {
        font-weight: bold;
        background: #f5f5f5;
        padding: 10px 0;
    }

    .basket-products > .product {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 30px;
    }

        .basket-products > .product > .name {
            margin: 5px 5px 15px;
        }
}
/* Language Bar */
ul.lang-list {
    list-style: none;
    display: flex;
    flex-direction: row;
}

    ul.lang-list > li {
        margin: 0 2px;
    }

        ul.lang-list > li > img {
            width: 20px;
            height: auto;
        }
/* Responsice */
@media only screen and (max-width: 320px) {
    div .ctrl, div.ctrl.w-full, div.ctrl.w-double, div.ctrl.w-half {
        width: 100%;
    }

    .col-row.col2 > div, .col-row.col3 > div, .col-row.col4 > div, .col-row.col5 > div, .col-row.col6 > div {
        width: 100%;
    }
}

@media only screen and (min-width: 321px) and (max-width:480px) {
    div.ctrl, div.ctrl.w-full, div.ctrl.w-double, div.ctrl.w-half {
        width: 100%;
    }

    .col-row.col2 > div, .col-row.col3 > div, .col-row.col4 > div, .col-row.col5 > div, .col-row.col6 > div {
        width: 100%;
    }
}

@media only screen and (min-width: 481px) and (max-width:768px) {
    div.ctrl, div.ctrl.w-half {
        width: 50%;
    }

        div.ctrl.w-full, div.ctrl.w-double {
            width: 100%;
        }

    .col-row.col2 > div, .col-row.col3 > div, .col-row.col4 > div, .col-row.col5 > div, .col-row.col6 > div {
        width: 50%;
    }
}

@media only screen and (min-width: 769px) and (max-width:1024px) {
    .col-row.col4 > div, .col-row.col5 > div, .col-row.col6 > div {
        width: 25%;
    }
}

@media only screen and (min-width: 1025px) {
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background: #000000b0;
}

    .modal .body {
        border-radius: 10px;
        width: 30vw;
        height: 80vh;
        margin: 150px auto 0;
        text-align: center;
    }

        .modal .body video {
            width: 30vw;
            box-shadow: 2px 2px 20px 5px #2f2f2f9c;
        }

        .modal .body .close {
            color: #ffffff;
            position: absolute;
            margin: 15px 10px;
            text-shadow: 2px 4px 12px #52555A;
            top: 10px;
            right: 30px;
        }

            .modal .body .close .ic {
                font-size: 30px;
            }


@media only screen and (max-width: 480px) {
    .modal .body {
        width: 100vw;
    }

        .modal .body video {
            width: 80vw;
        }
}
