@charset "UTF-8";
@import "../fonts/lexend/font.css";
/* Basic colors codes */
@media (min-width: 768px) and (max-width: 799px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 800px) and (max-width: 1023px) {
    .container {
        max-width: calc(100% - 30px);
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    height: auto;
    background-color: #F6F4F0;
    font-family: "Lexend";
}

    html.no-scroll, body.no-scroll {
        overflow: hidden;
    }

input, select, textarea, button {
    outline: none !important;
    transition: 0.3s;
}

a {
    outline: none !important;
    text-decoration: none;
    transition: 0.3s;
}

hr {
    background-color: #F0EDE5;
    box-shadow: none;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
}

ul.ui-autocomplete {
    border-radius: 10px;
    border: 1px solid #F0EDE5;
    box-shadow: 0px 8px 40px rgba(23, 31, 70, 0.08);
    padding: 0 15px;
    overflow-x: hidden;
    overflow-y: auto;
}

    ul.ui-autocomplete li {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        border-bottom: 1px solid #F0EDE5;
        padding: 5px 0;
        background: none !important;
        list-style-image: none !important;
    }

        ul.ui-autocomplete li input.custom-checkbox {
            position: relative;
            width: 20px;
            height: 20px;
            margin: 0;
            display: inline-block;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            -o-user-select: none;
            user-select: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            outline: 0;
            cursor: pointer;
        }

            ul.ui-autocomplete li input.custom-checkbox::before {
                border: 1px solid #F0EDE5;
                width: 20px;
                height: 20px;
                content: "";
                display: block;
                position: absolute;
                left: 0;
                top: 0;
                z-index: 1;
                border-radius: 4px;
            }

            ul.ui-autocomplete li input.custom-checkbox::after {
                width: 20px;
                height: 20px;
                content: "";
                display: block;
                position: absolute;
                background-color: transparent;
                z-index: 2;
                position: absolute;
                left: 0;
                top: 0;
                border-radius: 4px;
            }

            ul.ui-autocomplete li input.custom-checkbox:checked::before {
                border-color: #B3CE67;
            }

            ul.ui-autocomplete li input.custom-checkbox:checked::after {
                background: #B3CE67 url(../images/icons/tick.svg) center center no-repeat;
                background-size: 10px 8px;
                content: "";
                color: #ffffff;
            }

        ul.ui-autocomplete li img.ui-menu-item-wrapper {
            width: 60px;
            margin: 0 15px;
            padding: 0;
        }

        ul.ui-autocomplete li span {
            color: #7F7F84;
            width: calc(100% - 163px);
            font-size: 12px;
            font-weight: 500;
            line-height: 20px;
        }

            ul.ui-autocomplete li span strong {
                color: #201904;
                display: block;
                font-weight: 500;
                font-size: 16px;
                line-height: 25px;
            }

            ul.ui-autocomplete li span.price {
                display: block;
                color: #201904;
                width: 80px;
                font-size: 16px;
                font-weight: 600;
                line-height: 25px;
                text-align: right;
            }

nav.breadcrumbs ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

    nav.breadcrumbs ul li::after {
        content: "\f105";
        font-family: FontAwesome;
        display: inline-block;
        margin: 0 8px;
    }

    nav.breadcrumbs ul li span {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: #201904;
    }

        nav.breadcrumbs ul li span a {
            display: inline-block;
            color: #D25D3E;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
        }

    nav.breadcrumbs ul li:last-of-type::after {
        content: "";
    }

.space-div {
    display: block;
    height: 30px;
}

.d-none {
    display: none;
}

header {
    color: #ffffff;
    padding: 0;
    background-color: #201904;
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 100;
    position: sticky;
    top: 0;
}

    header a.logo {
        order: 1;
        display: inline-block;
        margin: 0 20px;
        max-width: 140px;
    }

    header div.navigation {
        order: 2;
        position: relative;
        display: table;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: auto;
    }

        header div.navigation a.toggle {
            display: table-cell;
            width: 30px;
            height: 30px;
            line-height: 30px;
            background: url(../images/icons/icon_bars_white.svg) center center no-repeat;
            border: none;
            display: none;
        }

        header div.navigation nav {
            display: flex;
            flex-direction: row;
            justify-content: center;
            position: relative;
            z-index: 50;
        }

            header div.navigation nav a {
                display: inline-block;
                text-decoration: none;
                line-height: 61px;
                border-bottom: 3px solid transparent;
                font-weight: 600;
                font-size: 16px;
                text-decoration: none !important;
                color: #BCBAB4;
                padding: 0 20px;
                margin: 0 10px;
            }

                header div.navigation nav a:hover, header div.navigation nav a.active {
                    border-bottom-color: #D25D3E;
                    color: #ffffff;
                }

    header div.actions {
        order: 3;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        margin: 0 20px;
        position: relative;
        width: 155px;
    }

        header div.actions a.help {
            display: block;
            width: 22px;
            height: 22px;
            margin: 0 13px;
            background: url(../images/icons/btn_help_white.svg) center center no-repeat;
        }

            header div.actions a.help:hover {
                background: url(../images/icons/btn_help_orange.svg) center center no-repeat;
            }

        header div.actions a.settings {
            display: block;
            width: 22px;
            height: 22px;
            margin: 0 13px;
            background: url(../images/icons/btn_settings_white.svg) center center no-repeat;
        }

            header div.actions a.settings:hover {
                background: url(../images/icons/btn_settings_orange.svg) center center no-repeat;
            }

        header div.actions a.logout {
            display: block;
            width: 22px;
            height: 22px;
            margin: 0 13px;
            background: url(../images/icons/btn_logout_white.svg) center center no-repeat;
        }

            header div.actions a.logout:hover {
                background: url(../images/icons/btn_logout_orange.svg) center center no-repeat;
            }

        header div.actions button.user {
            width: 40px;
            height: 40px;
            display: block;
            border-radius: 50%;
            overflow: hidden;
            border: none;
            margin: 0 10px;
            outline: none;
        }

        header div.actions .sub-nav {
            position: absolute;
            width: 200px;
            background-color: #ffffff;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
            right: 0;
            top: 40px;
            border-radius: 10px;
            z-index: 50;
            display: none;
        }

            header div.actions .sub-nav a {
                display: block;
                line-height: 40px;
                padding: 0 15px;
                color: #201904;
                text-decoration: none;
                font-weight: 500;
                font-size: 15px;
            }

                header div.actions .sub-nav a:hover {
                    color: #D25D3E;
                }

            header div.actions .sub-nav div.divider {
                padding: 0;
                border-top: 1px solid rgba(0, 0, 0, 0.15);
            }

                header div.actions .sub-nav div.divider a {
                    display: block;
                    line-height: 40px;
                    height: 40px;
                    width: 100%;
                    margin: 0;
                    background-size: 20px 20px;
                    background-position: 10px center;
                    padding: 0 15px 0 40px;
                }

                header div.actions .sub-nav div.divider:first-of-type {
                    display: none;
                }



section {
    width: 100%;
    height: auto;
}

    section .big-title {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

        section .big-title h2 {
            display: block;
            font-size: 45px;
            font-weight: 600;
            line-height: 56px;
            color: #201904;
            letter-spacing: -1px;
        }

        section .big-title span {
            display: block;
            font-size: 16px;
            color: #7F7F84;
            font-weight: 500;
            line-height: normal;
            margin-left: 15px;
            letter-spacing: -1px;
        }

        section .big-title em {
            font-style: normal;
            color: #D25D3E;
            line-height: 56px;
            margin-left: 15px;
        }

        section .big-title img {
            display: inline-block;
            margin-right: 15px;
        }

    section h3 {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        color: #7F7F84;
        display: block;
        position: relative;
        margin: 0 0 10px;
        padding: 0;
    }

        section h3.count-one:after {
            content: "1";
            position: absolute;
            left: -50px;
            top: 0;
            z-index: 10;
            font-size: 70px;
            font-weight: 600;
            color: #7F7F84;
            opacity: 0.16;
        }

        section h3.count-two:after {
            content: "2";
            position: absolute;
            left: -50px;
            top: 0;
            z-index: 10;
            font-size: 70px;
            font-weight: 600;
            color: #7F7F84;
            opacity: 0.16;
        }

    section h4 {
        font-size: 28px;
        font-weight: 600;
        line-height: 35px;
        color: #201904;
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
        white-space: nowrap;
    }

    section a.main-btn {
        min-width: 40px;
        background-color: #D25D3E;
        color: #ffffff;
        padding: 0 15px;
        display: table;
        text-align: center;
        line-height: 52px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
    }

        section a.main-btn span.text {
            display: inline-block;
        }

        section a.main-btn .fa {
            margin-right: 10px;
        }

        section a.main-btn:hover {
            background-color: #C64F2F;
        }

        section a.main-btn:focus {
            background-color: #DC836A;
        }

    section ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    section .card {
        border-radius: 10px;
        border: none;
        box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
    }

    section.com_login {
        width: 100vw;
        height: 100vh;
        padding: 24px;
        display: flex;
        flex-wrap: nowrap;
    }

        section.com_login div.form-section {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            /*padding-right: 25px;*/
        }

            section.com_login div.form-section nav {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
            }

                section.com_login div.form-section nav a {
                    display: block;
                    text-decoration: none;
                }

                section.com_login div.form-section nav#Login-nav {
                    margin-bottom: 60px;
                }

                section.com_login div.form-section nav a.logo {
                    text-decoration: none;
                    display: table;
                }

                section.com_login div.form-section nav a.help {
                    height: 20px;
                    line-height: 20px;
                    color: #D25D3E;
                    font-size: 16px;
                    font-weight: 500;
                }

                    section.com_login div.form-section nav a.help img {
                        margin-right: 5px;
                        float: left;
                    }

            section.com_login div.form-section h2 {
                font-size: 45px;
                line-height: 56px;
                font-weight: 600;
                text-align: center;
                display: block;
                margin-bottom: 44px;
            }

            section.com_login div.form-section form {
                width: 430px;
                margin: 0 auto;
            }

                section.com_login div.form-section form .fields {
                    background-color: #ffffff;
                    border: 1px solid #F0EDE5;
                    display: flex;
                    flex-direction: row;
                    width: 100%;
                    height: 64px;
                    padding: 0 10px;
                }

                    section.com_login div.form-section form .fields span.icon-svg {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 50px;
                        height: 64px;
                        background-color: none;
                    }

                        section.com_login div.form-section form .fields span.icon-svg img {
                            width: 60%;
                        }

                    section.com_login div.form-section form .fields input {
                        border: none;
                        background: transparent;
                        width: calc(100% - 50px);
                        height: 62px;
                        outline: none;
                        font-weight: 500;
                        font-size: 18px;
                        padding: 0 15px;
                    }

                        section.com_login div.form-section form .fields input::-moz-placeholder {
                            color: #7F7F84;
                            font-weight: 400;
                        }

                        section.com_login div.form-section form .fields input:-ms-input-placeholder {
                            color: #7F7F84;
                            font-weight: 400;
                        }

                        section.com_login div.form-section form .fields input::placeholder {
                            color: #7F7F84;
                            font-weight: 400;
                        }

                    section.com_login div.form-section form .fields:nth-child(1) {
                        border-top-left-radius: 10px;
                        border-top-right-radius: 10px;
                    }

                    section.com_login div.form-section form .fields:nth-child(2) {
                        margin-top: -1px;
                        border-bottom-left-radius: 10px;
                        border-bottom-right-radius: 10px;
                    }

                section.com_login div.form-section form div.action {
                    display: flex;
                    flex-direction: column;
                }

                    section.com_login div.form-section form div.action input[type=submit] {
                        width: 100%;
                        background-color: #D25D3E;
                        color: #ffffff;
                        height: 66px;
                        border-radius: 10px;
                        display: block;
                        border: none;
                        color: #ffffff;
                        font-weight: 700;
                        font-size: 18px;
                        line-height: 20px;
                        margin: 29px 0 0;
                        transition: 0.3s;
                    }

                        section.com_login div.form-section form div.action input[type=submit]:hover {
                            background-color: #C64F2F;
                        }

                        section.com_login div.form-section form div.action input[type=submit]:focus {
                            background-color: #DC836A;
                        }

                    section.com_login div.form-section form div.action a.forgot {
                        margin-top: 10px;
                        display: flex;
                        justify-content: flex-end;
                        align-items: center;
                        color: #201904;
                        font-size: 15px;
                        line-height: 18px;
                        font-weight: 400;
                        color: #7F7F84;
                    }

            section.com_login div.form-section footer a {
                display: block;
                display: none;
            }

                section.com_login div.form-section footer a.help {
                    height: 20px;
                    line-height: 20px;
                    color: #D25D3E;
                    font-size: 16px;
                    font-weight: 500;
                }

                    section.com_login div.form-section footer a.help img {
                        margin-right: 5px;
                        float: left;
                    }

        section.com_login div.image {
            width: 35%;
            background: url(../images/truck.png) center center no-repeat;
            background-size: cover;
        }

    section.com_dashboard {
        padding-bottom: 30px;
    }

        section.com_dashboard .title-actions {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: flex-end;
        }

        section.com_dashboard .card.card-stats {
            border-radius: 10px;
            border: 0;
        }

            section.com_dashboard .card.card-stats .card-body {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
                border-radius: 10px;
            }

                section.com_dashboard .card.card-stats .card-body .stat-icon {
                    width: 46px;
                    height: 46px;
                    margin-right: 18px;
                }

                section.com_dashboard .card.card-stats .card-body span {
                    font-size: 15px;
                    font-weight: 500;
                    line-height: 25px;
                    color: #4A4A4D;
                }

                    section.com_dashboard .card.card-stats .card-body span.number {
                        font-size: 37px;
                        font-weight: 600;
                        line-height: 46px;
                        color: #201904;
                        display: block;
                    }

        section.com_dashboard .time {
            position: absolute;
            right: 15px;
            top: 0;
            display: flex;
        }

            section.com_dashboard .time span {
                font-size: 16px;
                line-height: 20px;
                font-weight: 600;
            }

            section.com_dashboard .time img {
                width: 20px;
                height: 20px;
                margin-left: 8px;
                outline: none;
            }

        section.com_dashboard .view-all {
            position: absolute;
            right: 15px;
            top: 0;
            font-size: 16px;
            font-weight: 600;
            color: #D25D3E;
            line-height: 20px;
            text-decoration: none;
        }

        section.com_dashboard .product-detail .card.card-product {
            margin-bottom: 10px;
        }

        section.com_dashboard .product-detail span {
            font-size: 16px;
            color: #201904;
            display: block;
            font-weight: 500;
        }

            section.com_dashboard .product-detail span.title {
                line-height: 21px;
            }

            section.com_dashboard .product-detail span.qty {
                font-size: 12px;
                line-height: 25px;
                color: #7F7F84;
            }

            section.com_dashboard .product-detail span.price {
                font-size: 16px;
                font-weight: 600;
                line-height: 25px;
                color: #201904;
            }

        section.com_dashboard .card.card-tickets .card-body ul.tickets {
            margin: 10px 0 0 28px;
            padding: 0;
            list-style: none;
            min-height: 460px;
            max-height: 460px;
        }

            section.com_dashboard .card.card-tickets .card-body ul.tickets li {
                border-bottom: 1px solid #F0EDE5;
                padding: 18px 0 18px;
                position: relative;
                z-index: 1;
            }

                section.com_dashboard .card.card-tickets .card-body ul.tickets li span {
                    color: #201904;
                    font-weight: 600;
                    line-height: 21px;
                    display: block;
                }

                    section.com_dashboard .card.card-tickets .card-body ul.tickets li span.person {
                        font-size: 13px;
                        font-weight: 400;
                        line-height: 16px;
                        color: #7F7F84;
                    }

                section.com_dashboard .card.card-tickets .card-body ul.tickets li p {
                    display: block;
                    font-size: 15px;
                    font-weight: 400;
                    line-height: 18px;
                    color: #4A4A4D;
                    margin: 0;
                    padding: 0;
                }

                section.com_dashboard .card.card-tickets .card-body ul.tickets li:last-of-type {
                    border-bottom-color: transparent;
                }

                section.com_dashboard .card.card-tickets .card-body ul.tickets li::before {
                    content: "";
                    position: absolute;
                    z-index: 2;
                    display: block;
                    width: 10px;
                    height: 10px;
                    border-radius: 50%;
                    left: -24px;
                    top: 23px;
                }

                section.com_dashboard .card.card-tickets .card-body ul.tickets li:nth-child(1)::before {
                    background-color: #D25D3E;
                }

                section.com_dashboard .card.card-tickets .card-body ul.tickets li:nth-child(2)::before {
                    background-color: #D25D3E;
                }

                section.com_dashboard .card.card-tickets .card-body ul.tickets li:nth-child(3)::before {
                    background-color: #F4C31B;
                }

                section.com_dashboard .card.card-tickets .card-body ul.tickets li:nth-child(4)::before {
                    background-color: #B3CE67;
                }

                section.com_dashboard .card.card-tickets .card-body ul.tickets li:nth-child(5)::before {
                    background-color: #B3CE67;
                }

        section.com_dashboard .card.card-tickets .card-body ul.activity {
            margin: 10px 0 0 28px;
            padding: 0;
            list-style: none;
            min-height: 460px;
            max-height: 460px;
        }

            section.com_dashboard .card.card-tickets .card-body ul.activity li {
                border-bottom: 1px solid transparent;
                padding: 14px 0 14px;
                position: relative;
                z-index: 1;
                position: relative;
                z-index: 1;
            }

                section.com_dashboard .card.card-tickets .card-body ul.activity li p {
                    font-size: 17px;
                    font-weight: 600;
                    line-height: 21px;
                    margin: 0;
                    padding: 0;
                }

                    section.com_dashboard .card.card-tickets .card-body ul.activity li p span {
                        color: #D25D3E;
                    }

                section.com_dashboard .card.card-tickets .card-body ul.activity li span.person {
                    font-size: 13px;
                    font-weight: 400;
                    line-height: 16px;
                    color: #7F7F84;
                }

                section.com_dashboard .card.card-tickets .card-body ul.activity li::before {
                    content: "";
                    position: absolute;
                    z-index: 2;
                    display: block;
                    width: 10px;
                    height: 10px;
                    border-radius: 50%;
                    background-color: #F0EDE5;
                    left: -24px;
                    top: 20px;
                }

                section.com_dashboard .card.card-tickets .card-body ul.activity li::after {
                    content: "";
                    position: absolute;
                    left: -19px;
                    top: 36px;
                    width: 1px;
                    height: 50px;
                    background-color: #F0EDE5;
                }

        section.com_dashboard .card.card-tickets .card-body .view {
            display: table;
            margin: 20px auto 10px;
            color: #D25D3E;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            text-decoration: none;
        }

    section.com_catalogue {
        background-color: #F0EDE5;
    }

        section.com_catalogue .title-actions {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: flex-end;
        }

            section.com_catalogue .title-actions div.search {
                display: flex;
                flex-direction: row;
                height: 52px;
                border-radius: 10px;
                overflow: hidden;
                background-color: #ffffff;
                width: 100%;
            }

                section.com_catalogue .title-actions div.search input.search {
                    border: none;
                    background-color: transparent;
                    padding: 0 15px;
                    width: calc(100% - 52px);
                }

                section.com_catalogue .title-actions div.search button.submit {
                    width: 52px;
                    height: 52px;
                    display: block;
                    border-radius: 10px;
                    line-height: 52px;
                    text-align: center;
                    border: none;
                    background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
                }

                    section.com_catalogue .title-actions div.search button.submit:hover {
                        background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                    }

            section.com_catalogue .title-actions .other-actions {
                display: flex;
                width: 100%;
                justify-content: flex-end;
            }

                section.com_catalogue .title-actions .other-actions a.toggle {
                    width: 52px;
                    height: 52px;
                    display: none;
                    text-decoration: none;
                    border-radius: 10px;
                    background: #ffffff url(../images/icons/btn_action_black.svg) center center no-repeat;
                }

                section.com_catalogue .title-actions .other-actions div {
                    display: flex;
                    width: 118px;
                    height: 52px;
                    order: 1;
                }

                    section.com_catalogue .title-actions .other-actions div a {
                        width: 55px;
                        height: 52px;
                        display: block;
                        border-radius: 10px;
                        margin: 0 5px;
                        color: #201904;
                    }

                        section.com_catalogue .title-actions .other-actions div a span {
                            display: none;
                            line-height: 40px;
                            padding: 0 15px 0 40px;
                        }

                        section.com_catalogue .title-actions .other-actions div a.download {
                            background-image: url(../images/icons/icon_export_black.svg);
                            background-position: center center;
                            background-repeat: no-repeat;
                            background-color: #ffffff;
                        }

                            section.com_catalogue .title-actions .other-actions div a.download:hover {
                                background-image: url(../images/icons/icon_export_orange.svg);
                            }

                        section.com_catalogue .title-actions .other-actions div a.add {
                            background-image: url(../images/icons/icon_download_black.svg);
                            background-position: center center;
                            background-repeat: no-repeat;
                            background-color: #ffffff;
                        }

                            section.com_catalogue .title-actions .other-actions div a.add:hover {
                                background-image: url(../images/icons/icon_download_orange.svg);
                            }

                section.com_catalogue .title-actions .other-actions a.main-btn {
                    padding: 0 13px;
                }

                    section.com_catalogue .title-actions .other-actions a.main-btn .fa {
                        display: none;
                    }

        section.com_catalogue .new-category {
            position: absolute;
            right: 15px;
            top: 0;
            color: #D25D3E;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            text-decoration: none;
        }

        section.com_catalogue .card-category {
            border-radius: 10px;
            border: 0;
        }

            section.com_catalogue .card-category .card-body {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                justify-content: space-between;
            }

                section.com_catalogue .card-category .card-body div.product {
                    position: relative;
                }

                    section.com_catalogue .card-category .card-body div.product div.action {
                        display: flex;
                        justify-content: flex-end;
                        position: absolute;
                        right: 0;
                        top: 0;
                    }

                        section.com_catalogue .card-category .card-body div.product div.action a.toggle {
                            display: table;
                            width: 25px;
                            height: 25px;
                            line-height: 25px;
                            text-align: center;
                            color: #7F7F84;
                            border-radius: 50%;
                        }

                            section.com_catalogue .card-category .card-body div.product div.action a.toggle:hover {
                                background-color: #e4e4e4;
                                color: #ffffff;
                            }

                        section.com_catalogue .card-category .card-body div.product div.action ul {
                            position: absolute;
                            right: 25px;
                            top: 0;
                            list-style: none;
                            margin: 0;
                            padding: 0;
                            background: #ffffff;
                            border-radius: 10px;
                            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
                            width: 80px;
                            overflow: hidden;
                            display: none;
                        }

                            section.com_catalogue .card-category .card-body div.product div.action ul li {
                                display: block;
                                border-bottom: 1px solid rgba(0, 0, 0, 0.15);
                            }

                                section.com_catalogue .card-category .card-body div.product div.action ul li a {
                                    text-align: center;
                                    line-height: 28px;
                                    display: block;
                                    color: #201904;
                                    font-size: 12px;
                                    text-decoration: none;
                                }

                    section.com_catalogue .card-category .card-body div.product img {
                        width: 120px;
                        display: block;
                    }

                    section.com_catalogue .card-category .card-body div.product span.title {
                        color: #201904;
                        font-size: 20px;
                        font-weight: 600;
                        line-height: 25px;
                        display: block;
                    }

                    section.com_catalogue .card-category .card-body div.product span.counts {
                        display: block;
                        font-size: 15px;
                        font-weight: 500;
                        line-height: 25px;
                        color: #4A4A4D;
                    }

                section.com_catalogue .card-category .card-body div.users {
                    margin-top: 20px;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    justify-content: flex-start;
                    height: 32px;
                }

                    section.com_catalogue .card-category .card-body div.users .user-box {
                        position: relative;
                        display: flex;
                        flex-wrap: nowrap;
                        flex-direction: row;
                    }

                        section.com_catalogue .card-category .card-body div.users .user-box div.counts {
                            width: 32px;
                            height: 32px;
                            display: block;
                            background-color: #ffffff;
                            border-radius: 50%;
                            border: 1.5px solid #F0EDE5;
                            text-align: center;
                            line-height: 30px;
                            font-size: 14px;
                            color: #4A4A4D;
                            font-weight: 500;
                            margin-right: 5px;
                        }

                        section.com_catalogue .card-category .card-body div.users .user-box .image {
                            display: block;
                            overflow: hidden;
                            border-radius: 50%;
                            width: 32px;
                            height: 32px;
                            background-size: 32px 32px;
                            transition: 0.3s;
                            margin-right: 5px;
                        }

                            section.com_catalogue .card-category .card-body div.users .user-box .image a.remove {
                                width: 32px;
                                height: 32px;
                                line-height: 32px;
                                text-align: center;
                                display: block;
                                background-color: rgba(210, 93, 62, 0.5);
                                display: none;
                                transition: 0.3s;
                                opacity: 0;
                            }

                            section.com_catalogue .card-category .card-body div.users .user-box .image:hover a.remove {
                                display: block;
                                opacity: 1;
                            }

                    section.com_catalogue .card-category .card-body div.users .action a {
                        width: 32px;
                        height: 32px;
                        background: url(../images/icons/icon_add_users.png) center center no-repeat;
                        display: block;
                        transition: 0.6s;
                    }

                        section.com_catalogue .card-category .card-body div.users .action a:hover {
                            background: url(../images/icons/icon_add_users_orange.svg) center center no-repeat;
                        }

        section.com_catalogue .swiper-actions {
            margin: 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            section.com_catalogue .swiper-actions .slide-button {
                display: flex;
            }

                section.com_catalogue .swiper-actions .slide-button button {
                    background: transparent;
                    color: #201904;
                    width: 40px;
                    height: 30px;
                    border: none;
                    outline: none;
                    font-size: 18px;
                    font-weight: bolder;
                }

                    section.com_catalogue .swiper-actions .slide-button button.swiper-button-next-unique:hover, section.com_catalogue .swiper-actions .slide-button button.swiper-button-prev-unique:hover {
                        color: #D25D3E;
                    }

                    section.com_catalogue .swiper-actions .slide-button button.swiper-button-disabled {
                        color: rgba(127, 127, 132, 0.3);
                    }

    section.com_products-list {
        padding: 30px 0;
    }

        section.com_products-list aside div.filter-slider {
            margin-bottom: 20px;
        }

            section.com_products-list aside div.filter-slider div.title {
                display: flex;
                justify-content: space-between;
                height: 25px;
                align-items: center;
                margin-bottom: 10px;
            }

                section.com_products-list aside div.filter-slider div.title span {
                    color: #201904;
                    font-size: 18px;
                    line-height: 25px;
                    font-weight: 600;
                }

                section.com_products-list aside div.filter-slider div.title a {
                    display: block;
                    color: #201904;
                    font-weight: 800;
                    font-size: 22px;
                    text-decoration: none;
                    width: 25px;
                    height: 25px;
                    line-height: 25px;
                    text-align: center;
                }

            section.com_products-list aside div.filter-slider div.price-slider {
                height: 0;
                overflow: hidden;
                width: 100%;
                padding: 0 10px;
                transition: 0.5s all;
            }

                section.com_products-list aside div.filter-slider div.price-slider .values {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    width: 100%;
                }

                    section.com_products-list aside div.filter-slider div.price-slider .values input[type=text] {
                        border: none;
                        display: block;
                        width: 100px;
                        background-color: transparent;
                        color: #4A4A4D;
                        font-size: 15px;
                        font-weight: 400;
                        line-height: 37px;
                    }

                        section.com_products-list aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                            text-align: right;
                        }

                section.com_products-list aside div.filter-slider div.price-slider .slider-box {
                    width: 100%;
                    margin: 15px auto;
                }

                section.com_products-list aside div.filter-slider div.price-slider .ui-slider {
                    margin-top: 20px;
                    height: 5px;
                    position: relative;
                    border: none;
                    background: #C6C5C5;
                }

                section.com_products-list aside div.filter-slider div.price-slider .ui-state-default, section.com_products-list aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.com_products-list aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
                    background: #ffffff;
                    border-radius: 50%;
                    outline: none;
                    border: none;
                    position: absolute;
                    top: -9px;
                }

                section.com_products-list aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
                    background: #D25D3E;
                }

                section.com_products-list aside div.filter-slider div.price-slider #labelHolder {
                    height: 5px;
                    position: relative;
                    border: none;
                }

                section.com_products-list aside div.filter-slider div.price-slider span {
                    position: absolute;
                    width: 1.2em;
                    height: 1.2em;
                    margin-left: -0.6em;
                    text-align: center;
                }

            section.com_products-list aside div.filter-slider.active div.price-slider {
                height: 75px;
            }

        section.com_products-list aside div.filter {
            margin-bottom: 20px;
        }

            section.com_products-list aside div.filter div.title {
                display: flex;
                justify-content: space-between;
                height: 25px;
                align-items: center;
                margin-bottom: 10px;
            }

                section.com_products-list aside div.filter div.title span {
                    color: #201904;
                    font-size: 18px;
                    line-height: 25px;
                    font-weight: 600;
                }

                section.com_products-list aside div.filter div.title a {
                    display: block;
                    color: #201904;
                    font-weight: 800;
                    font-size: 22px;
                    text-decoration: none;
                    width: 25px;
                    height: 25px;
                    line-height: 25px;
                    text-align: center;
                }

            section.com_products-list aside div.filter .filter-checkbox {
                height: 0;
                overflow: hidden;
                transition: 0.5s all;
            }

                section.com_products-list aside div.filter .filter-checkbox ul {
                    margin: 0;
                    padding: 0;
                    list-style: none;
                    min-height: 185px;
                    max-height: 185px;
                    overflow-y: auto;
                }

                    section.com_products-list aside div.filter .filter-checkbox ul li label {
                        line-height: 37px;
                        display: flex;
                        flex-direction: row;
                        flex-wrap: nowrap;
                        font-size: 15px;
                        font-weight: 400;
                        color: #4A4A4D;
                        align-items: center;
                        margin: 0;
                    }

                    section.com_products-list aside div.filter .filter-checkbox ul.active {
                        display: block;
                    }

            section.com_products-list aside div.filter.active .filter-checkbox {
                height: 185px;
            }

        section.com_products-list ul.product-view {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

            section.com_products-list ul.product-view li {
                padding-left: 20px;
            }

                section.com_products-list ul.product-view li .grid-list-style {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-wrap: nowrap;
                }

                    section.com_products-list ul.product-view li .grid-list-style input[type=radio] {
                        position: relative;
                        width: 30px;
                        height: 30px;
                        -webkit-appearance: none;
                        -moz-appearance: none;
                        appearance: none;
                        cursor: pointer;
                        margin: 0 5px;
                        transition: all 0.6s ease-out;
                    }

                        section.com_products-list ul.product-view li .grid-list-style input[type=radio]::before {
                            content: "";
                            display: block;
                            width: 30px;
                            height: 30px;
                            position: absolute;
                            left: 0;
                            top: 0;
                            z-index: 1;
                        }

                        section.com_products-list ul.product-view li .grid-list-style input[type=radio].grid::before {
                            background: url(../images/icons/btn_grid_black.svg) center center no-repeat;
                        }

                        section.com_products-list ul.product-view li .grid-list-style input[type=radio].grid:checked::before {
                            background: url(../images/icons/btn_grid_orange.svg) center center no-repeat;
                        }

                        section.com_products-list ul.product-view li .grid-list-style input[type=radio].list::before {
                            background: url(../images/icons/btn_list_black.svg) center center no-repeat;
                        }

                        section.com_products-list ul.product-view li .grid-list-style input[type=radio].list:checked::before {
                            background: url(../images/icons/btn_list_orange.svg) center center no-repeat;
                        }

                section.com_products-list ul.product-view li span {
                    display: inline-block;
                    line-height: 40px;
                    color: #7F7F84;
                    font-size: 14px;
                    font-weight: 500;
                    margin-right: 10px;
                }

                section.com_products-list ul.product-view li select {
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    border-radius: 10px;
                    padding: 0 40px 0 15px;
                    height: 40px;
                    border: none;
                    background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
                    background-size: 12px 12px;
                    color: #4A4A4D;
                    font-size: 15px;
                }

        section.com_products-list div.products-wrapper {
            margin: 15px 0;
            display: grid;
            -moz-column-gap: 20px;
            column-gap: 20px;
            row-gap: 20px;
            transition: width 0.6s;
        }

            section.com_products-list div.products-wrapper .item {
                border-radius: 10px;
                background-color: none;
                width: 100%;
            }

                section.com_products-list div.products-wrapper .item .product-box {
                    display: flex;
                }

                    section.com_products-list div.products-wrapper .item .product-box div.image {
                        display: flex;
                        background: #ffffff;
                        align-items: center;
                        justify-content: center;
                        background-color: #ffffff;
                        border-radius: 10px;
                        overflow: hidden;
                        z-index: 1;
                        position: relative;
                        transition: 0.3s;
                    }

                        section.com_products-list div.products-wrapper .item .product-box div.image img {
                            position: relative;
                            z-index: 2;
                            height: auto;
                        }

                        section.com_products-list div.products-wrapper .item .product-box div.image a {
                            position: absolute;
                            left: 0;
                            right: 0;
                            top: 0;
                            bottom: 0;
                            background: rgba(0, 0, 0, 0.46);
                            color: #ffffff;
                            z-index: 3;
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center;
                            text-decoration: none;
                            opacity: 0;
                            transition: 0.6s;
                        }

                            section.com_products-list div.products-wrapper .item .product-box div.image a i {
                                font-size: 25px;
                            }

                            section.com_products-list div.products-wrapper .item .product-box div.image a span {
                                display: block;
                            }

                        section.com_products-list div.products-wrapper .item .product-box div.image:hover a {
                            opacity: 1;
                        }

                    section.com_products-list div.products-wrapper .item .product-box div.details {
                        width: 100%;
                    }

                        section.com_products-list div.products-wrapper .item .product-box div.details span {
                            display: block;
                            color: #201904;
                            font-size: 16px;
                            line-height: 25px;
                            font-weight: 500;
                        }

                            section.com_products-list div.products-wrapper .item .product-box div.details span.title {
                                line-height: 21px;
                                font-size: 16px;
                            }

                            section.com_products-list div.products-wrapper .item .product-box div.details span.qty {
                                color: #7F7F84;
                                font-size: 12px;
                                line-height: 25px;
                            }

                            section.com_products-list div.products-wrapper .item .product-box div.details span.price {
                                font-weight: 600;
                            }

            section.com_products-list div.products-wrapper.grid {
                grid-template-columns: repeat(4, 1fr);
            }

                section.com_products-list div.products-wrapper.grid .item {
                    border-radius: 10px;
                    background-color: none;
                    width: 100%;
                }

                    section.com_products-list div.products-wrapper.grid .item .product-box {
                        flex-direction: column;
                    }

                        section.com_products-list div.products-wrapper.grid .item .product-box .image {
                            height: 180px;
                            width: 100%;
                            margin: 0 0 12px;
                        }

                            section.com_products-list div.products-wrapper.grid .item .product-box .image img {
                                width: 90%;
                            }

                        section.com_products-list div.products-wrapper.grid .item .product-box div.details {
                            width: 100%;
                        }

                            section.com_products-list div.products-wrapper.grid .item .product-box div.details span.title {
                                line-height: 21px;
                                font-size: 16px;
                            }

                            section.com_products-list div.products-wrapper.grid .item .product-box div.details span.qty {
                                font-size: 12px;
                                line-height: 25px;
                            }

                            section.com_products-list div.products-wrapper.grid .item .product-box div.details span.price {
                                font-weight: 600;
                            }

            section.com_products-list div.products-wrapper.list {
                grid-template-columns: repeat(1, 1fr);
            }

                section.com_products-list div.products-wrapper.list .item {
                    border-radius: 10px;
                    background-color: #ffffff;
                    width: 100%;
                }

                    section.com_products-list div.products-wrapper.list .item .product-box {
                        flex-direction: row;
                        padding: 15px;
                    }

                        section.com_products-list div.products-wrapper.list .item .product-box .image {
                            height: auto;
                            width: auto;
                            margin: 0 12px 0 0;
                        }

                            section.com_products-list div.products-wrapper.list .item .product-box .image img {
                                width: auto;
                            }

                        section.com_products-list div.products-wrapper.list .item .product-box div.details {
                            width: calc(100% - 250px);
                        }

                            section.com_products-list div.products-wrapper.list .item .product-box div.details span.title {
                                line-height: 30px;
                                font-size: 20px;
                            }

                            section.com_products-list div.products-wrapper.list .item .product-box div.details span.qty {
                                font-size: 14px;
                                line-height: 25px;
                            }

                            section.com_products-list div.products-wrapper.list .item .product-box div.details span.price {
                                font-size: 18px;
                            }

    section.com_employees {
        padding-bottom: 30px;
    }

        section.com_employees .title-actions {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: flex-end;
        }

            section.com_employees .title-actions div.date {
                display: flex;
                align-items: center;
                height: 52px;
                padding: 0;
            }

                section.com_employees .title-actions div.date span {
                    display: block;
                    font-size: 16px;
                    font-weight: 600;
                    margin-right: 10px;
                }

                section.com_employees .title-actions div.date button {
                    width: 24px;
                    height: 24px;
                    border: none;
                    background: none;
                }

                section.com_employees .title-actions div.date img {
                    cursor: pointer;
                }

            section.com_employees .title-actions form {
                width: 100%;
            }

                section.com_employees .title-actions form div.search {
                    display: flex;
                    flex-direction: row;
                    height: 52px;
                    border-radius: 10px;
                    overflow: hidden;
                    background-color: #ffffff;
                    width: 100%;
                }

                    section.com_employees .title-actions form div.search input.search {
                        border: none;
                        background-color: transparent;
                        padding: 0 15px;
                        width: calc(100% - 52px);
                    }

                    section.com_employees .title-actions form div.search button.submit {
                        width: 52px;
                        height: 52px;
                        display: block;
                        border-radius: 10px;
                        line-height: 52px;
                        text-align: center;
                        border: none;
                        background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
                    }

                        section.com_employees .title-actions form div.search button.submit:hover {
                            background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                        }

            section.com_employees .title-actions div.search {
                display: flex;
                flex-direction: row;
                height: 52px;
                border-radius: 10px;
                overflow: hidden;
                background-color: #ffffff;
                width: 100%;
            }

                section.com_employees .title-actions div.search input.search {
                    border: none;
                    background-color: transparent;
                    padding: 0 15px;
                    width: calc(100% - 52px);
                }

                section.com_employees .title-actions div.search button.submit {
                    width: 52px;
                    height: 52px;
                    display: block;
                    border-radius: 10px;
                    line-height: 52px;
                    text-align: center;
                    border: none;
                    background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
                }

                    section.com_employees .title-actions div.search button.submit:hover {
                        background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                    }

            section.com_employees .title-actions .other-actions {
                display: flex;
                justify-content: flex-end;
                order: 1;
                position: relative;
            }

                section.com_employees .title-actions .other-actions a.toggle {
                    width: 52px;
                    height: 52px;
                    display: block;
                    text-decoration: none;
                    border-radius: 10px;
                    background: #ffffff url(../images/icons/btn_action_black.svg) center center no-repeat;
                    display: none;
                    margin: 0 0 0 10px;
                }

                section.com_employees .title-actions .other-actions div.toggle-show {
                    display: flex;
                    height: 52px;
                }

                    section.com_employees .title-actions .other-actions div.toggle-show a {
                        text-decoration: none;
                        height: 52px;
                        display: block;
                        line-height: 52px;
                    }

                        section.com_employees .title-actions .other-actions div.toggle-show a.main-btn {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            padding: 0 15px;
                            margin-left: 15px;
                        }

                    section.com_employees .title-actions .other-actions div.toggle-show button.main-btn {
                        color: white;
                        background-color: #D25D3E;
                        border: 0px;
                        border-radius: 10px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        padding: 0 15px;
                        margin-left: 15px;
                    }

                    section.com_employees .title-actions .other-actions div.toggle-show a.main-btn span.text {
                        white-space: nowrap;
                    }

                    section.com_employees .title-actions .other-actions div.toggle-show a.delete, section.com_employees .title-actions .other-actions div.toggle-show a.cancel {
                        color: #7F7F84;
                        padding: 0 20px;
                        margin-left: 0;
                    }

                        section.com_employees .title-actions .other-actions div.toggle-show a.delete .fa, section.com_employees .title-actions .other-actions div.toggle-show a.cancel .fa {
                            margin-left: 8px;
                        }

                        section.com_employees .title-actions .other-actions div.toggle-show a.delete:hover, section.com_employees .title-actions .other-actions div.toggle-show a.cancel:hover {
                            color: #D32243;
                        }

                    section.com_employees .title-actions .other-actions div.toggle-show a.download {
                        width: 67px;
                        min-width: 67px;
                        height: 52px;
                        display: block;
                        border-radius: 10px;
                        line-height: 52px;
                        text-align: center;
                        margin: 0;
                        background: #ffffff url(../images/icons/icon_export_black.svg) center center no-repeat;
                    }

                        section.com_employees .title-actions .other-actions div.toggle-show a.download span.text {
                            display: none;
                        }

                        section.com_employees .title-actions .other-actions div.toggle-show a.download:hover {
                            background: #ffffff url(../images/icons/icon_export_orange.svg) center center no-repeat;
                            background-size: 20px 20px;
                        }

        section.com_employees .title-actions2 {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: flex-end;
        }

            section.com_employees .title-actions2 div.date {
                display: flex;
                align-items: center;
                height: 52px;
                padding: 0;
            }

                section.com_employees .title-actions2 div.date span {
                    display: block;
                    font-size: 16px;
                    font-weight: 600;
                    margin-right: 10px;
                }

                section.com_employees .title-actions2 div.date button {
                    width: 24px;
                    height: 24px;
                    border: none;
                    background: none;
                }

                section.com_employees .title-actions2 div.date img {
                    cursor: pointer;
                }

            section.com_employees .title-actions2 form {
                width: 100%;
            }

                section.com_employees .title-actions2 form div.search {
                    display: flex;
                    flex-direction: row;
                    height: 52px;
                    border-radius: 10px;
                    overflow: hidden;
                    background-color: #ffffff;
                    width: 100%;
                }

                    section.com_employees .title-actions2 form div.search input.search {
                        border: none;
                        background-color: transparent;
                        padding: 0 15px;
                        width: calc(100% - 52px);
                    }

                    section.com_employees .title-actions2 form div.search button.submit {
                        width: 52px;
                        height: 52px;
                        display: block;
                        border-radius: 10px;
                        line-height: 52px;
                        text-align: center;
                        border: none;
                        background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
                    }

                        section.com_employees .title-actions2 form div.search button.submit:hover {
                            background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                        }

            section.com_employees .title-actions2 div.search {
                display: flex;
                flex-direction: row;
                height: 52px;
                border-radius: 10px;
                overflow: hidden;
                background-color: #ffffff;
                width: 100%;
            }

                section.com_employees .title-actions2 div.search input.search {
                    border: none;
                    background-color: transparent;
                    padding: 0 15px;
                    width: calc(100% - 52px);
                }

                section.com_employees .title-actions2 div.search button.submit {
                    width: 52px;
                    height: 52px;
                    display: block;
                    border-radius: 10px;
                    line-height: 52px;
                    text-align: center;
                    border: none;
                    background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
                }

                    section.com_employees .title-actions2 div.search button.submit:hover {
                        background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                    }

        section.com_employees .users-actions {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

            section.com_employees .users-actions a {
                display: block;
                text-decoration: none;
                font-size: 16px;
                line-height: 20px;
                font-weight: 600;
                color: #201904;
                margin-left: 25px;
            }

                section.com_employees .users-actions a.save {
                    background-color: #D25D3E;
                    color: #ffffff;
                    width: 92px;
                    display: table;
                    text-align: center;
                    line-height: 52px;
                    border-radius: 10px;
                    font-weight: 700;
                    font-size: 18px;
                    text-decoration: none;
                }

                    section.com_employees .users-actions a.save .fa {
                        font-size: 13px;
                    }

                    section.com_employees .users-actions a.save:hover {
                        background-color: #C64F2F;
                    }

                    section.com_employees .users-actions a.save:focus {
                        background-color: #DC836A;
                    }

                section.com_employees .users-actions a.cancel {
                    color: #7F7F84;
                }

                    section.com_employees .users-actions a.cancel:hover {
                        color: #D32243;
                    }

                section.com_employees .users-actions a.delete {
                    color: #7F7F84;
                }

                    section.com_employees .users-actions a.delete:hover {
                        color: #D32243;
                    }

        section.com_employees table.users-table {
            color: #201904;
            width: 100%;
        }

            section.com_employees table.users-table thead tr th {
                color: #7F7F84;
                text-align: left;
                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
            }

                section.com_employees table.users-table thead tr th:nth-child(1) {
                    width: 28px;
                }

                section.com_employees table.users-table thead tr th:nth-child(2) {
                    width: auto;
                }

                section.com_employees table.users-table thead tr th:nth-child(3) {
                    width: 220px;
                }

                section.com_employees table.users-table thead tr th:nth-child(4) {
                    width: 130px;
                }

                section.com_employees table.users-table thead tr th:nth-child(5) {
                    width: 160px;
                }

                section.com_employees table.users-table thead tr th:nth-child(6) {
                    width: 160px;
                }

                section.com_employees table.users-table thead tr th:nth-child(7) {
                    width: 90px;
                    text-align: center;
                }

                section.com_employees table.users-table thead tr th:nth-child(8) {
                    width: 40px;
                }

            section.com_employees table.users-table tbody tr {
                border-bottom: 1px solid #D8D8D8;
            }

                section.com_employees table.users-table tbody tr td {
                    position: relative;
                    padding: 12px 5px;
                    text-align: left;
                    vertical-align: middle;
                    font-size: 16px;
                }

                    section.com_employees table.users-table tbody tr td select {
                        -webkit-appearance: none;
                        -moz-appearance: none;
                        appearance: none;
                        border-radius: 6px;
                        padding: 0 40px 0 15px;
                        height: 34px;
                        background: #F6F4F0 url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
                        background-size: 12px 12px;
                        color: #4A4A4D;
                        font-size: 15px;
                        border: 1px solid #F0EDE5;
                        width: 100%;
                    }

                        section.com_employees table.users-table tbody tr td select.program, section.com_employees table.users-table tbody tr td select.role {
                            background-color: #ffffff;
                        }

                    section.com_employees table.users-table tbody tr td input[type=text], section.com_employees table.users-table tbody tr td input[type=email] {
                        border-radius: 6px;
                        border: 1px solid #F0EDE5;
                        width: 100%;
                        height: 34px;
                        padding: 0 15px;
                        border-radius: 6px;
                        background-color: #F6F4F0;
                    }

                    section.com_employees table.users-table tbody tr td ul {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                        display: block;
                        background-color: #ffffff;
                        box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                        position: absolute;
                        right: 55px;
                        top: 26px;
                        border-radius: 10px;
                        display: none;
                        z-index: 10;
                        width: 150px;
                    }

                        section.com_employees table.users-table tbody tr td ul li {
                            padding: 4px;
                        }

                            section.com_employees table.users-table tbody tr td ul li a {
                                display: block;
                                line-height: 43px;
                                border-radius: 10px;
                                text-decoration: none;
                                color: #201904;
                                text-align: center;
                                padding: 0 25px;
                            }

                                section.com_employees table.users-table tbody tr td ul li a:hover {
                                    background-color: #F0EDE5;
                                }

                    section.com_employees table.users-table tbody tr td .image img {
                        float: left;
                        margin-right: 10px;
                    }

                    section.com_employees table.users-table tbody tr td span {
                        display: block;
                        font-size: 12px;
                        color: #7F7F84;
                        font-weight: 500;
                        text-align: left;
                        line-height: 18px;
                    }

                        section.com_employees table.users-table tbody tr td span strong {
                            display: block;
                            font-size: 16px;
                            color: #201904;
                            line-height: 26px;
                        }

                    section.com_employees table.users-table tbody tr td a.options {
                        display: block;
                        margin: 9px auto;
                        width: 30px;
                        height: 30px;
                        color: #7F7F84;
                        text-decoration: none;
                        font-size: 22px;
                        transition: 0.3s;
                        background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                    }

                        section.com_employees table.users-table tbody tr td a.options:hover {
                            background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                        }

                    section.com_employees table.users-table tbody tr td:nth-child(7) {
                        text-align: right;
                    }

                section.com_employees table.users-table tbody tr:first-of-type {
                    /*border-bottom-color: transparent;*/
                }

                    section.com_employees table.users-table tbody tr:first-of-type td input[type=text]:focus, section.com_employees table.users-table tbody tr:first-of-type td input[type=email]:focus {
                        background: #ffffff;
                    }

                section.com_employees table.users-table tbody tr:last-of-type {
                    border-bottom: none;
                }

        section.com_employees ul#employee-details {
            display: flex;
            flex-direction: column;
        }

            section.com_employees ul#employee-details li {
                margin-bottom: 15px;
            }

                section.com_employees ul#employee-details li a {
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 25px;
                    text-decoration: none;
                    color: #7F7F84;
                    position: relative;
                    padding: 0;
                    padding-left: 20px;
                }

                    section.com_employees ul#employee-details li a.active {
                        color: #201904;
                    }

                        section.com_employees ul#employee-details li a.active::before {
                            content: "";
                            width: 3px;
                            height: 25px;
                            background-color: #D25D3E;
                            position: absolute;
                            left: 0;
                        }

        section.com_employees .card.card-users-person label.info {
            color: #201904;
            display: block;
            line-height: 20px;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        section.com_employees .card.card-users-person input.fields {
            border: 1px solid #F0EDE5;
            height: 64px;
            padding: 0 15px;
            border-radius: 10px;
            display: block;
            width: 100%;
            margin-bottom: 24px;
            outline: none;
        }

        section.com_employees .card.card-users-person select.fields {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border: 1px solid #F0EDE5;
            height: 64px;
            padding: 0 15px;
            border-radius: 10px;
            display: block;
            width: 100%;
            margin-bottom: 24px;
            outline: none;
            background: url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
            background-size: 12px 12px;
        }

            section.com_employees .card.card-users-person select.fields.classic {
                display: inline-block;
                box-sizing: border-box;
                -webkit-appearance: none;
                -moz-appearance: none;
                background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA3klEQVRIS+3VMU9CMRTF8d8zBL+aizoQFhx0kUk33RzdYMNFXUFnYeGrYYyaJiUxJHDLSxodbNKpfeffc9/pbaPyaCrr+3OA++z4rtT5Pg5GuMnCY9yWQEoBE1xhlUUP8YDrCBIB0vojLvGO0yz4hm4JJAKcYYoPHGOZAUdYoIMBXrc5iQAHeMlzviFygj7O8dkWEJU4XI8chALRhn9AVKHf70VRTHu4wFfbmKZLNKt50dLBnna0imcMd/2I0phWa3Y/D1e1Xa9BCZJG0VuQNpaWKMx72xS1Fl5/WN3BN+AgJhnZQlq4AAAAAElFTkSuQmCC");
                background-position: calc(100% - 0.5rem), 100% 0;
                background-size: 1.5em 1.5em;
                background-repeat: no-repeat;
            }

                section.com_employees .card.card-users-person select.fields.classic:focus {
                    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA3klEQVRIS+3VMU9CMRTF8d8zBL+aizoQFhx0kUk33RzdYMNFXUFnYeGrYYyaJiUxJHDLSxodbNKpfeffc9/pbaPyaCrr+3OA++z4rtT5Pg5GuMnCY9yWQEoBE1xhlUUP8YDrCBIB0vojLvGO0yz4hm4JJAKcYYoPHGOZAUdYoIMBXrc5iQAHeMlzviFygj7O8dkWEJU4XI8chALRhn9AVKHf70VRTHu4wFfbmKZLNKt50dLBnna0imcMd/2I0phWa3Y/D1e1Xa9BCZJG0VuQNpaWKMx72xS1Fl5/WN3BN+AgJhnZQlq4AAAAAElFTkSuQmCC");
                    background-position: calc(100% - 0.5rem), 100% 0;
                    background-size: 1.5em 1.5em;
                    background-repeat: no-repeat;
                    border-color: grey;
                    outline: 0;
                }

        section.com_employees .card.card-users-person .allowance-box {
            position: relative;
        }

            section.com_employees .card.card-users-person .allowance-box div.heading {
                position: relative;
            }

                section.com_employees .card.card-users-person .allowance-box div.heading h5 {
                    display: table;
                    font-size: 12px;
                    line-height: 20px;
                    font-weight: 600;
                    color: #7F7F84;
                }

                section.com_employees .card.card-users-person .allowance-box div.heading a.add-allowance {
                    display: table;
                    position: absolute;
                    right: 15px;
                    top: 0;
                    color: #D25D3E;
                    font-size: 16px;
                    font-weight: 600;
                    line-height: 20px;
                }

                section.com_employees .card.card-users-person .allowance-box div.heading button.add-allowance {
                    border: 0;
                    background: white;
                    display: table;
                    position: absolute;
                    right: 15px;
                    top: 0;
                    color: #D25D3E;
                    font-size: 16px;
                    font-weight: 600;
                    line-height: 20px;
                }

            section.com_employees .card.card-users-person .allowance-box div.allowance {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                border: 1px solid #F0EDE5;
                padding: 15px;
                border-radius: 10px;
                margin-bottom: 10px;
            }

                section.com_employees .card.card-users-person .allowance-box div.allowance span {
                    width: calc(100% - 100px);
                    text-align: left;
                    line-height: 20px;
                    font-size: 14px;
                    font-weight: 400;
                    color: #4A4A4D;
                    padding: 0 15px;
                }

                    section.com_employees .card.card-users-person .allowance-box div.allowance span strong {
                        display: block;
                        line-height: 20px;
                        font-size: 16px;
                        font-weight: 500;
                        color: #201904;
                    }

                    section.com_employees .card.card-users-person .allowance-box div.allowance span.amount {
                        display: block;
                        width: 80px;
                        text-align: right;
                        font-size: 16px;
                        color: #201904;
                        padding: 0;
                    }

        section.com_employees .card.card-users-person .quota-box {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

            section.com_employees .card.card-users-person .quota-box .quota {
                border: 1px solid #F0EDE5;
                border-radius: 10px;
                width: calc(100% - 40px);
                padding: 10px 15px;
                position: relative;
                height: 64px;
            }

                section.com_employees .card.card-users-person .quota-box .quota .selected-quota {
                    background: url(../images/icons/select_arrow.svg) right center no-repeat;
                    background-size: 14px 14px;
                }

                    section.com_employees .card.card-users-person .quota-box .quota .selected-quota span {
                        display: block;
                        font-size: 18px;
                        font-weight: 500;
                        line-height: 20px;
                        color: #201904;
                    }

                    section.com_employees .card.card-users-person .quota-box .quota .selected-quota p {
                        margin: 0;
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 22px;
                        color: #4A4A4D;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        padding-right: 20px;
                    }

                section.com_employees .card.card-users-person .quota-box .quota .quota-toggle {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 64px;
                    background-color: #ffffff;
                    box-shadow: 0 3px 10ox rgba(32, 25, 4, 0.1);
                    border: 1px solid #F0EDE5;
                    max-height: 138px;
                    overflow-y: auto;
                    z-index: 10;
                    display: none;
                }

                    section.com_employees .card.card-users-person .quota-box .quota .quota-toggle span {
                        padding: 5px 15px;
                        margin: 0;
                        font-size: 13px;
                        font-weight: 400;
                        line-height: 18px;
                        color: #4A4A4D;
                        display: block;
                        border-bottom: 1px solid #F0EDE5;
                        height: 46px;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        padding-right: 20px;
                    }

                        section.com_employees .card.card-users-person .quota-box .quota .quota-toggle span strong {
                            display: block;
                            font-size: 14px;
                            font-weight: 500;
                            line-height: 18px;
                            color: #201904;
                        }

            section.com_employees .card.card-users-person .quota-box a.remove {
                display: block;
                width: 30px;
                height: 30px;
                line-height: 30px;
                text-align: center;
                color: #7F7F84;
                text-decoration: none;
                font-size: 20px;
            }

            section.com_employees .card.card-users-person .quota-box button.remove {
                display: block;
                background-color: white;
                width: 30px;
                height: 30px;
                line-height: 30px;
                text-align: center;
                color: #7F7F84;
                border: 0px;
                text-decoration: none;
                font-size: 20px;
            }

            section.com_employees .card.card-users-person .quota-box a.remove:hover {
                color: #D32243;
            }

        section.com_employees .card.card-users-person .select-quota-set {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: center;
        }

            section.com_employees .card.card-users-person .select-quota-set .quota-grop {
                border: 1px solid #F0EDE5;
                border-radius: 10px;
                width: calc(100% - 40px);
                padding: 10px 15px;
                position: relative;
                height: 64px;
            }

                section.com_employees .card.card-users-person .select-quota-set .quota-grop .selected-quota-group {
                    background: url(../images/icons/select_arrow.svg) right center no-repeat;
                    background-size: 14px 14px;
                }

                    section.com_employees .card.card-users-person .select-quota-set .quota-grop .selected-quota-group span {
                        display: block;
                        font-size: 18px;
                        font-weight: 400;
                        line-height: 44px;
                        color: #7F7F84;
                    }

                section.com_employees .card.card-users-person .select-quota-set .quota-grop .quota-group-toggle {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 64px;
                    background-color: #ffffff;
                    box-shadow: 0 3px 10ox rgba(32, 25, 4, 0.1);
                    border: 1px solid #F0EDE5;
                    max-height: 138px;
                    overflow-y: auto;
                    display: none;
                    z-index: 10;
                }

                    section.com_employees .card.card-users-person .select-quota-set .quota-grop .quota-group-toggle ul li {
                        cursor: pointer;
                        padding: 5px 15px;
                        margin: 0;
                        font-size: 13px;
                        font-weight: 400;
                        line-height: 37px;
                        color: #4A4A4D;
                        display: block;
                        border-bottom: 1px solid #F0EDE5;
                        height: 46px;
                    }

        section.com_employees div.pie-chart {
            display: flex;
            gap: 20px;
        }

            section.com_employees div.pie-chart div.chart {
                width: 26%;
                position: relative;
                border-radius: 10px;
                background-color: #ffffff;
                overflow: hidden;
                padding: 15px 5px;
            }

                section.com_employees div.pie-chart div.chart a.help {
                    background: url(../images/icons/icon_question.svg) center center no-repeat;
                    width: 20px;
                    height: 20px;
                    display: block;
                    position: absolute;
                    right: 10px;
                    top: 10px;
                }

                section.com_employees div.pie-chart div.chart svg {
                    width: 100%;
                    height: 150px;
                    position: relative;
                }

                    section.com_employees div.pie-chart div.chart svg .bg {
                        fill: none;
                        stroke-width: 10px;
                        stroke: rgba(32, 25, 4, 0.2);
                    }

                    section.com_employees div.pie-chart div.chart svg .big-title {
                        font-size: 35px;
                        font-weight: 600;
                        fill: #201904;
                    }

                    section.com_employees div.pie-chart div.chart svg .small-title {
                        font-size: 14px;
                        font-weight: 400;
                        fill: rgba(74, 74, 77, 0.7);
                    }

                    section.com_employees div.pie-chart div.chart svg [class^=meter-] {
                        fill: none;
                        stroke-width: 10px;
                        stroke-linecap: round;
                        transform: rotate(-90deg);
                        transform-origin: 50% 50%;
                    }

                    section.com_employees div.pie-chart div.chart svg .meter-1 {
                        stroke-dasharray: 360;
                        stroke-dashoffset: 100;
                        stroke: #B3CE67;
                        -webkit-animation: progress-1 1s ease-out;
                        animation: progress-1 1s ease-out;
                    }

                    section.com_employees div.pie-chart div.chart svg .meter-2 {
                        stroke: #5979B7;
                        stroke-dasharray: 360;
                        stroke-dashoffset: 255;
                        -webkit-animation: progress-2 0.75s ease-out;
                        animation: progress-2 0.75s ease-out;
                    }

                    section.com_employees div.pie-chart div.chart svg .meter-3 {
                        stroke: #F4C31B;
                        stroke-dasharray: 360;
                        stroke-dashoffset: 255;
                        -webkit-animation: progress-3 0.5s ease-out;
                        animation: progress-3 0.5s ease-out;
                    }

@-webkit-keyframes progress-1 {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: 100;
    }
}

@keyframes progress-1 {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: 100;
    }
}

@-webkit-keyframes progress-2 {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: 255;
    }
}

@keyframes progress-2 {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: 255;
    }
}

@-webkit-keyframes progress-3 {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: 255;
    }
}

@keyframes progress-3 {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: 255;
    }
}

section.com_employees div.pie-chart div.chart strong {
    text-align: center;
    display: table;
    margin: 0 auto 0;
}

section.com_employees .card-order-table table.all-orders {
    width: 100%;
}

    section.com_employees .card-order-table table.all-orders thead tr th {
        padding: 10px;
        font-size: 12px;
        text-transform: uppercase;
        color: #7F7F84;
        font-weight: 600;
        text-align: left;
        line-height: 15px;
    }

        section.com_employees .card-order-table table.all-orders thead tr th:nth-child(1) {
            width: 110px;
        }

        section.com_employees .card-order-table table.all-orders thead tr th:nth-child(2) {
            width: 120px;
        }

        section.com_employees .card-order-table table.all-orders thead tr th:nth-child(3) {
            width: 100px;
        }

        section.com_employees .card-order-table table.all-orders thead tr th:nth-child(4) {
            width: calc(100% - 590px);
        }

        section.com_employees .card-order-table table.all-orders thead tr th:nth-child(5) {
            width: 140px;
            text-align: center;
        }

        section.com_employees .card-order-table table.all-orders thead tr th:nth-child(6) {
            text-align: right;
            width: 120px;
        }

    section.com_employees .card-order-table table.all-orders tbody tr {
        border-bottom: 1px solid #F0EDE5;
    }

        section.com_employees .card-order-table table.all-orders tbody tr td {
            padding: 15px 5px;
            text-align: left;
            font-size: 16px;
            font-weight: 400;
            position: relative;
        }

            section.com_employees .card-order-table table.all-orders tbody tr td strong {
                font-weight: 500;
            }

            section.com_employees .card-order-table table.all-orders tbody tr td a {
                color: #201904;
                display: table;
                text-decoration: none;
            }

            section.com_employees .card-order-table table.all-orders tbody tr td span {
                font-size: 14px;
                line-height: 36px;
                height: 36px;
                border-radius: 18px;
                padding: 0 15px;
                text-align: center;
            }

                section.com_employees .card-order-table table.all-orders tbody tr td span.status {
                    width: 100%;
                    display: block;
                }

                    section.com_employees .card-order-table table.all-orders tbody tr td span.status.pending {
                        color: #D7A90F;
                        background-color: rgba(244, 195, 27, 0.1);
                    }

                    section.com_employees .card-order-table table.all-orders tbody tr td span.status.completed {
                        color: #87AC1E;
                        background: rgba(179, 206, 103, 0.1);
                    }

                    section.com_employees .card-order-table table.all-orders tbody tr td span.status.cancel {
                        color: #7F7F84;
                        background-color: rgba(127, 127, 132, 0.08);
                    }

                    section.com_employees .card-order-table table.all-orders tbody tr td span.status.shipped {
                        color: #4D6BCB;
                        background-color: rgba(47, 80, 184, 0.1);
                    }

                    section.com_employees .card-order-table table.all-orders tbody tr td span.status.waiting {
                        color: #ffffff;
                        padding: 8px 30px 8px 15px;
                        background: #201904 url(../images/icons/icon_select_white.svg) 140px center no-repeat;
                        background-size: 13px 13px;
                        cursor: pointer;
                    }

            section.com_employees .card-order-table table.all-orders tbody tr td:last-of-type {
                text-align: right;
            }

                section.com_employees .card-order-table table.all-orders tbody tr td:last-of-type a {
                    display: inline-block;
                    min-width: 30px;
                    height: 30px;
                    line-height: 30px;
                    margin-left: 5px;
                    font-size: 18px;
                    color: #7F7F84;
                    transition: 0.3s;
                }

                    section.com_employees .card-order-table table.all-orders tbody tr td:last-of-type a.next {
                        font-weight: 600;
                    }

                    section.com_employees .card-order-table table.all-orders tbody tr td:last-of-type a:hover {
                        color: #D25D3E;
                    }

        section.com_employees .card-order-table table.all-orders tbody tr:last-of-type {
            border-bottom-color: transparent;
        }

section.com_employees .card-order-table table.history {
    width: 100%;
}

    section.com_employees .card-order-table table.history thead tr th {
        padding: 10px;
        font-size: 12px;
        text-transform: uppercase;
        color: #7F7F84;
        font-weight: 600;
        text-align: left;
        line-height: 15px;
    }

        section.com_employees .card-order-table table.history thead tr th:nth-child(1) {
            width: 21%;
        }

        section.com_employees .card-order-table table.history thead tr th:nth-child(2) {
            width: 21%;
        }

        section.com_employees .card-order-table table.history thead tr th:nth-child(3) {
            width: 21%;
        }

        section.com_employees .card-order-table table.history thead tr th:nth-child(4) {
            width: 25%;
        }

        section.com_employees .card-order-table table.history thead tr th:nth-child(5) {
            width: 12%;
            text-align: center;
        }

    section.com_employees .card-order-table table.history tbody tr {
        border-bottom: 1px solid #F0EDE5;
    }

        section.com_employees .card-order-table table.history tbody tr td {
            padding: 12px 5px;
            text-align: left;
            font-size: 16px;
            font-weight: 400;
            position: relative;
        }

            section.com_employees .card-order-table table.history tbody tr td strong {
                font-weight: 500;
            }

            section.com_employees .card-order-table table.history tbody tr td span.high {
                color: #B3CE67;
            }

            section.com_employees .card-order-table table.history tbody tr td:last-of-type {
                text-align: right;
            }

        section.com_employees .card-order-table table.history tbody tr:last-of-type {
            border-bottom-color: transparent;
        }

section.com_employees div.actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

    section.com_employees div.actions button {
        text-decoration: none;
        padding: 0 25px;
        line-height: 52px;
        display: block;
        border-radius: 10px;
        margin: 0 10px;
        border: none;
        background: none;
        cursor: pointer;
    }

        section.com_employees div.actions button.back {
            color: #7F7F84;
        }

        section.com_employees div.actions button.next {
            background-color: #D25D3E;
            color: #ffffff;
        }

            section.com_employees div.actions button.next:disabled {
                background-color: #DC836A;
            }

            section.com_employees div.actions button.next:hover {
                background-color: #C64F2F;
            }

            section.com_employees div.actions button.next:focus {
                background-color: #DC836A;
            }

    section.com_employees div.actions a.save {
        background-color: #D25D3E;
        color: #ffffff;
    }

        section.com_employees div.actions a.save:hover {
            background-color: #C64F2F;
        }

        section.com_employees div.actions a.save:focus {
            background-color: #DC836A;
        }

section.com_new-quota-set {
    position: relative;
}

    section.com_new-quota-set .title-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

        section.com_new-quota-set .title-actions a.cancel {
            color: #7F7F84;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            display: inline-block;
            margin-left: 20px;
            margin-right: 0;
            text-decoration: none;
        }

            section.com_new-quota-set .title-actions a.cancel:hover {
                color: #D32243;
            }

    section.com_new-quota-set ul.form-stepper {
        list-style: none;
        margin: 0;
        padding: 0;
        padding-left: 0;
        padding-right: 5px;
        display: flex;
        position: relative;
    }

        section.com_new-quota-set ul.form-stepper li {
            background-color: #F0EDE5;
            height: 48px;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            justify-content: center;
            min-width: 91px;
            padding: 0 21px;
            margin-right: 45px;
            position: relative;
        }

            section.com_new-quota-set ul.form-stepper li strong {
                border-radius: 50%;
                width: 30px;
                height: 30px;
                line-height: 30px;
                text-align: center;
                display: block;
                background-color: #E0DCCF;
                color: #7F7F84;
            }

            section.com_new-quota-set ul.form-stepper li span {
                display: none;
                margin-left: 16px;
            }

            section.com_new-quota-set ul.form-stepper li.active, section.com_new-quota-set ul.form-stepper li.form-stepper-active {
                background-color: #efd6cc;
                min-width: 272px;
            }

                section.com_new-quota-set ul.form-stepper li.active strong, section.com_new-quota-set ul.form-stepper li.form-stepper-active strong {
                    background-color: #D25D3E;
                    color: #ffffff;
                }

                section.com_new-quota-set ul.form-stepper li.active span, section.com_new-quota-set ul.form-stepper li.form-stepper-active span {
                    display: block;
                }

                section.com_new-quota-set ul.form-stepper li.active::before, section.com_new-quota-set ul.form-stepper li.form-stepper-active::before {
                    content: "";
                    border-left: 24px solid transparent;
                    border-top: 24px solid #efd6cc;
                    border-bottom: 24px solid #efd6cc;
                    border-right: 0;
                    position: absolute;
                    left: -24px;
                }

                section.com_new-quota-set ul.form-stepper li.active::after, section.com_new-quota-set ul.form-stepper li.form-stepper-active::after {
                    content: "";
                    border-left: 24px solid #efd6cc;
                    border-top: 24px solid transparent;
                    border-bottom: 24px solid transparent;
                    border-right: 0;
                    position: absolute;
                    right: -24px;
                }

            section.com_new-quota-set ul.form-stepper li.done strong, section.com_new-quota-set ul.form-stepper li.form-stepper-completed strong {
                background-color: #B3CE67;
                color: #B3CE67;
                position: relative;
            }

                section.com_new-quota-set ul.form-stepper li.done strong::after, section.com_new-quota-set ul.form-stepper li.form-stepper-completed strong::after {
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%, -50%);
                    width: 30px;
                    height: 30px;
                    color: #ffffff;
                    content: "";
                    background: url(../images/icons/check2.svg) center center no-repeat;
                    border-radius: 50%;
                }

            section.com_new-quota-set ul.form-stepper li.done span, section.com_new-quota-set ul.form-stepper li.form-stepper-completed span {
                display: none;
            }

            section.com_new-quota-set ul.form-stepper li.done::before, section.com_new-quota-set ul.form-stepper li.form-stepper-completed::before {
                content: "";
                border-left: 24px solid transparent;
                border-top: 24px solid #F0EDE5;
                border-bottom: 24px solid #F0EDE5;
                border-right: 0;
                position: absolute;
                left: -24px;
            }

            section.com_new-quota-set ul.form-stepper li.done::after, section.com_new-quota-set ul.form-stepper li.form-stepper-completed::after {
                content: "";
                border-left: 24px solid #F0EDE5;
                border-top: 24px solid transparent;
                border-bottom: 24px solid transparent;
                border-right: 0;
                position: absolute;
                right: -24px;
            }

            section.com_new-quota-set ul.form-stepper li::before {
                content: "";
                border-left: 24px solid transparent;
                border-top: 24px solid #F0EDE5;
                border-bottom: 24px solid #F0EDE5;
                border-right: 0;
                position: absolute;
                left: -24px;
            }

            section.com_new-quota-set ul.form-stepper li::after {
                content: "";
                border-left: 24px solid #F0EDE5;
                border-top: 24px solid transparent;
                border-bottom: 24px solid transparent;
                border-right: 0;
                position: absolute;
                right: -24px;
            }

            section.com_new-quota-set ul.form-stepper li:last-of-type {
                margin-right: 0;
            }

    section.com_new-quota-set ul.group-steps {
        list-style: none;
        margin: 0;
        padding: 0;
        padding-left: 0;
        padding-right: 5px;
        display: flex;
        position: relative;
    }

        section.com_new-quota-set ul.group-steps li {
            background-color: #F0EDE5;
            height: 48px;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            justify-content: center;
            min-width: 100px;
            padding: 0 21px;
            margin-right: 45px;
            position: relative;
            width: 33.33%;
        }

            section.com_new-quota-set ul.group-steps li strong {
                border-radius: 50%;
                width: 30px;
                height: 30px;
                line-height: 30px;
                text-align: center;
                display: block;
                background-color: #E0DCCF;
                color: #7F7F84;
            }

            section.com_new-quota-set ul.group-steps li span {
                color: #7F7F84;
                margin-left: 16px;
            }

            section.com_new-quota-set ul.group-steps li.active {
                background-color: #efd6cc;
            }

                section.com_new-quota-set ul.group-steps li.active strong {
                    background-color: #D25D3E;
                    color: #ffffff;
                }

                section.com_new-quota-set ul.group-steps li.active span {
                    display: block;
                }

                section.com_new-quota-set ul.group-steps li.active::before {
                    content: "";
                    border-left: 24px solid transparent;
                    border-top: 24px solid #efd6cc;
                    border-bottom: 24px solid #efd6cc;
                    border-right: 0;
                    position: absolute;
                    left: -24px;
                }

                section.com_new-quota-set ul.group-steps li.active::after {
                    content: "";
                    border-left: 24px solid #efd6cc;
                    border-top: 24px solid transparent;
                    border-bottom: 24px solid transparent;
                    border-right: 0;
                    position: absolute;
                    right: -24px;
                }

            section.com_new-quota-set ul.group-steps li.done strong, section.com_new-quota-set ul.group-steps li.form-stepper-completed strong {
                background-color: #B3CE67;
                color: #B3CE67;
                position: relative;
            }

                section.com_new-quota-set ul.group-steps li.done strong::after, section.com_new-quota-set ul.group-steps li.form-stepper-completed strong::after {
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%, -50%);
                    width: 30px;
                    height: 30px;
                    color: #ffffff;
                    content: "";
                    background: #87AC1E url(../images/icons/check2.svg) center center no-repeat;
                    border-radius: 50%;
                }

            section.com_new-quota-set ul.group-steps li.done::before, section.com_new-quota-set ul.group-steps li.form-stepper-completed::before {
                content: "";
                border-left: 24px solid transparent;
                border-top: 24px solid #F0EDE5;
                border-bottom: 24px solid #F0EDE5;
                border-right: 0;
                position: absolute;
                left: -24px;
            }

            section.com_new-quota-set ul.group-steps li.done::after, section.com_new-quota-set ul.group-steps li.form-stepper-completed::after {
                content: "";
                border-left: 24px solid #F0EDE5;
                border-top: 24px solid transparent;
                border-bottom: 24px solid transparent;
                border-right: 0;
                position: absolute;
                right: -24px;
            }

            section.com_new-quota-set ul.group-steps li::before {
                content: "";
                border-left: 24px solid transparent;
                border-top: 24px solid #F0EDE5;
                border-bottom: 24px solid #F0EDE5;
                border-right: 0;
                position: absolute;
                left: -24px;
            }

            section.com_new-quota-set ul.group-steps li::after {
                content: "";
                border-left: 24px solid #F0EDE5;
                border-top: 24px solid transparent;
                border-bottom: 24px solid transparent;
                border-right: 0;
                position: absolute;
                right: -24px;
            }

            section.com_new-quota-set ul.group-steps li:last-of-type {
                margin-right: 0;
            }

    section.com_new-quota-set form a.new-user {
        right: 15px;
        top: 0;
        background-color: #D25D3E;
        color: #ffffff;
        padding: 0 25px;
        display: table;
        text-align: center;
        line-height: 52px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 18px;
        text-decoration: none;
    }

        section.com_new-quota-set form a.new-user .fa {
            font-size: 18px;
            margin-right: 10px;
        }

        section.com_new-quota-set form a.new-user:hover {
            background-color: #C64F2F;
        }

        section.com_new-quota-set form a.new-user:focus {
            background-color: #DC836A;
        }

    section.com_new-quota-set form div.quota-set-box .quota-set {
        background-color: #ffffff;
        border-radius: 10px;
        overflow: hidden;
        padding: 0 25px 0 25px;
        margin-bottom: 10px;
    }

        section.com_new-quota-set form div.quota-set-box .quota-set .quota {
            display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
            align-items: center;
            margin: 25px 0;
            position: relative;
        }

            section.com_new-quota-set form div.quota-set-box .quota-set .quota img.icon {
                width: 65px;
                height: 48px;
                margin-left: 15px;
            }

            section.com_new-quota-set form div.quota-set-box .quota-set .quota span {
                display: block;
                font-size: 12px;
                font-weight: 500;
                color: #7F7F84;
                text-align: left;
                width: calc(100% - 196px);
                padding: 0 15px;
            }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota span strong {
                    font-size: 18px;
                    font-weight: 600;
                    line-height: 22px;
                    color: #201904;
                    display: block;
                }

            section.com_new-quota-set form div.quota-set-box .quota-set .quota a.action {
                display: block;
                width: 30px;
                height: 30px;
                margin: 0 15px;
                background: url(../images/icons/btn_action_black.svg) center center no-repeat;
            }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota a.action:hover {
                    background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                }

            section.com_new-quota-set form div.quota-set-box .quota-set .quota button {
                width: 36px;
                min-width: 30px;
                height: 36px;
                display: block;
                border: none;
                background: #F6F4F0;
                color: #212121;
                font-size: 18px;
                font-weight: 400;
                border-radius: 4px;
            }

            section.com_new-quota-set form div.quota-set-box .quota-set .quota a.remove {
                background: #ffffff;
                border-radius: 10px;
                line-height: 45px;
                font-size: 16px;
                font-weight: 500;
                color: #201904;
                padding: 0 15px;
                box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                position: absolute;
                right: 85px;
                top: 50%;
                transform: translateY(-50%);
                z-index: 2;
                display: none;
            }

        section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail {
            display: none;
            padding: 25px;
            border: 1px solid #F0EDE5;
            border-radius: 10px;
            margin-bottom: 25px;
        }

            section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table {
                width: 100%;
                margin-bottom: 10px;
            }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table thead tr th {
                    padding: 0 10px;
                    font-size: 12px;
                    text-transform: uppercase;
                    color: #7F7F84;
                    font-weight: 600;
                    text-align: left;
                    line-height: 20px;
                }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table tbody tr td {
                    border-bottom: 1px solid #F0EDE5;
                    font-size: 16px;
                    font-weight: 600;
                    padding: 15px 0;
                    vertical-align: middle;
                }

                    section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table tbody tr td img {
                        width: 56px;
                    }

                    section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table tbody tr td span {
                        display: block;
                        font-size: 12px;
                        font-weight: 500;
                        color: #7F7F84;
                        text-align: left;
                        width: 100%;
                        padding: 0 10px;
                    }

                        section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table tbody tr td span strong {
                            font-size: 18px;
                            font-weight: 600;
                            line-height: 18px;
                            color: #201904;
                            display: block;
                        }

                        section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table tbody tr td span span {
                            line-height: 16px;
                            font-size: 12px;
                            font-weight: 500;
                            display: block;
                            padding: 0;
                        }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table.product-set tbody tr td:nth-child(1) {
                    width: 50px;
                    border-bottom-color: transparent;
                }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table.product-set tbody tr td:nth-child(2) {
                    width: 56px;
                }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table.product-set tbody tr td:nth-child(3) {
                    width: calc(100% - 116px);
                }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table.product thead tr th:nth-child(2) {
                    text-align: right;
                }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table.product tbody tr td:nth-child(1) {
                    width: 50px;
                    border-bottom-color: transparent;
                }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table.product tbody tr td:nth-child(2) {
                    width: 56px;
                }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table.product tbody tr td:nth-child(3) {
                    width: calc(100% - 226px);
                }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table.product tbody tr td:nth-child(4) {
                    width: 120px;
                    text-align: right;
                    padding: 0 15px;
                }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table.product tbody tr:last-of-type td {
                    border-bottom: none;
                }

                section.com_new-quota-set form div.quota-set-box .quota-set .quota-detail table:last-of-type {
                    margin-bottom: 0;
                }

        section.com_new-quota-set form div.quota-set-box .quota-set:last-of-type {
            margin-bottom: 0;
        }

    section.com_new-quota-set form div.card.card-new-quota .card-body label.info {
        color: #201904;
        display: block;
        line-height: 20px;
        font-size: 16px;
        font-weight: 500;
    }

    section.com_new-quota-set form div.card.card-new-quota .card-body input.fields {
        border: 1px solid #F0EDE5;
        height: 64px;
        padding: 0 15px;
        border-radius: 10px;
        display: block;
        width: 100%;
        margin-bottom: 24px;
        outline: none;
    }

    section.com_new-quota-set form div.card.card-new-quota .card-body select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 0 40px 0 15px;
        height: 64px;
        background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
        background-size: 12px 12px;
        color: #4A4A4D;
        font-size: 15px;
        border: 1px solid #F0EDE5;
        width: 100%;
    }

    section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table {
        color: #201904;
        width: 100%;
    }

        section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th {
            color: #7F7F84;
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            padding: 0 5px;
        }

            section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th:nth-child(1) {
                width: calc(100% - 741px);
            }

            section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th:nth-child(2) {
                width: 215px;
            }

            section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th:nth-child(3) {
                width: 264px;
            }

            section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th:nth-child(4) {
                width: 200px;
            }

            section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th:nth-child(5) {
                width: 60px;
            }

        section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr {
            border-bottom: 1px solid #D8D8D8;
        }

            section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td {
                position: relative;
                padding: 12px 5px;
                text-align: left;
                vertical-align: middle;
                font-size: 16px;
            }

                section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td .reserve-area {
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                }

                section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td select {
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    border-radius: 6px;
                    padding: 0 40px 0 15px;
                    height: 34px;
                    background: #F6F4F0 url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
                    background-size: 12px 12px;
                    color: #4A4A4D;
                    font-size: 15px;
                    border: 1px solid #F0EDE5;
                    width: 100%;
                }

                section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td input[type=text], section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td input[type=email] {
                    border-radius: 6px;
                    border: 1px solid #F0EDE5;
                    width: 100%;
                    height: 34px;
                    padding: 0 15px;
                    border-radius: 6px;
                    background-color: #F6F4F0;
                    display: inline-block;
                }

                section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td ul {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    display: block;
                    background-color: #ffffff;
                    box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                    position: absolute;
                    right: 40px;
                    top: 8px;
                    border-radius: 10px;
                    display: none;
                    z-index: 10;
                }

                    section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td ul li {
                        padding: 4px;
                    }

                        section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td ul li a {
                            display: block;
                            line-height: 43px;
                            border-radius: 10px;
                            text-decoration: none;
                            color: #201904;
                            text-align: center;
                            padding: 0 25px;
                        }

                            section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td ul li a:hover {
                                background-color: #F0EDE5;
                            }

                section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td img {
                    float: left;
                    margin: 0 10px 0 10px;
                }

                section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td span {
                    display: block;
                    font-size: 12px;
                    color: #7F7F84;
                    font-weight: 500;
                    text-align: left;
                    line-height: 18px;
                }

                    section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td span strong {
                        display: block;
                        font-size: 16px;
                        color: #201904;
                        line-height: 18px;
                    }

                section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td a.options {
                    display: block;
                    margin: 9px auto;
                    width: 30px;
                    height: 30px;
                    color: #7F7F84;
                    text-decoration: none;
                    font-size: 22px;
                    transition: 0.3s;
                    background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                }

                    section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td a.options:hover {
                        background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                    }

                section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td:last-of-type {
                    text-align: right;
                }

            section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr:first-of-type {
                border-bottom-color: transparent;
            }

                section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr:first-of-type td input[type=checkbox] {
                    margin-right: 10px;
                }

                section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr:first-of-type td input[type=text]:focus, section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr:first-of-type td input[type=email]:focus {
                    background: #ffffff;
                }

            section.com_new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr:last-of-type {
                border-bottom: none;
            }

    section.com_new-quota-set form div.search {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 52px;
        border-radius: 10px;
        overflow: hidden;
        margin-right: 12px;
        width: 100%;
        background-color: #ffffff;
    }

        section.com_new-quota-set form div.search input.search {
            border: none;
            background-color: transparent;
            padding: 0 15px;
            width: calc(100% - 52px);
        }

        section.com_new-quota-set form div.search button.submit {
            width: 52px;
            height: 52px;
            display: block;
            border-radius: 10px;
            line-height: 52px;
            text-align: center;
            border: none;
            background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
        }

            section.com_new-quota-set form div.search button.submit:hover {
                background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
            }

        section.com_new-quota-set form div.search.no-margin {
            margin: 0;
        }

    section.com_new-quota-set form div.action {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

        section.com_new-quota-set form div.action a {
            text-decoration: none;
            line-height: 52px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            section.com_new-quota-set form div.action a.import {
                height: 52px;
                display: flex;
                border-radius: 10px;
                line-height: 52px;
                text-align: center;
                margin-right: 12px;
                color: #201904;
                font-weight: 500;
                padding: 0 45px 0 15px;
                background: transparent url(../images/icons/icon_download_black.svg) 80px center no-repeat;
            }

                section.com_new-quota-set form div.action a.import:hover {
                    color: #D25D3E;
                    background: transparent url(../images/icons/icon_download_orange.svg) 80px center no-repeat;
                }

            section.com_new-quota-set form div.action a.new-user {
                background-color: #D25D3E;
                color: #ffffff;
                display: table;
                text-align: center;
                line-height: 52px;
                border-radius: 10px;
                font-weight: 700;
                font-size: 18px;
                text-decoration: none;
            }

                section.com_new-quota-set form div.action a.new-user .fa {
                    font-size: 13px;
                }

                section.com_new-quota-set form div.action a.new-user:hover {
                    background-color: #C64F2F;
                }

                section.com_new-quota-set form div.action a.new-user:focus {
                    background-color: #DC836A;
                }

    section.com_new-quota-set form div.actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        padding: 30px 0 30px;
    }

        section.com_new-quota-set form div.actions button {
            text-decoration: none;
            padding: 0 25px;
            line-height: 52px;
            display: block;
            border-radius: 10px;
            margin: 0 10px;
            border: none;
            background: none;
            cursor: pointer;
        }

            section.com_new-quota-set form div.actions button.back {
                color: #7F7F84;
            }

            section.com_new-quota-set form div.actions button.next {
                background-color: #D25D3E;
                color: #ffffff;
            }

                section.com_new-quota-set form div.actions button.next:disabled {
                    background-color: #DC836A;
                }

                section.com_new-quota-set form div.actions button.next:hover {
                    background-color: #C64F2F;
                }

                section.com_new-quota-set form div.actions button.next:focus {
                    background-color: #DC836A;
                }

        section.com_new-quota-set form div.actions a.save {
            background-color: #D25D3E;
            color: #ffffff;
        }

            section.com_new-quota-set form div.actions a.save:hover {
                background-color: #C64F2F;
            }

            section.com_new-quota-set form div.actions a.save:focus {
                background-color: #DC836A;
            }

section.com_order-number {
    padding-bottom: 30px;
    position: relative;
}

    section.com_order-number .title-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

        section.com_order-number .title-actions div.date {
            display: flex;
            align-items: center;
            height: 52px;
            padding: 0 20px;
        }

            section.com_order-number .title-actions div.date span {
                display: block;
                font-size: 16px;
                font-weight: 600;
                margin-right: 10px;
            }

            section.com_order-number .title-actions div.date button {
                width: 24px;
                height: 24px;
                border: none;
                background: none;
            }

            section.com_order-number .title-actions div.date img {
                cursor: pointer;
            }

        section.com_order-number .title-actions div.search {
            display: flex;
            flex-direction: row;
            height: 52px;
            border-radius: 10px;
            overflow: hidden;
            background-color: #ffffff;
            margin-right: 12px;
        }

            section.com_order-number .title-actions div.search input.search {
                border: none;
                background-color: transparent;
                padding: 0 15px;
            }

            section.com_order-number .title-actions div.search button.submit {
                width: 52px;
                height: 52px;
                display: block;
                border-radius: 10px;
                line-height: 52px;
                text-align: center;
                border: none;
                background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
            }

                section.com_order-number .title-actions div.search button.submit:hover {
                    background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                }

        section.com_order-number .title-actions a.download {
            width: 67px;
            height: 52px;
            display: block;
            border-radius: 10px;
            line-height: 52px;
            text-align: center;
            margin-right: 12px;
            background: #ffffff url(../images/icons/icon_download_black.svg) center center no-repeat;
        }

            section.com_order-number .title-actions a.download:hover {
                background: #ffffff url(../images/icons/icon_download_orange.svg) center center no-repeat;
            }

        section.com_order-number .title-actions a.close {
            color: #F0EDE5;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            display: inline-block;
            margin-left: 20px;
            margin-right: 0;
            text-decoration: none;
        }

        section.com_order-number .title-actions ul.more-actions {
            display: flex;
            flex-direction: row;
            margin: 0 10px;
            padding: 0;
            list-style: none;
            font-size: 16px;
        }

            section.com_order-number .title-actions ul.more-actions li {
                position: relative;
            }

                section.com_order-number .title-actions ul.more-actions li a {
                    display: block;
                    color: #201904;
                    text-decoration: none;
                    line-height: 16px;
                    font-weight: 600;
                }

                    section.com_order-number .title-actions ul.more-actions li a i {
                        margin-left: 10px;
                    }

                section.com_order-number .title-actions ul.more-actions li ul {
                    width: 200px;
                    overflow: hidden;
                    position: absolute;
                    flex-direction: column;
                    background-color: #ffffff;
                    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
                    left: 50%;
                    top: 25px;
                    transform: translateX(-50%);
                    z-index: 10;
                    display: none;
                    border-radius: 10px;
                }

                    section.com_order-number .title-actions ul.more-actions li ul li a {
                        display: block;
                        line-height: 40px;
                        text-align: left;
                        font-size: 18px;
                        padding: 0 25px;
                        text-decoration: none;
                        font-weight: 500;
                    }

                        section.com_order-number .title-actions ul.more-actions li ul li a i {
                            margin-left: 10px;
                            font-weight: bolder;
                        }

                        section.com_order-number .title-actions ul.more-actions li ul li a.cancel {
                            color: #D25D3E;
                            font-weight: 600;
                        }

        section.com_order-number .title-actions a.toggle {
            display: none;
        }

        section.com_order-number .title-actions div.small-device {
            display: none;
        }

    section.com_order-number form div.card.card-product-summary table.product-summary {
        width: 100%;
    }

        section.com_order-number form div.card.card-product-summary table.product-summary thead tr th {
            padding: 8px 10px;
            font-size: 12px;
            text-transform: uppercase;
            color: #7F7F84;
            font-weight: 600;
            text-align: center;
            line-height: 30px;
        }

            section.com_order-number form div.card.card-product-summary table.product-summary thead tr th:nth-child(1) {
                text-align: left;
                width: calc(100% - 300px);
            }

            section.com_order-number form div.card.card-product-summary table.product-summary thead tr th:nth-child(2) {
                width: 60px;
            }

            section.com_order-number form div.card.card-product-summary table.product-summary thead tr th:nth-child(3) {
                width: 90px;
            }

            section.com_order-number form div.card.card-product-summary table.product-summary thead tr th:nth-child(4) {
                width: 110px;
            }

            section.com_order-number form div.card.card-product-summary table.product-summary thead tr th:nth-child(5) {
                width: 120px;
            }

        section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td {
            position: relative;
            padding: 10px 5px;
            text-align: center;
            vertical-align: top;
        }

            section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td img {
                width: 65px;
                height: 65px;
                object-fit: contain;
                border: 1px solid #e3e3e3;
            }

            section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.products-detail {
                display: flex;
                justify-content: flex-start;
                text-align: left;
            }

                section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details {
                    color: #7F7F84;
                    font-size: 12px;
                    line-height: 15px;
                    margin-left: 10px;
                }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details strong {
                        display: block;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 20px;
                        color: #201904;
                    }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details span.qty {
                        display: block;
                    }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details span.add {
                        color: #D25D3E;
                        display: block;
                        font-weight: 600;
                    }

            section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td span.track {
                font-size: 12px;
                color: #7F7F84;
            }

                section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td span.track strong {
                    color: #201904;
                    font-size: 15px;
                    font-weight: 500;
                }

            section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td a.action {
                display: block;
                margin: 0 auto;
                width: 24px;
                height: 24px;
                line-height: 24px;
                display: block;
                color: #7F7F84;
                background: url(../images/icons/three-dots.svg) center center no-repeat;
                transition: 0.3s;
            }

                section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td a.action:hover {
                    background: url(../images/icons/three-dots-hover.svg) center center no-repeat;
                }

            section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.track-staus {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding-left: 0px;
            }

                section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.track {
                    text-align: left;
                    color: #7F7F84;
                }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.track strong {
                        color: #201904;
                    }

                section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status {
                    line-height: 36px;
                    height: 36px;
                    border-radius: 18px;
                    display: block;
                    padding: 0 20px;
                }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.pending {
                        color: #D7A90F;
                        background-color: rgba(244, 195, 27, 0.1);
                    }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.completed {
                        color: #87AC1E;
                        background: rgba(179, 206, 103, 0.1);
                    }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.cancel {
                        color: #7F7F84;
                        background-color: rgba(127, 127, 132, 0.08);
                    }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.shipped {
                        color: #4D6BCB;
                        background-color: rgba(47, 80, 184, 0.1);
                    }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.waiting {
                        color: #4A4A4D;
                        background-color: rgba(32, 25, 4, 0.1);
                    }

            section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action {
                list-style: none;
                margin: 0;
                padding: 0;
                background-color: #ffffff;
                border-radius: 10px;
                box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                position: absolute;
                right: 35px;
                top: 0;
                z-index: 10;
                width: 200px;
                display: none;
            }

                section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li {
                    padding: 5px 10px;
                    position: relative;
                }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li a {
                        display: block;
                        color: #201904;
                        padding: 0 25px;
                        line-height: 43px;
                        border-radius: 8px;
                        text-decoration: none;
                    }

                        section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li a i {
                            margin-left: 10px;
                            font-weight: bolder;
                        }

                        section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li a.cancel {
                            color: #D25D3E;
                            font-weight: 600;
                        }

                        section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li a:hover {
                            background-color: #F0EDE5;
                        }

                    section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul {
                        background: #ffffff;
                        position: absolute;
                        right: -65px;
                        top: 2px;
                        border-radius: 10px;
                        box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                        list-style: none;
                        margin: 0;
                        list-style: none;
                        display: none;
                    }

                        section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status {
                            display: block;
                            color: #201904;
                            line-height: 40px;
                            text-decoration: none;
                            position: relative;
                            padding: 0 10px 0 25px;
                        }

                            section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status::before {
                                content: "";
                                width: 8px;
                                height: 8px;
                                left: 5px;
                                top: 50%;
                                transform: translateY(-50%);
                                border-radius: 50%;
                                background-color: orange;
                                position: absolute;
                            }

                            section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status.shipped::before {
                                background-color: #8FA4E8;
                            }

                            section.com_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status.pending::before {
                                background-color: #F4C31B;
                            }

        section.com_order-number form div.card.card-product-summary table.product-summary tbody tr:nth-of-type(2n+2) {
            border-bottom: 1px solid #F0EDE5;
        }

        section.com_order-number form div.card.card-product-summary table.product-summary tbody tr:last-of-type {
            border-bottom: none;
        }

    section.com_order-number form div.card.card-product-summary .mark {
        display: flex;
        justify-content: flex-end;
        border-top: 1px solid #F0EDE5;
        padding: 16px 15px;
        background: transparent;
    }

        section.com_order-number form div.card.card-product-summary .mark a {
            display: block;
            color: #ffffff;
            background: #D25D3E;
            text-decoration: none;
            line-height: 52px;
            padding: 0 25px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 700;
        }

            section.com_order-number form div.card.card-product-summary .mark a:hover {
                background: #C64F2F;
            }

    section.com_order-number form div.card.card-timeline ul {
        list-style: none;
        margin: 10px;
        padding: 0;
    }

        section.com_order-number form div.card.card-timeline ul li {
            padding-bottom: 20px;
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }

            section.com_order-number form div.card.card-timeline ul li span {
                color: #7F7F84;
                font-size: 13px;
                font-weight: 400;
                display: block;
                line-height: 20px;
            }

                section.com_order-number form div.card.card-timeline ul li span strong {
                    display: block;
                    font-size: 17px;
                    font-weight: 500;
                    color: #201904;
                    line-height: 20px;
                }

                    section.com_order-number form div.card.card-timeline ul li span strong em {
                        color: #D25D3E;
                        font-style: normal;
                    }

            section.com_order-number form div.card.card-timeline ul li::before {
                position: absolute;
                content: "";
                width: 10px;
                height: 10px;
                display: block;
                background-color: #F0EDE5;
                left: 0;
                top: 5px;
                border-radius: 50%;
            }

            section.com_order-number form div.card.card-timeline ul li::after {
                background-color: #F0EDE5;
                width: 1px;
                left: 5px;
                top: 12px;
                bottom: 0;
                position: absolute;
                content: "";
            }

            section.com_order-number form div.card.card-timeline ul li:last-of-type {
                padding-bottom: 0;
            }

    section.com_order-number form div.card.card-order-summary {
        overflow: hidden;
    }

        section.com_order-number form div.card.card-order-summary .card-body {
            display: flex;
            flex-wrap: wrap;
        }

            section.com_order-number form div.card.card-order-summary .card-body label {
                width: 45%;
                font-size: 12px;
                font-weight: 600;
                line-height: 25px;
                color: #7F7F84;
                display: block;
                margin-bottom: 10px;
            }

                section.com_order-number form div.card.card-order-summary .card-body label span {
                    text-transform: uppercase;
                }

                section.com_order-number form div.card.card-order-summary .card-body label strong {
                    display: block;
                    color: #201904;
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 16px;
                }

                section.com_order-number form div.card.card-order-summary .card-body label:last-of-type {
                    width: 100%;
                }

            section.com_order-number form div.card.card-order-summary .card-body div.track-staus {
                width: 55%;
                display: flex;
                justify-content: flex-end;
            }

                section.com_order-number form div.card.card-order-summary .card-body div.track-staus span.status {
                    line-height: 36px;
                    height: 36px;
                    border-radius: 18px;
                    display: block;
                    padding: 0 15px;
                }

                    section.com_order-number form div.card.card-order-summary .card-body div.track-staus span.status.pending {
                        color: #D7A90F;
                        background-color: rgba(244, 195, 27, 0.1);
                    }

                    section.com_order-number form div.card.card-order-summary .card-body div.track-staus span.status.completed {
                        color: #87AC1E;
                        background: rgba(179, 206, 103, 0.1);
                    }

                    section.com_order-number form div.card.card-order-summary .card-body div.track-staus span.status.cancel {
                        color: #7F7F84;
                        background-color: rgba(127, 127, 132, 0.08);
                    }

                    section.com_order-number form div.card.card-order-summary .card-body div.track-staus span.status.shipped {
                        color: #4D6BCB;
                        background-color: rgba(47, 80, 184, 0.1);
                    }

                    section.com_order-number form div.card.card-order-summary .card-body div.track-staus span.status.waiting {
                        color: #4A4A4D;
                        background-color: rgba(32, 25, 4, 0.1);
                    }

        section.com_order-number form div.card.card-order-summary div.total {
            width: 100%;
            background-color: #B3CE67;
            color: #ffffff;
            font-size: 20px;
            line-height: 25px;
            font-weight: 500;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
        }

    section.com_order-number form div.card.card-customer .order {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        height: 64px;
        align-items: center;
        margin-bottom: 30px;
    }

        section.com_order-number form div.card.card-customer .order img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            border: 1px solid #e3e3e3;
        }

        section.com_order-number form div.card.card-customer .order span {
            color: #7F7F84;
            display: block;
            padding: 0 15px;
            font-size: 12px;
            font-weight: 500;
        }

            section.com_order-number form div.card.card-customer .order span strong {
                display: block;
                color: #201904;
                font-size: 19px;
                font-weight: 600;
            }

                section.com_order-number form div.card.card-customer .order span strong em {
                    font-style: normal;
                    font-size: 12px;
                    font-weight: 500;
                    color: #7F7F84;
                }

    section.com_order-number form div.card.card-customer .order-detail label {
        font-size: 16px;
        font-weight: 600;
        line-height: 25px;
        color: #201904;
        margin-bottom: 10px;
        display: block;
    }

        section.com_order-number form div.card.card-customer .order-detail label span {
            display: block;
            font-size: 12px;
            line-height: 16px;
            font-weight: 600;
            color: #7F7F84;
            text-transform: uppercase;
        }

            section.com_order-number form div.card.card-customer .order-detail label span.same {
                font-size: 16px;
                font-weight: 500;
                text-transform: none;
            }

    section.com_order-number form div.card.card-notes {
        font-size: 16px;
        font-weight: 600;
    }

        section.com_order-number form div.card.card-notes textarea {
            border: 1px solid #f0ede5;
            width: 100%;
            height: 100px;
            padding: 5px;
            line-height: 20px;
            font-weight: 500;
        }

        section.com_order-number form div.card.card-notes button.send-notes {
            border: none;
            background: none;
            color: rgba(210, 93, 62, 0.5);
            transition: 0.3s;
        }

            section.com_order-number form div.card.card-notes button.send-notes:hover {
                color: #d25d3e;
            }

        section.com_order-number form div.card.card-notes ul {
            list-style: none;
            margin: 10px 0;
            padding: 0;
        }

            section.com_order-number form div.card.card-notes ul li {
                padding-bottom: 20px;
                position: relative;
                padding-left: 20px;
                margin-bottom: 5px;
            }

                section.com_order-number form div.card.card-notes ul li span {
                    color: #7F7F84;
                    font-size: 13px;
                    font-weight: 400;
                    display: block;
                    line-height: 20px;
                }

                    section.com_order-number form div.card.card-notes ul li span strong {
                        display: block;
                        font-size: 17px;
                        font-weight: 500;
                        color: #201904;
                        line-height: 20px;
                    }

                        section.com_order-number form div.card.card-notes ul li span strong em {
                            color: #D25D3E;
                            font-style: normal;
                        }

                section.com_order-number form div.card.card-notes ul li::before {
                    position: absolute;
                    content: "";
                    width: 10px;
                    height: 10px;
                    display: block;
                    background-color: #F0EDE5;
                    left: 0;
                    top: 5px;
                    border-radius: 50%;
                }

                section.com_order-number form div.card.card-notes ul li::after {
                    background-color: #F0EDE5;
                    width: 1px;
                    left: 5px;
                    top: 12px;
                    bottom: 0;
                    position: absolute;
                    content: "";
                }

                section.com_order-number form div.card.card-notes ul li:last-of-type {
                    padding-bottom: 0;
                }

section.com_orders {
    padding-bottom: 50px;
    position: relative;
}

    section.com_orders .title-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

        section.com_orders .title-actions div.date {
            display: flex;
            align-items: center;
            height: 52px;
            padding: 0 20px;
        }

            section.com_orders .title-actions div.date span {
                display: block;
                font-size: 16px;
                font-weight: 600;
                margin-right: 10px;
            }

            section.com_orders .title-actions div.date button {
                width: 24px;
                height: 24px;
                border: none;
                background: none;
            }

            section.com_orders .title-actions div.date img {
                cursor: pointer;
            }

        section.com_orders .title-actions form {
            padding: 0;
        }

            section.com_orders .title-actions form div.search {
                display: flex;
                flex-direction: row;
                height: 52px;
                border-radius: 10px;
                overflow: hidden;
                background-color: #ffffff;
                position: relative;
            }

                section.com_orders .title-actions form div.search input.search {
                    border: none;
                    background-color: transparent;
                    padding: 0 15px;
                    width: calc(100% - 52px);
                }

                section.com_orders .title-actions form div.search button.submit {
                    width: 52px;
                    height: 52px;
                    display: block;
                    border-radius: 10px;
                    line-height: 52px;
                    text-align: center;
                    border: none;
                    background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
                }

                    section.com_orders .title-actions form div.search button.submit:hover {
                        background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                    }

        section.com_orders .title-actions a.download {
            width: 67px;
            min-width: 67px;
            height: 52px;
            display: block;
            border-radius: 10px;
            line-height: 52px;
            text-align: center;
            margin-left: 12px;
            background: #ffffff url(../images/icons/icon_download2_black.svg) center center no-repeat;
            background-size: 20px 20px;
        }

            section.com_orders .title-actions a.download:hover {
                background: #ffffff url(../images/icons/icon_download2_orange.svg) center center no-repeat;
                background-size: 20px 20px;
            }

        section.com_orders .title-actions a.close {
            color: #7F7F84;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            display: inline-block;
            margin-left: 20px;
            margin-right: 0;
            text-decoration: none;
        }

        section.com_orders .title-actions ul.more-actions {
            display: flex;
            flex-direction: row;
            margin: 0 10px;
            padding: 0;
            list-style: none;
            font-size: 16px;
        }

            section.com_orders .title-actions ul.more-actions li {
                position: relative;
            }

                section.com_orders .title-actions ul.more-actions li a {
                    display: block;
                    color: #201904;
                    text-decoration: none;
                    line-height: 16px;
                }

                    section.com_orders .title-actions ul.more-actions li a i {
                        margin-left: 10px;
                    }

                section.com_orders .title-actions ul.more-actions li ul {
                    width: 200px;
                    overflow: hidden;
                    position: absolute;
                    flex-direction: column;
                    background-color: #ffffff;
                    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
                    left: 50%;
                    top: 25px;
                    transform: translateX(-50%);
                    z-index: 10;
                    display: none;
                    border-radius: 10px;
                }

                    section.com_orders .title-actions ul.more-actions li ul li a {
                        display: block;
                        line-height: 40px;
                        text-align: left;
                        font-size: 18px;
                        padding: 0 25px;
                        text-decoration: none;
                        font-weight: 500;
                    }

                        section.com_orders .title-actions ul.more-actions li ul li a i {
                            margin-left: 10px;
                            font-weight: bolder;
                        }

                        section.com_orders .title-actions ul.more-actions li ul li a.cancel {
                            color: #D25D3E;
                            font-weight: 600;
                        }

        section.com_orders .title-actions a.toggle {
            display: none;
        }

        section.com_orders .title-actions div.small-device {
            display: none;
        }

    section.com_orders form ul.allOrders {
        margin-bottom: 15px;
    }

        section.com_orders form ul.allOrders li.nav-item a.nav-link {
            font-size: 20px;
            font-weight: 600;
            line-height: 25px;
            color: #201904;
        }

            section.com_orders form ul.allOrders li.nav-item a.nav-link.active {
                color: #D25D3E;
                text-decoration: underline;
            }

    section.com_orders form div.card.card-orders table.all-orders {
        width: 100%;
    }

        section.com_orders form div.card.card-orders table.all-orders thead tr th {
            padding: 10px;
            font-size: 12px;
            text-transform: uppercase;
            color: #7F7F84;
            font-weight: 600;
            text-align: left;
            line-height: 15px;
        }

            section.com_orders form div.card.card-orders table.all-orders thead tr th:nth-child(1) {
                width: 180px;
            }

            section.com_orders form div.card.card-orders table.all-orders thead tr th:nth-child(2) {
                width: 136px;
            }

            section.com_orders form div.card.card-orders table.all-orders thead tr th:nth-child(3) {
                width: 167px;
            }

            section.com_orders form div.card.card-orders table.all-orders thead tr th:nth-child(4) {
                width: 109px;
            }

            section.com_orders form div.card.card-orders table.all-orders thead tr th:nth-child(5) {
                width: calc(100% - 769px);
            }

            section.com_orders form div.card.card-orders table.all-orders thead tr th:nth-child(6) {
                text-align: right;
                width: 177px;
            }

        section.com_orders form div.card.card-orders table.all-orders tbody tr {
            border-bottom: 1px solid #F0EDE5;
        }

            section.com_orders form div.card.card-orders table.all-orders tbody tr td {
                padding: 15px 5px;
                text-align: left;
                font-size: 16px;
                font-weight: 400;
                position: relative;
            }

                section.com_orders form div.card.card-orders table.all-orders tbody tr td input.fields {
                    display: block;
                    border: none;
                    height: 34px;
                    background-color: #F6F4F0;
                    padding: 0 15px;
                    border-radius: 6px;
                    width: 100%;
                }

                section.com_orders form div.card.card-orders table.all-orders tbody tr td select.fields {
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    width: 100%;
                    padding: 0 15px 0 0;
                    border-radius: 6px;
                    border: none;
                    height: 34px;
                    background: #F6F4F0 url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
                    background-size: 12px 12px;
                }

                section.com_orders form div.card.card-orders table.all-orders tbody tr td .date {
                    position: relative;
                    background-color: #F6F4F0;
                    height: 34px;
                    padding: 0;
                    border-radius: 6px;
                    display: block;
                    width: 100%;
                    z-index: 0;
                }

                    section.com_orders form div.card.card-orders table.all-orders tbody tr td .date input.fields {
                        display: block;
                        border: none;
                        height: 34px;
                        background-color: #F6F4F0;
                        padding: 0 15px;
                        border-radius: 6px;
                        width: 82%;
                    }

                    section.com_orders form div.card.card-orders table.all-orders tbody tr td .date img {
                        width: 20px;
                        height: 20px;
                        position: absolute;
                        right: 10px;
                        top: 50%;
                        transform: translateY(-50%);
                        z-index: 2;
                        cursor: pointer;
                    }

                section.com_orders form div.card.card-orders table.all-orders tbody tr td strong {
                    font-weight: 500;
                }

                section.com_orders form div.card.card-orders table.all-orders tbody tr td a {
                    color: #201904;
                    display: table;
                    text-decoration: none;
                }

                section.com_orders form div.card.card-orders table.all-orders tbody tr td span {
                    font-size: 14px;
                    line-height: 36px;
                    height: 36px;
                    border-radius: 18px;
                    padding: 8px 18px;
                    text-align: center;
                }

                    section.com_orders form div.card.card-orders table.all-orders tbody tr td span.pending {
                        color: #D7A90F;
                        background-color: rgba(244, 195, 27, 0.1);
                    }

                    section.com_orders form div.card.card-orders table.all-orders tbody tr td span.completed {
                        color: #87AC1E;
                        background: rgba(179, 206, 103, 0.1);
                    }

                    section.com_orders form div.card.card-orders table.all-orders tbody tr td span.cancel {
                        color: #7F7F84;
                        background-color: rgba(127, 127, 132, 0.08);
                    }

                    section.com_orders form div.card.card-orders table.all-orders tbody tr td span.shipped {
                        color: #4D6BCB;
                        background-color: rgba(47, 80, 184, 0.1);
                    }

                    section.com_orders form div.card.card-orders table.all-orders tbody tr td span.waiting {
                        color: #ffffff;
                        padding: 8px 30px 8px 15px;
                        background: #201904 url(../images/icons/icon_select_white.svg) 140px center no-repeat;
                        background-size: 13px 13px;
                        cursor: pointer;
                    }

                section.com_orders form div.card.card-orders table.all-orders tbody tr td:last-of-type {
                    text-align: right;
                }

                    section.com_orders form div.card.card-orders table.all-orders tbody tr td:last-of-type ul {
                        position: absolute;
                        background-color: #ffffff;
                        left: 50%;
                        top: 48px;
                        transform: translateX(-50%);
                        border-radius: 10px;
                        box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                        overflow: hidden;
                        width: auto;
                        text-align: left;
                        z-index: 5;
                        display: none;
                    }

                        section.com_orders form div.card.card-orders table.all-orders tbody tr td:last-of-type ul a {
                            display: block;
                            line-height: 40px;
                            padding: 0 20px 0 40px;
                        }

                            section.com_orders form div.card.card-orders table.all-orders tbody tr td:last-of-type ul a.approve {
                                background: url(../images/icons/icon_approve_green.svg) 15px center no-repeat;
                            }

                            section.com_orders form div.card.card-orders table.all-orders tbody tr td:last-of-type ul a.reject {
                                background: url(../images/icons/icon_reject_red.svg) 15px center no-repeat;
                            }

            section.com_orders form div.card.card-orders table.all-orders tbody tr:first-of-type, section.com_orders form div.card.card-orders table.all-orders tbody tr:last-of-type {
                border-bottom-color: transparent;
            }

    section.com_orders form div.card.card-product-summary table.product-summary {
        width: 100%;
    }

        section.com_orders form div.card.card-product-summary table.product-summary thead tr th {
            padding: 8px 10px;
            font-size: 12px;
            text-transform: uppercase;
            color: #7F7F84;
            font-weight: 600;
            text-align: center;
            line-height: 30px;
        }

            section.com_orders form div.card.card-product-summary table.product-summary thead tr th:nth-child(1) {
                text-align: left;
                width: calc(100% - 300px);
            }

            section.com_orders form div.card.card-product-summary table.product-summary thead tr th:nth-child(2) {
                width: 60px;
            }

            section.com_orders form div.card.card-product-summary table.product-summary thead tr th:nth-child(3) {
                width: 90px;
            }

            section.com_orders form div.card.card-product-summary table.product-summary thead tr th:nth-child(4) {
                width: 110px;
            }

            section.com_orders form div.card.card-product-summary table.product-summary thead tr th:nth-child(5) {
                width: 40px;
            }

        section.com_orders form div.card.card-product-summary table.product-summary tbody tr td {
            position: relative;
            padding: 10px 5px;
            text-align: center;
            vertical-align: top;
        }

            section.com_orders form div.card.card-product-summary table.product-summary tbody tr td img {
                width: 65px;
            }

            section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.products-detail {
                display: flex;
                justify-content: flex-start;
                text-align: left;
            }

                section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details {
                    color: #7F7F84;
                    font-size: 12px;
                    line-height: 15px;
                }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details strong {
                        display: block;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 20px;
                        color: #201904;
                    }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details span.qty {
                        display: block;
                    }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details span.add {
                        color: #D25D3E;
                        display: block;
                        font-weight: 600;
                    }

            section.com_orders form div.card.card-product-summary table.product-summary tbody tr td span.track {
                font-size: 12px;
                color: #7F7F84;
            }

                section.com_orders form div.card.card-product-summary table.product-summary tbody tr td span.track strong {
                    color: #201904;
                    font-size: 15px;
                    font-weight: 500;
                }

            section.com_orders form div.card.card-product-summary table.product-summary tbody tr td a.action {
                display: block;
                margin: 0 auto;
                width: 24px;
                height: 24px;
                line-height: 24px;
                display: block;
                color: #7F7F84;
                background: url(../images/icons/three-dots.svg) center center no-repeat;
                transition: 0.3s;
            }

                section.com_orders form div.card.card-product-summary table.product-summary tbody tr td a.action:hover {
                    background: url(../images/icons/three-dots-hover.svg) center center no-repeat;
                }

            section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding-left: 65px;
            }

                section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.track {
                    text-align: left;
                    color: #7F7F84;
                }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.track strong {
                        color: #201904;
                    }

                section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status {
                    line-height: 36px;
                    height: 36px;
                    border-radius: 18px;
                    display: block;
                    padding: 0 20px;
                }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.pending {
                        color: #D7A90F;
                        background-color: rgba(244, 195, 27, 0.1);
                    }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.completed {
                        color: #87AC1E;
                        background: rgba(179, 206, 103, 0.1);
                    }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.cancel {
                        color: #7F7F84;
                        background-color: rgba(127, 127, 132, 0.08);
                    }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.shipped {
                        color: #4D6BCB;
                        background-color: rgba(47, 80, 184, 0.1);
                    }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.waiting {
                        color: #4A4A4D;
                        background-color: rgba(32, 25, 4, 0.1);
                    }

            section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action {
                list-style: none;
                margin: 0;
                padding: 0;
                background-color: #ffffff;
                border-radius: 10px;
                box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                position: absolute;
                right: 0;
                top: 0;
                z-index: 10;
                width: 200px;
                display: none;
            }

                section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li {
                    padding: 5px 10px;
                    position: relative;
                }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li a {
                        display: block;
                        color: #201904;
                        padding: 0 25px;
                        line-height: 43px;
                        border-radius: 8px;
                        text-decoration: none;
                    }

                        section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li a i {
                            margin-left: 10px;
                            font-weight: bolder;
                        }

                        section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li a.cancel {
                            color: #D25D3E;
                            font-weight: 600;
                        }

                        section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li a:hover {
                            background-color: #F0EDE5;
                        }

                    section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul {
                        background: #ffffff;
                        position: absolute;
                        right: -110px;
                        top: 10px;
                        border-radius: 10px;
                        box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                        list-style: none;
                        margin: 0;
                        list-style: none;
                        display: none;
                    }

                        section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status {
                            display: block;
                            color: #201904;
                            line-height: 40px;
                            text-decoration: none;
                            position: relative;
                            padding: 0 10px 0 25px;
                        }

                            section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status::before {
                                content: "";
                                width: 8px;
                                height: 8px;
                                left: 5px;
                                top: 50%;
                                transform: translateY(-50%);
                                border-radius: 50%;
                                background-color: orange;
                                position: absolute;
                            }

                            section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status.shipped::before {
                                background-color: #8FA4E8;
                            }

                            section.com_orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status.pending::before {
                                background-color: #F4C31B;
                            }

        section.com_orders form div.card.card-product-summary table.product-summary tbody tr:nth-of-type(2n+2) {
            border-bottom: 1px solid #F0EDE5;
        }

        section.com_orders form div.card.card-product-summary table.product-summary tbody tr:last-of-type {
            border-bottom: none;
        }

    section.com_orders form div.card.card-product-summary .mark {
        display: flex;
        justify-content: flex-end;
        border-top: 1px solid #F0EDE5;
        padding: 16px 15px;
        background: transparent;
    }

        section.com_orders form div.card.card-product-summary .mark a {
            display: block;
            color: #ffffff;
            background: #D25D3E;
            text-decoration: none;
            line-height: 52px;
            padding: 0 25px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 700;
        }

            section.com_orders form div.card.card-product-summary .mark a:hover {
                background: #C64F2F;
            }

    section.com_orders form div.card.card-timeline ul {
        list-style: none;
        margin: 10px;
        padding: 0;
    }

        section.com_orders form div.card.card-timeline ul li {
            padding-bottom: 20px;
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }

            section.com_orders form div.card.card-timeline ul li span {
                color: #7F7F84;
                font-size: 13px;
                font-weight: 400;
                display: block;
                line-height: 20px;
            }

                section.com_orders form div.card.card-timeline ul li span strong {
                    display: block;
                    font-size: 17px;
                    font-weight: 500;
                    color: #201904;
                    line-height: 20px;
                }

                    section.com_orders form div.card.card-timeline ul li span strong em {
                        color: #D25D3E;
                        font-style: normal;
                    }

            section.com_orders form div.card.card-timeline ul li::before {
                position: absolute;
                content: "";
                width: 10px;
                height: 10px;
                display: block;
                background-color: #F0EDE5;
                left: 0;
                top: 5px;
                border-radius: 50%;
            }

            section.com_orders form div.card.card-timeline ul li::after {
                background-color: #F0EDE5;
                width: 1px;
                left: 5px;
                top: 12px;
                bottom: 0;
                position: absolute;
                content: "";
            }

            section.com_orders form div.card.card-timeline ul li:last-of-type {
                padding-bottom: 0;
            }

    section.com_orders form div.card.card-order-summary {
        overflow: hidden;
    }

        section.com_orders form div.card.card-order-summary label {
            font-size: 12px;
            font-weight: 600;
            line-height: 25px;
            color: #7F7F84;
            display: block;
            margin-bottom: 10px;
        }

            section.com_orders form div.card.card-order-summary label strong {
                display: block;
                color: #201904;
                font-size: 16px;
                font-weight: 500;
                line-height: 16px;
            }

        section.com_orders form div.card.card-order-summary div.total {
            background-color: #B3CE67;
            color: #ffffff;
            font-size: 20px;
            line-height: 25px;
            font-weight: 500;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
        }

    section.com_orders form div.card.card-customer .order {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        height: 64px;
        align-items: center;
        margin-bottom: 30px;
    }

        section.com_orders form div.card.card-customer .order img {
            width: 64px;
            height: 64px;
        }

        section.com_orders form div.card.card-customer .order span {
            color: #7F7F84;
            display: block;
            padding: 0 15px;
            font-size: 12px;
            font-weight: 500;
        }

            section.com_orders form div.card.card-customer .order span strong {
                display: block;
                color: #201904;
                font-size: 19px;
                font-weight: 600;
            }

                section.com_orders form div.card.card-customer .order span strong em {
                    font-style: normal;
                    font-size: 12px;
                    font-weight: 500;
                    color: #7F7F84;
                }

    section.com_orders form div.card.card-customer .order-detail label {
        font-size: 16px;
        font-weight: 600;
        line-height: 25px;
        color: #201904;
        margin-bottom: 10px;
    }

        section.com_orders form div.card.card-customer .order-detail label span {
            display: block;
            font-size: 12px;
            line-height: 16px;
            font-weight: 600;
            color: #7F7F84;
        }

            section.com_orders form div.card.card-customer .order-detail label span.same {
                font-size: 16px;
                font-weight: 500;
            }

    section.com_orders form div.card.card-notes {
        font-size: 16px;
        font-weight: 600;
    }

        section.com_orders form div.card.card-notes textarea {
            border: none;
            width: 100%;
            height: 100px;
            padding: 0;
            line-height: 20px;
            font-weight: 500;
        }

        section.com_orders form div.card.card-notes button.send-notes {
            border: none;
            background: none;
            color: rgba(210, 93, 62, 0.5);
            transition: 0.3s;
            height: 50px;
        }

            section.com_orders form div.card.card-notes button.send-notes:hover {
                color: #d25d3e;
            }

        section.com_orders form div.card.card-notes ul {
            list-style: none;
            margin: 10px 0;
            padding: 0;
        }

            section.com_orders form div.card.card-notes ul li {
                padding-bottom: 20px;
                position: relative;
                padding-left: 20px;
                margin-bottom: 5px;
            }

                section.com_orders form div.card.card-notes ul li span {
                    color: #7F7F84;
                    font-size: 13px;
                    font-weight: 400;
                    display: block;
                    line-height: 20px;
                }

                    section.com_orders form div.card.card-notes ul li span strong {
                        display: block;
                        font-size: 17px;
                        font-weight: 500;
                        color: #201904;
                        line-height: 20px;
                    }

                        section.com_orders form div.card.card-notes ul li span strong em {
                            color: #D25D3E;
                            font-style: normal;
                        }

                section.com_orders form div.card.card-notes ul li::before {
                    position: absolute;
                    content: "";
                    width: 10px;
                    height: 10px;
                    display: block;
                    background-color: #F0EDE5;
                    left: 0;
                    top: 5px;
                    border-radius: 50%;
                }

                section.com_orders form div.card.card-notes ul li::after {
                    background-color: #F0EDE5;
                    width: 1px;
                    left: 5px;
                    top: 12px;
                    bottom: 0;
                    position: absolute;
                    content: "";
                }

                section.com_orders form div.card.card-notes ul li:last-of-type {
                    padding-bottom: 0;
                }

    section.com_orders div.freshdesk {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 584px;
        border-radius: 10px;
        background-color: #ffffff;
    }

        section.com_orders div.freshdesk p {
            margin: 30px 0;
            text-align: center;
            padding: 0;
            width: 35%;
            font-size: 28px;
            font-weight: 600;
            line-height: 28px;
            color: #7F7F84;
        }

section.com_product-set-group-view {
    padding: 30px 0;
}

    section.com_product-set-group-view .title-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

        section.com_product-set-group-view .title-actions div.search {
            display: flex;
            flex-direction: row;
            height: 52px;
            border-radius: 10px;
            overflow: hidden;
            background-color: #ffffff;
            width: 100%;
        }

            section.com_product-set-group-view .title-actions div.search input.search {
                border: none;
                background-color: transparent;
                padding: 0 15px;
                width: calc(100% - 52px);
            }

            section.com_product-set-group-view .title-actions div.search button.submit {
                width: 52px;
                height: 52px;
                display: block;
                border-radius: 10px;
                line-height: 52px;
                text-align: center;
                border: none;
                background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
            }

                section.com_product-set-group-view .title-actions div.search button.submit:hover {
                    background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                }

        section.com_product-set-group-view .title-actions .other-actions {
            display: flex;
            width: 100%;
            justify-content: flex-end;
        }

            section.com_product-set-group-view .title-actions .other-actions a.toggle {
                width: 52px;
                height: 52px;
                display: none;
                text-decoration: none;
                border-radius: 10px;
                background: #ffffff url(../images/icons/btn_action_black.svg) center center no-repeat;
                display: none;
            }

            section.com_product-set-group-view .title-actions .other-actions div.toggle-show {
                display: flex;
                width: 118px;
                height: 52px;
                order: 1;
                display: none;
            }

                section.com_product-set-group-view .title-actions .other-actions div.toggle-show a {
                    width: 55px;
                    height: 52px;
                    display: block;
                    border-radius: 10px;
                    margin: 0 5px;
                    color: #201904;
                }

                    section.com_product-set-group-view .title-actions .other-actions div.toggle-show a span {
                        display: none;
                        line-height: 40px;
                        padding: 0 15px 0 40px;
                    }

                    section.com_product-set-group-view .title-actions .other-actions div.toggle-show a.download {
                        background-image: url(../images/icons/icon_export_black.svg);
                        background-position: center center;
                        background-repeat: no-repeat;
                        background-color: #ffffff;
                    }

                        section.com_product-set-group-view .title-actions .other-actions div.toggle-show a.download:hover {
                            background-image: url(../images/icons/icon_export_orange.svg);
                        }

                    section.com_product-set-group-view .title-actions .other-actions div.toggle-show a.add {
                        background-image: url(../images/icons/icon_download_black.svg);
                        background-position: center center;
                        background-repeat: no-repeat;
                        background-color: #ffffff;
                    }

                        section.com_product-set-group-view .title-actions .other-actions div.toggle-show a.add:hover {
                            background-image: url(../images/icons/icon_download_orange.svg);
                        }

            section.com_product-set-group-view .title-actions .other-actions a.main-btn {
                padding: 0 13px;
            }

                section.com_product-set-group-view .title-actions .other-actions a.main-btn .fa {
                    display: none;
                }

        section.com_product-set-group-view .title-actions .main-btn {
            width: 100%;
        }

    section.com_product-set-group-view div.users {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        height: 32px;
    }

        section.com_product-set-group-view div.users .user-box {
            position: relative;
            display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
        }

            section.com_product-set-group-view div.users .user-box div.counts {
                width: 32px;
                height: 32px;
                display: block;
                background-color: #ffffff;
                border-radius: 50%;
                border: 1.5px solid #F0EDE5;
                text-align: center;
                line-height: 30px;
                font-size: 14px;
                color: #4A4A4D;
                font-weight: 500;
                margin-right: 5px;
            }

            section.com_product-set-group-view div.users .user-box .image {
                display: block;
                overflow: hidden;
                border-radius: 50%;
                width: 32px;
                height: 32px;
                background-size: 32px 32px;
                transition: 0.3s;
                margin-right: 5px;
            }

                section.com_product-set-group-view div.users .user-box .image a.remove {
                    width: 32px;
                    height: 32px;
                    line-height: 32px;
                    text-align: center;
                    display: block;
                    background-color: rgba(210, 93, 62, 0.5);
                    display: none;
                    transition: 0.3s;
                    opacity: 0;
                }

                section.com_product-set-group-view div.users .user-box .image:hover a.remove {
                    display: block;
                    opacity: 1;
                }

        section.com_product-set-group-view div.users .action a {
            width: 32px;
            height: 32px;
            background: url(../images/icons/icon_add_users.png) center center no-repeat;
            display: block;
            transition: 0.6s;
        }

            section.com_product-set-group-view div.users .action a:hover {
                background: url(../images/icons/icon_add_users_orange.svg) center center no-repeat;
            }

    section.com_product-set-group-view aside div.filter-slider div.title {
        display: flex;
        justify-content: space-between;
        height: 25px;
        align-items: center;
        margin-bottom: 10px;
    }

        section.com_product-set-group-view aside div.filter-slider div.title span {
            color: #201904;
            font-size: 18px;
            line-height: 25px;
            font-weight: 600;
        }

        section.com_product-set-group-view aside div.filter-slider div.title a {
            display: block;
            color: #201904;
            font-weight: 800;
            font-size: 22px;
            text-decoration: none;
            width: 25px;
            height: 25px;
            line-height: 25px;
            text-align: center;
        }

    section.com_product-set-group-view aside div.filter-slider div.price-slider {
        height: 0;
        overflow: hidden;
        width: 100%;
        padding: 0 10px;
        transition: 0.5s all;
    }

        section.com_product-set-group-view aside div.filter-slider div.price-slider .values {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

            section.com_product-set-group-view aside div.filter-slider div.price-slider .values input[type=text] {
                border: none;
                display: block;
                width: 100px;
                background-color: transparent;
                color: #4A4A4D;
                font-size: 15px;
                font-weight: 400;
                line-height: 37px;
            }

                section.com_product-set-group-view aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                    text-align: right;
                }

        section.com_product-set-group-view aside div.filter-slider div.price-slider .slider-box {
            width: 100%;
            margin: 15px auto;
        }

        section.com_product-set-group-view aside div.filter-slider div.price-slider .ui-slider {
            margin-top: 20px;
            height: 5px;
            position: relative;
            border: none;
            background: #C6C5C5;
        }

        section.com_product-set-group-view aside div.filter-slider div.price-slider .ui-state-default, section.com_product-set-group-view aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.com_product-set-group-view aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
            background: #ffffff;
            border-radius: 50%;
            outline: none;
            border: none;
            position: absolute;
            top: -9px;
        }

        section.com_product-set-group-view aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
            background: #D25D3E;
            position: relative;
            padding: 3px;
        }

        section.com_product-set-group-view aside div.filter-slider div.price-slider #labelHolder {
            height: 5px;
            position: relative;
            border: none;
        }

        section.com_product-set-group-view aside div.filter-slider div.price-slider span {
            position: absolute;
            width: 1.2em;
            height: 1.2em;
            margin-left: -0.6em;
            text-align: center;
        }

    section.com_product-set-group-view aside div.filter-slider.active div.price-slider,
    section.com_product-set-group-view aside div.filter-slider .filter.active div.price-slider {
        height: 75px;
    }

    section.com_product-set-group-view aside div.filter {
        margin-bottom: 20px;
    }

        section.com_product-set-group-view aside div.filter div.title {
            display: flex;
            justify-content: space-between;
            height: 25px;
            align-items: center;
            margin-bottom: 10px;
        }

            section.com_product-set-group-view aside div.filter div.title span {
                color: #201904;
                font-size: 18px;
                line-height: 25px;
                font-weight: 600;
            }

            section.com_product-set-group-view aside div.filter div.title a {
                display: block;
                color: #201904;
                font-weight: 800;
                font-size: 22px;
                text-decoration: none;
                width: 25px;
                height: 25px;
                line-height: 25px;
                text-align: center;
            }

        section.com_product-set-group-view aside div.filter .filter-checkbox {
            height: 0;
            overflow: hidden;
            transition: 0.5s all;
        }

            section.com_product-set-group-view aside div.filter .filter-checkbox ul {
                margin: 0;
                padding: 0;
                list-style: none;
                min-height: 185px;
                max-height: 185px;
                overflow-y: auto;
            }

                section.com_product-set-group-view aside div.filter .filter-checkbox ul li label {
                    line-height: 37px;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    font-size: 15px;
                    font-weight: 400;
                    color: #4A4A4D;
                    align-items: center;
                    margin: 0;
                }

                section.com_product-set-group-view aside div.filter .filter-checkbox ul.active {
                    display: block;
                }

        section.com_product-set-group-view aside div.filter.active .filter-checkbox {
            height: 185px;
        }

    section.com_product-set-group-view ul.product-view {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

        section.com_product-set-group-view ul.product-view li div.search {
            display: flex;
            flex-direction: row;
            height: 52px;
            border-radius: 10px;
            overflow: hidden;
            background-color: #ffffff;
            margin-right: 12px;
            width: 100%;
        }

            section.com_product-set-group-view ul.product-view li div.search input.search {
                border: none;
                background-color: transparent;
                padding: 0 15px;
                width: calc(100% - 52px);
            }

            section.com_product-set-group-view ul.product-view li div.search button.submit {
                width: 52px;
                height: 52px;
                display: block;
                border-radius: 10px;
                line-height: 52px;
                text-align: center;
                border: none;
                background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
            }

                section.com_product-set-group-view ul.product-view li div.search button.submit:hover {
                    background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                }

        section.com_product-set-group-view ul.product-view li .grid-list-style {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
        }

            section.com_product-set-group-view ul.product-view li .grid-list-style input[type=radio] {
                position: relative;
                width: 30px;
                height: 30px;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                cursor: pointer;
                margin: 0 5px;
                transition: all 0.6s ease-out;
            }

                section.com_product-set-group-view ul.product-view li .grid-list-style input[type=radio]::before {
                    content: "";
                    display: block;
                    width: 30px;
                    height: 30px;
                    position: absolute;
                    left: 0;
                    top: 0;
                    z-index: 1;
                }

                section.com_product-set-group-view ul.product-view li .grid-list-style input[type=radio].grid::before {
                    background: url(../images/icons/btn_grid_black.svg) center center no-repeat;
                }

                section.com_product-set-group-view ul.product-view li .grid-list-style input[type=radio].grid:checked::before {
                    background: url(../images/icons/btn_grid_orange.svg) center center no-repeat;
                }

                section.com_product-set-group-view ul.product-view li .grid-list-style input[type=radio].list::before {
                    background: url(../images/icons/btn_list_black.svg) center center no-repeat;
                }

                section.com_product-set-group-view ul.product-view li .grid-list-style input[type=radio].list:checked::before {
                    background: url(../images/icons/btn_list_orange.svg) center center no-repeat;
                }

        section.com_product-set-group-view ul.product-view li span {
            display: inline-block;
            line-height: 40px;
            color: #7F7F84;
            font-size: 14px;
            font-weight: 500;
            margin-right: 10px;
        }

        section.com_product-set-group-view ul.product-view li select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 10px;
            padding: 0 40px 0 15px;
            height: 40px;
            border: none;
            background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
            background-size: 12px 12px;
            color: #4A4A4D;
            font-size: 15px;
        }

        section.com_product-set-group-view ul.product-view li:nth-child(1) {
            width: calc(100% - 317px);
        }

        section.com_product-set-group-view ul.product-view li:nth-child(2) {
            width: 122px;
        }

        section.com_product-set-group-view ul.product-view li:nth-child(3) {
            width: 195px;
        }

    section.com_product-set-group-view div.products-wrapper {
        margin: 15px 0;
        display: grid;
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 20px;
        transition: width 0.6s;
    }

        section.com_product-set-group-view div.products-wrapper .item {
            border-radius: 10px;
            background-color: none;
            width: 100%;
        }

            section.com_product-set-group-view div.products-wrapper .item .product-box {
                display: flex;
            }

                section.com_product-set-group-view div.products-wrapper .item .product-box div.image {
                    display: flex;
                    background: #ffffff;
                    align-items: center;
                    justify-content: center;
                    background-color: #ffffff;
                    border-radius: 10px;
                    overflow: hidden;
                    z-index: 1;
                    position: relative;
                    transition: 0.3s;
                }

                    section.com_product-set-group-view div.products-wrapper .item .product-box div.image img {
                        position: relative;
                        z-index: 2;
                        height: auto;
                    }

                    section.com_product-set-group-view div.products-wrapper .item .product-box div.image a {
                        position: absolute;
                        left: 0;
                        right: 0;
                        top: 0;
                        bottom: 0;
                        background: rgba(0, 0, 0, 0.46);
                        color: #ffffff;
                        z-index: 3;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        text-decoration: none;
                        opacity: 0;
                        transition: 0.6s;
                    }

                        section.com_product-set-group-view div.products-wrapper .item .product-box div.image a i {
                            font-size: 25px;
                        }

                        section.com_product-set-group-view div.products-wrapper .item .product-box div.image a span {
                            display: block;
                        }

                    section.com_product-set-group-view div.products-wrapper .item .product-box div.image:hover a {
                        opacity: 1;
                    }

                section.com_product-set-group-view div.products-wrapper .item .product-box div.details {
                    width: 100%;
                }

                    section.com_product-set-group-view div.products-wrapper .item .product-box div.details span {
                        display: block;
                        color: #201904;
                        font-size: 16px;
                        line-height: 25px;
                        font-weight: 500;
                    }

                        section.com_product-set-group-view div.products-wrapper .item .product-box div.details span.title {
                            line-height: 21px;
                            font-size: 16px;
                        }

                        section.com_product-set-group-view div.products-wrapper .item .product-box div.details span.qty {
                            color: #7F7F84;
                            font-size: 12px;
                            line-height: 25px;
                        }

                        section.com_product-set-group-view div.products-wrapper .item .product-box div.details span.price {
                            font-weight: 600;
                        }

        section.com_product-set-group-view div.products-wrapper.grid {
            grid-template-columns: repeat(4, 1fr);
        }

            section.com_product-set-group-view div.products-wrapper.grid .item {
                border-radius: 10px;
                background-color: none;
                width: 100%;
            }

                section.com_product-set-group-view div.products-wrapper.grid .item .product-box {
                    flex-direction: column;
                }

                    section.com_product-set-group-view div.products-wrapper.grid .item .product-box .image {
                        height: 180px;
                        width: 100%;
                        margin: 0 0 12px;
                    }

                        section.com_product-set-group-view div.products-wrapper.grid .item .product-box .image img {
                            width: 100%;
                            height: 180px;
                            object-fit: contain;
                        }

                    section.com_product-set-group-view div.products-wrapper.grid .item .product-box div.details {
                        width: 100%;
                    }

                        section.com_product-set-group-view div.products-wrapper.grid .item .product-box div.details span.title {
                            line-height: 21px;
                            font-size: 16px;
                        }

                        section.com_product-set-group-view div.products-wrapper.grid .item .product-box div.details span.qty {
                            font-size: 12px;
                            line-height: 25px;
                        }

                        section.com_product-set-group-view div.products-wrapper.grid .item .product-box div.details span.price {
                            font-weight: 600;
                        }

        section.com_product-set-group-view div.products-wrapper.list {
            grid-template-columns: repeat(1, 1fr);
        }

            section.com_product-set-group-view div.products-wrapper.list .item {
                border-radius: 10px;
                background-color: #ffffff;
                width: 100%;
            }

                section.com_product-set-group-view div.products-wrapper.list .item .product-box {
                    flex-direction: row;
                    padding: 15px;
                    min-height: 155px;
                }

                    section.com_product-set-group-view div.products-wrapper.list .item .product-box .image {
                        height: auto;
                        width: 140px;
                        margin: 0 12px 0 0;
                    }

                        section.com_product-set-group-view div.products-wrapper.list .item .product-box .image img {
                            width: 100%;
                        }

                    section.com_product-set-group-view div.products-wrapper.list .item .product-box div.details {
                        width: calc(100% - 80px);
                    }

                        section.com_product-set-group-view div.products-wrapper.list .item .product-box div.details span.title {
                            line-height: 30px;
                            font-size: 20px;
                        }

                        section.com_product-set-group-view div.products-wrapper.list .item .product-box div.details span.qty {
                            font-size: 14px;
                            line-height: 25px;
                        }

                        section.com_product-set-group-view div.products-wrapper.list .item .product-box div.details span.price {
                            font-size: 18px;
                        }

    section.com_product-set-group-view .view-group {
        display: none;
        padding: 20px 15px 20px;
    }

        section.com_product-set-group-view .view-group .item {
            display: flex;
            flex-direction: column;
            margin-bottom: 28px;
        }

            section.com_product-set-group-view .view-group .item.grid-group-item .image {
                display: flex;
                background: #ffffff;
                align-items: center;
                justify-content: center;
                background-color: #ffffff;
                border-radius: 10px;
                min-height: 180px;
                overflow: hidden;
                z-index: 1;
                position: relative;
                transition: 0.3s;
                margin-bottom: 10px;
            }

                section.com_product-set-group-view .view-group .item.grid-group-item .image img {
                    position: relative;
                    height: 130px;
                    z-index: 2;
                }

                section.com_product-set-group-view .view-group .item.grid-group-item .image a {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    background: rgba(0, 0, 0, 0.46);
                    color: #ffffff;
                    z-index: 3;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    text-decoration: none;
                    display: none;
                    transition: 0.3s;
                }

                    section.com_product-set-group-view .view-group .item.grid-group-item .image a i {
                        font-size: 25px;
                    }

                    section.com_product-set-group-view .view-group .item.grid-group-item .image a span {
                        display: block;
                    }

                section.com_product-set-group-view .view-group .item.grid-group-item .image:hover a {
                    display: flex;
                }

            section.com_product-set-group-view .view-group .item.grid-group-item div.details span {
                display: block;
                color: #201904;
                font-size: 16px;
                line-height: 25px;
                font-weight: 500;
            }

                section.com_product-set-group-view .view-group .item.grid-group-item div.details span.title {
                    line-height: 21px;
                }

                section.com_product-set-group-view .view-group .item.grid-group-item div.details span.qty {
                    color: #7F7F84;
                    font-size: 12px;
                }

                section.com_product-set-group-view .view-group .item.grid-group-item div.details span.price {
                    font-weight: 600;
                }

            section.com_product-set-group-view .view-group .item.list-group-item {
                display: flex;
                flex-direction: row;
                float: none;
                width: 100%;
                margin-bottom: 15px;
                flex: 0 0 100%;
                max-width: 100%;
                border-radius: 10px;
            }

                section.com_product-set-group-view .view-group .item.list-group-item .image {
                    display: flex;
                    background: #ffffff;
                    align-items: center;
                    justify-content: center;
                    background-color: #ffffff;
                    border-radius: 10px;
                    min-height: 180px;
                    height: 180px;
                    overflow: hidden;
                    z-index: 1;
                    position: relative;
                    transition: 0.3s;
                    margin-bottom: 0;
                    margin-right: 15px;
                }

                    section.com_product-set-group-view .view-group .item.list-group-item .image img {
                        position: relative;
                        height: inherit;
                        z-index: 2;
                    }

                    section.com_product-set-group-view .view-group .item.list-group-item .image a {
                        position: absolute;
                        left: 0;
                        right: 0;
                        top: 0;
                        bottom: 0;
                        background: rgba(0, 0, 0, 0.46);
                        color: #ffffff;
                        z-index: 3;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        text-decoration: none;
                        display: none;
                        transition: 0.3s;
                    }

                        section.com_product-set-group-view .view-group .item.list-group-item .image a i {
                            font-size: 25px;
                        }

                        section.com_product-set-group-view .view-group .item.list-group-item .image a span {
                            display: block;
                        }

                    section.com_product-set-group-view .view-group .item.list-group-item .image:hover a {
                        display: flex;
                    }

                section.com_product-set-group-view .view-group .item.list-group-item span {
                    display: block;
                    color: #201904;
                    font-size: 25px;
                    line-height: 25px;
                    font-weight: 500;
                }

                    section.com_product-set-group-view .view-group .item.list-group-item span.title {
                        line-height: 21px;
                        font-size: 25px;
                    }

                    section.com_product-set-group-view .view-group .item.list-group-item span.qty {
                        color: #7F7F84;
                        font-size: 12px;
                    }

                    section.com_product-set-group-view .view-group .item.list-group-item span.price {
                        font-weight: 600;
                    }

section.com_product-set-group {
    padding: 30px 0;
}

    section.com_product-set-group ul.product-view {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

        section.com_product-set-group ul.product-view li div.search {
            display: flex;
            flex-direction: row;
            height: 52px;
            border-radius: 10px;
            overflow: hidden;
            background-color: #ffffff;
            margin-right: 12px;
            width: 100%;
        }

            section.com_product-set-group ul.product-view li div.search input.search {
                border: none;
                background-color: transparent;
                padding: 0 15px;
                width: calc(100% - 52px);
            }

            section.com_product-set-group ul.product-view li div.search button.submit {
                width: 52px;
                height: 52px;
                display: block;
                border-radius: 10px;
                line-height: 52px;
                text-align: center;
                border: none;
                background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
            }

                section.com_product-set-group ul.product-view li div.search button.submit:hover {
                    background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                }

        section.com_product-set-group ul.product-view li .grid-list-style {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
        }

            section.com_product-set-group ul.product-view li .grid-list-style input[type=radio] {
                position: relative;
                width: 30px;
                height: 30px;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                cursor: pointer;
                margin: 0 5px;
                transition: all 0.6s ease-out;
            }

                section.com_product-set-group ul.product-view li .grid-list-style input[type=radio]::before {
                    content: "";
                    display: block;
                    width: 30px;
                    height: 30px;
                    position: absolute;
                    left: 0;
                    top: 0;
                    z-index: 1;
                }

                section.com_product-set-group ul.product-view li .grid-list-style input[type=radio].grid::before {
                    background: url(../images/icons/btn_grid_black.svg) center center no-repeat;
                }

                section.com_product-set-group ul.product-view li .grid-list-style input[type=radio].grid:checked::before {
                    background: url(../images/icons/btn_grid_orange.svg) center center no-repeat;
                }

                section.com_product-set-group ul.product-view li .grid-list-style input[type=radio].list::before {
                    background: url(../images/icons/btn_list_black.svg) center center no-repeat;
                }

                section.com_product-set-group ul.product-view li .grid-list-style input[type=radio].list:checked::before {
                    background: url(../images/icons/btn_list_orange.svg) center center no-repeat;
                }

        section.com_product-set-group ul.product-view li span {
            display: inline-block;
            line-height: 40px;
            color: #7F7F84;
            font-size: 14px;
            font-weight: 500;
            margin-right: 10px;
        }

        section.com_product-set-group ul.product-view li select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 10px;
            padding: 0 40px 0 15px;
            height: 40px;
            border: none;
            background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
            background-size: 12px 12px;
            color: #4A4A4D;
            font-size: 15px;
        }

        section.com_product-set-group ul.product-view li:nth-child(1) {
            width: calc(100% - 317px);
        }

        section.com_product-set-group ul.product-view li:nth-child(2) {
            width: 122px;
        }

        section.com_product-set-group ul.product-view li:nth-child(3) {
            width: 195px;
        }

    section.com_product-set-group div.products-wrapper {
        margin: 15px 0;
        display: grid;
        gap: 30px;
        transition: width 0.6s;
        grid-template-columns: repeat(4, 1fr);
    }

        section.com_product-set-group div.products-wrapper .product-box {
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            justify-content: space-between;
            border-radius: 10px;
        }

            section.com_product-set-group div.products-wrapper .product-box div.product {
                position: relative;
            }

                section.com_product-set-group div.products-wrapper .product-box div.product div.action,
                section.com_product-set-group div.products-wrapper .product-box div.product div.cs-set-product-action {
                    display: flex;
                    justify-content: flex-end;
                    /*position: absolute;*/
                    right: 0;
                    top: 0;
                }

                    section.com_product-set-group div.products-wrapper .product-box div.product div.action a.toggle,
                    section.com_product-set-group div.products-wrapper .product-box div.product div.cs-set-product-action a.toggle {
                        display: table;
                        width: 25px;
                        height: 25px;
                        line-height: 25px;
                        text-align: center;
                        color: #7F7F84;
                        border-radius: 50%;
                    }

                        section.com_product-set-group div.products-wrapper .product-box div.product div.action a.toggle:hover,
                        section.com_product-set-group div.products-wrapper .product-box div.product div.cs-set-product-action a.toggle:hover {
                            background-color: #e4e4e4;
                            color: #ffffff;
                        }

                    section.com_product-set-group div.products-wrapper .product-box div.product div.action ul,
                    section.com_product-set-group div.products-wrapper .product-box div.product div.cs-set-product-action ul {
                        position: absolute;
                        right: 25px;
                        top: 0;
                        list-style: none;
                        margin: 0;
                        padding: 0;
                        background: #ffffff;
                        border-radius: 10px;
                        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
                        width: 80px;
                        overflow: hidden;
                        display: none;
                    }

                        section.com_product-set-group div.products-wrapper .product-box div.product div.action ul li,
                        section.com_product-set-group div.products-wrapper .product-box div.product div.cs-set-product-action ul li {
                            display: block;
                            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
                        }

                            section.com_product-set-group div.products-wrapper .product-box div.product div.action ul li a,
                            section.com_product-set-group div.products-wrapper .product-box div.product div.cs-set-product-action ul li a {
                                text-align: center;
                                line-height: 28px;
                                display: block;
                                color: #201904;
                                font-size: 12px;
                                text-decoration: none;
                            }

                section.com_product-set-group div.products-wrapper .product-box div.product img {
                    width: 90px;
                    display: block;
                }

                section.com_product-set-group div.products-wrapper .product-box div.product span.title {
                    color: #201904;
                    font-size: 20px;
                    font-weight: 600;
                    line-height: 25px;
                    display: block;
                    margin-top: 8px;
                }

                section.com_product-set-group div.products-wrapper .product-box div.product span.counts {
                    display: block;
                    font-size: 15px;
                    font-weight: 500;
                    line-height: 25px;
                    color: #4A4A4D;
                }

            section.com_product-set-group div.products-wrapper .product-box div.users {
                margin-top: 20px;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                justify-content: flex-start;
                height: 32px;
            }

                section.com_product-set-group div.products-wrapper .product-box div.users .user-box {
                    position: relative;
                    display: flex;
                    flex-wrap: nowrap;
                    flex-direction: row;
                }

                    section.com_product-set-group div.products-wrapper .product-box div.users .user-box div.counts {
                        width: 32px;
                        height: 32px;
                        display: block;
                        background-color: #ffffff;
                        border-radius: 50%;
                        border: 1.5px solid #F0EDE5;
                        text-align: center;
                        line-height: 30px;
                        font-size: 12px;
                        color: #4A4A4D;
                        font-weight: 500;
                        margin-right: 5px;
                    }

                    section.com_product-set-group div.products-wrapper .product-box div.users .user-box .image {
                        display: block;
                        overflow: hidden;
                        border-radius: 50%;
                        width: 32px;
                        height: 32px;
                        background-size: 32px 32px;
                        transition: 0.3s;
                        margin-right: 5px;
                    }

                        section.com_product-set-group div.products-wrapper .product-box div.users .user-box .image a.remove {
                            width: 32px;
                            height: 32px;
                            line-height: 32px;
                            text-align: center;
                            display: block;
                            background-color: rgba(210, 93, 62, 0.5);
                            display: none;
                            transition: 0.3s;
                            opacity: 0;
                        }

                        section.com_product-set-group div.products-wrapper .product-box div.users .user-box .image:hover a.remove {
                            display: block;
                            opacity: 1;
                        }

                section.com_product-set-group div.products-wrapper .product-box div.users .action a {
                    width: 32px;
                    height: 32px;
                    background: url(../images/icons/icon_add_users.png) center center no-repeat;
                    display: block;
                    transition: 0.6s;
                }

                    section.com_product-set-group div.products-wrapper .product-box div.users .action a:hover {
                        background: url(../images/icons/icon_add_users_orange.svg) center center no-repeat;
                    }

        section.com_product-set-group div.products-wrapper.grid {
            grid-template-columns: repeat(4, 1fr);
        }

        section.com_product-set-group div.products-wrapper.list {
            grid-template-columns: repeat(1, 1fr);
        }

            section.com_product-set-group div.products-wrapper.list .product-box {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                justify-content: space-between;
                border-radius: 10px;
            }

                section.com_product-set-group div.products-wrapper.list .product-box .card-group {
                    width: 100%;
                }

                    section.com_product-set-group div.products-wrapper.list .product-box .card-group div.product {
                        position: relative;
                    }

                        section.com_product-set-group div.products-wrapper.list .product-box .card-group div.product img {
                            width: 210px;
                            float: left;
                        }

                        section.com_product-set-group div.products-wrapper.list .product-box .card-group div.product span.title {
                            font-size: 25px;
                            line-height: 30px;
                        }

                        section.com_product-set-group div.products-wrapper.list .product-box .card-group div.product span.counts {
                            font-size: 18px;
                            line-height: 25px;
                        }

                    section.com_product-set-group div.products-wrapper.list .product-box .card-group div.users {
                        position: relative;
                        bottom: 0;
                    }

section.com_store-settings {
    padding-bottom: 30px;
}

    section.com_store-settings ul.setting-tabs {
        margin-bottom: 15px;
    }

        section.com_store-settings ul.setting-tabs li.nav-item a.nav-link {
            font-size: 20px;
            font-weight: 600;
            line-height: 25px;
            color: #201904;
        }

            section.com_store-settings ul.setting-tabs li.nav-item a.nav-link.active {
                color: #D25D3E;
                text-decoration: underline;
            }

    section.com_store-settings div.card.card-payment-method table.payment-method {
        width: 100%;
        color: #201904;
    }

        section.com_store-settings div.card.card-payment-method table.payment-method thead tr th {
            color: #7F7F84;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

            section.com_store-settings div.card.card-payment-method table.payment-method thead tr th:nth-child(1) {
                text-align: left;
                width: 250px;
            }

            section.com_store-settings div.card.card-payment-method table.payment-method thead tr th:nth-child(2) {
                text-align: left;
                width: calc(100% - 325px);
            }

            section.com_store-settings div.card.card-payment-method table.payment-method thead tr th:nth-child(3) {
                width: 75px;
            }

        section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td {
            vertical-align: top;
            padding: 10px 0;
        }

            section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td strong {
                font-size: 17px;
                font-weight: 600;
                line-height: 25px;
            }

            section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box {
                margin: 10px 0;
                padding-right: 30%;
            }

                section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance {
                    list-style: none;
                    margin: 5px 0;
                    padding: 0;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    width: 100%;
                    border: 1px solid #F0EDE5;
                    border-radius: 8px;
                    padding: 8px 15px;
                    margin-bottom: 10px;
                }

                    section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li {
                        text-align: left;
                    }

                        section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span {
                            font-size: 17px;
                            font-weight: 400;
                            line-height: 17px;
                            display: block;
                        }

                            section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.expire {
                                color: #4A4A4D;
                                font-size: 14px;
                                line-height: 20px;
                            }

                            section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.price {
                                font-size: 16px;
                                font-weight: 500;
                                line-height: 16px;
                            }

                        section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a {
                            display: block;
                            width: 30px;
                            height: 30px;
                            font-size: 17px;
                            text-align: center;
                            margin: 0 auto;
                            line-height: 30px;
                            text-decoration: none;
                        }

                            section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a.edit {
                                color: #7F7F84;
                            }

                            section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a.trash {
                                color: #D25D3E;
                            }

                        section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(1) {
                            width: 40px;
                        }

                        section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(2) {
                            width: calc(100% - 140px);
                        }

                        section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(3) {
                            width: 100px;
                            text-align: center;
                        }

                        section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(4) {
                            width: 50px;
                        }

                        section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(5) {
                            width: 50px;
                        }

                    section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance:last-of-type {
                        margin-bottom: none;
                    }

                section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .allowance-box a.add-allowance {
                    display: flex;
                    justify-content: flex-end;
                    color: #D25D3E;
                    font-size: 16px;
                    font-weight: 600;
                    line-height: 22px;
                }

            section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .option {
                display: block;
                margin: 0 auto;
                height: 20px;
                width: 20px;
                color: #7F7F84;
                text-decoration: none;
            }

            section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .charge-shipping span {
                display: block;
            }

            section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .charge-shipping .action {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                margin-top: 5px;
            }

                section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .charge-shipping .action span {
                    display: block;
                    font-size: 15px;
                    line-height: 20px;
                    color: #4A4A4D;
                    margin-right: 15px;
                    margin-right: 20px;
                }

                section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td .charge-shipping .action strong {
                    display: block;
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 20px;
                }

            section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td:nth-child(3), section.com_store-settings div.card.card-payment-method table.payment-method tbody tr td:nth-child(4) {
                text-align: center;
            }

    section.com_store-settings div.card.card-payment-program table.payment-program {
        width: 100%;
        color: #201904;
    }

        section.com_store-settings div.card.card-payment-program table.payment-program thead tr th {
            color: #7F7F84;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

            section.com_store-settings div.card.card-payment-program table.payment-program thead tr th:nth-child(1) {
                text-align: left;
                width: 250px;
            }

            section.com_store-settings div.card.card-payment-program table.payment-program thead tr th:nth-child(2) {
                text-align: left;
                width: calc(100% - 475px);
            }

            section.com_store-settings div.card.card-payment-program table.payment-program thead tr th:nth-child(3) {
                width: 140px;
            }

            section.com_store-settings div.card.card-payment-program table.payment-program thead tr th:nth-child(4) {
                width: 75px;
            }

        section.com_store-settings div.card.card-payment-program table.payment-program tbody tr {
            border-bottom: 1px solid #F0EDE5;
        }

            section.com_store-settings div.card.card-payment-program table.payment-program tbody tr td {
                vertical-align: top;
                padding: 15px 0;
            }

                section.com_store-settings div.card.card-payment-program table.payment-program tbody tr td strong {
                    font-size: 17px;
                    font-weight: 600;
                    line-height: 25px;
                }

                section.com_store-settings div.card.card-payment-program table.payment-program tbody tr td ul {
                    margin: 0;
                    padding: 0;
                }

                section.com_store-settings div.card.card-payment-program table.payment-program tbody tr td .option {
                    display: block;
                    margin: 0 auto;
                    height: 20px;
                    width: 20px;
                    color: #7F7F84;
                }

                section.com_store-settings div.card.card-payment-program table.payment-program tbody tr td .charge-shipping span {
                    display: block;
                }

                section.com_store-settings div.card.card-payment-program table.payment-program tbody tr td .charge-shipping .action {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    margin-top: 5px;
                }

                    section.com_store-settings div.card.card-payment-program table.payment-program tbody tr td .charge-shipping .action span {
                        display: block;
                        font-size: 15px;
                        line-height: 20px;
                        color: #4A4A4D;
                        margin-right: 15px;
                        margin-right: 20px;
                    }

                    section.com_store-settings div.card.card-payment-program table.payment-program tbody tr td .charge-shipping .action label {
                        margin: 0 15px 0 0;
                        padding: 0;
                        display: inherit;
                        align-items: center;
                        color: #4A4A4D;
                        cursor: pointer;
                    }

                section.com_store-settings div.card.card-payment-program table.payment-program tbody tr td:nth-child(3), section.com_store-settings div.card.card-payment-program table.payment-program tbody tr td:nth-child(4) {
                    text-align: center;
                }

            section.com_store-settings div.card.card-payment-program table.payment-program tbody tr:last-of-type {
                border: none;
            }

                section.com_store-settings div.card.card-payment-program table.payment-program tbody tr:last-of-type td {
                    padding-bottom: 10px;
                }

    section.com_store-settings .add-payment {
        position: absolute;
        right: 15px;
        top: 0;
        display: block;
        line-height: 20px;
        font-weight: 600;
        font-size: 16px;
        color: #D25D3E;
        text-decoration: none;
    }

    section.com_store-settings div.title-actions {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    section.com_store-settings .quota-table-header {
        list-style: none;
        margin: 20px 28px;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        font-size: 12px;
        line-height: 12px;
        font-weight: 600;
        color: #7F7F84;
        text-transform: uppercase;
    }

        section.com_store-settings .quota-table-header li {
            display: block;
            padding: 8px 0;
        }

            section.com_store-settings .quota-table-header li:nth-child(1) {
                width: calc(100% - 636px);
            }

            section.com_store-settings .quota-table-header li:nth-child(2) {
                width: 150px;
            }

            section.com_store-settings .quota-table-header li:nth-child(3) {
                width: 150px;
            }

            section.com_store-settings .quota-table-header li:nth-child(4) {
                width: 200px;
            }

            section.com_store-settings .quota-table-header li:nth-child(5) {
                width: 136px;
            }

    section.com_store-settings .quota-group-box .quota-group {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 15px;
    }

        section.com_store-settings .quota-group-box .quota-group .quota {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            position: relative;
        }

            section.com_store-settings .quota-group-box .quota-group .quota img {
                width: 56px;
                height: 48px;
                margin: 0;
            }

            section.com_store-settings .quota-group-box .quota-group .quota span {
                font-size: 15px;
                font-weight: 500;
                color: #4A4A4D;
                display: block;
                text-align: left;
                padding: 0;
            }

                section.com_store-settings .quota-group-box .quota-group .quota span.title {
                    display: block;
                    font-size: 12px;
                    font-weight: 500;
                    color: #7F7F84;
                    width: calc(100% - 700px);
                    padding: 0 15px;
                }

                    section.com_store-settings .quota-group-box .quota-group .quota span.title strong {
                        font-size: 18px;
                        font-weight: 600;
                        line-height: 22px;
                        color: #201904;
                        display: block;
                    }

                section.com_store-settings .quota-group-box .quota-group .quota span.quota {
                    width: 150px;
                }

                section.com_store-settings .quota-group-box .quota-group .quota span.renew {
                    width: 150px;
                }

            section.com_store-settings .quota-group-box .quota-group .quota ul.payment-structure {
                width: 200px;
            }

                section.com_store-settings .quota-group-box .quota-group .quota ul.payment-structure li {
                    font-size: 14px;
                    line-height: 18px;
                    position: relative;
                }

                    section.com_store-settings .quota-group-box .quota-group .quota ul.payment-structure li::before {
                        content: "●";
                        font-size: 13px;
                        margin-right: 10px;
                    }

            section.com_store-settings .quota-group-box .quota-group .quota a.action {
                display: block;
                width: 30px;
                height: 30px;
                margin: 0 33px;
                background: url(../images/icons/btn_action_black.svg) center center no-repeat;
            }

                section.com_store-settings .quota-group-box .quota-group .quota a.action:hover {
                    background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                }

            section.com_store-settings .quota-group-box .quota-group .quota ul.action-toggle {
                position: absolute;
                right: 110px;
                top: 50%;
                transform: translateY(-50%);
                background-color: #ffffff;
                box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                border-radius: 10px;
                overflow: hidden;
                width: 130px;
                display: none;
            }

                section.com_store-settings .quota-group-box .quota-group .quota ul.action-toggle li a {
                    color: #201904;
                    font-weight: 500;
                    font-size: 18px;
                    line-height: 40px;
                    padding: 0 25px;
                    display: block;
                    text-decoration: none;
                }

                    section.com_store-settings .quota-group-box .quota-group .quota ul.action-toggle li a:hover {
                        color: #D25D3E;
                    }

            section.com_store-settings .quota-group-box .quota-group .quota button {
                min-width: 36px;
                width: 36px;
                height: 36px;
                display: block;
                border: none;
                background: #F6F4F0;
                color: #212121;
                font-size: 18px;
                font-weight: 400;
                border-radius: 4px;
            }

        section.com_store-settings .quota-group-box .quota-group .quota-result {
            margin-top: 15px;
            display: none;
            padding-left: 73px;
        }

            section.com_store-settings .quota-group-box .quota-group .quota-result .quota-sets {
                list-style: none;
                margin: 0;
                padding: 0;
                width: 100%;
                display: flex;
                flex-wrap: nowrap;
                justify-content: space-between;
                font-size: 12px;
                line-height: 25px;
                font-weight: 600;
                color: #7F7F84;
                text-transform: uppercase;
            }

            section.com_store-settings .quota-group-box .quota-group .quota-result .quota-detail {
                border-radius: 10px;
                border: 1px solid #F0EDE5;
                padding: 15px;
                margin-left: 0;
            }

                section.com_store-settings .quota-group-box .quota-group .quota-result .quota-detail .detail {
                    margin-bottom: 10px;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                }

                    section.com_store-settings .quota-group-box .quota-group .quota-result .quota-detail .detail img {
                        width: 56px;
                        height: 48px;
                    }

                    section.com_store-settings .quota-group-box .quota-group .quota-result .quota-detail .detail span {
                        display: block;
                        font-size: 12px;
                        font-weight: 500;
                        color: #7F7F84;
                        text-align: left;
                        width: calc(100% - 86px);
                        padding: 0 15px;
                    }

                        section.com_store-settings .quota-group-box .quota-group .quota-result .quota-detail .detail span strong {
                            font-size: 18px;
                            font-weight: 600;
                            line-height: 22px;
                            color: #201904;
                            display: block;
                        }

                    section.com_store-settings .quota-group-box .quota-group .quota-result .quota-detail .detail a.action {
                        display: block;
                        width: 30px;
                        height: 30px;
                        background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                    }

                        section.com_store-settings .quota-group-box .quota-group .quota-result .quota-detail .detail a.action:hover {
                            background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                        }

                    section.com_store-settings .quota-group-box .quota-group .quota-result .quota-detail .detail:last-of-type {
                        margin-bottom: 0;
                    }

            section.com_store-settings .quota-group-box .quota-group .quota-result:last-of-type {
                margin-bottom: 0;
            }

    section.com_store-settings div.actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        padding-top: 30px;
    }

        section.com_store-settings div.actions button {
            text-decoration: none;
            padding: 0 25px;
            line-height: 52px;
            display: block;
            border-radius: 10px;
            margin: 0 10px;
            border: none;
            background: none;
            cursor: pointer;
        }

            section.com_store-settings div.actions button.back {
                color: #7F7F84;
            }

            section.com_store-settings div.actions button.next {
                background-color: #D25D3E;
                color: #ffffff;
            }

                section.com_store-settings div.actions button.next:disabled {
                    background-color: #DC836A;
                }

                section.com_store-settings div.actions button.next:hover {
                    background-color: #C64F2F;
                }

                section.com_store-settings div.actions button.next:focus {
                    background-color: #DC836A;
                }

        section.com_store-settings div.actions a.save {
            background-color: #D25D3E;
            color: #ffffff;
        }

            section.com_store-settings div.actions a.save:hover {
                background-color: #C64F2F;
            }

            section.com_store-settings div.actions a.save:focus {
                background-color: #DC836A;
            }

section.com_view-product {
    padding-bottom: 30px;
}

    section.com_view-product .title-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

        section.com_view-product .title-actions a.delete-product, section.com_view-product .title-actions a.cancel-product {
            color: #7F7F84;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            display: inline-block;
            margin-left: 20px;
            margin-right: 0;
            text-decoration: none;
        }

            section.com_view-product .title-actions a.delete-product:hover, section.com_view-product .title-actions a.cancel-product:hover {
                color: #D32243;
            }

    section.com_view-product .card.card-info {
        border-radius: 10px;
    }

        section.com_view-product .card.card-info .card-body label.info {
            color: #201904;
            display: block;
            line-height: 20px;
            font-size: 16px;
            font-weight: 500;
        }

        section.com_view-product .card.card-info .card-body div.category-search {
            border: 1px solid #F0EDE5;
            height: 64px;
            padding: 0;
            border-radius: 10px;
            display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
            width: 100%;
            margin-bottom: 24px;
            outline: none;
            position: relative;
        }

            section.com_view-product .card.card-info .card-body div.category-search input {
                height: 62px;
                border: none;
                background: none;
                padding: 0 15px;
                width: 100%;
            }

            section.com_view-product .card.card-info .card-body div.category-search button[type=button] {
                display: block;
                width: 62px;
                height: 62px;
                border: none;
                background: none;
                font-size: 22px;
                background: url(../images/icons/icon_search_black.svg) center center no-repeat;
            }

                section.com_view-product .card.card-info .card-body div.category-search button[type=button]:hover {
                    background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                }

        section.com_view-product .card.card-info .card-body input.name, section.com_view-product .card.card-info .card-body input.price, section.com_view-product .card.card-info .card-body input.sku, section.com_view-product .card.card-info .card-body input.hs-code, section.com_view-product .card.card-info .card-body input.multi-option {
            border: none;
            height: 64px;
            padding: 0 15px;
            border-radius: 10px;
            display: block;
            width: 100%;
            margin-bottom: 24px;
            outline: none;
            background-color: rgba(246, 244, 240, 0.6);
        }

        section.com_view-product .card.card-info .card-body input.multi-option2 {
            border: 1px solid #F0EDE5;
            height: 64px;
            padding: 0 15px;
            border-radius: 10px;
            display: block;
            width: 100%;
            margin-bottom: 15px;
        }

        section.com_view-product .card.card-info .card-body textarea.description {
            border: none;
            height: 313px;
            padding: 15px;
            border-radius: 10px;
            display: block;
            width: 100%;
            outline: none;
            background-color: rgba(246, 244, 240, 0.6);
        }

        section.com_view-product .card.card-info .card-body input.qty {
            border: 1px solid #F0EDE5;
            height: 64px;
            padding: 0 15px;
            border-radius: 10px;
            display: block;
            width: 100%;
            margin-bottom: 24px;
            outline: none;
        }

        section.com_view-product .card.card-info .card-body div.input-select {
            border: none;
            height: 64px;
            padding: 0;
            border-radius: 10px;
            display: flex;
            width: 100%;
            margin-bottom: 24px;
            overflow: hidden;
            background-color: rgba(246, 244, 240, 0.6);
        }

            section.com_view-product .card.card-info .card-body div.input-select input {
                outline: none;
                height: 62px;
                width: calc(100% - 60px);
                border: none;
                background: none;
                padding: 0 15px;
                background-color: transparent;
            }

            section.com_view-product .card.card-info .card-body div.input-select select {
                background-color: transparent;
                background-size: 12px 12px;
                width: 60px;
                border: none;
                height: 62px;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                padding: 0 15px;
                outline: none;
            }

        section.com_view-product .card.card-info .card-body .drag-drop {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 262px;
            min-height: 262px;
            border: 1px dashed #F0EDE5;
            border-radius: 10px;
            position: relative;
        }

            section.com_view-product .card.card-info .card-body .drag-drop .upload-icon {
                width: 26px;
            }

            section.com_view-product .card.card-info .card-body .drag-drop span {
                color: #7F7F84;
                font-size: 12px;
                font-weight: 500;
                line-height: 25px;
            }

                section.com_view-product .card.card-info .card-body .drag-drop span.drop {
                    display: block;
                    margin: 10px 0 5px;
                    font-size: 16px;
                    line-height: 20px;
                    font-weight: 600;
                    color: #201904;
                }

            section.com_view-product .card.card-info .card-body .drag-drop label {
                display: inline;
                color: #D25D3E;
                text-decoration: none;
                font-size: 14px;
                cursor: pointer;
            }

            section.com_view-product .card.card-info .card-body .drag-drop input[type=file] {
                opacity: 0;
                position: absolute;
                z-index: -1;
            }

            section.com_view-product .card.card-info .card-body .drag-drop div.selected-image {
                position: absolute;
                left: 0;
                top: 0;
                width: auto;
                height: 140px;
                overflow: hidden;
                border-radius: 6px;
                z-index: 10;
                background-color: rgba(0, 0, 0, 0.35);
                width: 100%;
                height: 100%;
                justify-content: center;
                display: none;
                text-align: center;
            }

                section.com_view-product .card.card-info .card-body .drag-drop div.selected-image a {
                    position: absolute;
                    right: 5px;
                    top: 5px;
                    color: #ffffff;
                    font-size: 22px;
                    width: 20px;
                    height: 20px;
                    line-height: 20px;
                }

                    section.com_view-product .card.card-info .card-body .drag-drop div.selected-image a:hover {
                        color: #201904;
                    }

                section.com_view-product .card.card-info .card-body .drag-drop div.selected-image img {
                    width: auto;
                    height: 100%;
                }

        section.com_view-product .card.card-info .card-body .thumbnails {
            display: grid;
            gap: 12px;
            grid-template-columns: repeat(4, 1fr);
        }

            section.com_view-product .card.card-info .card-body .thumbnails div.image {
                border: 1px solid #F0EDE5;
                border-radius: 4px;
                overflow: hidden;
                position: relative;
                width: 100%;
            }

                section.com_view-product .card.card-info .card-body .thumbnails div.image img {
                    width: inherit;
                }

                section.com_view-product .card.card-info .card-body .thumbnails div.image button {
                    position: absolute;
                    right: 5px;
                    top: 5px;
                    border: none;
                    background: transparent;
                    font-weight: 300;
                    z-index: 1;
                }

        section.com_view-product .card.card-info .card-body select.tax {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border: none;
            height: 64px;
            padding: 0 15px;
            border-radius: 10px;
            display: block;
            width: 100%;
            margin-bottom: 24px;
            outline: none;
            background: rgba(246, 244, 240, 0.6) url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
            background-size: 12px 12px;
        }

        section.com_view-product .card.card-info .card-body .multiple {
            margin: 15px 0 25px;
            padding: 0 15px 15px;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            border-bottom: 1px solid #F0EDE5;
        }

            section.com_view-product .card.card-info .card-body .multiple span {
                line-height: 20px;
                color: #201904;
                font-size: 16px;
                font-weight: 500;
                margin-left: 15px;
            }

        section.com_view-product .card.card-info .card-body div.preview {
            display: block;
            border-top: 1px solid #F0EDE5;
        }

            section.com_view-product .card.card-info .card-body div.preview table.preview {
                width: 100%;
            }

                section.com_view-product .card.card-info .card-body div.preview table.preview thead tr th {
                    font-size: 12px;
                    font-weight: 600;
                    color: #7F7F84;
                    text-align: left;
                    padding: 4px 5px;
                }

                    section.com_view-product .card.card-info .card-body div.preview table.preview thead tr th:nth-child(1) {
                        width: calc(100% - 460px);
                    }

                    section.com_view-product .card.card-info .card-body div.preview table.preview thead tr th:nth-child(2) {
                        width: 110px;
                    }

                    section.com_view-product .card.card-info .card-body div.preview table.preview thead tr th:nth-child(3) {
                        width: 190px;
                    }

                    section.com_view-product .card.card-info .card-body div.preview table.preview thead tr th:nth-child(4) {
                        width: 90px;
                    }

                    section.com_view-product .card.card-info .card-body div.preview table.preview thead tr th:nth-child(5) {
                        width: 70px;
                        text-align: right;
                    }

                section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr {
                    position: relative;
                    border-bottom: 1px solid #F0EDE5;
                }

                    section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td {
                        padding: 10px 5px;
                        text-align: center;
                        position: relative;
                    }

                        section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td:nth-child(1) {
                            display: flex;
                            flex-direction: row;
                            flex-wrap: nowrap;
                            align-items: center;
                        }

                            section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td:nth-child(1) img {
                                height: 56px;
                                margin-right: 10px;
                            }

                            section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td:nth-child(1) span {
                                font-size: 16px;
                                line-height: 20px;
                                font-weight: 500;
                            }

                                section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td:nth-child(1) span span {
                                    display: block;
                                    font-size: 16px;
                                    color: #7F7F84;
                                    line-height: 20px;
                                }

                        section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td:last-of-type {
                            text-align: right;
                        }

                        section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td input.fields {
                            border: none;
                            height: 36px;
                            padding: 0 15px;
                            border-radius: 10px;
                            display: block;
                            width: 100%;
                            margin: 0;
                            background-color: rgba(246, 244, 240, 0.6);
                        }

                        section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td .option {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                        }

                            section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td .option a.toggle {
                                margin: 0 0 0 auto;
                                display: table;
                                width: 30px;
                                height: 30px;
                                color: #7F7F84;
                                text-decoration: none;
                                line-height: 30px;
                                background: transparent url(../images/icons/btn_action_black.svg) center center no-repeat;
                            }

                                section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td .option a.toggle:hover {
                                    background: transparent url(../images/icons/btn_action_orange.svg) center center no-repeat;
                                }

                            section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td .option ul {
                                display: none;
                                position: absolute;
                                right: 50px;
                                top: -12px;
                                margin: 0;
                                padding: 0;
                                list-style: none;
                                white-space: normal;
                                background: #ffffff;
                                border-radius: 4px;
                                box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                                width: 100px;
                                border-bottom: 1px solid rgba(0, 0, 0, 0.25);
                            }

                                section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td .option ul li {
                                    display: block;
                                    display: 100%;
                                    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
                                }

                                    section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td .option ul li a {
                                        display: block;
                                        width: 100%;
                                        height: 32px;
                                        line-height: 32px;
                                        color: #201904;
                                        white-space: normal;
                                        font-size: 13px;
                                    }

                                    section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr td .option ul li:last-of-type {
                                        border-bottom: none;
                                    }

                    section.com_view-product .card.card-info .card-body div.preview table.preview tbody tr:last-of-type {
                        border-bottom: none;
                    }

        section.com_view-product .card.card-info .card-body .number-input {
            border: none;
            height: 64px;
            padding: 0 0;
            border-radius: 10px;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            overflow: hidden;
            background-color: rgba(246, 244, 240, 0.6);
        }

            section.com_view-product .card.card-info .card-body .number-input input.quantity {
                border: none;
                outline: none;
                height: 62px;
                width: 100%;
                padding: 0 15px;
                margin-bottom: 0;
                background-color: transparent;
            }

            section.com_view-product .card.card-info .card-body .number-input div.btns {
                display: flex;
                flex-direction: column;
                display: none;
            }

                section.com_view-product .card.card-info .card-body .number-input div.btns button {
                    outline: none;
                    background-color: transparent;
                    border: none;
                    align-items: center;
                    justify-content: center;
                    width: 32px;
                    height: 32px;
                    cursor: pointer;
                    margin: 0;
                    position: relative;
                    font-weight: 600;
                    font-size: 18px;
                }

                    section.com_view-product .card.card-info .card-body .number-input div.btns button:nth-child(1) {
                        transform: rotate(90deg);
                    }

                    section.com_view-product .card.card-info .card-body .number-input div.btns button:nth-child(2) {
                        transform: rotate(90deg);
                    }

        section.com_view-product .card.card-info .card-body .wrapper {
            border: 1px solid #F0EDE5;
            height: 64px;
            padding: 0 15px;
            border-radius: 10px;
            display: block;
            width: 100%;
            margin-bottom: 24px;
            outline: none;
        }

        section.com_view-product .card.card-info .card-body .add-options {
            display: table;
            color: #D25D3E;
            font-size: 16px;
            font-weight: 600;
            margin: 0 15px;
            line-height: 20px;
        }

            section.com_view-product .card.card-info .card-body .add-options .fa {
                font-size: 14px;
            }

div.small-device-filter {
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 25, 4, 0.8);
    z-index: 1000;
    display: none;
}

    div.small-device-filter aside {
        margin-top: 90px;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        padding: 30px 15px;
        background-color: #ffffff;
    }

        div.small-device-filter aside div.slide-bar {
            display: block;
            height: 4px;
            width: 60px;
            border-radius: 24px;
            background-color: rgba(127, 127, 132, 0.24);
            margin: 0 auto 30px;
        }

        div.small-device-filter aside div.filter-slider {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #F0EDE5;
        }

            div.small-device-filter aside div.filter-slider div.title {
                display: flex;
                justify-content: space-between;
                height: 25px;
                align-items: center;
                margin-bottom: 10px;
            }

                div.small-device-filter aside div.filter-slider div.title span {
                    color: #201904;
                    font-size: 18px;
                    line-height: 25px;
                    font-weight: 600;
                }

                div.small-device-filter aside div.filter-slider div.title a {
                    display: block;
                    color: #201904;
                    font-weight: 800;
                    font-size: 22px;
                    text-decoration: none;
                    width: 25px;
                    height: 25px;
                    line-height: 25px;
                    text-align: center;
                }

            div.small-device-filter aside div.filter-slider div.price-slider {
                height: 0;
                overflow: hidden;
                width: 100%;
                padding: 0 10px;
                transition: 0.5s all;
            }

                div.small-device-filter aside div.filter-slider div.price-slider .values {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    width: 100%;
                }

                    div.small-device-filter aside div.filter-slider div.price-slider .values input[type=text] {
                        border: none;
                        display: block;
                        width: 100px;
                        background-color: transparent;
                        color: #4A4A4D;
                        font-size: 15px;
                        font-weight: 400;
                        line-height: 37px;
                    }

                        div.small-device-filter aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                            text-align: right;
                        }

                div.small-device-filter aside div.filter-slider div.price-slider .slider-box {
                    width: 96%;
                    margin: 15px auto;
                }

                div.small-device-filter aside div.filter-slider div.price-slider .ui-slider {
                    margin-top: 20px;
                    height: 5px;
                    position: relative;
                    border: none;
                    background: #C6C5C5;
                }

                div.small-device-filter aside div.filter-slider div.price-slider .ui-state-default, div.small-device-filter aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, div.small-device-filter aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
                    background: #ffffff;
                    border-radius: 50%;
                    outline: none;
                    border: none;
                    position: absolute;
                    top: -9px;
                    box-shadow: 0 1px 4px rgba(32, 25, 4, 0.5);
                }

                div.small-device-filter aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
                    background: #D25D3E;
                }

                div.small-device-filter aside div.filter-slider div.price-slider #labelHolder {
                    height: 5px;
                    position: relative;
                    border: none;
                }

                div.small-device-filter aside div.filter-slider div.price-slider span {
                    position: absolute;
                    width: 1.2em;
                    height: 1.2em;
                    margin-left: -0.6em;
                    text-align: center;
                }

            div.small-device-filter aside div.filter-slider.active div.price-slider {
                height: 75px;
            }

        div.small-device-filter aside div.filter {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #F0EDE5;
        }

            div.small-device-filter aside div.filter select {
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                border-radius: 6px;
                padding: 0 40px 0 15px;
                height: 40px;
                border: none;
                background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
                background-size: 12px 12px;
                color: #4A4A4D;
                font-size: 15px;
                border: 1px solid #F0EDE5;
                width: 100%;
            }

            div.small-device-filter aside div.filter div.grid-list-style {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                flex-wrap: nowrap;
            }

                div.small-device-filter aside div.filter div.grid-list-style input[type=radio] {
                    width: 30px;
                    height: 40px;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    cursor: pointer;
                    position: relative;
                    border-radius: 6px;
                    padding: 0 15px;
                    border: 1px solid #F0EDE5;
                    background: none;
                    margin-right: 10px;
                    line-height: 40px;
                    color: #4A4A4D;
                    width: 94px;
                }

                    div.small-device-filter aside div.filter div.grid-list-style input[type=radio].list {
                        background: transparent url(../images/icons/btn_list_black.svg) 10px center no-repeat;
                    }

                        div.small-device-filter aside div.filter div.grid-list-style input[type=radio].list::after {
                            content: "List";
                            position: absolute;
                            left: 42px;
                            top: 50%;
                            transform: translateY(-50%);
                        }

                        div.small-device-filter aside div.filter div.grid-list-style input[type=radio].list:checked {
                            background: transparent url(../images/icons/btn_list_orange.svg) 10px center no-repeat;
                            border-color: #D25D3E;
                        }

                    div.small-device-filter aside div.filter div.grid-list-style input[type=radio].grid {
                        background: transparent url(../images/icons/btn_grid_black.svg) 10px center no-repeat;
                    }

                        div.small-device-filter aside div.filter div.grid-list-style input[type=radio].grid::after {
                            content: "Grid";
                            position: absolute;
                            left: 40px;
                            top: 50%;
                            transform: translateY(-50%);
                        }

                        div.small-device-filter aside div.filter div.grid-list-style input[type=radio].grid:checked {
                            background: transparent url(../images/icons/btn_grid_orange.svg) 10px center no-repeat;
                            border-color: #D25D3E;
                        }

            div.small-device-filter aside div.filter div.title {
                display: flex;
                justify-content: space-between;
                height: 25px;
                align-items: center;
                margin-bottom: 10px;
            }

                div.small-device-filter aside div.filter div.title span {
                    color: #201904;
                    font-size: 18px;
                    line-height: 25px;
                    font-weight: 600;
                }

                div.small-device-filter aside div.filter div.title a {
                    display: block;
                    color: #201904;
                    font-weight: 800;
                    font-size: 22px;
                    text-decoration: none;
                    width: 25px;
                    height: 25px;
                    line-height: 25px;
                    text-align: center;
                }

            div.small-device-filter aside div.filter .filter-checkbox {
                height: 0;
                overflow: hidden;
                transition: 0.5s all;
            }

                div.small-device-filter aside div.filter .filter-checkbox ul {
                    margin: 0;
                    padding: 0;
                    list-style: none;
                    min-height: 185px;
                    max-height: 185px;
                    overflow-y: auto;
                }

                    div.small-device-filter aside div.filter .filter-checkbox ul li label {
                        line-height: 37px;
                        display: flex;
                        flex-direction: row;
                        flex-wrap: nowrap;
                        font-size: 15px;
                        font-weight: 400;
                        color: #4A4A4D;
                        align-items: center;
                        margin: 0;
                    }

                    div.small-device-filter aside div.filter .filter-checkbox ul.active {
                        display: block;
                    }

            div.small-device-filter aside div.filter.active .filter-checkbox {
                height: 185px;
            }

            div.small-device-filter aside div.filter:last-of-type {
                border-bottom: none;
            }

        div.small-device-filter aside div.action {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
        }

            div.small-device-filter aside div.action a {
                display: block;
                border-radius: 8px;
                background-color: #ffffff;
                padding: 0 25px;
                color: #7F7F84;
                font-size: 16px;
                font-weight: 700;
                height: 52px;
                margin: 0 10px;
                text-align: center;
                justify-content: center;
                align-items: center;
                display: flex;
                flex-direction: column;
            }

                div.small-device-filter aside div.action a span {
                    display: block;
                    font-size: 13px;
                    font-weight: 300;
                    line-height: 13px;
                    opacity: 0.7;
                }

                div.small-device-filter aside div.action a.cancel {
                    line-height: 52px;
                }

                div.small-device-filter aside div.action a.apply {
                    background-color: #D25D3E;
                    color: #ffffff;
                    min-width: 214px;
                }

div.small-device-product-set {
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 25, 4, 0.8);
    z-index: 1000;
    display: none;
}

    div.small-device-product-set div.card {
        margin-top: 90px;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        background-color: #ffffff;
        height: calc(100% - 90px);
        position: relative;
        overflow: hidden;
        padding: 20px 15px 80px;
    }

        div.small-device-product-set div.card a.back {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 600;
            line-height: 22px;
            color: #D25D3E;
        }

            div.small-device-product-set div.card a.back .fa {
                font-size: 22px;
                font-weight: 700;
                margin-right: 10px;
                line-height: 22px;
            }

        div.small-device-product-set div.card div.product-sets {
            height: 100%;
            overflow-y: auto;
        }

            div.small-device-product-set div.card div.product-sets .set-outer {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: flex-start;
                margin-bottom: 12px;
            }

                div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product {
                    width: 100%;
                    border: 1px solid rgba(240, 237, 229, 0.4);
                    border-radius: 10px;
                    padding: 10px;
                }

                    div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                        display: flex;
                        flex-direction: row;
                        flex-wrap: wrap;
                        align-items: center;
                    }

                        div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li {
                            position: relative;
                        }

                            div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li img {
                                width: 56px;
                                height: 48px;
                            }

                            div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li span {
                                font-size: 18px;
                                line-height: 22px;
                                font-weight: 600;
                                color: #201904;
                                display: block;
                            }

                                div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li span.qty {
                                    font-size: 12px;
                                    line-height: 25px;
                                    font-weight: 500;
                                    color: #7F7F84;
                                }

                            div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li a.toggle-table {
                                display: block;
                                width: 36px;
                                height: 36px;
                                background: #F6F4F0;
                                color: #212121;
                                text-decoration: none;
                                text-align: center;
                                line-height: 36px;
                                border-radius: 4px;
                            }

                            div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li a.more-action-toggle {
                                display: block;
                                line-height: 36px;
                                color: #201904;
                                font-size: 16px;
                                font-weight: 600;
                                text-decoration: none;
                                padding: 0;
                                display: none;
                            }

                                div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li a.more-action-toggle .fa {
                                    font-size: 22px;
                                    font-weight: 600;
                                    line-height: 36px;
                                }

                            div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions {
                                position: absolute;
                                right: 0;
                                top: 36px;
                                display: none;
                                background-color: #ffffff;
                                width: 220px;
                                box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                                border-radius: 10px;
                                overflow: hidden;
                                flex-direction: column;
                                z-index: 10;
                            }

                                div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li {
                                    display: block;
                                }

                                    div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li a {
                                        display: block;
                                        line-height: 40px;
                                        font-weight: 500;
                                        font-size: 18px;
                                        color: #201904;
                                        text-decoration: none;
                                        padding: 0 10px;
                                    }

                                    div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li:first-of-type {
                                        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                                    }

                            div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(1) {
                                width: 56px;
                            }

                            div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(2) {
                                width: calc(100% - 92px);
                                padding: 0 15px;
                            }

                            div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(3) {
                                width: 36px;
                            }

                            div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(4) {
                                width: 100%;
                                text-align: right;
                            }

                    div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product .set-outer-product-table {
                        display: none;
                        margin: 0;
                    }

                        div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table {
                            width: 100%;
                        }

                            div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
                                padding: 0;
                                text-align: left;
                            }

                                div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.image-title {
                                    display: flex;
                                    justify-content: flex-start;
                                    align-items: center;
                                    margin-bottom: 10px;
                                    width: 100%;
                                }

                                    div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.image-title img {
                                        width: 70px;
                                    }

                                    div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.image-title strong {
                                        font-size: 16px;
                                        font-weight: 600;
                                        color: #201904;
                                    }

                                div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td span {
                                    color: #7F7F84;
                                    font-size: 12px;
                                    line-height: 15px;
                                    font-weight: 500;
                                    display: block;
                                    padding: 0 0 0 40px;
                                }

                                div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.price-acton {
                                    display: flex;
                                    justify-content: space-between;
                                    padding: 10px 0 0 40px;
                                    width: 100%;
                                }

                                div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td input.price {
                                    border: 1px solid #F0EDE5;
                                    height: 36px;
                                    padding: 0 15px;
                                    border-radius: 10px;
                                    display: block;
                                    width: 80px;
                                    outline: none;
                                    margin: 0;
                                    text-align: center;
                                }

                                div.small-device-product-set div.card div.product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td a.action {
                                    display: block;
                                    width: 30px;
                                    height: 30px;
                                    line-height: 30px;
                                    color: #7F7F84;
                                    text-align: center;
                                }

                div.small-device-product-set div.card div.product-sets .set-outer:last-of-type {
                    margin-bottom: 0;
                }

        div.small-device-product-set div.card .product-actions {
            height: 50px;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
        }

            div.small-device-product-set div.card .product-actions ul {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
            }

                div.small-device-product-set div.card .product-actions ul li {
                    display: block;
                    position: relative;
                }

                    div.small-device-product-set div.card .product-actions ul li a {
                        display: inline-block;
                        padding: 0 15px;
                        height: 36px;
                        line-height: 36px;
                        border-radius: 6px;
                        font-size: 16px;
                        font-weight: bold;
                        text-decoration: none;
                        color: #ffffff;
                        margin: 0 6px;
                    }

                        div.small-device-product-set div.card .product-actions ul li a.all {
                            background-color: #D25D3E;
                        }

                        div.small-device-product-set div.card .product-actions ul li a.add-set {
                            background-color: #201904;
                        }

                    div.small-device-product-set div.card .product-actions ul li ul {
                        display: none;
                        position: absolute;
                        width: 137px;
                        right: 0;
                        top: 36px;
                        flex-direction: column;
                        background-color: #ffffff;
                        border-radius: 10px;
                        box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                        padding: 10px;
                        z-index: 10;
                    }

                        div.small-device-product-set div.card .product-actions ul li ul li {
                            display: block;
                        }

                            div.small-device-product-set div.card .product-actions ul li ul li button {
                                display: block;
                                height: 43px;
                                background-color: #D25D3E;
                                font-size: 18px;
                                font-weight: 600;
                                width: 100%;
                                border-radius: 8px;
                                border: none;
                                color: #ffffff;
                            }

                            div.small-device-product-set div.card .product-actions ul li ul li span {
                                display: block;
                                line-height: 42px;
                                font-size: 18px;
                                font-weight: 500;
                                text-align: center;
                            }

        div.small-device-product-set div.card div.action {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px 0;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 45;
            background-color: #ffffff;
        }

            div.small-device-product-set div.card div.action a {
                display: block;
                border-radius: 8px;
                background-color: #ffffff;
                padding: 0 25px;
                color: #7F7F84;
                font-size: 16px;
                font-weight: 700;
                height: 52px;
                margin: 0 10px;
                text-align: center;
                justify-content: center;
                align-items: center;
                display: flex;
                flex-direction: column;
            }

                div.small-device-product-set div.card div.action a span {
                    display: block;
                    font-size: 13px;
                    font-weight: 300;
                    line-height: 13px;
                    opacity: 0.7;
                }

                div.small-device-product-set div.card div.action a.cancel {
                    line-height: 52px;
                }

                div.small-device-product-set div.card div.action a.next {
                    background-color: #D25D3E;
                    color: #ffffff;
                    min-width: 150px;
                }

a.small-device-toggle {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0px 7px 10px rgba(201, 201, 201, 0.2);
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 50;
    display: none;
    background: #ffffff url(../images/icons/btn_filter_black.svg) center center no-repeat;
}

    a.small-device-toggle:hover {
        background: #ffffff url(../images/icons/btn_filter_orange.svg) center center no-repeat;
    }

input[type=radio].radio-circle {
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    margin-right: 8px;
    cursor: pointer;
}

    input[type=radio].radio-circle::before {
        border: 1px solid #F0EDE5;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    input[type=radio].radio-circle::after {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        content: "";
        display: block;
        position: absolute;
        background-color: transparent;
        z-index: 2;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    input[type=radio].radio-circle:checked::before {
        border-color: #B3CE67;
    }

    input[type=radio].radio-circle:checked::after {
        background: #B3CE67;
    }

    input[type=radio].radio-circle:checked + label {
        color: #201904;
    }

input[type=checkbox].checkbox-rounded {
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    cursor: pointer;
}

    input[type=checkbox].checkbox-rounded::before {
        border: 1px solid #b1b1b1;
        width: 20px;
        height: 20px;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        border-radius: 4px;
    }

    input[type=checkbox].checkbox-rounded::after {
        width: 20px;
        height: 20px;
        content: "";
        display: block;
        position: absolute;
        background-color: transparent;
        z-index: 2;
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 4px;
    }

    input[type=checkbox].checkbox-rounded:checked::before {
        border-color: #B3CE67;
    }

    input[type=checkbox].checkbox-rounded:checked::after {
        background: #B3CE67 url(../images/icons/tick.svg) center center no-repeat;
        background-size: 20px 20px;
        content: "";
        color: #ffffff;
    }

input[type=checkbox].checkbox-square {
    position: relative;
    width: 22px;
    height: 22px;
    margin: 0;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    cursor: pointer;
    margin-right: 10px;
}

    input[type=checkbox].checkbox-square::before {
        border: 1px solid #F0EDE5;
        width: 22px;
        height: 22px;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        border-radius: 2px;
        background-color: #ffffff;
    }

    input[type=checkbox].checkbox-square::after {
        width: 22px;
        height: 22px;
        content: "";
        display: block;
        position: absolute;
        background-color: transparent;
        z-index: 2;
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 2px;
    }

    input[type=checkbox].checkbox-square:checked::before {
        border-color: #B3CE67;
    }

    input[type=checkbox].checkbox-square:checked::after {
        background: #B3CE67 url(../images/icons/tick.svg) center center no-repeat;
        background-size: 20px 20px;
    }

input[type=checkbox].checkbox-toggle {
    position: relative;
    width: 42px;
    height: 20px;
    margin: 0;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    cursor: pointer;
}

    input[type=checkbox].checkbox-toggle:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 42px;
        background-color: rgba(127, 127, 132, 0.14);
        border-radius: 14px;
        transition: background-color 0.2s;
        cursor: pointer;
    }

    input[type=checkbox].checkbox-toggle:after {
        content: "";
        display: block;
        position: absolute;
        transition: transform 0.2s;
        top: 2px;
        left: 2px;
        border-radius: 20px;
        background-color: #ffffff;
        height: 16px;
        width: 16px;
        cursor: pointer;
    }

    input[type=checkbox].checkbox-toggle:checked:before {
        background-color: #B3CE67;
    }

    input[type=checkbox].checkbox-toggle:checked:after {
        transform: translateX(21px);
        -webkit-transform: translateX(21px);
    }

input[type=checkbox].checkbox-circle {
    position: relative;
    width: 18px;
    height: 18px;
    margin: 0;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    cursor: pointer;
}

    input[type=checkbox].checkbox-circle::before {
        border: 1px solid #F0EDE5;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    input[type=checkbox].checkbox-circle::after {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        content: "";
        display: block;
        position: absolute;
        background-color: transparent;
        z-index: 2;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    input[type=checkbox].checkbox-circle:checked::before {
        border-color: #B3CE67;
    }

    input[type=checkbox].checkbox-circle:checked::after {
        background: #B3CE67;
    }

.total-products, .total-stores, .total-entries {
    color: #7F7F84;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.paging {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    font-size: 16px;
    font-weight: 500;
}

    .paging li {
        padding-left: 10px;
    }

        .paging li a {
            min-width: 36px;
            line-height: 36px;
            border-radius: 4px;
            background: #ffffff;
            color: #201904;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            text-transform: uppercase;
            transition: 0.3s;
        }

            .paging li a .fa {
                font-size: 18px;
                font-weight: bolder;
                margin: 0 15px;
            }

        .paging li:hover a {
            background-color: #D25D3E;
            color: #ffffff;
        }

        .paging li.active a {
            background-color: #D25D3E;
            color: #ffffff;
        }

        .paging li:first-of-type a, .paging li:last-of-type a {
            background: transparent;
            font-weight: 600;
        }

            .paging li:first-of-type a:hover, .paging li:last-of-type a:hover {
                color: #201904;
            }

.modal .modal-content {
    padding: 10px 15px;
    border-radius: 10px;
}

    .modal .modal-content .modal-header {
        border-bottom: none;
    }

        .modal .modal-content .modal-header h5 span {
            color: #D25D3E;
        }

    .modal .modal-content .modal-body .drag-drop {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 160px;
        min-height: 160px;
        border: 1px dashed #F0EDE5;
        border-radius: 10px;
        position: relative;
    }

        .modal .modal-content .modal-body .drag-drop .upload-icon {
            width: 26px;
        }

        .modal .modal-content .modal-body .drag-drop span {
            color: #7F7F84;
            font-size: 12px;
            font-weight: 500;
            line-height: 25px;
        }

            .modal .modal-content .modal-body .drag-drop span.drop {
                display: block;
                margin: 10px 0 5px;
                font-size: 16px;
                line-height: 20px;
                font-weight: 600;
                color: #201904;
            }

        .modal .modal-content .modal-body .drag-drop label {
            display: inline;
            color: #D25D3E;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
        }

        .modal .modal-content .modal-body .drag-drop input[type=file] {
            opacity: 0;
            position: absolute;
            z-index: -1;
        }

        .modal .modal-content .modal-body .drag-drop div.selected-image {
            position: absolute;
            left: 0;
            top: 0;
            width: auto;
            height: 140px;
            overflow: hidden;
            border-radius: 6px;
            z-index: 10;
            background-color: rgba(0, 0, 0, 0.35);
            width: 100%;
            height: 100%;
            justify-content: center;
            display: none;
            text-align: center;
        }

            .modal .modal-content .modal-body .drag-drop div.selected-image a {
                position: absolute;
                right: 5px;
                top: 5px;
                color: #ffffff;
                font-size: 22px;
                width: 20px;
                height: 20px;
                line-height: 20px;
            }

                .modal .modal-content .modal-body .drag-drop div.selected-image a:hover {
                    color: #201904;
                }

            .modal .modal-content .modal-body .drag-drop div.selected-image img {
                width: auto;
                height: 100%;
            }

        .modal .modal-content .modal-body .drag-drop div.selected-image2 {
            position: absolute;
            left: 0;
            top: 0;
            width: auto;
            height: 140px;
            overflow: hidden;
            border-radius: 6px;
            z-index: 10;
            background-color: rgba(0, 0, 0, 0.35);
            width: 100%;
            height: 100%;
            justify-content: center;
            display: none;
            text-align: center;
        }

            .modal .modal-content .modal-body .drag-drop div.selected-image2 a {
                position: absolute;
                right: 5px;
                top: 5px;
                color: #ffffff;
                font-size: 22px;
                width: 20px;
                height: 20px;
                line-height: 20px;
            }

                .modal .modal-content .modal-body .drag-drop div.selected-image2 a:hover {
                    color: #201904;
                }

            .modal .modal-content .modal-body .drag-drop div.selected-image2 img {
                width: auto;
                height: 100%;
            }

    .modal .modal-content .modal-body div.uploading {
        position: relative;
        overflow: hidden;
        margin-top: 18px;
        display: flex;
        height: 65px;
        border-radius: 10px;
        border: 1px solid rgba(127, 127, 132, 0.14);
        align-items: center;
        padding: 0 16px;
    }

        .modal .modal-content .modal-body div.uploading div.upload-bar {
            position: absolute;
            background-color: #7F7F84;
            opacity: 0.06;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0%;
        }

        .modal .modal-content .modal-body div.uploading span.status {
            position: relative;
            z-index: 2;
            display: block;
            width: calc(100% - 62px);
            color: #7F7F84;
            font-size: 12px;
            font-weight: 400;
        }

            .modal .modal-content .modal-body div.uploading span.status strong {
                display: block;
                color: #201904;
                font-size: 14px;
                font-weight: 600;
            }

        .modal .modal-content .modal-body div.uploading a {
            width: 26px;
            height: 26px;
            display: block;
            line-height: 26px;
            margin-left: 5px;
            position: relative;
            z-index: 2;
        }

            .modal .modal-content .modal-body div.uploading a.view {
                width: 92px;
                font-size: 12px;
                line-height: 26px;
                color: #D32243;
            }

        .modal .modal-content .modal-body div.uploading.done span.status {
            width: calc(100% - 26px);
        }

        .modal .modal-content .modal-body div.uploading.error {
            border: 1px solid #D32243;
        }

            .modal .modal-content .modal-body div.uploading.error div.upload-bar {
                background-color: #D32243;
                opacity: 0.09;
            }

            .modal .modal-content .modal-body div.uploading.error span.status {
                width: calc(100% - 128px);
            }

    .modal .modal-content .modal-body h5 {
        display: block;
        color: #201904;
        font-size: 20px;
        line-height: 25px;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }

    .modal .modal-content .modal-body p {
        color: #7F7F84;
        font-size: 16px;
        line-height: 20px;
        font-weight: 500;
        margin: 0;
        text-align: center;
    }

        .modal .modal-content .modal-body p span {
            color: #C64F2F;
        }

    .modal .modal-content .modal-body form {
        color: #201904;
    }

        .modal .modal-content .modal-body form label {
            display: block;
            font-size: 16px;
            line-height: 20px;
            font-weight: 500;
        }

            .modal .modal-content .modal-body form label.label {
                display: block;
                line-height: 25px;
                font-size: 16px;
                font-weight: 500;
                color: #201904;
            }

        .modal .modal-content .modal-body form input.name, .modal .modal-content .modal-body form input[type=text] {
            display: block;
            width: 100%;
            height: 42px;
            padding: 0 15px;
            border-radius: 10px;
            border: 1px solid #F0EDE5;
            margin-bottom: 15px;
            margin-top: 15px;
        }

        .modal .modal-content .modal-body form div.allowance {
            position: relative;
            border-radius: 10px;
            padding: 15px;
            border: 1px solid #F0EDE5;
            margin-bottom: 10px;
        }

            .modal .modal-content .modal-body form div.allowance span {
                display: block;
                line-height: 20px;
                font-size: 17px;
                font-weight: 600;
            }

            .modal .modal-content .modal-body form div.allowance .toggleCheckbox {
                position: absolute;
                right: 15px;
                top: 15px;
                width: 42px;
                height: 20px;
                margin: 0;
                display: inline-block;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                -o-user-select: none;
                user-select: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                outline: 0;
                cursor: pointer;
            }

                .modal .modal-content .modal-body form div.allowance .toggleCheckbox:before {
                    content: "";
                    display: block;
                    position: absolute;
                    top: 0;
                    left: 0;
                    height: 20px;
                    width: 42px;
                    background-color: rgba(127, 127, 132, 0.14);
                    border-radius: 14px;
                    transition: background-color 0.2s;
                    cursor: pointer;
                }

                .modal .modal-content .modal-body form div.allowance .toggleCheckbox:after {
                    content: "";
                    display: block;
                    position: absolute;
                    transition: transform 0.2s;
                    top: 2px;
                    left: 2px;
                    border-radius: 20px;
                    background-color: #ffffff;
                    height: 16px;
                    width: 16px;
                    cursor: pointer;
                }

                .modal .modal-content .modal-body form div.allowance .toggleCheckbox:checked:before {
                    background-color: #B3CE67;
                }

                .modal .modal-content .modal-body form div.allowance .toggleCheckbox:checked:after {
                    transform: translateX(21px);
                    -webkit-transform: translateX(21px);
                }

            .modal .modal-content .modal-body form div.allowance ul {
                list-style: none;
                margin: 10px 0 0;
                padding: 0;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
            }

                .modal .modal-content .modal-body form div.allowance ul li label {
                    line-height: 18px;
                    padding-right: 15px;
                    margin: 0;
                    font-size: 14px;
                    font-weight: 500;
                    display: flex;
                    align-items: center;
                }

                    .modal .modal-content .modal-body form div.allowance ul li label .field-checkbox {
                        position: relative;
                        width: 18px;
                        height: 18px;
                        margin: 0;
                        display: inline-block;
                        -webkit-user-select: none;
                        -moz-user-select: none;
                        -ms-user-select: none;
                        -o-user-select: none;
                        user-select: none;
                        -webkit-appearance: none;
                        -moz-appearance: none;
                        appearance: none;
                        outline: 0;
                        margin-right: 8px;
                        cursor: pointer;
                    }

                        .modal .modal-content .modal-body form div.allowance ul li label .field-checkbox::before {
                            border: 1px solid #F0EDE5;
                            width: 18px;
                            height: 18px;
                            content: "";
                            display: block;
                            position: absolute;
                            left: 0;
                            top: 0;
                            z-index: 1;
                            border-radius: 4px;
                        }

                        .modal .modal-content .modal-body form div.allowance ul li label .field-checkbox:checked::before {
                            border-color: #B3CE67;
                            background: #B3CE67 url(../images/icons/tick.svg) center center no-repeat;
                            background-size: 20px 20px;
                        }

            .modal .modal-content .modal-body form div.allowance:last-of-type {
                margin-bottom: 0;
            }

        .modal .modal-content .modal-body form table.add-emblish {
            width: 100%;
            margin-top: 15px;
        }

            .modal .modal-content .modal-body form table.add-emblish thead tr th {
                padding: 8px 10px;
                font-size: 12px;
                text-transform: uppercase;
                color: #7F7F84;
                font-weight: 600;
                text-align: center;
                line-height: 30px;
            }

                .modal .modal-content .modal-body form table.add-emblish thead tr th:nth-child(1) {
                    width: 86px;
                }

                .modal .modal-content .modal-body form table.add-emblish thead tr th:nth-child(2) {
                    text-align: left;
                }

                .modal .modal-content .modal-body form table.add-emblish thead tr th:nth-child(3) {
                    text-align: left;
                    width: 50px;
                }

            .modal .modal-content .modal-body form table.add-emblish tbody tr td {
                padding: 10px;
                text-align: center;
                vertical-align: middle;
            }

                .modal .modal-content .modal-body form table.add-emblish tbody tr td .image {
                    width: 55px;
                    height: 55px;
                    display: block;
                    margin: 0 auto;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .modal .modal-content .modal-body form table.add-emblish tbody tr td .image img {
                        width: inherit;
                        height: inherit;
                    }

                .modal .modal-content .modal-body form table.add-emblish tbody tr td select {
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    border-radius: 10px;
                    padding: 0 40px 0 15px;
                    height: 48px;
                    border: none;
                    background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
                    background-size: 12px 12px;
                    color: #4A4A4D;
                    font-size: 15px;
                    border: 1px solid #F0EDE5;
                    width: 100%;
                }

                .modal .modal-content .modal-body form table.add-emblish tbody tr td a.delete {
                    display: block;
                    margin: 9px auto;
                    width: 30px;
                    height: 30px;
                    color: #7F7F84;
                    text-decoration: none;
                    font-size: 22px;
                }

                    .modal .modal-content .modal-body form table.add-emblish tbody tr td a.delete:hover {
                        color: #D32243;
                    }

        .modal .modal-content .modal-body form div.product-details {
            margin-bottom: 15px;
        }

            .modal .modal-content .modal-body form div.product-details aside div.filter-slider {
                margin-bottom: 20px;
            }

                .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.title {
                    display: flex;
                    justify-content: space-between;
                    height: 25px;
                    align-items: center;
                    margin-bottom: 10px;
                }

                    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.title span {
                        color: #201904;
                        font-size: 18px;
                        line-height: 25px;
                        font-weight: 600;
                    }

                    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.title a {
                        display: block;
                        color: #201904;
                        font-weight: 800;
                        font-size: 22px;
                        text-decoration: none;
                        width: 25px;
                        height: 25px;
                        line-height: 25px;
                        text-align: center;
                    }

                .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider {
                    height: 0;
                    overflow: hidden;
                    width: 100%;
                    padding: 0 10px;
                    transition: 0.5s all;
                }

                    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .values {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        width: 100%;
                    }

                        .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .values input[type=text] {
                            border: none;
                            display: block;
                            width: 100px;
                            background-color: transparent;
                            color: #4A4A4D;
                            font-size: 15px;
                            font-weight: 400;
                            line-height: 37px;
                        }

                            .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                                text-align: right;
                            }

                    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .slider-box {
                        width: 100%;
                        margin: 15px auto;
                    }

                    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .ui-slider {
                        margin-top: 20px;
                        height: 5px;
                        position: relative;
                        border: none;
                        background: #C6C5C5;
                    }

                    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .ui-state-default, .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
                        background: #ffffff;
                        border-radius: 50%;
                        outline: none;
                        border: none;
                        position: absolute;
                        top: -9px;
                        box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
                    }

                    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
                        background: #D25D3E;
                    }

                    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider #labelHolder {
                        height: 5px;
                        position: relative;
                        border: none;
                    }

                    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider span {
                        position: absolute;
                        width: 1.2em;
                        height: 1.2em;
                        margin-left: -0.6em;
                        text-align: center;
                    }

                .modal .modal-content .modal-body form div.product-details aside div.filter-slider.active div.price-slider {
                    height: 75px;
                }

            .modal .modal-content .modal-body form div.product-details aside div.filter {
                margin-bottom: 20px;
            }

                .modal .modal-content .modal-body form div.product-details aside div.filter div.title {
                    display: flex;
                    justify-content: space-between;
                    height: 25px;
                    align-items: center;
                    margin-bottom: 10px;
                }

                    .modal .modal-content .modal-body form div.product-details aside div.filter div.title span {
                        color: #201904;
                        font-size: 18px;
                        line-height: 25px;
                        font-weight: 600;
                    }

                    .modal .modal-content .modal-body form div.product-details aside div.filter div.title a {
                        display: block;
                        color: #201904;
                        font-weight: 800;
                        font-size: 22px;
                        text-decoration: none;
                        width: 25px;
                        height: 25px;
                        line-height: 25px;
                        text-align: center;
                    }

                .modal .modal-content .modal-body form div.product-details aside div.filter .filter-checkbox {
                    height: 0;
                    overflow: hidden;
                    transition: 0.5s all;
                }

                    .modal .modal-content .modal-body form div.product-details aside div.filter .filter-checkbox ul {
                        margin: 0;
                        padding: 0;
                        list-style: none;
                        min-height: 185px;
                        max-height: 185px;
                        overflow-y: auto;
                    }

                        .modal .modal-content .modal-body form div.product-details aside div.filter .filter-checkbox ul li label {
                            line-height: 37px;
                            display: flex;
                            flex-direction: row;
                            flex-wrap: nowrap;
                            font-size: 15px;
                            font-weight: 400;
                            color: #4A4A4D;
                            align-items: center;
                            margin: 0;
                        }

                        .modal .modal-content .modal-body form div.product-details aside div.filter .filter-checkbox ul.active {
                            display: block;
                        }

                .modal .modal-content .modal-body form div.product-details aside div.filter.active .filter-checkbox {
                    height: 185px;
                }

            .modal .modal-content .modal-body form div.product-details div.products-box {
                padding-left: 15px;
                width: 100%;
            }

                .modal .modal-content .modal-body form div.product-details div.products-box table.products {
                    width: 100%;
                }

                    .modal .modal-content .modal-body form div.product-details div.products-box table.products thead tr th {
                        text-transform: uppercase;
                        text-align: center;
                        color: #7F7F84;
                        font-weight: 600;
                        font-size: 12px;
                    }

                        .modal .modal-content .modal-body form div.product-details div.products-box table.products thead tr th:nth-child(1) {
                            text-align: left;
                        }

                        .modal .modal-content .modal-body form div.product-details div.products-box table.products thead tr th:nth-child(2) {
                            text-align: right;
                        }

                    .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr {
                        border-bottom: 1px solid #F0EDE5;
                    }

                        .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td {
                            vertical-align: middle;
                            text-align: left;
                            padding: 10px 0;
                        }

                            .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td img {
                                width: 56px;
                                margin: 0 5px;
                            }

                            .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td input.fields {
                                width: 52px;
                                height: 36px;
                                border: 1px solid #F0EDE5;
                                border-radius: 10px;
                                text-align: center;
                                padding: 0 5px;
                                vertical-align: middle;
                            }

                            .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td a {
                                display: inline-block;
                                font-size: 18px;
                                text-decoration: none;
                                margin: 0 10px;
                                color: #7F7F84;
                            }

                                .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td a.more-option {
                                    color: #7F7F84;
                                }

                                .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td a.delete {
                                    color: #D32243;
                                }

                            .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td:first-of-type {
                                display: flex;
                                align-items: center;
                            }

                                .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td:first-of-type span {
                                    display: block;
                                    text-align: left;
                                    font-size: 12px;
                                    color: #7F7F84;
                                    line-height: 18px;
                                    font-weight: 500;
                                }

                                    .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td:first-of-type span.title {
                                        color: #201904;
                                        font-size: 16px;
                                        line-height: 20px;
                                    }

                                    .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td:first-of-type span.qty, .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td:first-of-type span.size {
                                        font-size: 12px;
                                    }

                            .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr td:last-of-type {
                                text-align: right;
                            }

                        .modal .modal-content .modal-body form div.product-details div.products-box table.products tbody tr:last-of-type {
                            border-bottom: none;
                        }

        .modal .modal-content .modal-body form.sendEmail .recipent {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
        }

            .modal .modal-content .modal-body form.sendEmail .recipent span {
                display: block;
                color: #7F7F84;
                font-size: 12px;
                font-weight: 600;
                line-height: 30px;
            }

            .modal .modal-content .modal-body form.sendEmail .recipent .email {
                display: block;
                height: 30px;
                padding: 0 20px;
                border: none;
                color: #4A4A4D;
                font-size: 14px;
                font-weight: 400;
            }

            .modal .modal-content .modal-body form.sendEmail .recipent a {
                font-size: 14px;
                font-weight: 400;
                line-height: 30px;
                color: #D25D3E;
                display: block;
            }

        .modal .modal-content .modal-body form.sendEmail div.content-area {
            border: 1px solid rgba(240, 237, 229, 0.4);
            border-radius: 10px;
            overflow: hidden;
            padding: 15px;
        }

            .modal .modal-content .modal-body form.sendEmail div.content-area ul.toolbar {
                display: flex;
                justify-content: flex-start;
                list-style: none;
                margin: 0;
                padding: 0 0 10px;
                border-bottom: 1px solid rgba(240, 237, 229, 0.4);
            }

                .modal .modal-content .modal-body form.sendEmail div.content-area ul.toolbar li.tool {
                    margin: 0 5px;
                }

                    .modal .modal-content .modal-body form.sendEmail div.content-area ul.toolbar li.tool button {
                        border: none;
                        background-color: transparent;
                        display: block;
                        font-size: 18px;
                        font-weight: 600;
                        width: 30px;
                        height: 30px;
                    }

            .modal .modal-content .modal-body form.sendEmail div.content-area #output {
                height: 300px;
                border: none;
                outline: none;
                padding: 15px 0;
            }

        .modal .modal-content .modal-body form div.assign-user-outer {
            margin-top: 15px;
            min-height: 455px;
            max-height: 455px;
            overflow-y: auto;
        }

            .modal .modal-content .modal-body form div.assign-user-outer table.assign-user {
                width: 100%;
            }

                .modal .modal-content .modal-body form div.assign-user-outer table.assign-user thead tr th {
                    padding: 8px 10px;
                    font-size: 12px;
                    text-transform: uppercase;
                    color: #7F7F84;
                    font-weight: 600;
                    line-height: 25px;
                }

                    .modal .modal-content .modal-body form div.assign-user-outer table.assign-user thead tr th:nth-child(1) {
                        width: calc(100% - 260px);
                    }

                    .modal .modal-content .modal-body form div.assign-user-outer table.assign-user thead tr th:nth-child(2) {
                        width: 200px;
                    }

                    .modal .modal-content .modal-body form div.assign-user-outer table.assign-user thead tr th:nth-child(3) {
                        text-align: right;
                        width: 60px;
                    }

                .modal .modal-content .modal-body form div.assign-user-outer table.assign-user tbody tr {
                    border-bottom: 1px solid #F0EDE5;
                    padding: 5px 0;
                }

                    .modal .modal-content .modal-body form div.assign-user-outer table.assign-user tbody tr td {
                        padding: 10px;
                        vertical-align: middle;
                    }

                        .modal .modal-content .modal-body form div.assign-user-outer table.assign-user tbody tr td img {
                            float: left;
                            margin-right: 15px;
                        }

                        .modal .modal-content .modal-body form div.assign-user-outer table.assign-user tbody tr td span {
                            font-size: 13px;
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            height: 100%;
                            color: #4A4A4D;
                        }

                            .modal .modal-content .modal-body form div.assign-user-outer table.assign-user tbody tr td span strong {
                                display: block;
                                font-size: 16px;
                                font-weight: 600;
                                line-height: 22px;
                                color: #201904;
                            }

                        .modal .modal-content .modal-body form div.assign-user-outer table.assign-user tbody tr td input[type=checkbox] {
                            margin: 0 0 0 auto;
                        }

    .modal .modal-content .modal-body div.search {
        display: flex;
        flex-direction: row;
        height: 52px;
        border-radius: 10px;
        overflow: hidden;
        background-color: #ffffff;
        margin-right: 12px;
        width: 100%;
        border: 1px solid #F0EDE5;
    }

        .modal .modal-content .modal-body div.search input.search {
            border: none;
            background-color: transparent;
            padding: 0 15px;
            width: calc(100% - 52px);
        }

        .modal .modal-content .modal-body div.search button[type=button] {
            width: 52px;
            height: 52px;
            display: block;
            border-radius: 10px;
            line-height: 52px;
            text-align: center;
            border: none;
            background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
        }

            .modal .modal-content .modal-body div.search button[type=button]:hover {
                background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
            }

    .modal .modal-content .modal-footer {
        border-top: none;
    }

        .modal .modal-content .modal-footer button {
            background-color: #D25D3E;
            color: #ffffff;
            border-radius: 10px;
            padding: 0 24px;
            font-weight: 700;
            font-size: 18px;
            border: none;
            height: 52px;
        }

            .modal .modal-content .modal-footer button.cancel {
                background: transparent;
                color: #7F7F84;
            }

                .modal .modal-content .modal-footer button.cancel:hover {
                    background-color: transparent;
                    color: #4A4A4D;
                }

            .modal .modal-content .modal-footer button.send:hover, .modal .modal-content .modal-footer button.create:hover, .modal .modal-content .modal-footer button.done:hover, .modal .modal-content .modal-footer button.confirm:hover {
                background-color: #C64F2F;
            }

            .modal .modal-content .modal-footer button.send:focus, .modal .modal-content .modal-footer button.create:focus, .modal .modal-content .modal-footer button.done:focus, .modal .modal-content .modal-footer button.confirm:focus {
                background-color: #DC836A;
            }
/*# sourceMappingURL=style.css.map */

#btnApplyFilters {
    order: 2;
    background-color: #D25D3E;
    color: #ffffff;
    width: 100%;
    display: table;
    text-align: center;
    line-height: 52px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 0px;
    margin-top: 4px;
}

#btnClearFilters {
    order: 2;
    background-color: transparent;
    width: 100%;
    display: table;
    text-align: center;
    line-height: 52px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 0px;
    color: #7F7F84;
}

section.emp_product-details {
    padding: 30px 0;
}

    section.emp_product-details div.large-image {
        display: block;
        border-radius: 10px;
        overflow: hidden;
        background-color: #ffffff;
        cursor: zoom-in;
        width: 100%;
        height: 450px;
        overflow: hidden;
        position: relative;
        z-index: 0;
    }

        section.emp_product-details div.large-image img {
            transition: 0.5s;
            position: relative;
            z-index: 1;
        }

            section.emp_product-details div.large-image img.image {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

            section.emp_product-details div.large-image img.zoom {
                opacity: 1;
                position: absolute;
                transition: width 0.2s ease-out, opacity 0.2s ease-out 0.2s;
                z-index: 5;
            }

        section.emp_product-details div.large-image::after {
            font-family: "FontAwesome";
            content: "";
            background: url(../images/icons/icon_zoom2.svg) center center no-repeat;
            position: absolute;
            right: 10px;
            bottom: 10px;
            width: 30px;
            height: 30px;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    section.emp_product-details div.product-thumbnails {
        margin: 15px 0;
    }

        section.emp_product-details div.product-thumbnails img {
            width: 100%;
            display: block;
            border: 2px solid transparent;
            border-radius: 10px;
            overflow: hidden;
            background-color: #ffffff;
            height: 120px;
            object-fit: contain;
        }

    section.emp_product-details .swiper-slide-thumb-active div.product-thumbnails img {
        border-color: #D25D3E;
    }

    section.emp_product-details div.product-detail {
        color: #201904;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

        section.emp_product-details div.product-detail span.code {
            display: block;
            width: 100%;
            color: #7F7F84;
            font-weight: 500;
            font-size: 14px;
            line-height: 25px;
        }

        section.emp_product-details div.product-detail span.title {
            display: block;
            font-weight: 600;
            font-size: 37px;
            line-height: 46px;
            width: 100%;
            margin-bottom: 10px;
        }

        section.emp_product-details div.product-detail div.price-stock {
            width: 100%;
            display: flex;
            flex-wrap: nowrap;
            margin: 10px 0;
        }

            section.emp_product-details div.product-detail div.price-stock span.price {
                display: block;
                font-weight: 400;
                font-size: 29px;
                line-height: 25px;
                padding-right: 15px;
            }

            section.emp_product-details div.product-detail div.price-stock span.status {
                font-weight: 500;
                font-size: 14px;
                line-height: 25px;
                background-color: rgba(32, 25, 4, 0.1);
            }

                section.emp_product-details div.product-detail div.price-stock span.status.in-stock {
                    color: #739905;
                    background-color: rgba(115, 153, 5, 0.3);
                    height: 28px;
                    line-height: 28px;
                    padding: 0 15px;
                    border-radius: 5px;
                }

        section.emp_product-details div.product-detail fieldset,
        .embelishment-popupdetails .product-detail fieldset {
            margin: 10px 0;
            padding: 0px 20px 15px;
            border: 1px solid #EAE8E3;
            border-radius: 7px;
            width: 100%;
        }

            section.emp_product-details div.product-detail fieldset legend,
            .embelishment-popupdetails .product-detail fieldset legend {
                display: table;
                width: auto;
                font-weight: 600;
                font-size: 12px;
                line-height: 25px;
                color: #7F7F84;
                background-color: #F6F4F0;
                padding: 0 15px;
                margin-left: -5px;
            }

            section.emp_product-details div.product-detail fieldset div.option,
            .embelishment-popupdetails .product-detail fieldset .option {
                display: flex;
                flex-wrap: nowrap;
                align-items: center;
                margin-bottom: 15px;
            }

            .embelishment-popupdetails .product-detail fieldset .option {
                margin-bottom: 30px;
            }

                section.emp_product-details div.product-detail fieldset div.option span.option-title,
                .embelishment-popupdetails .product-detail fieldset .option span.option-title {
                    font-weight: 600;
                    font-size: 17px;
                    line-height: 25px;
                    margin-right: 15px;
                    white-space: normal;
                    text-transform: capitalize;
                    min-width: 66px;
                }

                section.emp_product-details div.product-detail fieldset div.option div.option-choice,
                .embelishment-popupdetails .product-detail fieldset .option .option-choice {
                    width: 100%;
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 10px 5px;
                }

                    section.emp_product-details div.product-detail fieldset div.option div.option-choice a.color,
                    .embelishment-popupdetails .product-detail fieldset .option .option-choice a.color {
                        width: 32px;
                        height: 32px;
                        border-radius: 50%;
                        border: 2px solid #a7a3a3;
                        margin-right: 10px;
                        display: block;
                        overflow: hidden;
                        text-decoration: none;
                    }

                        section.emp_product-details div.product-detail fieldset div.option div.option-choice a.color img,
                        .embelishment-popupdetails .product-detail fieldset .option .option-choice a.color img {
                            width: 100%;
                            height: 100%;
                            border-radius: 50%;
                        }

                        section.emp_product-details div.product-detail fieldset div.option div.option-choice a.color.active,
                        .embelishment-popupdetails .product-detail fieldset .option .option-choice a.color.active {
                            border-color: #D25D3E;
                        }

                            section.emp_product-details div.product-detail fieldset div.option div.option-choice a.color.active img,
                            .embelishment-popupdetails .product-detail fieldset .option .option-choice a.color.active img {
                                border: 2px solid #F6F4F0;
                            }

                    section.emp_product-details div.product-detail fieldset div.option div.option-choice a.size,
                    .embelishment-popupdetails .product-detail fieldset .option .option-choice a.size {
                        display: block;
                        border-radius: 7px;
                        height: auto;
                        line-height: normal;
                        padding: 10px 20px;
                        margin-right: 10px;
                        border: 2px solid #F0EDE5;
                        color: #4A4A4D;
                        font-weight: 400;
                        font-size: 16px;
                        text-transform: uppercase;
                        background-color: #ffffff;
                        text-decoration: none;
                    }

                        section.emp_product-details div.product-detail fieldset div.option div.option-choice a.size.active,
                        .embelishment-popupdetails .product-detail fieldset .option .option-choice a.size.active {
                            border-color: #D25D3E;
                            color: #201904;
                            font-weight: 500;
                        }

                    section.emp_product-details div.product-detail fieldset div.option div.option-choice a.image,
                    .embelishment-popupdetails .product-detail fieldset .option .option-choice a.image {
                        width: 20%;
                        height: 50px;
                        padding: 10px;
                        border-radius: 7px;
                        border: 2px solid #F0EDE5;
                        margin-right: 10px;
                        display: block;
                        overflow: hidden;
                        text-decoration: none;
                        background: #ffffff;
                    }

                        section.emp_product-details div.product-detail fieldset div.option div.option-choice a.image img,
                        .embelishment-popupdetails .product-detail fieldset .option .option-choice a.image img {
                            width: 100%;
                            height: 100%;
                        }

                        section.emp_product-details div.product-detail fieldset div.option div.option-choice a.image.active,
                        .embelishment-popupdetails .product-detail fieldset .option .option-choice a.image.active,
                        .embelishment-popupdetails .product-detail fieldset .option .option-choice a.cs-emb-ddl.active {
                            border-color: #D25D3E;
                        }

                            section.emp_product-details div.product-detail fieldset div.option div.option-choice a.image.active img,
                            .embelishment-popupdetails .product-detail fieldset .option .option-choice a.image.active img {
                                border: 2px solid #F6F4F0;
                            }

                    .embelishment-popupdetails .product-detail fieldset .option .option-choice .cs-emb-ddl {
                        width: 30%;
                        height: auto;
                        padding: 10px;
                        border-radius: 7px;
                        border: 2px solid #F0EDE5;
                        margin-right: 10px;
                        display: block;
                        overflow: hidden;
                        text-decoration: none;
                        background: #f1f1f1;
                    }

                    section.emp_product-details div.product-detail fieldset div.option div.option-choice a.position,
                    .embelishment-popupdetails .product-detail fieldset .option .option-choice a.position {
                        color: #201904;
                        width: auto;
                        height: 50px;
                        padding: 10px;
                        border-radius: 7px;
                        border: 2px solid #F0EDE5;
                        margin-right: 10px;
                        display: block;
                        overflow: hidden;
                        text-decoration: none;
                        background: #ffffff;
                        padding: 0 15px;
                        line-height: 50px;
                    }

                        section.emp_product-details div.product-detail fieldset div.option div.option-choice a.position.active,
                        .embelishment-popupdetails .product-detail fieldset .option .option-choice a.position.active {
                            border-color: #D25D3E;
                            font-weight: 500;
                        }

                            section.emp_product-details div.product-detail fieldset div.option div.option-choice a.position.active img,
                            .embelishment-popupdetails .product-detail fieldset .option .option-choice a.position.active img {
                                border: 2px solid #F6F4F0;
                            }

                    section.emp_product-details div.product-detail fieldset div.option div.option-choice input[type=text],
                    .embelishment-popupdetails .product-detail fieldset .option .option-choice input[type=text] {
                        border: 1px solid #F0EDE5;
                        border-radius: 7px;
                        padding: 0 15px;
                        background-color: #ffffff;
                        height: 40px;
                        margin-right: 10px;
                    }

                    section.emp_product-details div.product-detail fieldset div.option div.option-choice a.help,
                    .embelishment-popupdetails .product-detail fieldset .option .option-choice a.help {
                        display: block;
                        width: 16px;
                        height: 16px;
                        background: url(../images/icons/icon_help2.svg) center center no-repeat;
                    }

                section.emp_product-details div.product-detail fieldset div.option:last-of-type,
                .embelishment-popupdetails .product-detail fieldset .option:last-of-type {
                    margin-bottom: 0;
                }

        section.emp_product-details div.product-detail div.quantity {
            margin: 10px 0 15px;
            width: 100%;
            display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
            justify-content: space-between;
        }

            section.emp_product-details div.product-detail div.quantity div.counter {
                background: #ffffff;
                border-radius: 10px;
                border: 1px solid #F0EDE5;
                height: 52px;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 160px;
            }

                section.emp_product-details div.product-detail div.quantity div.counter input {
                    display: block;
                    padding: 0 15px;
                    text-align: center;
                    border: 2px solid transparent;
                    border-left-color: #F0EDE5;
                    border-right-color: #F0EDE5;
                    height: 32px;
                    width: calc(100% - 80px);
                    -moz-appearance: textfield;
                }

                    section.emp_product-details div.product-detail div.quantity div.counter input::-webkit-outer-spin-button, section.emp_product-details div.product-detail div.quantity div.counter input::-webkit-inner-spin-button {
                        -webkit-appearance: none;
                        margin: 0;
                    }

                section.emp_product-details div.product-detail div.quantity div.counter button {
                    width: 40px;
                    height: inherit;
                    border: none;
                    background: transparent;
                }

                    section.emp_product-details div.product-detail div.quantity div.counter button.fa {
                        font-size: 14px;
                        font-weight: 500;
                    }

                    section.emp_product-details div.product-detail div.quantity div.counter button:hover {
                        color: #D25D3E;
                    }

            section.emp_product-details div.product-detail div.quantity button.add_cart {
                background: #D25D3E url(../images/icons/icon_cart_orange.svg) 16px center no-repeat;
                color: #ffffff;
                padding: 0 45px 0 45px;
                border: none;
                border-radius: 10px;
                height: 52px;
                font-weight: 700;
                font-size: 18px;
                min-width: 320px;
            }

                section.emp_product-details div.product-detail div.quantity button.add_cart span.text {
                    display: inline-block;
                }

                section.emp_product-details div.product-detail div.quantity button.add_cart .fa {
                    margin-right: 10px;
                    font-size: 16px;
                }

                section.emp_product-details div.product-detail div.quantity button.add_cart:hover {
                    background-color: #C64F2F;
                }

                section.emp_product-details div.product-detail div.quantity button.add_cart:focus {
                    background-color: #DC836A;
                }

        section.emp_product-details div.product-detail div.specification {
            width: 100%;
        }

            section.emp_product-details div.product-detail div.specification div.spec {
                border-bottom: 1px solid #F0EDE5;
                padding-top: 10px;
                padding-bottom: 10px;
            }

                section.emp_product-details div.product-detail div.specification div.spec div.spec-title {
                    display: flex;
                    flex-wrap: nowrap;
                    align-items: center;
                    justify-content: space-between;
                    padding: 0;
                    background-color: transparent;
                    height: 45px;
                    line-height: 45px;
                    font-weight: 600;
                    font-size: 18px;
                    cursor: pointer;
                }

                    section.emp_product-details div.product-detail div.specification div.spec div.spec-title i.fa {
                        font-size: 20px;
                        font-weight: 700;
                    }

                section.emp_product-details div.product-detail div.specification div.spec div.spec-details {
                    padding: 10px 0 15px;
                    margin-bottom: 5px;
                    display: none;
                }

                    section.emp_product-details div.product-detail div.specification div.spec div.spec-details ul li {
                        font-weight: 400;
                        font-size: 15px;
                        line-height: 29px;
                        position: relative;
                        padding: 0 0 0 25px;
                    }

                        section.emp_product-details div.product-detail div.specification div.spec div.spec-details ul li::before {
                            content: "●";
                            position: absolute;
                            left: 8px;
                            top: 50%;
                            transform: translateY(-50%);
                            display: inline-block;
                            font-size: 12px;
                        }

                    section.emp_product-details div.product-detail div.specification div.spec div.spec-details.active {
                        display: block;
                    }

                section.emp_product-details div.product-detail div.specification div.spec:last-of-type {
                    padding-top: 0;
                }

section.com_product-set-group-view div.users div.counts {
    width: 32px;
    height: 32px;
    display: block;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1.5px solid #F0EDE5;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    color: #4A4A4D;
    font-weight: 500;
    margin-right: 5px;
}
/*# sourceMappingURL=style.css.map */
a.back {
    color: #7F7F84;
    padding: 0 20px;
    margin-left: 0;
}

    a.back:hover {
        color: #C64F2F;
        text-decoration: none;
    }

#Login-nav .logo img {
    width: 100%;
    height: 130pt;
    object-fit: contain;
    max-width: 250pt;
}

#DivEmptymyChart-bar, #DivEmptymyChart-line, #myChart-line, #myChart-bar {
    text-align: center;
    height: 270px;
}

#reportrange:hover {
    cursor: pointer;
}
/*Order starts here*/

section.orders {
    padding-bottom: 50px;
    position: relative;
}

    section.orders .title-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

        section.orders .title-actions div.date {
            display: flex;
            align-items: center;
            height: 52px;
            padding: 0 20px;
        }

            section.orders .title-actions div.date span {
                display: block;
                font-size: 16px;
                font-weight: 600;
                margin-right: 10px;
            }

            section.orders .title-actions div.date button {
                width: 24px;
                height: 24px;
                border: none;
                background: none;
            }

            section.orders .title-actions div.date img {
                cursor: pointer;
            }

        section.orders .title-actions form {
            padding: 0;
        }

            section.orders .title-actions form div.search {
                display: flex;
                flex-direction: row;
                height: 52px;
                border-radius: 10px;
                overflow: hidden;
                background-color: #ffffff;
                position: relative;
            }

                section.orders .title-actions form div.search input.search {
                    border: none;
                    background-color: transparent;
                    padding: 0 15px;
                    width: calc(100% - 52px);
                }

                section.orders .title-actions form div.search button.submit {
                    width: 52px;
                    height: 52px;
                    display: block;
                    border-radius: 10px;
                    line-height: 52px;
                    text-align: center;
                    border: none;
                    background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
                }

                    section.orders .title-actions form div.search button.submit:hover {
                        background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                    }

        section.orders .title-actions a.download {
            width: 67px;
            min-width: 67px;
            height: 52px;
            display: block;
            border-radius: 10px;
            line-height: 52px;
            text-align: center;
            margin-left: 12px;
            background: #ffffff url(../images/icons/icon_download_black.svg) center center no-repeat;
        }

            section.orders .title-actions a.download:hover {
                background: #ffffff url(../images/icons/icon_download_orange.svg) center center no-repeat;
            }

        section.orders .title-actions a.close {
            color: #7F7F84;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            display: inline-block;
            margin-left: 20px;
            margin-right: 0;
            text-decoration: none;
        }

        section.orders .title-actions ul.more-actions {
            display: flex;
            flex-direction: row;
            margin: 0 10px;
            padding: 0;
            list-style: none;
            font-size: 16px;
        }

            section.orders .title-actions ul.more-actions li {
                position: relative;
            }

                section.orders .title-actions ul.more-actions li a {
                    display: block;
                    color: #201904;
                    text-decoration: none;
                    line-height: 16px;
                }

                    section.orders .title-actions ul.more-actions li a i {
                        margin-left: 10px;
                    }

                section.orders .title-actions ul.more-actions li ul {
                    width: 200px;
                    overflow: hidden;
                    position: absolute;
                    flex-direction: column;
                    background-color: #ffffff;
                    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
                    left: 50%;
                    top: 25px;
                    transform: translateX(-50%);
                    z-index: 10;
                    display: none;
                    border-radius: 10px;
                }

                    section.orders .title-actions ul.more-actions li ul li a {
                        display: block;
                        line-height: 40px;
                        text-align: left;
                        font-size: 18px;
                        padding: 0 25px;
                        text-decoration: none;
                        font-weight: 500;
                    }

                        section.orders .title-actions ul.more-actions li ul li a i {
                            margin-left: 10px;
                            font-weight: bolder;
                        }

                        section.orders .title-actions ul.more-actions li ul li a.cancel {
                            color: #D25D3E;
                            font-weight: 600;
                        }

        section.orders .title-actions a.toggle {
            display: none;
        }

        section.orders .title-actions div.small-device {
            display: none;
        }

    section.orders form ul.allOrders {
        margin-bottom: 15px;
    }

        section.orders form ul.allOrders li.nav-item a.nav-link {
            font-size: 20px;
            font-weight: 600;
            line-height: 25px;
            color: #201904;
        }

            section.orders form ul.allOrders li.nav-item a.nav-link.active {
                color: #D25D3E;
                text-decoration: underline;
            }

    section.orders form div.card.card-orders table.all-orders {
        width: 100%;
    }

        section.orders form div.card.card-orders table.all-orders thead tr th {
            padding: 8px 10px;
            font-size: 12px;
            text-transform: uppercase;
            color: #7F7F84;
            font-weight: 600;
            text-align: left;
            line-height: 30px;
        }

            section.orders form div.card.card-orders table.all-orders thead tr th:nth-child(1) {
                width: 180px;
            }

            section.orders form div.card.card-orders table.all-orders thead tr th:nth-child(2) {
                width: 136px;
            }

            section.orders form div.card.card-orders table.all-orders thead tr th:nth-child(3) {
                width: 167px;
            }

            section.orders form div.card.card-orders table.all-orders thead tr th:nth-child(4) {
                width: 109px;
            }

            section.orders form div.card.card-orders table.all-orders thead tr th:nth-child(5) {
                width: calc(100% - 769px);
            }

            section.orders form div.card.card-orders table.all-orders thead tr th:nth-child(6) {
                text-align: right;
                width: 177px;
            }

        section.orders form div.card.card-orders table.all-orders tbody tr {
            border-bottom: 1px solid #F0EDE5;
        }

            section.orders form div.card.card-orders table.all-orders tbody tr td {
                padding: 15px 5px;
                text-align: left;
                font-size: 16px;
                font-weight: 400;
                position: relative;
            }

                section.orders form div.card.card-orders table.all-orders tbody tr td input.fields {
                    display: block;
                    border: none;
                    height: 34px;
                    background-color: #F6F4F0;
                    padding: 0 15px;
                    border-radius: 6px;
                    width: 100%;
                }

                section.orders form div.card.card-orders table.all-orders tbody tr td select.fields {
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    width: 100%;
                    padding: 0 15px 0 0;
                    border-radius: 6px;
                    border: none;
                    height: 34px;
                    background: #F6F4F0 url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
                    background-size: 12px 12px;
                }

                section.orders form div.card.card-orders table.all-orders tbody tr td .date {
                    position: relative;
                    background-color: #F6F4F0;
                    height: 34px;
                    padding: 0;
                    border-radius: 6px;
                    display: block;
                    width: 100%;
                    z-index: 0;
                }

                    section.orders form div.card.card-orders table.all-orders tbody tr td .date input.fields {
                        display: block;
                        border: none;
                        height: 34px;
                        background-color: #F6F4F0;
                        padding: 0 15px;
                        border-radius: 6px;
                        width: 82%;
                    }

                    section.orders form div.card.card-orders table.all-orders tbody tr td .date img {
                        width: 20px;
                        height: 20px;
                        position: absolute;
                        right: 10px;
                        top: 50%;
                        transform: translateY(-50%);
                        z-index: 2;
                        cursor: pointer;
                    }

                section.orders form div.card.card-orders table.all-orders tbody tr td strong {
                    font-weight: 500;
                }

                section.orders form div.card.card-orders table.all-orders tbody tr td a {
                    color: #201904;
                    display: table;
                    text-decoration: none;
                }

                section.orders form div.card.card-orders table.all-orders tbody tr td span {
                    line-height: 18px;
                    height: auto;
                    border-radius: 50px;
                    padding: 8px 18px;
                    text-align: center;
                    display: block;
                    font-size: 12px;
                }

                    section.orders form div.card.card-orders table.all-orders tbody tr td span.pending {
                        color: #D7A90F;
                        background-color: rgba(244, 195, 27, 0.1);
                    }

                    section.orders form div.card.card-orders table.all-orders tbody tr td span.completed {
                        color: #87AC1E;
                        background: rgba(179, 206, 103, 0.1);
                    }

                    section.orders form div.card.card-orders table.all-orders tbody tr td span.cancel {
                        color: #7F7F84;
                        background-color: rgba(127, 127, 132, 0.08);
                    }

                    section.orders form div.card.card-orders table.all-orders tbody tr td span.shipped {
                        color: #4D6BCB;
                        background-color: rgba(47, 80, 184, 0.1);
                    }

                    section.orders form div.card.card-orders table.all-orders tbody tr td span.deleted {
                        color: #9f2323;
                        background: rgba(229, 150, 137, 0.16);
                    }

                section.orders form div.card.card-orders table.all-orders tbody tr td:last-of-type {
                    text-align: left;
                }

            section.orders form div.card.card-orders table.all-orders tbody tr:first-of-type, section.orders form div.card.card-orders table.all-orders tbody tr:last-of-type {
                border-bottom-color: transparent;
            }

    section.orders form div.card.card-product-summary table.product-summary {
        width: 100%;
    }

        section.orders form div.card.card-product-summary table.product-summary thead tr th {
            padding: 8px 10px;
            font-size: 12px;
            text-transform: uppercase;
            color: #7F7F84;
            font-weight: 600;
            text-align: center;
            line-height: 30px;
        }

            section.orders form div.card.card-product-summary table.product-summary thead tr th:nth-child(1) {
                text-align: left;
                width: calc(100% - 300px);
            }

            section.orders form div.card.card-product-summary table.product-summary thead tr th:nth-child(2) {
                width: 60px;
            }

            section.orders form div.card.card-product-summary table.product-summary thead tr th:nth-child(3) {
                width: 90px;
            }

            section.orders form div.card.card-product-summary table.product-summary thead tr th:nth-child(4) {
                width: 110px;
            }

            section.orders form div.card.card-product-summary table.product-summary thead tr th:nth-child(5) {
                width: 40px;
            }

        section.orders form div.card.card-product-summary table.product-summary tbody tr td {
            position: relative;
            padding: 10px 5px;
            text-align: center;
            vertical-align: top;
        }

            section.orders form div.card.card-product-summary table.product-summary tbody tr td img {
                width: 65px;
            }

            section.orders form div.card.card-product-summary table.product-summary tbody tr td div.products-detail {
                display: flex;
                justify-content: flex-start;
                text-align: left;
            }

                section.orders form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details {
                    color: #7F7F84;
                    font-size: 12px;
                    line-height: 15px;
                }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details strong {
                        display: block;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 20px;
                        color: #201904;
                    }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details span.qty {
                        display: block;
                    }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details span.add {
                        color: #D25D3E;
                        display: block;
                        font-weight: 600;
                    }

            section.orders form div.card.card-product-summary table.product-summary tbody tr td span.track {
                font-size: 12px;
                color: #7F7F84;
            }

                section.orders form div.card.card-product-summary table.product-summary tbody tr td span.track strong {
                    color: #201904;
                    font-size: 15px;
                    font-weight: 500;
                }

            section.orders form div.card.card-product-summary table.product-summary tbody tr td a.action {
                display: block;
                margin: 0 auto;
                width: 24px;
                height: 24px;
                line-height: 24px;
                display: block;
                color: #7F7F84;
                background: url(../images/icons/three-dots.svg) center center no-repeat;
                transition: 0.3s;
            }

                section.orders form div.card.card-product-summary table.product-summary tbody tr td a.action:hover {
                    background: url(../images/icons/three-dots-hover.svg) center center no-repeat;
                }

            section.orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding-left: 65px;
            }

                section.orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.track {
                    text-align: left;
                    color: #7F7F84;
                }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.track strong {
                        color: #201904;
                    }

                section.orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status {
                    line-height: 36px;
                    height: 36px;
                    border-radius: 18px;
                    display: block;
                    padding: 0 20px;
                }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.pending {
                        color: #D7A90F;
                        background-color: rgba(244, 195, 27, 0.1);
                    }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.completed {
                        color: #87AC1E;
                        background: rgba(179, 206, 103, 0.1);
                    }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.cancel {
                        color: #7F7F84;
                        background-color: rgba(127, 127, 132, 0.08);
                    }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.shipped {
                        color: #4D6BCB;
                        background-color: rgba(47, 80, 184, 0.1);
                    }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.deleted {
                        color: #4D6BCB;
                        background-color: rgba(255, 231, 227, 1);
                    }

            section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action {
                list-style: none;
                margin: 0;
                padding: 0;
                background-color: #ffffff;
                border-radius: 10px;
                box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                position: absolute;
                right: 0;
                top: 0;
                z-index: 10;
                width: 200px;
                display: none;
            }

                section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li {
                    padding: 5px 10px;
                    position: relative;
                }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li a {
                        display: block;
                        color: #201904;
                        padding: 0 25px;
                        line-height: 43px;
                        border-radius: 8px;
                        text-decoration: none;
                    }

                        section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li a i {
                            margin-left: 10px;
                            font-weight: bolder;
                        }

                        section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li a.cancel {
                            color: #D25D3E;
                            font-weight: 600;
                        }

                        section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li a:hover {
                            background-color: #F0EDE5;
                        }

                    section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul {
                        background: #ffffff;
                        position: absolute;
                        right: -110px;
                        top: 10px;
                        border-radius: 10px;
                        box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                        list-style: none;
                        margin: 0;
                        list-style: none;
                        display: none;
                    }

                        section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status {
                            display: block;
                            color: #201904;
                            line-height: 40px;
                            text-decoration: none;
                            position: relative;
                            padding: 0 10px 0 25px;
                        }

                            section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status::before {
                                content: "";
                                width: 8px;
                                height: 8px;
                                left: 5px;
                                top: 50%;
                                transform: translateY(-50%);
                                border-radius: 50%;
                                background-color: orange;
                                position: absolute;
                            }

                            section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status.shipped::before {
                                background-color: #8FA4E8;
                            }

                            section.orders form div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status.pending::before {
                                background-color: #F4C31B;
                            }

        section.orders form div.card.card-product-summary table.product-summary tbody tr:nth-of-type(2n+2) {
            border-bottom: 1px solid #F0EDE5;
        }

        section.orders form div.card.card-product-summary table.product-summary tbody tr:last-of-type {
            border-bottom: none;
        }

    section.orders form div.card.card-product-summary .mark {
        display: flex;
        justify-content: flex-end;
        border-top: 1px solid #F0EDE5;
        padding: 16px 15px;
        background: transparent;
    }

        section.orders form div.card.card-product-summary .mark a {
            display: block;
            color: #ffffff;
            background: #D25D3E;
            text-decoration: none;
            line-height: 52px;
            padding: 0 25px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 700;
        }

            section.orders form div.card.card-product-summary .mark a:hover {
                background: #C64F2F;
            }

    section.orders form div.card.card-timeline ul {
        list-style: none;
        margin: 10px;
        padding: 0;
    }

        section.orders form div.card.card-timeline ul li {
            padding-bottom: 20px;
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }

            section.orders form div.card.card-timeline ul li span {
                color: #7F7F84;
                font-size: 13px;
                font-weight: 400;
                display: block;
                line-height: 20px;
            }

                section.orders form div.card.card-timeline ul li span strong {
                    display: block;
                    font-size: 17px;
                    font-weight: 500;
                    color: #201904;
                    line-height: 20px;
                }

                    section.orders form div.card.card-timeline ul li span strong em {
                        color: #D25D3E;
                        font-style: normal;
                    }

            section.orders form div.card.card-timeline ul li::before {
                position: absolute;
                content: "";
                width: 10px;
                height: 10px;
                display: block;
                background-color: #F0EDE5;
                left: 0;
                top: 5px;
                border-radius: 50%;
            }

            section.orders form div.card.card-timeline ul li::after {
                background-color: #F0EDE5;
                width: 1px;
                left: 5px;
                top: 12px;
                bottom: 0;
                position: absolute;
                content: "";
            }

            section.orders form div.card.card-timeline ul li:last-of-type {
                padding-bottom: 0;
            }

    section.orders form div.card.card-order-summary {
        overflow: hidden;
    }

        section.orders form div.card.card-order-summary label {
            font-size: 12px;
            font-weight: 600;
            line-height: 25px;
            color: #7F7F84;
            display: block;
            margin-bottom: 10px;
        }

            section.orders form div.card.card-order-summary label strong {
                display: block;
                color: #201904;
                font-size: 16px;
                font-weight: 500;
                line-height: 16px;
            }

        section.orders form div.card.card-order-summary div.total {
            background-color: #B3CE67;
            color: #ffffff;
            font-size: 20px;
            line-height: 25px;
            font-weight: 500;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
        }

    section.orders form div.card.card-customer .order {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        height: 64px;
        align-items: center;
        margin-bottom: 30px;
    }

        section.orders form div.card.card-customer .order img {
            width: 64px;
            height: 64px;
        }

        section.orders form div.card.card-customer .order span {
            color: #7F7F84;
            display: block;
            padding: 0 15px;
            font-size: 12px;
            font-weight: 500;
        }

            section.orders form div.card.card-customer .order span strong {
                display: block;
                color: #201904;
                font-size: 19px;
                font-weight: 600;
            }

                section.orders form div.card.card-customer .order span strong em {
                    font-style: normal;
                    font-size: 12px;
                    font-weight: 500;
                    color: #7F7F84;
                }

    section.orders form div.card.card-customer .order-detail label {
        font-size: 16px;
        font-weight: 600;
        line-height: 25px;
        color: #201904;
        margin-bottom: 10px;
    }

        section.orders form div.card.card-customer .order-detail label span {
            display: block;
            font-size: 12px;
            line-height: 16px;
            font-weight: 600;
            color: #7F7F84;
        }

            section.orders form div.card.card-customer .order-detail label span.same {
                font-size: 16px;
                font-weight: 500;
            }

    section.orders form div.card.card-notes {
        font-size: 16px;
        font-weight: 600;
    }

        section.orders form div.card.card-notes textarea {
            border: none;
            width: 100%;
            height: 100px;
            padding: 0;
            line-height: 20px;
            font-weight: 500;
        }

        section.orders form div.card.card-notes button.send-notes {
            border: none;
            background: none;
            color: rgba(210, 93, 62, 0.5);
            transition: 0.3s;
            height: 50px;
        }

            section.orders form div.card.card-notes button.send-notes:hover {
                color: #d25d3e;
            }

        section.orders form div.card.card-notes ul {
            list-style: none;
            margin: 10px 0;
            padding: 0;
        }

            section.orders form div.card.card-notes ul li {
                padding-bottom: 20px;
                position: relative;
                padding-left: 20px;
                margin-bottom: 5px;
            }

                section.orders form div.card.card-notes ul li span {
                    color: #7F7F84;
                    font-size: 13px;
                    font-weight: 400;
                    display: block;
                    line-height: 20px;
                }

                    section.orders form div.card.card-notes ul li span strong {
                        display: block;
                        font-size: 17px;
                        font-weight: 500;
                        color: #201904;
                        line-height: 20px;
                    }

                        section.orders form div.card.card-notes ul li span strong em {
                            color: #D25D3E;
                            font-style: normal;
                        }

                section.orders form div.card.card-notes ul li::before {
                    position: absolute;
                    content: "";
                    width: 10px;
                    height: 10px;
                    display: block;
                    background-color: #F0EDE5;
                    left: 0;
                    top: 5px;
                    border-radius: 50%;
                }

                section.orders form div.card.card-notes ul li::after {
                    background-color: #F0EDE5;
                    width: 1px;
                    left: 5px;
                    top: 12px;
                    bottom: 0;
                    position: absolute;
                    content: "";
                }

                section.orders form div.card.card-notes ul li:last-of-type {
                    padding-bottom: 0;
                }

    section.orders form div.card-orders div.card-body div.title-actions {
        padding-bottom: 20px;
    }


        section.orders form div.card-orders div.card-body div.title-actions div.search {
            display: flex;
            flex-direction: row;
            height: 52px;
            border-radius: 10px;
            overflow: hidden;
            background-color: #f6f4f0;
            position: relative;
        }

            section.orders form div.card-orders div.card-body div.title-actions div.search input.search {
                border: none;
                background-color: transparent;
                padding: 0 15px;
                width: calc(100% - 52px);
                margin-bottom: 0px;
            }

            section.orders form div.card-orders div.card-body div.title-actions div.search button.submit {
                width: 52px;
                height: 52px;
                display: block;
                border-radius: 10px;
                line-height: 52px;
                text-align: center;
                border: none;
                background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
            }

                section.orders form div.card-orders div.card-body div.title-actions div.search button.submit:hover {
                    background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                }

        section.orders form div.card-orders div.card-body div.title-actions a.add {
            width: 67px;
            min-width: 67px;
            height: 52px;
            display: block;
            border-radius: 10px;
            line-height: 52px;
            text-align: center;
            margin-left: 12px;
            background: #f6f4f0 url(../images/icons/icon_download_black.svg) center center no-repeat;
        }

            section.orders form div.card-orders div.card-body div.title-actions a.add:hover {
                background: #ffffff url(../images/icons/icon_download_orange.svg) center center no-repeat;
            }

    section.orders form div.card-orders div.card-body table.all-orders tbody tr {
        border-bottom: 1px solid #F0EDE5;
    }

        section.orders form div.card-orders div.card-body table.all-orders tbody tr td {
            width: 17%;
        }

    section.orders form div.card-orders div.card-body table.all-orders thead.productInfoHead tr th {
        width: 20%;
    }

    section.orders form div.card-orders div.card-body table.all-orders tbody tr td a {
        text-decoration: none;
        color: #201904;
        text-align: center;
        margin-right: 10px;
        position: relative;
        font-size: 16px;
    }

        section.orders form div.card-orders div.card-body table.all-orders tbody tr td a i {
            margin-right: 4px;
        }

    section.orders form div.card-orders div.card-body select.PIC-Select {
        appearance: none;
        border: 1px solid #F0EDE5;
        height: 64px;
        padding: 0 15px;
        border-radius: 10px;
        display: block;
        width: 100%;
        margin-bottom: 24px;
        outline: none;
        background: url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
        background-size: 12px 12px;
    }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box {
        padding-left: 15px;
        width: 100%;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products {
            width: 100%;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products thead tr th {
                text-transform: uppercase;
                text-align: center;
                color: #7F7F84;
                font-weight: 600;
                font-size: 12px;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products thead tr th:nth-child(1) {
                    text-align: left;
                }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products thead tr th:nth-child(2) {
                    text-align: left;
                }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products thead tr th:nth-child(3) {
                    text-align: right;
                }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr {
                border-bottom: 1px solid #F0EDE5;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td {
                    vertical-align: middle;
                    text-align: left;
                    padding: 10px 0;
                }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td img {
                        width: 56px;
                        margin: 0 5px;
                    }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td input.fields {
                        width: 52px;
                        height: 36px;
                        border: 1px solid #F0EDE5;
                        border-radius: 10px;
                        text-align: center;
                        padding: 0 5px;
                        vertical-align: middle;
                    }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a {
                        display: inline-block;
                        font-size: 18px;
                        text-decoration: none;
                        margin: 0 10px;
                        color: #7F7F84;
                    }

                        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.action {
                            display: table;
                            margin: 0 0 0 auto;
                            width: 30px;
                            height: 30px;
                            background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                        }

                            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.action:hover {
                                background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                            }

                        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.more-option {
                            color: #7F7F84;
                        }

                        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.delete {
                            color: #D32243;
                        }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type {
                        display: flex;
                        align-items: center;
                    }

                        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span {
                            display: block;
                            text-align: left;
                            font-size: 12px;
                            color: #7F7F84;
                            line-height: 18px;
                            font-weight: 500;
                        }

                            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span.title {
                                color: #201904;
                                font-size: 16px;
                                line-height: 20px;
                            }

                            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span.qty, section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span.size {
                                font-size: 12px;
                            }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:last-of-type {
                        text-align: right;
                    }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr:last-of-type {
                    border-bottom: none;
                }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li {
            display: flex;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a {
                display: block;
                height: 40px;
                line-height: 40px;
                border-radius: 10px;
                font-size: 16px;
                font-weight: 600;
                text-decoration: none;
                text-align: center;
                color: #ffffff;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a.all {
                    background-color: #D25D3E;
                    width: 120px;
                }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a.small-device-toggle2 {
                    width: 40px;
                    padding: 0;
                    box-shadow: 0px 7px 10px rgba(201, 201, 201, 0.4);
                    background: #ffffff url(../images/icons/btn_filter_black.svg) center center no-repeat;
                    display: none;
                }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a.small-device-toggle2:hover {
                        background: #ffffff url(../images/icons/btn_filter_orange.svg) center center no-repeat;
                    }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a.toggle-product-sets {
                    background-color: #F8E5E0;
                    color: #201904;
                    width: 100%;
                    margin-top: 10px;
                }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a.toggle-product-sets .fa {
                        color: #D25D3E;
                        font-weight: bolder;
                        font-size: 18px;
                        margin-left: 10px;
                    }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set {
                position: relative;
                margin: 0 10px;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set a.add-product-set {
                    background-color: #201904;
                    width: 200px;
                }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action {
                    position: absolute;
                    background-color: #ffffff;
                    left: 50%;
                    top: 40px;
                    transform: translateX(-50%);
                    box-shadow: 2px 2px 17px rgba(32, 25, 4, 0.17);
                    border-radius: 10%;
                    padding: 10px;
                    width: 90%;
                    z-index: 40;
                    display: none;
                }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action button {
                        display: block;
                        width: 100%;
                        border: none;
                        height: 42px;
                        font-size: 18px;
                        font-weight: 500;
                        text-align: left;
                        color: #201904;
                        background-color: #ffffff;
                        border-radius: 10px;
                        padding: 0 15px;
                    }

                        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action button.active {
                            color: #ffffff;
                            background-color: #D25D3E;
                        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li:nth-child(2) {
                display: none;
            }

    section.orders form div.card-orders div.card-body div.card.card-selection .card-body .no-selection {
        min-height: 329px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

        section.orders form div.card-orders div.card-body div.card.card-selection .card-body .no-selection p {
            font-size: 20px;
            color: #7F7F84;
            font-weight: 500;
            line-height: 25px;
            margin: 0;
            padding: 0;
            width: 50%;
        }

        section.orders form div.card-orders div.card-body div.card.card-selection .card-body .no-selection img {
            width: 90px;
            margin-bottom: 30px;
        }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider {
        margin-bottom: 20px;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.title {
            display: flex;
            justify-content: space-between;
            height: 25px;
            align-items: center;
            margin-bottom: 10px;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.title span {
                color: #201904;
                font-size: 18px;
                line-height: 25px;
                font-weight: 600;
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.title a {
                display: block;
                color: #201904;
                font-weight: 800;
                font-size: 22px;
                text-decoration: none;
                width: 25px;
                height: 25px;
                line-height: 25px;
                text-align: center;
            }



        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider {
            height: 0;
            overflow: hidden;
            width: 100%;
            padding: 0 10px;
            transition: 0.5s all;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values input[type=text] {
                    border: none;
                    display: block;
                    width: 100px;
                    background-color: transparent;
                    color: #4A4A4D;
                    font-size: 15px;
                    font-weight: 400;
                    line-height: 37px;
                }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                        text-align: right;
                    }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .slider-box {
                width: 100%;
                margin: 15px auto;
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-slider {
                margin-top: 20px;
                height: 5px;
                position: relative;
                border: none;
                background: #C6C5C5;
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-state-default, section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
                background: #ffffff;
                border-radius: 50%;
                outline: none;
                border: none;
                position: absolute;
                top: -9px;
                box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
                background: #D25D3E;
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider #labelHolder {
                height: 5px;
                position: relative;
                border: none;
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider span {
                position: absolute;
                width: 1.2em;
                height: 1.2em;
                margin-left: -0.6em;
                text-align: center;
            }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider.active div.price-slider {
            height: 75px;
        }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter {
        margin-bottom: 20px;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter div.title {
            display: flex;
            justify-content: space-between;
            height: 25px;
            align-items: center;
            margin-bottom: 10px;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter div.title span {
                color: #201904;
                font-size: 18px;
                line-height: 25px;
                font-weight: 600;
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter div.title a {
                display: block;
                color: #201904;
                font-weight: 800;
                font-size: 22px;
                text-decoration: none;
                width: 25px;
                height: 25px;
                line-height: 25px;
                text-align: center;
            }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter .filter-checkbox {
            height: 0;
            overflow: hidden;
            transition: 0.5s all;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter .filter-checkbox ul {
                margin: 0;
                padding: 0;
                list-style: none;
                min-height: 185px;
                max-height: 185px;
                overflow-y: auto;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter .filter-checkbox ul li label {
                    line-height: 37px;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    font-size: 15px;
                    font-weight: 400;
                    color: #4A4A4D;
                    align-items: center;
                    margin: 0;
                }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter .filter-checkbox ul.active {
                    display: block;
                }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter.active .filter-checkbox {
            height: 185px;
        }



    section.orders form div.card-orders div.card-body div.card.card-info {
        margin-top: 30px;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action {
            position: absolute;
            background-color: #ffffff;
            left: 50%;
            top: 40px;
            transform: translateX(-50%);
            box-shadow: 2px 2px 17px rgba(32, 25, 4, 0.17);
            border-radius: 10%;
            padding: 10px;
            width: 90%;
            z-index: 40;
            display: none;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action button {
                display: block;
                width: 100%;
                border: none;
                height: 42px;
                font-size: 18px;
                font-weight: 500;
                text-align: left;
                color: #201904;
                background-color: #ffffff;
                border-radius: 10px;
                padding: 0 15px;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action button.active {
                    color: #ffffff;
                    background-color: #D25D3E;
                }




    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer {
        position: relative;
        margin-bottom: 15px;
    }

        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: flex-start;
            margin-bottom: 12px;
        }

            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product {
                width: 100%;
            }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    align-items: center;
                }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li {
                        position: relative;
                    }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li img {
                            width: 56px;
                            height: 48px;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li span {
                            font-size: 18px;
                            line-height: 22px;
                            font-weight: 600;
                            color: #201904;
                            display: block;
                        }

                            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li span.qty {
                                font-size: 12px;
                                line-height: 25px;
                                font-weight: 500;
                                color: #7F7F84;
                            }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li a.toggle-table {
                            display: block;
                            width: 36px;
                            height: 36px;
                            background: #F6F4F0;
                            color: #212121;
                            text-decoration: none;
                            text-align: center;
                            line-height: 36px;
                            border-radius: 4px;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li a.more-action-toggle {
                            display: block;
                            line-height: 36px;
                            color: #201904;
                            font-size: 16px;
                            font-weight: 600;
                            text-decoration: none;
                            padding: 0 10px;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions {
                            position: absolute;
                            right: 0;
                            top: 36px;
                            display: none;
                            background-color: #ffffff;
                            width: 220px;
                            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                            border-radius: 10px;
                            overflow: hidden;
                            flex-direction: column;
                            z-index: 10;
                        }

                            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li {
                                display: block;
                            }

                                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li a {
                                    display: block;
                                    line-height: 40px;
                                    font-weight: 500;
                                    font-size: 18px;
                                    color: #201904;
                                    text-decoration: none;
                                    padding: 0 10px;
                                }

                                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li:first-of-type {
                                    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                                }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(1) {
                            width: 56px;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(2) {
                            width: calc(100% - 110px);
                            padding: 0 15px;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(3) {
                            width: 36px;
                        }

                /*section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(4) {
                    width: 36px;
                }*/

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table {
                    display: none;
                    margin: 20px 0 0;
                }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table {
                        width: 100%;
                    }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th {
                            padding: 5px 0;
                            font-size: 12px;
                            color: #7F7F84;
                            text-transform: uppercase;
                            text-align: center;
                        }

                            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:nth-child(1) {
                                width: calc(100% - 200px);
                                text-align: left;
                            }

                            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:nth-child(2) {
                                width: 100px;
                            }

                            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:nth-child(3) {
                                width: 100px;
                            }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr {
                            border-bottom: 1px solid #F0EDE5;
                        }

                            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
                                padding: 8px 0;
                                text-align: center;
                            }

                                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td img {
                                    width: 70px;
                                    margin: 0 8px;
                                }

                                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span {
                                    color: #7F7F84;
                                    font-size: 12px;
                                    line-height: 15px;
                                    font-weight: 500;
                                    display: block;
                                }

                                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span.title {
                                        font-size: 16px;
                                        color: #201904;
                                        line-height: 20px;
                                    }

                                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td input.price {
                                    border: 1px solid #F0EDE5;
                                    height: 36px;
                                    padding: 0 15px;
                                    border-radius: 10px;
                                    display: block;
                                    width: 80px;
                                    outline: none;
                                    margin: 0 auto;
                                    text-align: center;
                                }

                                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td a.action {
                                    display: block;
                                    width: 30px;
                                    height: 30px;
                                    line-height: 30px;
                                    color: #7F7F84;
                                    margin: 0 auto;
                                }

                                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:nth-child(1) {
                                    display: flex;
                                    align-items: center;
                                    justify-content: flex-start;
                                    text-align: left;
                                }

                                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:nth-child(2) {
                                    text-align: center;
                                }

                                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:nth-child(3) {
                                    text-align: center;
                                    color: #201904;
                                    font-size: 16px;
                                    font-weight: 600;
                                    width: 80px;
                                }

                            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type {
                                border-bottom: none;
                            }

                                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type td {
                                    padding-bottom: 0;
                                }

            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer:last-of-type {
                margin-bottom: 0;
            }

        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer:last-of-type {
            margin-bottom: 0;
        }

/* Order ends here*/

/* Catalogue starts here*/

section.products-list aside div.filter-slider {
    margin-bottom: 20px;
}

    section.products-list aside div.filter-slider div.title {
        display: flex;
        justify-content: space-between;
        height: 25px;
        align-items: center;
        margin-bottom: 10px;
    }

        section.products-list aside div.filter-slider div.title span {
            color: #201904;
            font-size: 18px;
            line-height: 25px;
            font-weight: 600;
        }

        section.products-list aside div.filter-slider div.title a {
            display: block;
            color: #201904;
            font-weight: 800;
            font-size: 22px;
            text-decoration: none;
            width: 25px;
            height: 25px;
            line-height: 25px;
            text-align: center;
        }

    section.products-list aside div.filter-slider div.price-slider {
        height: 0;
        overflow: hidden;
        width: 100%;
        padding: 0 10px;
        transition: 0.5s all;
    }

        section.products-list aside div.filter-slider div.price-slider .values {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

            section.products-list aside div.filter-slider div.price-slider .values input[type=text] {
                border: none;
                display: block;
                width: 100px;
                background-color: transparent;
                color: #4A4A4D;
                font-size: 15px;
                font-weight: 400;
                line-height: 37px;
            }

                section.products-list aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                    text-align: right;
                }

        section.products-list aside div.filter-slider div.price-slider .slider-box {
            width: 100%;
            margin: 15px auto;
            padding: 0px 10px;
        }

        section.products-list aside div.filter-slider div.price-slider .ui-slider {
            margin-top: 20px;
            height: 5px;
            position: relative;
            border: none;
            background: #C6C5C5;
        }

        section.products-list aside div.filter-slider div.price-slider .ui-state-default, section.products-list aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.products-list aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
            background: #ffffff;
            border-radius: 50%;
            outline: none;
            border: none;
            position: absolute;
            top: -9px;
        }

        section.products-list aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
            background: #D25D3E;
        }

        section.products-list aside div.filter-slider div.price-slider #labelHolder {
            height: 5px;
            position: relative;
            border: none;
        }

        section.products-list aside div.filter-slider div.price-slider span {
            position: absolute;
            width: 1.2em;
            height: 1.2em;
            margin-left: -0.6em;
            text-align: center;
        }

    section.products-list aside div.filter-slider.active div.price-slider {
        height: 75px;
    }

section.products-list aside div.filter {
    margin-bottom: 20px;
}

    section.products-list aside div.filter div.title {
        display: flex;
        justify-content: space-between;
        height: 25px;
        align-items: center;
        margin-bottom: 10px;
    }

        section.products-list aside div.filter div.title span {
            color: #201904;
            font-size: 18px;
            line-height: 25px;
            font-weight: 600;
            text-transform: capitalize;
        }

        section.products-list aside div.filter div.title a {
            display: block;
            color: #201904;
            font-weight: 800;
            font-size: 22px;
            text-decoration: none;
            width: 25px;
            height: 25px;
            line-height: 25px;
            text-align: center;
        }

    section.products-list aside div.filter .filter-checkbox {
        height: 0;
        overflow: hidden;
        transition: 0.5s all;
    }

        section.products-list aside div.filter .filter-checkbox ul {
            margin: 0;
            padding: 0;
            list-style: none;
            min-height: 185px;
            max-height: 185px;
            overflow-y: auto;
        }

            section.products-list aside div.filter .filter-checkbox ul li label {
                line-height: 37px;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                font-size: 15px;
                font-weight: 400;
                color: #4A4A4D;
                align-items: center;
                margin: 0;
            }

            section.products-list aside div.filter .filter-checkbox ul.active {
                display: block;
            }

    section.products-list aside div.filter.active .filter-checkbox {
        height: 185px;
    }

section.products-list ul.product-view {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    section.products-list ul.product-view li {
        padding-left: 20px;
    }

        section.products-list ul.product-view li .grid-list-style {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
        }

            section.products-list ul.product-view li .grid-list-style input[type=radio] {
                position: relative;
                width: 30px;
                height: 30px;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                cursor: pointer;
                margin: 0 5px;
                transition: all 0.6s ease-out;
            }

                section.products-list ul.product-view li .grid-list-style input[type=radio]::before {
                    content: "";
                    display: block;
                    width: 30px;
                    height: 30px;
                    position: absolute;
                    left: 0;
                    top: 0;
                    z-index: 1;
                }

                section.products-list ul.product-view li .grid-list-style input[type=radio].grid::before {
                    background: url(../images/icons/btn_grid_black.svg) center center no-repeat;
                }

                section.products-list ul.product-view li .grid-list-style input[type=radio].grid:checked::before {
                    background: url(../images/icons/btn_grid_orange.svg) center center no-repeat;
                }

                section.products-list ul.product-view li .grid-list-style input[type=radio].list::before {
                    background: url(../images/icons/btn_list_black.svg) center center no-repeat;
                }

                section.products-list ul.product-view li .grid-list-style input[type=radio].list:checked::before {
                    background: url(../images/icons/btn_list_orange.svg) center center no-repeat;
                }

        section.products-list ul.product-view li span {
            display: inline-block;
            line-height: 40px;
            color: #7F7F84;
            font-size: 14px;
            font-weight: 500;
            margin-right: 10px;
        }

        section.products-list ul.product-view li 1 {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 10px;
            padding: 0 40px 0 15px;
            height: 40px;
            border: none;
            background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
            background-size: 12px 12px;
            color: #4A4A4D;
            font-size: 15px;
        }

section.products-list div.products-wrapper {
    margin: 15px 0;
    display: grid;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 25px;
    transition: width 0.6s;
}

    section.products-list div.products-wrapper .item {
        border-radius: 10px;
        background-color: none;
        width: 100%;
    }

        section.products-list div.products-wrapper .item .product-box {
            display: flex;
        }

            section.products-list div.products-wrapper .item .product-box div.image {
                display: flex;
                background: #ffffff;
                align-items: center;
                justify-content: center;
                background-color: #ffffff;
                border-radius: 10px;
                overflow: hidden;
                z-index: 1;
                position: relative;
                transition: 0.3s;
            }

                section.products-list div.products-wrapper .item .product-box div.image img {
                    position: relative;
                    z-index: 2;
                    height: auto;
                }

                section.products-list div.products-wrapper .item .product-box div.image a {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    background: rgba(0, 0, 0, 0.46);
                    color: #ffffff;
                    z-index: 3;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    text-decoration: none;
                    opacity: 0;
                    transition: 0.6s;
                }

                    section.products-list div.products-wrapper .item .product-box div.image a i {
                        font-size: 25px;
                    }

                    section.products-list div.products-wrapper .item .product-box div.image a span {
                        display: block;
                    }

                section.products-list div.products-wrapper .item .product-box div.image:hover a {
                    opacity: 1;
                }

            section.products-list div.products-wrapper .item .product-box div.details {
                width: 100%;
            }

                section.products-list div.products-wrapper .item .product-box div.details span {
                    display: block;
                    color: #201904;
                    font-size: 16px;
                    line-height: 25px;
                    font-weight: 500;
                }

                    section.products-list div.products-wrapper .item .product-box div.details span.title {
                        line-height: 21px;
                        font-size: 16px;
                    }

                    section.products-list div.products-wrapper .item .product-box div.details span.qty {
                        color: #7F7F84;
                        font-size: 12px;
                        line-height: 25px;
                    }

                    section.products-list div.products-wrapper .item .product-box div.details span.price {
                        font-weight: 600;
                    }

    section.products-list div.products-wrapper.grid {
        grid-template-columns: repeat(4, 1fr);
    }

        section.products-list div.products-wrapper.grid .item {
            border-radius: 10px;
            background-color: none;
            width: 100%;
        }

            section.products-list div.products-wrapper.grid .item .product-box {
                flex-direction: column;
            }

                section.products-list div.products-wrapper.grid .item .product-box .image {
                    height: 180px;
                    width: 100%;
                    margin: 0 0 12px;
                }

                    section.products-list div.products-wrapper.grid .item .product-box .image img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }

                section.products-list div.products-wrapper.grid .item .product-box div.details {
                    width: 100%;
                }

                    section.products-list div.products-wrapper.grid .item .product-box div.details span.title {
                        line-height: 21px;
                        font-size: 16px;
                    }

                    section.products-list div.products-wrapper.grid .item .product-box div.details span.qty {
                        font-size: 12px;
                        line-height: 25px;
                    }

                    section.products-list div.products-wrapper.grid .item .product-box div.details span.price {
                        font-weight: 600;
                    }

    section.products-list div.products-wrapper.list {
        grid-template-columns: repeat(1, 1fr);
    }

        section.products-list div.products-wrapper.list .item {
            border-radius: 10px;
            background-color: #ffffff;
            width: 100%;
        }

            section.products-list div.products-wrapper.list .item .product-box {
                flex-direction: row;
                padding: 15px;
                min-height: 155px;
            }

                section.products-list div.products-wrapper.list .item .product-box .image,
                section.com_product-set-group-view div.products-wrapper.list .item .product-box .image {
                    height: auto;
                    width: 140px;
                    margin: 0 12px 0 0;
                    border: 1px solid #e3e3e3;
                }

                    section.products-list div.products-wrapper.list .item .product-box .image img,
                    section.com_product-set-group-view div.products-wrapper.list .item .product-box .image img {
                        width: 100%;
                        object-fit: contain;
                        max-height: 115px;
                    }

                section.products-list div.products-wrapper.list .item .product-box div.details,
                section.com_product-set-group-view div.products-wrapper.list .item .product-box div.details {
                    width: calc(100% - 80px);
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }

                    section.products-list div.products-wrapper.list .item .product-box div.details span.title {
                        line-height: 30px;
                        font-size: 20px;
                    }

                    section.products-list div.products-wrapper.list .item .product-box div.details span.qty {
                        font-size: 14px;
                        line-height: 25px;
                    }

                    section.products-list div.products-wrapper.list .item .product-box div.details span.price {
                        font-size: 18px;
                    }

section.catalogue {
    background-color: #F0EDE5;
}

    section.catalogue .title-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

        section.catalogue .title-actions div.search {
            display: flex;
            flex-direction: row;
            height: 52px;
            border-radius: 10px;
            overflow: hidden;
            background-color: #ffffff;
            width: 100%;
            margin-right: 5px;
        }

            section.catalogue .title-actions div.search input.search {
                border: none;
                background-color: transparent;
                padding: 0 15px;
                width: calc(100% - 52px);
            }

            section.catalogue .title-actions div.search button.submit {
                width: 52px;
                height: 52px;
                display: block;
                border-radius: 10px;
                line-height: 52px;
                text-align: center;
                border: none;
                background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
            }

                section.catalogue .title-actions div.search button.submit:hover {
                    background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                }

        section.catalogue .title-actions .other-actions {
            display: flex;
            width: 100%;
            justify-content: flex-end;
        }

            section.catalogue .title-actions .other-actions a.toggle {
                width: 52px;
                height: 52px;
                display: none;
                text-decoration: none;
                border-radius: 10px;
                background: #ffffff url(../images/icons/btn_action_black.svg) center center no-repeat;
            }

            section.catalogue .title-actions .other-actions div {
                display: flex;
                width: 118px;
                height: 52px;
                order: 1;
            }

                section.catalogue .title-actions .other-actions div a {
                    width: 55px;
                    height: 52px;
                    display: block;
                    border-radius: 10px;
                    margin: 0 5px;
                    color: #201904;
                }

                    section.catalogue .title-actions .other-actions div a span {
                        display: none;
                        line-height: 40px;
                        padding: 0 15px 0 40px;
                    }

                    section.catalogue .title-actions .other-actions div a.download {
                        background-image: url(../images/icons/icon_export_black.svg);
                        background-position: center center;
                        background-repeat: no-repeat;
                        background-color: #ffffff;
                    }

                        section.catalogue .title-actions .other-actions div a.download:hover {
                            background-image: url(../images/icons/icon_export_orange.svg);
                        }

                    section.catalogue .title-actions .other-actions div a.add {
                        background-image: url(../images/icons/icon_download_black.svg);
                        background-position: center center;
                        background-repeat: no-repeat;
                        background-color: #ffffff;
                    }

                        section.catalogue .title-actions .other-actions div a.add:hover {
                            background-image: url(../images/icons/icon_download_orange.svg);
                        }

            section.catalogue .title-actions .other-actions a.add-product {
                order: 2;
                background-color: #D25D3E;
                color: #ffffff;
                width: 100%;
                display: table;
                text-align: center;
                line-height: 52px;
                border-radius: 10px;
                font-weight: 700;
                font-size: 16px;
                text-decoration: none;
            }

                section.catalogue .title-actions .other-actions a.add-product .fa {
                    margin-right: 10px;
                }

                section.catalogue .title-actions .other-actions a.add-product:hover {
                    background-color: #C64F2F;
                }

                section.catalogue .title-actions .other-actions a.add-product:focus {
                    background-color: #DC836A;
                }

    section.catalogue .new-category {
        position: absolute;
        right: 15px;
        top: 0;
        color: #D25D3E;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        text-decoration: none;
    }

    section.catalogue .card-category {
        border-radius: 10px;
        border: 0;
    }

        section.catalogue .card-category .card-body {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: space-between;
        }

            section.catalogue .card-category .card-body div.product img {
                width: 120px;
                display: block;
            }

            section.catalogue .card-category .card-body div.product span.title {
                color: #201904;
                font-size: 20px;
                font-weight: 600;
                line-height: 25px;
                display: block;
            }

            section.catalogue .card-category .card-body div.product span.counts {
                display: block;
                font-size: 15px;
                font-weight: 500;
                line-height: 25px;
                color: #4A4A4D;
            }

            section.catalogue .card-category .card-body div.action {
                display: flex;
                justify-content: flex-end;
                position: relative;
            }

                section.catalogue .card-category .card-body div.action a.toggle {
                    display: table;
                    width: 25px;
                    height: 25px;
                    line-height: 25px;
                    text-align: center;
                    color: #7F7F84;
                    border-radius: 50%;
                }

                    section.catalogue .card-category .card-body div.action a.toggle:hover {
                        background-color: #e4e4e4;
                        color: #ffffff;
                    }

                section.catalogue .card-category .card-body div.action ul {
                    position: absolute;
                    right: 25px;
                    top: 0;
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    background: #ffffff;
                    border-radius: 10px;
                    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
                    width: 80px;
                    overflow: hidden;
                    display: none;
                }

                    section.catalogue .card-category .card-body div.action ul li {
                        display: block;
                        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
                    }

                        section.catalogue .card-category .card-body div.action ul li a {
                            text-align: center;
                            line-height: 28px;
                            display: block;
                            color: #201904;
                            font-size: 12px;
                            text-decoration: none;
                        }

    section.catalogue .swiper-actions {
        margin: 10px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        section.catalogue .swiper-actions .slide-button {
            display: flex;
        }

            section.catalogue .swiper-actions .slide-button button {
                background: transparent;
                color: #201904;
                width: 40px;
                height: 30px;
                border: none;
                outline: none;
                font-size: 18px;
                font-weight: bolder;
            }

                section.catalogue .swiper-actions .slide-button button.swiper-button-next-unique:hover, section.catalogue .swiper-actions .slide-button button.swiper-button-prev-unique:hover {
                    color: #D25D3E;
                }

                section.catalogue .swiper-actions .slide-button button.swiper-button-disabled {
                    color: rgba(127, 127, 132, 0.3);
                }

    section.catalogue .card.card-stats .card-body {
        border-radius: 10px;
    }

        section.catalogue .card.card-stats .card-body .stat-icon {
            width: 46px;
            height: 46px;
            margin-right: 18px;
        }

        section.catalogue .card.card-stats .card-body span {
            font-size: 15px;
            font-weight: 500;
            line-height: 25px;
            color: #4A4A4D;
        }

            section.catalogue .card.card-stats .card-body span.number {
                font-size: 37px;
                font-weight: 600;
                line-height: 46px;
                color: #201904;
                display: block;
            }

    section.catalogue .time {
        position: absolute;
        right: 15px;
        top: 0;
        display: flex;
    }

        section.catalogue .time span {
            font-size: 16px;
            line-height: 20px;
            font-weight: 600px;
        }

        section.catalogue .time button.date {
            width: 20px;
            height: 20px;
            border: none;
            background: url(../images/icons/calendar.svg) center center no-repeat;
            background-size: 100% 100%;
            margin-left: 8px;
            outline: none;
        }

    section.catalogue .card-chart {
        border-radius: 10px;
    }

    section.catalogue .view-all {
        position: absolute;
        right: 15px;
        top: 0;
        font-size: 16px;
        font-weight: 600;
        color: #D25D3E;
        line-height: 20px;
        text-decoration: none;
    }

    section.catalogue .product-detail .card.card-product {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    section.catalogue .product-detail span {
        font-size: 16px;
        color: #201904;
        display: block;
        font-weight: 500;
    }

        section.catalogue .product-detail span.title {
            line-height: 21px;
        }

        section.catalogue .product-detail span.qty {
            font-size: 12px;
            line-height: 25px;
            color: #7F7F84;
        }

        section.catalogue .product-detail span.price {
            font-size: 16px;
            font-weight: 600;
            line-height: 25px;
            color: #201904;
        }

    section.catalogue .card.card-tickets {
        border-radius: 10px;
    }

        section.catalogue .card.card-tickets .card-body ul.tickets {
            margin: 10px 0 0 28px;
            padding: 0;
            list-style: none;
            min-height: 460px;
            max-height: 460px;
        }

            section.catalogue .card.card-tickets .card-body ul.tickets li {
                border-bottom: 1px solid #F0EDE5;
                padding: 18px 0 18px;
                position: relative;
                z-index: 1;
            }

                section.catalogue .card.card-tickets .card-body ul.tickets li span {
                    color: #201904;
                    font-weight: 600;
                    line-height: 21px;
                    display: block;
                }

                    section.catalogue .card.card-tickets .card-body ul.tickets li span.person {
                        font-size: 13px;
                        font-weight: 400;
                        line-height: 16px;
                        color: #7F7F84;
                    }

                section.catalogue .card.card-tickets .card-body ul.tickets li p {
                    display: block;
                    font-size: 15px;
                    font-weight: 400;
                    line-height: 18px;
                    color: #4A4A4D;
                    margin: 0;
                    padding: 0;
                }

                section.catalogue .card.card-tickets .card-body ul.tickets li:last-of-type {
                    border-bottom-color: transparent;
                }

                section.catalogue .card.card-tickets .card-body ul.tickets li::before {
                    content: "";
                    position: absolute;
                    z-index: 2;
                    display: block;
                    width: 10px;
                    height: 10px;
                    border-radius: 50%;
                    left: -24px;
                    top: 23px;
                }

                section.catalogue .card.card-tickets .card-body ul.tickets li:nth-child(1)::before {
                    background-color: #D25D3E;
                }

                section.catalogue .card.card-tickets .card-body ul.tickets li:nth-child(2)::before {
                    background-color: #D25D3E;
                }

                section.catalogue .card.card-tickets .card-body ul.tickets li:nth-child(3)::before {
                    background-color: #F4C31B;
                }

                section.catalogue .card.card-tickets .card-body ul.tickets li:nth-child(4)::before {
                    background-color: #B3CE67;
                }

                section.catalogue .card.card-tickets .card-body ul.tickets li:nth-child(5)::before {
                    background-color: #B3CE67;
                }

        section.catalogue .card.card-tickets .card-body ul.activity {
            margin: 10px 0 0 28px;
            padding: 0;
            list-style: none;
            min-height: 460px;
            max-height: 460px;
        }

            section.catalogue .card.card-tickets .card-body ul.activity li {
                border-bottom: 1px solid transparent;
                padding: 14px 0 14px;
                position: relative;
                z-index: 1;
                position: relative;
                z-index: 1;
            }

                section.catalogue .card.card-tickets .card-body ul.activity li p {
                    font-size: 17px;
                    font-weight: 600;
                    line-height: 21px;
                    margin: 0;
                    padding: 0;
                }

                    section.catalogue .card.card-tickets .card-body ul.activity li p span {
                        color: #D25D3E;
                    }

                section.catalogue .card.card-tickets .card-body ul.activity li span.person {
                    font-size: 13px;
                    font-weight: 400;
                    line-height: 16px;
                    color: #7F7F84;
                }

                section.catalogue .card.card-tickets .card-body ul.activity li::before {
                    content: "";
                    position: absolute;
                    z-index: 2;
                    display: block;
                    width: 10px;
                    height: 10px;
                    border-radius: 50%;
                    background-color: #F0EDE5;
                    left: -24px;
                    top: 20px;
                }

                section.catalogue .card.card-tickets .card-body ul.activity li::after {
                    content: "";
                    position: absolute;
                    left: -19px;
                    top: 36px;
                    width: 1px;
                    height: 50px;
                    background-color: #F0EDE5;
                }

        section.catalogue .card.card-tickets .card-body .view {
            display: table;
            margin: 20px auto 10px;
            color: #D25D3E;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            text-decoration: none;
        }

section.products-list aside div.filter-slider div.price-slider {
    height: 0;
    overflow: hidden;
    width: 100%;
    padding: 0 10px;
    transition: 0.5s all;
}

    section.products-list aside div.filter-slider div.price-slider .values {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        section.products-list aside div.filter-slider div.price-slider .values input[type=text] {
            border: none;
            display: block;
            width: 100px;
            background-color: transparent;
            color: #4A4A4D;
            font-size: 15px;
            font-weight: 400;
            line-height: 37px;
        }

            section.products-list aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                text-align: right;
            }

    section.products-list aside div.filter-slider div.price-slider .slider-box {
        width: 100%;
        margin: 15px auto;
    }

    section.products-list aside div.filter-slider div.price-slider .ui-slider {
        margin-top: 20px;
        height: 5px;
        position: relative;
        border: none;
        background: #C6C5C5;
        border-radius: 50px;
    }

    section.products-list aside div.filter-slider div.price-slider .ui-state-default, section.products-list aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.products-list aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
        background: #ffffff;
        border-radius: 50%;
        outline: none;
        border: none;
        position: absolute;
        top: -9px;
    }

    section.products-list aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
        background: #D25D3E;
        position: relative;
        padding: 3px;
    }

    section.products-list aside div.filter-slider div.price-slider #labelHolder {
        height: 5px;
        position: relative;
        border: none;
    }

    section.products-list aside div.filter-slider div.price-slider span {
        position: absolute;
        width: 1.8em;
        height: 1.8em;
        margin-left: -0.6em;
        text-align: center;
    }

section.products-list aside div.filter-slider.active div.price-slider {
    height: 75px;
}

section.products-list aside div.filter.active div.price-slider {
    height: 75px;
}

section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider {
    height: 0;
    overflow: hidden;
    width: 100%;
    padding: 0 10px;
    transition: 0.5s all;
}

    section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values input[type=text] {
            border: none;
            display: block;
            width: 100px;
            background-color: transparent;
            color: #4A4A4D;
            font-size: 15px;
            font-weight: 400;
            line-height: 37px;
        }

            section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                text-align: right;
            }

    section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .slider-box {
        width: 100%;
        margin: 15px auto;
    }

    section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-slider {
        margin-top: 20px;
        height: 5px;
        position: relative;
        border: none;
        background: #C6C5C5;
    }

    section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-state-default, section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
        background: #ffffff;
        border-radius: 50%;
        outline: none;
        border: none;
        position: absolute;
        top: -9px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    }

    section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
        background: #D25D3E;
    }

    section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider #labelHolder {
        height: 5px;
        position: relative;
        border: none;
    }

    section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider span {
        position: absolute;
        width: 1.2em;
        height: 1.2em;
        margin-left: -0.6em;
        text-align: center;
    }

section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider.active div.price-slider {
    height: 75px;
}

section.category-view aside div.filter-slider div.price-slider {
    height: 0;
    overflow: hidden;
    width: 100%;
    padding: 0 10px;
    transition: 0.5s all;
}

    section.category-view aside div.filter-slider div.price-slider .values {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        section.category-view aside div.filter-slider div.price-slider .values input[type=text] {
            border: none;
            display: block;
            width: 100px;
            background-color: transparent;
            color: #4A4A4D;
            font-size: 15px;
            font-weight: 400;
            line-height: 37px;
        }

            section.category-view aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                text-align: right;
            }

    section.category-view aside div.filter-slider div.price-slider .slider-box {
        width: 100%;
        margin: 15px auto;
    }

    section.category-view aside div.filter-slider div.price-slider .ui-slider {
        margin-top: 20px;
        height: 5px;
        position: relative;
        border: none;
        background: #C6C5C5;
    }

    section.category-view aside div.filter-slider div.price-slider .ui-state-default, section.category-view aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.category-view aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
        background: #ffffff;
        border-radius: 50%;
        outline: none;
        border: none;
        position: absolute;
        top: -9px;
    }

    section.category-view aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
        background: #D25D3E;
    }

    section.category-view aside div.filter-slider div.price-slider #labelHolder {
        height: 5px;
        position: relative;
        border: none;
    }

    section.category-view aside div.filter-slider div.price-slider span {
        position: absolute;
        width: 1.2em;
        height: 1.2em;
        margin-left: -0.6em;
        text-align: center;
    }

section.category-view aside div.filter-slider.active div.price-slider {
    height: 75px;
}

div.small-device-filter aside div.filter-slider div.price-slider {
    height: 0;
    overflow: hidden;
    width: 100%;
    padding: 0 10px;
    transition: 0.5s all;
}

    div.small-device-filter aside div.filter-slider div.price-slider .values {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        div.small-device-filter aside div.filter-slider div.price-slider .values input[type=text] {
            border: none;
            display: block;
            width: 100px;
            background-color: transparent;
            color: #4A4A4D;
            font-size: 15px;
            font-weight: 400;
            line-height: 37px;
        }

            div.small-device-filter aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                text-align: right;
            }

    div.small-device-filter aside div.filter-slider div.price-slider .slider-box {
        width: 96%;
        margin: 15px auto;
    }

    div.small-device-filter aside div.filter-slider div.price-slider .ui-slider {
        margin-top: 20px;
        height: 5px;
        position: relative;
        border: none;
        background: #C6C5C5;
    }

    div.small-device-filter aside div.filter-slider div.price-slider .ui-state-default, div.small-device-filter aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, div.small-device-filter aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
        background: #ffffff;
        border-radius: 50%;
        outline: none;
        border: none;
        position: absolute;
        top: -9px;
        box-shadow: 0 1px 4px rgba(32, 25, 4, 0.5);
    }

    div.small-device-filter aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
        background: #D25D3E;
    }

    div.small-device-filter aside div.filter-slider div.price-slider #labelHolder {
        height: 5px;
        position: relative;
        border: none;
    }

    div.small-device-filter aside div.filter-slider div.price-slider span {
        position: absolute;
        width: 1.2em;
        height: 1.2em;
        margin-left: -0.6em;
        text-align: center;
    }

div.small-device-filter aside div.filter-slider.active div.price-slider {
    height: 75px;
}

.modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider {
    height: 0;
    overflow: hidden;
    width: 100%;
    padding: 0 10px;
    transition: 0.5s all;
}

    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .values {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .values input[type=text] {
            border: none;
            display: block;
            width: 100px;
            background-color: transparent;
            color: #4A4A4D;
            font-size: 15px;
            font-weight: 400;
            line-height: 37px;
        }

            .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                text-align: right;
            }

    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .slider-box {
        width: 100%;
        margin: 15px auto;
    }

    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .ui-slider {
        margin-top: 20px;
        height: 5px;
        position: relative;
        border: none;
        background: #C6C5C5;
    }

    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .ui-state-default, .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
        background: #ffffff;
        border-radius: 50%;
        outline: none;
        border: none;
        position: absolute;
        top: -9px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    }

    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
        background: #D25D3E;
    }

    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider #labelHolder {
        height: 5px;
        position: relative;
        border: none;
    }

    .modal .modal-content .modal-body form div.product-details aside div.filter-slider div.price-slider span {
        position: absolute;
        width: 1.2em;
        height: 1.2em;
        margin-left: -0.6em;
        text-align: center;
    }

.modal .modal-content .modal-body form div.product-details aside div.filter-slider.active div.price-slider {
    height: 75px;
}

section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider {
    height: 0;
    overflow: hidden;
    width: 100%;
    padding: 0 10px;
    transition: 0.5s all;
}

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values input[type=text] {
            border: none;
            display: block;
            width: 100px;
            background-color: transparent;
            color: #4A4A4D;
            font-size: 15px;
            font-weight: 400;
            line-height: 37px;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                text-align: right;
            }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .slider-box {
        width: 100%;
        margin: 15px auto;
    }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-slider {
        margin-top: 20px;
        height: 5px;
        position: relative;
        border: none;
        background: #C6C5C5;
    }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-state-default, section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
        background: #ffffff;
        border-radius: 50%;
        outline: none;
        border: none;
        position: absolute;
        top: -9px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
        background: #D25D3E;
    }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider #labelHolder {
        height: 5px;
        position: relative;
        border: none;
    }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider span {
        position: absolute;
        width: 1.2em;
        height: 1.2em;
        margin-left: -0.6em;
        text-align: center;
    }

section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider.active div.price-slider {
    height: 75px;
}

.CustomSelect {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding: 0 40px 0 15px;
    height: 40px;
    border: none;
    background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
    background-size: 12px 12px;
    color: #4A4A4D;
    font-size: 15px;
}
/* Catalogue ends here */

.emp_product-details .title-actions a.cancel-product {
    color: #7F7F84;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    display: inline-block;
    margin-left: 20px;
    margin-right: 0;
    text-decoration: none;
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('images/icons/YlWC.gif') 50% 50% no-repeat rgb(249,249,249);
    background-color: rgba(0, 0, 0, 0.35)
}

#DivEmbelishment select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #F0EDE5;
    height: 64px;
    padding: 0 15px;
    border-radius: 10px;
    display: block;
    width: 100%;
    margin-bottom: 24px;
    outline: none;
    background: url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
    background-size: 12px 12px;
    margin-top: 20px;
}

#DivEmbelishment input.fields {
    border: 1px solid #F0EDE5;
    height: 64px;
    padding: 0 15px;
    border-radius: 10px;
    display: block;
    width: 100%;
    margin-bottom: 24px;
    outline: none;
    margin-top: 20px;
}


section.emp_recent-view {
    padding: 30px 0;
    background-color: #F0EDE5;
}

section .big-title.view-all {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

section .big-title h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 35px;
    color: #201904;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

section.emp_recent-view .item {
    border-radius: 10px;
    background-color: none;
    width: 100%;
}

    section.emp_recent-view .item .product-box {
        display: flex;
        flex-direction: column;
    }

        section.emp_recent-view .item .product-box div.details {
            width: 100%;
            margin-top: 15px;
        }

            section.emp_recent-view .item .product-box div.details span {
                display: block;
                color: #201904;
                font-size: 16px;
                line-height: 25px;
                font-weight: 500;
            }

                section.emp_recent-view .item .product-box div.details span.title {
                    line-height: 21px;
                    font-size: 16px;
                }

                section.emp_recent-view .item .product-box div.details span.qty {
                    color: #7F7F84;
                    font-size: 12px;
                    line-height: 25px;
                }

                section.emp_recent-view .item .product-box div.details span.price {
                    font-weight: 600;
                }

        section.emp_recent-view .item .product-box div.image {
            display: flex;
            background: #ffffff;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            z-index: 1;
            position: relative;
            transition: 0.3s;
            height: 150px;
        }

            section.emp_recent-view .item .product-box div.image:hover a {
                opacity: 1;
            }

            section.emp_recent-view .item .product-box div.image img {
                position: relative;
                z-index: 2;
                height: 100%;
            }

            section.emp_recent-view .item .product-box div.image a {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.46);
                color: #ffffff;
                z-index: 3;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-decoration: none;
                opacity: 0;
                transition: 0.6s;
            }

                section.emp_recent-view .item .product-box div.image a i {
                    font-size: 25px;
                }

                section.emp_recent-view .item .product-box div.image a span {
                    display: block;
                }




#CartItemEmbelishmentModal .modal-body #DivEmbelishment legend {
    display: table;
    width: auto;
    font-weight: 600;
    font-size: 12px;
    line-height: 25px;
    color: #7F7F84;
    padding: 0 15px;
    margin-left: -5px;
}

#CartItemEmbelishmentModal .modal-body #DivEmbelishment .option {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 30px;
}

#CartItemEmbelishmentModal .modal-body #DivEmbelishment .option-title {
    font-weight: 600;
    font-size: 17px;
    line-height: 25px;
    margin-right: 15px;
    white-space: normal;
}

#CartItemEmbelishmentModal .modal-body #DivEmbelishment .option-choice {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    #CartItemEmbelishmentModal .modal-body #DivEmbelishment .option-choice a.image {
        width: auto;
        height: 50px;
        padding: 10px;
        border-radius: 7px;
        border: 2px solid #F0EDE5;
        margin-right: 10px;
        display: block;
        overflow: hidden;
        text-decoration: none;
        background: #ffffff;
    }

        #CartItemEmbelishmentModal .modal-body #DivEmbelishment .option-choice a.image img {
            width: 100%;
            height: 100%;
        }

        #CartItemEmbelishmentModal .modal-body #DivEmbelishment .option-choice a.image.active img {
            border: 2px solid #F6F4F0;
        }

        #CartItemEmbelishmentModal .modal-body #DivEmbelishment .option-choice a.image.active {
            border-color: #D25D3E;
        }

    #CartItemEmbelishmentModal .modal-body #DivEmbelishment .option-choice input[type=text] {
        border: 1px solid #F0EDE5;
        border-radius: 7px;
        padding: 0 15px;
        background-color: #ffffff;
        height: 40px;
        margin-right: 10px;
    }

    #CartItemEmbelishmentModal .modal-body #DivEmbelishment .option-choice a.help {
        display: block;
        width: 16px;
        height: 16px;
        background: url(../images/icons/icon_help2.svg) center center no-repeat;
    }


.product-size {
    display: block;
    border-radius: 7px;
    height: auto;
    line-height: normal;
    padding: 10px 20px;
    margin-right: 10px;
    border: 2px solid #F0EDE5;
    color: #4A4A4D;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #ffffff;
    text-decoration: none;
}

    .product-size.active {
        border-color: #D25D3E;
        color: #201904;
        font-weight: 500;
    }

.products-wrapper.list .product .product-item {
    display: flex;
    align-items: center;
}

    .products-wrapper.list .product .product-item .image {
        width: 140px;
        margin-right: 18px;
    }

        .products-wrapper.list .product .product-item .image img {
            width: 100%;
            float: none;
        }

    .products-wrapper.list .product .product-item .details {
        width: calc(100% - 80px);
    }

/* width */
.cs-Table-Pagination div.col-xl-6:nth-child(2)::-webkit-scrollbar,
ul.paging-report::-webkit-scrollbar {
    height: 9px;
}

/* Track */
.cs-Table-Pagination div.col-xl-6:nth-child(2)::-webkit-scrollbar-track,
ul.paging-report::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 7px;
}

/* Handle */
.cs-Table-Pagination div.col-xl-6:nth-child(2)::-webkit-scrollbar-thumb,
ul.paging-report::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 7px;
}

    /* Handle on hover */
    .cs-Table-Pagination div.col-xl-6:nth-child(2)::-webkit-scrollbar-thumb:hover,
    ul.paging-report::-webkit-scrollbar-thumb:hover {
        background: #747474;
    }

.cs-Table-Pagination div.col-xl-6:nth-child(2) {
    text-align: right;
    overflow-x: auto;
}

.cs-Table-Pagination .paging {
    justify-content: flex-end;
    display: inline-flex;
    padding-bottom: 15px;
}

section.com_order-number .title-actions a.cancel {
    color: #d32243;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    display: inline-block;
    margin-left: 20px;
    margin-right: 0;
    padding-right: 25px;
    text-decoration: none;
    background: url(../images/icons/icon_reject_red.svg) right center no-repeat;
}

section.com_order-number .title-actions a.return {
    color: #7F7F84;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    display: inline-block;
    margin-left: 20px;
    margin-right: 0;
    padding-right: 25px;
    text-decoration: none;
    background: url(../images/icons/btn_return_grey.svg) right center no-repeat;
}

.modal .modal-content .modal-body form table.returns {
    width: 100%;
}

    .modal .modal-content .modal-body form table.returns thead tr th:nth-child(1) {
        text-align: left;
        width: calc(100% - 360px);
    }

    .modal .modal-content .modal-body form table.returns thead tr th:nth-child(2) {
        width: 180px;
    }

    .modal .modal-content .modal-body form table.returns thead tr th:nth-child(3) {
        width: 180px;
    }

    .modal .modal-content .modal-body form table.returns thead tr th {
        text-transform: uppercase;
        text-align: center;
        color: #7F7F84;
        font-weight: 600;
        font-size: 13px;
        line-height: 30px;
        text-align: center;
        padding: 0 5px;
    }

    .modal .modal-content .modal-body form table.returns tbody tr td {
        padding: 5px;
        vertical-align: middle;
    }

        .modal .modal-content .modal-body form table.returns tbody tr td img {
            width: 90px;
            margin-right: 10px;
            float: left;
            border: 1px solid #F0EDE5;
            border-radius: 6px;
        }

        .modal .modal-content .modal-body form table.returns tbody tr td span {
            font-size: 13px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            height: 80px;
            color: #7F7F84;
        }

            .modal .modal-content .modal-body form table.returns tbody tr td span strong {
                display: block;
                font-size: 16px;
                font-weight: 600;
                line-height: 22px;
                color: #201904;
            }

        .modal .modal-content .modal-body form table.returns tbody tr td div.quantity {
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #F0EDE5;
            border-radius: 10px;
            width: 135px;
            margin: 0 auto;
        }

            .modal .modal-content .modal-body form table.returns tbody tr td div.quantity button {
                border: none;
                background: transparent;
                width: 30px;
                height: 40px;
            }

            .modal .modal-content .modal-body form table.returns tbody tr td div.quantity input {
                border: 1px solid transparent;
                border-left-color: #F0EDE5;
                border-right-color: #F0EDE5;
                height: 28px;
                width: calc(100% - 60px);
                text-align: center;
                -webkit-appearance: textfield !important;
                appearance: textfield !important;
                -moz-appearance: textfield !important;
                padding-left: 14px;
            }

        .modal .modal-content .modal-body form table.returns tbody tr td select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 6px;
            padding: 0 40px 0 15px;
            height: 34px;
            background: url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
            background-size: 12px 12px;
            color: #4A4A4D;
            font-size: 15px;
            border: 1px solid #F0EDE5;
            width: 100%;
            height: 42px;
            border-radius: 10px;
        }

.add-shipping-address {
    display: flex;
    justify-content: flex-end;
    color: #d25d3e;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 10px;
}

section.com_dashboard .product-detail .card.card-product img {
    height: 180px;
    object-fit: contain;
    width: 100%;
}

header a.logo img {
    height: 55px;
    object-fit: contain;
}

nav.back a {
    color: #d25d3e;
    font-weight: 600;
    font-size: 17px;
}

section.com_product-set-group div.products-wrapper .product-box div.users .user-box .image a.remove img {
    width: auto;
    padding: 8px;
}

section.com_product-set-group div.products-wrapper .product-box div.product .product-item .details {
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

section.com_product-set-group div.products-wrapper.list .product-box div.product .product-item .details {
    justify-content: center;
}

section.emp_checkout form div.card.card-contact .card-body div.employee-allowance .ck-payment-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    section.emp_checkout form div.card.card-contact .card-body div.employee-allowance .ck-payment-checkbox > .title {
        margin-bottom: 1px;
        flex-grow: 1;
    }

.product-size:hover {
    border-color: #D25D3E;
    color: #201904;
    text-decoration: none;
}

section.emp_product-details div.product-detail div.specification div.spec div.spec-details > div {
    max-height: 220px;
    overflow-y: auto;
}

    section.emp_product-details div.product-detail div.specification div.spec div.spec-details > div::-webkit-scrollbar {
        width: 0.5em;
    }

    section.emp_product-details div.product-detail div.specification div.spec div.spec-details > div::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px #757575;
        border-radius: 70px;
    }

    section.emp_product-details div.product-detail div.specification div.spec div.spec-details > div::-webkit-scrollbar-thumb {
        background-color: #d25d3e;
        outline: 1px solid #d25d3e;
        border-radius: 70px;
    }

.products-wrapper .item .product-box div.details a {
    text-decoration: none;
}

    .products-wrapper .item .product-box div.details a:hover span {
        color: #d25d3e !important;
    }

#Login-store-name span.cs-storename {
    color: #c64f2f;
    text-transform: capitalize;
    display: block;
}

.main-slider .product-detail a:hover,
.product-box .details a:hover {
    text-decoration: none;
}

    .main-slider .product-detail a:hover span,
    .product-box .details a:hover span {
        color: #d25d3e !important;
    }

table.all-orders #orders-tab-table-body tr td a,
table.all-orders #pending-tab-table-body tr td a,
table.all-orders #completed-tab-table-body tr td a,
table.all-orders #cancel-tab-table-body tr td a,
table.all-orders #waiting-tab-table-body tr td a {
    color: #d25d3e;
}

form span.required {
    color: #ff0000;
}

a.ibs-options {
    background: url(../images/icons/btn_action_black.svg) center center no-repeat;
    padding: 15px 20px;
    display: inline-block;
}

.dropdown-menu.show {
    display: block !important;
}

header .cart img {
    width: 42px;
}

.com_employees #StoreEmployeeTableBody .csprofile-letters {
    background-color: #eef7d2;
    width: 54px;
    height: 54px;
    float: left;
    border-radius: 50px;
    text-align: center;
    margin-right: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eef7d2;
    color: #9cb35c;
}

.ibs-more-action.dropdown a.dropdown-toggle:after {
    content: none;
}

.result span.number a {
    color: #201904;
}

    .result span.number a:hover {
        text-decoration: none;
        color: #d25d3e;
    }

.filter-slider .cancel-filters {
    border: 1px solid #7F7F84 !important;
}

form .icon-passwordgroup {
    position: relative;
}

    form .icon-passwordgroup .eye-icon {
        position: absolute;
        right: 18px;
        top: 20px;
    }

        form .icon-passwordgroup .eye-icon i {
            color: #222;
        }

div a.add {
    background-image: url(../images/icons/icon_download_black.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #fff;
}

    div a.add:hover {
        background-image: url(../images/icons/icon_download_orange.svg);
    }

.title-actions .other-actions div a.add {
    width: 67px;
    height: 67px;
    display: block;
    border-radius: 10px;
    margin: 0 15px;
    color: #201904;
}

.cs-embelishmentpopup .modal-dialog {
    max-width: 950px;
}

.embelishment-popupdetails .product-detail fieldset .option .option-choice {
    /*justify-content: space-between;*/
}

.embelishment-popupdetails .cs-emb-price {
    background-color: #d25d3e;
    color: #fff;
    border-radius: 50px;
    padding: 5px 15px;
}

.embelishment-popupdetails .cs-emb-fields {
    display: flex;
    align-items: center;
}

.cs-emb-button {
    margin: 10px 0;
}

    .cs-emb-button a {
        color: #222;
    }

        .cs-emb-button a:hover {
            color: #d25d3e;
        }

    .cs-emb-button .cs-emb-totalprice {
        background-color: #d25d3e;
        color: #fff;
        border-radius: 50px;
        padding: 5px 15px;
    }

section.reports {
    padding-bottom: 10px;
}

    section.reports .title-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

        section.reports .title-actions div.search {
            display: flex;
            flex-direction: row;
            height: 52px;
            border-radius: 10px;
            overflow: hidden;
            background-color: #ffffff;
            position: relative;
        }

            section.reports .title-actions div.search input.search {
                border: none;
                background-color: transparent;
                padding: 0 15px;
                width: calc(100% - 52px);
            }

            section.reports .title-actions div.search button.submit {
                width: 52px;
                height: 52px;
                display: block;
                border-radius: 10px;
                line-height: 52px;
                text-align: center;
                border: none;
                background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
            }

                section.reports .title-actions div.search button.submit:hover {
                    background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                }

    section.reports div.report-box div.report {
        background-color: #ffffff;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 15px;
        padding: 15px;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
    }

        section.reports div.report-box div.report img {
            width: 64px;
            height: 64px;
        }

        section.reports div.report-box div.report span {
            display: block;
            color: #4A4A4D;
            font-size: 15px;
            font-weight: 500;
            padding: 0 10px;
            width: calc(100% - 94px);
            line-height: 30px;
        }

            section.reports div.report-box div.report span strong {
                font-size: 24px;
                font-weight: 600;
                display: block;
                color: #201904;
                line-height: 30px;
            }

        section.reports div.report-box div.report a {
            text-decoration: none;
            color: #201904;
            font-size: 20px;
            font-weight: bolder;
            width: 30px;
            height: 30px;
            display: inline;
            line-height: 30px;
        }

section.order-sales-report .title-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

    section.order-sales-report .title-actions a.toggle {
        display: none;
        border-radius: 10px;
    }

    section.order-sales-report .title-actions div.buttons {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        background-color: transparent;
        border-radius: 10px;
        position: static;
        right: 0;
        top: 42px;
        z-index: 10;
        box-shadow: none;
        width: 100%;
    }

        section.order-sales-report .title-actions div.buttons a {
            text-decoration: none;
            height: 52px;
            line-height: 50px;
            margin-left: 15px;
            display: block;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            padding: 0 25px;
            text-align: center;
        }

            section.order-sales-report .title-actions div.buttons a img {
                margin: 0 5px;
            }

            section.order-sales-report .title-actions div.buttons a.print {
                color: #201904;
                min-width: 120px;
                padding: 0 50px 0 15px;
                background: #ffffff url(images/icons/icon_printer_black.svg) 70px center no-repeat;
            }

                section.order-sales-report .title-actions div.buttons a.print:hover {
                    color: #D25D3E;
                    background: #ffffff url(images/icons/icon_printer_orange.svg) 70px center no-repeat;
                }

            section.order-sales-report .title-actions div.buttons a.export {
                color: #201904;
                min-width: 120px;
                padding: 0 50px 0 15px;
                background: #ffffff url(images/icons/icon_export_black.svg) 80px center no-repeat;
            }

                section.order-sales-report .title-actions div.buttons a.export:hover {
                    color: #D25D3E;
                    background: #ffffff url(images/icons/icon_export_orange.svg) 80px center no-repeat;
                }

            section.order-sales-report .title-actions div.buttons a.close {
                color: #7F7F84;
            }

                section.order-sales-report .title-actions div.buttons a.close:hover {
                    color: #D32243;
                    opacity: 1;
                }

section.order-sales-report aside h3.toggle-form i {
    display: none;
}

section.order-sales-report aside form {
    display: block;
    margin-top: 20px;
}

    section.order-sales-report aside form label.info {
        color: #7F7F84;
        display: block;
        line-height: 16px;
        font-size: 14px;
        font-weight: 500;
    }

    section.order-sales-report aside form div.time {
        position: relative;
        border: 1px solid #F0EDE5;
        background-color: #ffffff;
        height: 52px;
        padding: 0 15px;
        border-radius: 8px;
        display: block;
        width: 100%;
        margin-bottom: 24px;
        z-index: 0;
    }

        section.order-sales-report aside form div.time span {
            font-size: 16px;
            line-height: 52px;
            text-align: left;
            position: relative;
            z-index: 1;
            display: block;
            height: 52px;
            width: 90%;
            overflow-x: hidden;
        }

        section.order-sales-report aside form div.time img {
            width: 20px;
            height: 20px;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
        }

    section.order-sales-report aside form select.fields {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 1px solid #F0EDE5;
        height: 52px;
        padding: 0 15px;
        border-radius: 8px;
        display: block;
        width: 100%;
        margin-bottom: 24px;
        outline: none;
        background: #ffffff url(images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
        background-size: 12px 12px;
    }

    section.order-sales-report aside form button[type=submit] {
        height: 52px;
        font-size: 18px;
        font-weight: 700;
        padding: 0 15px;
        min-width: 212px;
        border-radius: 10px;
        border: none;
        background-color: #D25D3E;
        color: #ffffff;
    }

    section.order-sales-report aside form button[type=button] {
        height: 52px;
        font-size: 18px;
        font-weight: 700;
        padding: 0 15px;
        min-width: 212px;
        border-radius: 10px;
        border: none;
        background-color: #D25D3E;
        color: #ffffff;
    }

    section.order-sales-report aside form button[type=submit]:hover {
        background-color: #C64F2F;
    }

    section.order-sales-report aside form button[type=button]:hover {
        background-color: #C64F2F;
    }

    section.order-sales-report aside form button[type=submit]:focus {
        background-color: #DC836A;
    }

    section.order-sales-report aside form button[type=button]:focus {
        background-color: #DC836A;
    }

section.order-sales-report .card.card-order-sales h4 {
    display: block;
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
    color: #201904;
    margin: 0;
}

section.order-sales-report .card.card-order-sales span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #7F7F84;
    margin: 0;
}

    section.order-sales-report .card.card-order-sales span.full-date {
        text-align: right;
    }

section.order-sales-report table.order-sales {
    width: 100%;
}

    section.order-sales-report table.order-sales thead tr {
        background-color: #F0EDE5;
    }

        section.order-sales-report table.order-sales thead tr th {
            padding: 8px 25px;
            font-size: 12px;
            text-transform: uppercase;
            color: #7F7F84;
            font-weight: 600;
            text-align: left;
            line-height: 30px;
        }

            section.order-sales-report table.order-sales thead tr th:nth-child(1) {
                width: 160px;
            }

            section.order-sales-report table.order-sales thead tr th:nth-child(2) {
                width: 130px;
            }

            section.order-sales-report table.order-sales thead tr th:nth-child(3) {
                width: 150px;
            }

            section.order-sales-report table.order-sales thead tr th:nth-child(4) {
                width: calc(100% - 640px);
            }

            section.order-sales-report table.order-sales thead tr th:nth-child(5) {
                text-align: center;
                width: 100px;
            }

            section.order-sales-report table.order-sales thead tr th:nth-child(6) {
                text-align: center;
                width: 100px;
            }

    section.order-sales-report table.order-sales tbody tr td {
        text-align: left;
        padding: 15px 25px;
        font-size: 14px;
        color: #4A4A4D;
    }

        section.order-sales-report table.order-sales tbody tr td:nth-child(n+5) {
            text-align: right;
        }

section.order-sales-report .paging-report {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
    margin: 25px 0;
    padding: 0;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}

    section.order-sales-report .paging-report li a {
        min-width: 36px;
        line-height: 36px;
        border-radius: 4px;
        background: #ffffff;
        color: #201904;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: 0.3s;
        margin: 0 5px;
    }

        section.order-sales-report .paging-report li a .fa {
            font-size: 18px;
            font-weight: bolder;
            margin: 0 15px;
        }

    section.order-sales-report .paging-report li:hover a {
        background-color: #D25D3E;
        color: #ffffff;
    }

    section.order-sales-report .paging-report li.active a {
        background-color: #D25D3E;
        color: #ffffff;
    }

section.com_login main.ibs-content {
    width: 100%;
    padding-top: 2%;
}

    section.com_login main.ibs-content form {
        width: 40%
    }


.cs-nav-dropdown {
    position: relative;
}

.cs-dropdown-content {
    display: none;
    position: absolute;
    background-color: #201904;
    padding-bottom: 5px;
    width: 255px;
    max-height: 395px;
    overflow-y: auto;
}

.cs-nav-dropdown:hover .cs-dropdown-content {
    display: block;
}

.cs-nav-dropdown .cs-dropdown-content a {
    display: block;
    line-height: normal;
    padding: 15px 15px;
    border-bottom: 1px solid #e9e9e97a;
    margin: 0;
}

    .cs-nav-dropdown .cs-dropdown-content a:last-child {
        border-bottom: 0;
    }

.cs-nav-dropdown .cs-dropdown-content::-webkit-scrollbar {
    width: 0.3em;
}

.cs-nav-dropdown .cs-dropdown-content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #757575;
    border-radius: 70px;
}

.cs-nav-dropdown .cs-dropdown-content::-webkit-scrollbar-thumb {
    background-color: #d25d3e;
    outline: 1px solid #d25d3e;
    border-radius: 70px;
}

.cart-count-total {
    display: flex;
    justify-content: space-between;
}

.card-disabled {
    background-color: #c7c7c7;
}

.view-employee-btn {
    display: flex;
    align-items: end;
}

.billing-checkbox {
    border: 1px solid #f0ede5;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
}

    .billing-checkbox input {
        margin-right: 10px;
        position: relative;
        top: 4px;
    }

.balance-remain {
    width: 50%;
    box-shadow: 0px 0px 5px 1px #dcd5d5;
    border-radius: 5px;
    background-color: #ffffff;
}

.cs-remain {
    font-weight: 600;
    font-size: 17px;
    line-height: 18px;
    border-bottom: 1px solid #bdbbbb;
    padding: 10px;
}

.chart div.balance-remain .big-title {
    font-size: 40px;
    font-weight: 600;
    fill: #201904;
    padding: 0 0 0 30px;
}

.embelishment-popupdetails .product-detail fieldset .option span.option-title,
#CartItemEmbelishmentModal .embelishment-popupdetails .product-detail fieldset#DivEmbelishment .option span.option-title {
    overflow-wrap: break-word;
    min-width: 90px;
}

.embelishment-popupdetails .product-detail fieldset .option .option-choice.emb-imageOptions a,
#CartItemEmbelishmentModal .embelishment-popupdetails .product-detail fieldset#DivEmbelishment .option .option-choice.emb-imageOptions a {
    width: 25%;
    height: 100px;
    padding: 8px;
}

    .embelishment-popupdetails .product-detail fieldset .option .option-choice.emb-imageOptions a img,
    #CartItemEmbelishmentModal .embelishment-popupdetails .product-detail fieldset#DivEmbelishment .option .option-choice.emb-imageOptions a img {
        object-fit: contain;
    }

#CartItemEmbelishmentModal .modal-dialog {
    max-width: 980px;
}

section.emp_product-details .swiper div.large-image {
    overflow: inherit;
}

section.emp_product-details .swiper .swiper-slide-zoomed div.large-image::after {
    content: none;
}

.cart-embellishment-img {
    width: 60px;
    height: 40px;
    object-fit: cover;
}
.otp-main {
    width: auto;
    margin-top: 10px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0px 10px -6px #222;
    overflow: hidden;
    border-radius: 15px;
    text-align: center;
}

.otp-main .otp-form {
    width: 100% !important;
}

.otp-main .otp-form .verification-codes {
}

    .otp-main .otp-form .verification-codes input {
        background-color: #fbf9f5;
        padding: 20px 18px;
        border: 1px solid #e3e3e3;
        margin-right: 30px;
        border-radius: 5px;
        text-align: center;
        font-size: 1.8em;
        font-weight: 700;
        line-height: normal;
    }

.otp-main .otp-form button {
    background: #d25d3e;
    padding: 13px 45px;
    width: 85%;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
}

.otp-main .resend-code a {
    color: #d25d3e;
}
@media (min-width: 1900px) {
    .container {
        max-width: 85vw;
    }

    #DivEmptymyChart-bar, #DivEmptymyChart-line, #myChart-line, #myChart-bar {
        min-height: 21vw
    }
}
