@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%;
    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: "";
    }

nav.back a {
    color: #D25D3E;
    font-size: 17px;
    font-weight: 600;
}

nav.continue a {
    display: block;
    color: #D25D3E;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
}

    nav.continue a::before {
        content: "\f104";
        font-family: FontAwesome;
        display: inline-block;
        margin: 0 8px 0 0;
    }

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

.d-none {
    display: none;
}

header {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    z-index: 100;
}

    header a.logo {
        order: 1;
        display: flex;
        align-items: center;
        margin: 10px 20px;
        width: 170px;
        height: 63px;
    }

        header a.logo img {
            height: 55px;
            object-fit: contain
        }

    header div.header-search {
        order: 2;
        /*width: calc(100% - 420px);*/
        width:calc(100% - 880px);
        height: 47px;
    }

        header div.header-search form.search-area {
            background-color: #ffffff;
            border-radius: 10px;
            height: inherit;
            /*width: 724px;*/
            width: 80%;
            height: 100%;
            margin: 0 auto;
            display: flex;
            flex-wrap: nowrap;
            justify-content: flex-start;
            align-items: center;
            border: 2px solid transparent;
            transition: 0.6s;
            position: relative;
            z-index: 100;
        }

            header div.header-search form.search-area input.search-input {
                border: none;
                background-color: transparent;
                height: inherit;
                padding-left: 20px;
                width: 100%;
                font-size: 16px;
                font-weight: 400;
                position: relative;
                z-index: 2;
                height: 100%;
            }

            header div.header-search form.search-area button.search-button {
                width: 45px;
                height: 100%;
                position: absolute;
                z-index: 1;
                right: 0;
                top: 0;
                height: inherit;
                border: none;
                background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
            }

                header div.header-search form.search-area button.search-button:hover {
                    background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                }

            header div.header-search form.search-area:focus-within {
                border-color: #D25D3E;
            }

                header div.header-search form.search-area:focus-within button.search-button {
                    z-index: 3;
                }

                header div.header-search form.search-area:focus-within div.autocomplete {
                    display: block;
                }

            header div.header-search form.search-area div.autocomplete {
                position: absolute;
                left: 0;
                right: 0;
                top: 49px;
                z-index: 100;
                border: 1px solid #F0EDE5;
                box-shadow: 0px 8px 40px rgba(23, 31, 70, 0.08);
                border-radius: 10px;
                background: #ffffff;
                overflow: hidden;
                padding: 15px 10px;
                overflow-y: auto;
                max-height: 315px;
                display: none;
            }

                header div.header-search form.search-area div.autocomplete span.heading {
                    font-size: 12px;
                    font-weight: 600;
                    color: #7F7F84;
                    display: block;
                    line-height: 14px;
                    padding: 5px 15px;
                    text-transform: uppercase;
                }

                header div.header-search form.search-area div.autocomplete ul.autosort {
                    width: 100%;
                    margin: 0;
                    padding: 0;
                }

                    header div.header-search form.search-area div.autocomplete ul.autosort li {
                        padding: 5px 15px;
                        font-weight: 500;
                        cursor: pointer;
                        display: flex;
                        flex-direction: row;
                        flex-wrap: nowrap;
                        align-items: center;
                        justify-content: space-between;
                        border-bottom: 1px solid #F0EDE5;
                    }

                        header div.header-search form.search-area div.autocomplete ul.autosort li div {
                            display: flex;
                            align-items: center;
                        }

                            header div.header-search form.search-area div.autocomplete ul.autosort li div img {
                                margin: 0 10px;
                                width: 70px;
                                float: left;
                            }

                            header div.header-search form.search-area div.autocomplete ul.autosort li div span {
                                display: block;
                                font-size: 12px;
                                color: #7F7F84;
                            }

                                header div.header-search form.search-area div.autocomplete ul.autosort li div span strong {
                                    display: block;
                                    font-weight: 500;
                                    font-size: 15px;
                                    line-height: 20px;
                                    color: #201904;
                                }

                                header div.header-search form.search-area div.autocomplete ul.autosort li div span.price {
                                    font-weight: 600;
                                    font-size: 16px;
                                    line-height: 25px;
                                    color: #201904;
                                }

                header div.header-search form.search-area div.autocomplete.active {
                    display: block;
                }

    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: 170px;
    }

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

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

        header div.actions a.need-help {
            display: block;
            font-weight: 500;
            font-size: 16px;
            line-height: 20px;
            color: #D25D3E;
            padding-left: 25px;
            background: url(../images/icons/icon_question_orange.svg) 0 center no-repeat;
        }

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

            header div.actions a.user:hover {
                background: url(../images/icons/icon_user_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.cart {
            width: 40px;
            height: 40px;
            display: block;
            border-radius: 50%;
            border: none;
            margin: 0 10px;
            outline: none;
            position: relative;
        }

            header div.actions button.cart span {
                position: absolute;
                right: -4px;
                top: -4px;
                border-radius: 50%;
                width: 18px;
                height: 18px;
                font-size: 10px;
                line-height: 18px;
                font-weight: 600;
                color: #ffffff;
                background-color: #201904;
                display: none;
            }

                header div.actions button.cart span.active {
                    display: block;
                }

        header div.actions .user-actions {
            position: absolute;
            width: 250px;
            background-color: #ffffff;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
            right: 65px;
            top: 40px;
            border-radius: 10px;
            z-index: 60;
            padding: 15px;
            display: none;
        }

            header div.actions .user-actions div.user-info {
                font-size: 14px;
                font-weight: 500;
                color: #7F7F84;
            }

                header div.actions .user-actions div.user-info strong {
                    color: #201904;
                    font-size: 18px;
                    font-weight: 600;
                    display: block;
                }

            header div.actions .user-actions .progress-box {
                margin: 20px 0;
                width: 100%;
            }

                header div.actions .user-actions .progress-box .single-progress {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    margin-bottom: 10px;
                }

                    header div.actions .user-actions .progress-box .single-progress span {
                        line-height: 20px;
                        font-size: 14px;
                    }

                        header div.actions .user-actions .progress-box .single-progress span.title {
                            text-align: left;
                        }

                        header div.actions .user-actions .progress-box .single-progress span.value {
                            text-align: right;
                            font-size: 12px;
                        }

                            header div.actions .user-actions .progress-box .single-progress span.value strong {
                                font-size: 17px;
                                font-weight: 600;
                                color: #4A4A4D;
                                line-height: 17px;
                            }

                    header div.actions .user-actions .progress-box .single-progress .progress-bar {
                        display: block;
                        background: #F0EDE5;
                        height: 6px;
                        border-radius: 3px;
                        position: relative;
                        width: 100%;
                    }

                        header div.actions .user-actions .progress-box .single-progress .progress-bar .bar-fill {
                            height: 6px;
                            border-radius: inherit;
                        }

                            header div.actions .user-actions .progress-box .single-progress .progress-bar .bar-fill.green {
                                width: 60%;
                                background-color: #B3CE67;
                            }

                            header div.actions .user-actions .progress-box .single-progress .progress-bar .bar-fill.blue {
                                width: 40%;
                                background-color: #5979B7;
                            }

                    header div.actions .user-actions .progress-box .single-progress:last-of-type {
                        margin-bottom: 0;
                    }

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

                header div.actions .user-actions div.divider a {
                    display: block;
                    line-height: 35px;
                    height: 35px;
                    width: 100%;
                    font-size: 16px;
                    font-weight: 500;
                    color: #7F7F84;
                    text-decoration: none;
                    margin: 0;
                    padding: 0 0 0 35px;
                }

                    header div.actions .user-actions div.divider a.account {
                        background: url(../images/icons/icon_employee_grey.svg) 0 center no-repeat;
                    }

                        header div.actions .user-actions div.divider a.account:hover {
                            color: #D25D3E;
                            background: url(../images/icons/icon_employee_orange.svg) 0 center no-repeat;
                        }

                    header div.actions .user-actions div.divider a.logout {
                        background: url(../images/icons/icon_logout_grey.svg) 0 center no-repeat;
                    }

                        header div.actions .user-actions div.divider a.logout:hover {
                            color: #D25D3E;
                            background: url(../images/icons/icon_logout_orange.svg) 0 center no-repeat;
                        }

        header div.actions .cart-result {
            position: absolute;
            min-width: 400px;
            background-color: #ffffff;
            box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
            right: 0;
            top: 40px;
            border-radius: 10px;
            overflow: hidden;
            z-index: 55;
            display: none;
        }

            header div.actions .cart-result span.no-product {
                display: block;
                font-size: 18px;
                font-weight: 500;
                line-height: 18px;
                text-align: center;
                padding: 40px 15px;
            }

            header div.actions .cart-result h5 {
                margin: 0;
                padding: 15px 20px 10px;
                font-size: 24px;
                font-weight: 600;
                line-height: 30px;
            }

            header div.actions .cart-result a.review {
                background-color: #D25D3E;
                color: #ffffff;
                border-radius: 10px;
                display: block;
                height: 52px;
                line-height: 52px;
                text-align: center;
                margin: 0 20px 20px;
                text-decoration: none;
                background: #D25D3E url(../images/icons/icon_review.svg) 96% center no-repeat;
            }

                header div.actions .cart-result a.review:hover {
                    background: #C64F2F url(../images/icons/icon_review.svg) 96% center no-repeat;
                }

                header div.actions .cart-result a.review:focus {
                    background: #DC836A url(../images/icons/icon_review.svg) 96% center no-repeat;
                }

            header div.actions .cart-result div.cart-outter {
                padding: 0;
                max-height: 150px;
                overflow-y: auto;
                margin: 0 15px 10px 15px;
            }

                header div.actions .cart-result div.cart-outter table.cart {
                    width: 100%;
                }

                    header div.actions .cart-result div.cart-outter table.cart tbody tr td img {
                        margin: 15px 0;
                        width: 56px;
                        border: 1px solid #F0EDE5;
                        border-radius: 4px;
                    }

                    header div.actions .cart-result div.cart-outter table.cart tbody tr td span strong {
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 16px;
                        display: block;
                        color: #201904;
                    }

                    header div.actions .cart-result div.cart-outter table.cart tbody tr td span.details {
                        font-weight: 500;
                        font-size: 12px;
                        line-height: 12px;
                        color: #7F7F84;
                    }

                    header div.actions .cart-result div.cart-outter table.cart tbody tr td span.counts {
                        font-weight: 600;
                        font-size: 16px;
                        line-height: 16px;
                        text-align: right;
                        color: #201904;
                    }

                    header div.actions .cart-result div.cart-outter table.cart tbody tr td:nth-child(1) {
                        width: 56px;
                    }

                    header div.actions .cart-result div.cart-outter table.cart tbody tr td:nth-child(2) {
                        width: calc(100% - 126px);
                        padding: 0 10px;
                        border-bottom: 1px solid #F0EDE5;
                    }

                    header div.actions .cart-result div.cart-outter table.cart tbody tr td:nth-child(3) {
                        width: 70px;
                        text-align: right;
                        border-bottom: 1px solid #F0EDE5;
                    }

                    header div.actions .cart-result div.cart-outter table.cart tbody tr:last-of-type td {
                        border-bottom: 0;
                    }

            header div.actions .cart-result div.exceed {
                margin-top: 20px;
                background-color: rgba(244, 195, 27, 0.2);
                display: flex;
                justify-content: center;
                min-height: 42px;
                align-items: center;
            }

                header div.actions .cart-result div.exceed a.info {
                    display: inline-block;
                    width: 20px;
                    height: 20px;
                    background: url(../images/icons/icon_info.svg) center center no-repeat;
                    margin-right: 10px;
                }

                header div.actions .cart-result div.exceed span {
                    font-size: 15px;
                    font-weight: 400;
                    color: #4A4A4D;
                    line-height: 15px;
                    display: inline-block;
                }

                    header div.actions .cart-result div.exceed span span {
                        color: #D25D3E;
                    }

    header nav {
        width: 100%;
        /*height: 60px;*/
        height: auto;
        background-color: #201904;
        order: 4;
        position: relative;
    }

        header nav 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 nav div.nav-box {
            display: block;
        }

            header nav div.nav-box div.all-links {
                /*height: 60px;*/
                display: flex;
                flex-direction: row;
                justify-content: center;
                position: relative;
                z-index: 50;
                color: #ffffff;
            }

                header nav div.nav-box div.all-links .logo-section {
                    justify-content: space-between;
                    align-items: center;
                    margin: 25px 0 40px;
                    display: none;
                }

                    header nav div.nav-box div.all-links .logo-section a.logo {
                        display: block;
                        padding: 0;
                        margin: 0;
                    }

                    header nav div.nav-box div.all-links .logo-section button {
                        width: 30px;
                        height: 30px;
                        border: none;
                        background-color: transparent;
                    }

                header nav div.nav-box div.all-links a.links {
                    display: inline-block;
                    text-decoration: none;
                    line-height: 57px;
                    border-bottom: 3px solid transparent;
                    font-weight: 600;
                    font-size: 20px;
                    text-decoration: none !important;
                    color: #BCBAB4;
                    /*padding: 0;*/
                    margin: 0;
                    padding: 15px 0;
                }

                    header nav div.nav-box div.all-links a.links.category {
                        margin-right: 40px;
                    }

                    header nav div.nav-box div.all-links a.links img {
                        display: inline-block;
                        margin-right: 5px;
                    }

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

                header nav div.nav-box div.all-links .other-links {
                    border-top: 1px solid #E7E7E7;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 80px;
                    width: calc(100% - 30px);
                    display: none;
                    margin: 0 15px;
                }

                    header nav div.nav-box div.all-links .other-links a {
                        color: #201904;
                        text-decoration: none;
                        margin: 0 25px;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 20px;
                        display: block;
                    }

                        header nav div.nav-box div.all-links .other-links a:hover {
                            color: #D25D3E;
                        }

    header.header {
        padding: 0 15px;
        justify-content: space-between;
    }

footer div {
    background-color: #201904;
    color: #f0ede5;
    padding: 3px 0;
}

    footer div a.logo {
        display: flex;
        align-items: center;
        margin-top: 0px;
        justify-content: flex-start;
    }

        footer div a.logo img {
            object-fit: contain;
            width: 100% !important;
            height: 75px !important;
        }

    footer div nav {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        height: 77px;
    }

        footer div nav a {
            display: block;
            font-weight: 500;
            font-size: 16px;
            line-height: 20px;
            color: #F0EDE5;
            padding: 0;
            margin-left: 60px;
            text-decoration: none !important;
        }

            footer div nav a:hover {
                color: #ffffff;
            }

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: -2px;
        }

        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 .big-title span {
            display: block;
            font-size: 16px;
            color: #7F7F84;
            font-weight: 500;
            line-height: 56px;
            margin-left: 15px;
            letter-spacing: -1px;
        }

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

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

        section .big-title.view-all {
            display: flex;
            justify-content: space-between;
            flex-direction: row;
            align-items: center;
        }

            section .big-title.view-all a {
                display: block;
                color: #D25D3E;
                font-weight: 600;
                font-size: 16px;
                line-height: 20px;
            }

    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 h5 {
        font-weight: 600;
        font-size: 28px;
        line-height: 35px;
        color: #201904;
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
        white-space: nowrap;
    }

    section h6 {
        font-weight: 600;
        font-size: 28px;
        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.emp_login {
        width: 100vw;
        height: 100vh;
        padding: 24px;
        display: flex;
        flex-wrap: nowrap;
    }

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

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

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

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

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

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

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

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

                section.emp_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.emp_login div.form-section form .fields span.icon-svg {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 50px;
                        height: 64px;
                        background-color: none;
                        min-width: 50px;
                    }

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

                    section.emp_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.emp_login div.form-section form .fields input::-moz-placeholder {
                            color: #7F7F84;
                            font-weight: 400;
                        }

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

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

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

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

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

                    section.emp_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.emp_login div.form-section form div.action input[type=submit]:hover {
                            background-color: #C64F2F;
                        }

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

                    section.emp_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.emp_login div.form-section footer a {
                display: block;
                display: none;
            }

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

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

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

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

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

        section.emp_dashboard .welcome {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            background: #D25D3E url(../images/bg_circle.png) left top no-repeat;
            border-radius: 10px;
            overflow: hidden;
            padding: 35px 10px 35px 25px;
            background-size: 50% 100%;
            justify-content: space-around;
        }

            section.emp_dashboard .welcome .welcome-content {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: flex-start;
                width: 40%;
            }

                section.emp_dashboard .welcome .welcome-content span {
                    font-weight: 500;
                    font-size: 19px;
                    line-height: 20px;
                    color: #ffffff;
                    display: block;
                }

                    section.emp_dashboard .welcome .welcome-content span span {
                        font-weight: 600;
                        font-size: 45px;
                        line-height: 56px;
                        display: block;
                    }

                section.emp_dashboard .welcome .welcome-content a.edit {
                    background-color: #201904;
                    border-radius: 6px;
                    height: 36px;
                    line-height: 36px;
                    padding: 0 15px;
                    color: #ffffff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 20px;
                }

                    section.emp_dashboard .welcome .welcome-content a.edit img {
                        margin-right: 10px;
                        display: block;
                    }

            section.emp_dashboard .welcome .slider {
                width: 40%;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: end;
            }

                section.emp_dashboard .welcome .slider > button {
                    width: 40px;
                    height: 40px;
                    background: transparent;
                    border: none;
                    color: #ffffff;
                    font-size: 22px;
                }

                section.emp_dashboard .welcome .slider div.chart {
                    width: 70%;
                    position: relative;
                    border-radius: 5px;
                    background-color: #ffffff;
                    overflow: hidden;
                    padding: 5px 0px;
                    box-shadow: 0px 0px 8px 0px #7a6c6c;
                }

                    section.emp_dashboard .welcome .slider div.chart .cs-remain {
                        /*display: table;
                        margin: 0 auto;*/
                        font-weight: 600;
                        font-size: 17px;
                        line-height: 18px;
                        border-bottom: 1px solid #bdbbbb;
                        padding: 10px;
                    }

                    section.emp_dashboard .welcome .slider div.chart strong {
                        display: table;
                        margin: 0 auto;
                        font-weight: 600;
                        font-size: 17px;
                        line-height: 18px;
                    }

                    section.emp_dashboard .welcome .slider div.chart .big-title,
                    .chart div.balance-remain .big-title {
                        font-size: 40px;
                        font-weight: 600;
                        fill: #201904;
                        padding: 0px 0px 0px 30px;
                    }

                    section.emp_dashboard .welcome .slider div.chart a {
                        font-weight: 600;
                        font-size: 15px;
                        line-height: 25px;
                        text-align: center;
                        color: #D25D3E;
                        text-decoration: none;
                        padding: 0px 10px 10px 10px;
                    }

                    section.emp_dashboard .welcome .slider div.chart svg {
                        display: block;
                        margin: 0 auto;
                        width: 115px;
                        height: 125px;
                        position: relative;
                    }

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

                        section.emp_dashboard .welcome .slider div.chart svg .big-title {
                            font-size: 32px;
                            font-weight: 600;
                            fill: #201904;
                        }

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

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

                        section.emp_dashboard .welcome .slider 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.emp_dashboard .welcome .slider div.chart .meter-1 {
                        stroke-dasharray: 360;
                        stroke-dashoffset: 100;
                        stroke: #B3CE67;
                        -webkit-animation: progress-1 1s ease-out;
                        animation: progress-1 1s ease-out;
                    }

                    section.emp_dashboard .welcome .slider 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.emp_dashboard .welcome .slider 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;
                    }

                    section.emp_dashboard .welcome .slider div.chart svg .meter-4 {
                        stroke: mediumaquamarine;
                        stroke-dasharray: 360;
                        stroke-dashoffset: 155;
                        -webkit-animation: progress-4 0.5s ease-out;
                        animation: progress-4 0.5s ease-out;
                    }

                    section.emp_dashboard .welcome .slider div.chart svg .meter-5 {
                        stroke: tomato;
                        stroke-dasharray: 360;
                        stroke-dashoffset: 90;
                        -webkit-animation: progress-5 0.5s ease-out;
                        animation: progress-5 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;
    }
}

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

    to {
        stroke-dashoffset: 155;
    }
}

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

    to {
        stroke-dashoffset: 155;
    }
}

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

    to {
        stroke-dashoffset: 90;
    }
}

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

    to {
        stroke-dashoffset: 90;
    }
}

section.emp_dashboard .welcome .slider div.chart div.title {
    display: none;
}

section.emp_dashboard .welcome a.edit-second {
    background-color: #201904;
    border-radius: 6px;
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    display: none;
}

    section.emp_dashboard .welcome a.edit-second img {
        margin-right: 10px;
        display: block;
    }

section.emp_dashboard div.card-order-table .card-body > table.all-orders {
    width: 100%;
}

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

        section.emp_dashboard div.card-order-table .card-body > table.all-orders thead tr th:nth-child(1) {
            width: 170px;
        }

        section.emp_dashboard div.card-order-table .card-body > table.all-orders thead tr th:nth-child(2) {
            width: 170px;
        }

        section.emp_dashboard div.card-order-table .card-body > table.all-orders thead tr th:nth-child(3) {
            width: 150px;
        }

        section.emp_dashboard div.card-order-table .card-body > table.all-orders thead tr th:nth-child(4) {
            width: calc(100% - 780px);
        }

        section.emp_dashboard div.card-order-table .card-body > table.all-orders thead tr th:nth-child(5) {
            width: 170px;
            text-align: center;
        }

        section.emp_dashboard div.card-order-table .card-body > table.all-orders thead tr th:nth-child(6) {
            width: 120px;
            text-align: center;
        }

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

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

            section.emp_dashboard div.card-order-table .card-body > table.all-orders 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.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td select.program, section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td select.role {
                    background-color: #ffffff;
                }

            section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td input[type=text], section.emp_dashboard div.card-order-table .card-body > table.all-orders 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.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td .dates {
                position: relative;
                background-color: #F6F4F0;
                height: 34px;
                padding: 0;
                border-radius: 6px;
                display: block;
                width: 100%;
                z-index: 0;
            }

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

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

            section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td strong {
                font-weight: 500;
            }

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

            section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td span.status {
                font-size: 14px;
                line-height: 36px;
                height: 36px;
                border-radius: 18px;
                padding: 0 15px;
                text-align: center;
                width: 100%;
                display: block;
            }

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

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

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

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

                section.emp_dashboard div.card-order-table .card-body > 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.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type {
                text-align: center;
                position: relative;
            }

                section.emp_dashboard div.card-order-table .card-body > 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.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type a.view:hover {
                        color: #B3CE67;
                    }

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

                        section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type a.next:hover {
                            color: #D25D3E;
                        }

                section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products {
                    position: absolute;
                    right: 40px;
                    top: 45px;
                    z-index: 50;
                    background: #ffffff;
                    overflow: hidden;
                    box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                    border-radius: 10px;
                    display: none;
                }

                    section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer {
                        width: 390px;
                        padding: 0;
                        margin: 15px 5px 15px 10px;
                        overflow-y: auto;
                        max-height: 130px;
                    }

                        section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table {
                            width: 100%;
                        }

                            section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr {
                                border-bottom: none;
                            }

                                section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td {
                                    padding: 0;
                                    margin: 0;
                                }

                                    section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td img {
                                        margin: 10px 0;
                                        width: 56px;
                                        border: 1px solid #F0EDE5;
                                        border-radius: 4px;
                                    }

                                    section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td span {
                                        text-align: left;
                                    }

                                        section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td span strong {
                                            font-weight: 500;
                                            font-size: 16px;
                                            line-height: 16px;
                                            display: block;
                                            color: #201904;
                                        }

                                        section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td span.details {
                                            font-weight: 500;
                                            font-size: 12px;
                                            line-height: 12px;
                                            color: #7F7F84;
                                        }

                                        section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td span.counts {
                                            font-weight: 600;
                                            font-size: 16px;
                                            line-height: 16px;
                                            text-align: right;
                                            color: #201904;
                                        }

                                    section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td:nth-child(1) {
                                        width: 56px;
                                    }

                                    section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td:nth-child(2) {
                                        width: calc(100% - 146px);
                                        padding: 0 10px;
                                        border-bottom: 1px solid #F0EDE5;
                                    }

                                    section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td:nth-child(3) {
                                        width: 90px;
                                        text-align: right;
                                        border-bottom: 1px solid #F0EDE5;
                                    }

                                section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr:last-of-type td {
                                    border-bottom: 0;
                                }

                    section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.total {
                        border-top: 1px solid #F0EDE5;
                        margin: 10px 20px 10px 10px;
                        padding-top: 15px;
                        display: flex;
                        justify-content: space-between;
                    }

                        section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.total span {
                            font-weight: 600;
                            font-size: 17px;
                            line-height: 25px;
                            color: #4A4A4D;
                        }

                        section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.total strong {
                            font-weight: 600;
                            font-size: 22px;
                            line-height: 25px;
                            text-align: right;
                            color: #201904;
                        }

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

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

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

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

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

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

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

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

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

        section.emp_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.emp_product-set-group-view .title-actions div.search input.search {
                border: none;
                background-color: transparent;
                padding: 0 15px;
                width: calc(100% - 52px);
            }

            section.emp_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.emp_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.emp_product-set-group-view .title-actions .other-actions {
            display: flex;
            width: 100%;
            justify-content: flex-end;
        }

            section.emp_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.emp_product-set-group-view .title-actions .other-actions div.toggle-show {
                display: flex;
                width: 118px;
                height: 52px;
                order: 1;
                display: none;
            }

                section.emp_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.emp_product-set-group-view .title-actions .other-actions div.toggle-show a span {
                        display: none;
                        line-height: 40px;
                        padding: 0 15px 0 40px;
                    }

                    section.emp_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.emp_product-set-group-view .title-actions .other-actions div.toggle-show a.download:hover {
                            background-image: url(../images/icons/icon_export_orange.svg);
                        }

                    section.emp_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.emp_product-set-group-view .title-actions .other-actions div.toggle-show a.add:hover {
                            background-image: url(../images/icons/icon_download_orange.svg);
                        }

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

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

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

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

        section.emp_product-set-group-view div.users .user-box {
            position: relative;
            display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
        }

            section.emp_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.emp_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.emp_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.emp_product-set-group-view div.users .user-box .image:hover a.remove {
                    display: block;
                    opacity: 1;
                }

        section.emp_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.emp_product-set-group-view div.users .action a:hover {
                background: url(../images/icons/icon_add_users_orange.svg) center center no-repeat;
            }

    section.emp_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.emp_product-set-group-view aside div.filter-slider div.title span {
            color: #201904;
            font-size: 18px;
            line-height: 25px;
            font-weight: 600;
        }

        section.emp_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.emp_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.emp_product-set-group-view aside div.filter-slider div.price-slider .values {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

            section.emp_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.emp_product-set-group-view aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                    text-align: right;
                }

        section.emp_product-set-group-view aside div.filter-slider div.price-slider .slider-box {
            width: 100%;
            margin: 15px auto;
            padding: 0px 10px;
        }

        section.emp_product-set-group-view aside div.filter-slider div.price-slider .ui-slider {
            margin-top: 20px;
            height: 5px;
            position: relative;
            border: none;
            background: #C6C5C5;
            border-radius: 50px;
        }

        section.emp_product-set-group-view aside div.filter-slider div.price-slider .ui-state-default, section.emp_product-set-group-view aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.emp_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.emp_product-set-group-view aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
            background: #D25D3E;
            position: relative;
            padding: 3px;
        }

        section.emp_product-set-group-view aside div.filter-slider div.price-slider #labelHolder {
            height: 5px;
            position: relative;
            border: none;
        }

        section.emp_product-set-group-view aside div.filter-slider div.price-slider span {
            position: absolute;
            width: 1.8em;
            height: 1.8em;
            margin-left: -0.6em;
            text-align: center;
        }

    section.emp_product-set-group-view aside div.filter-slider.active div.price-slider,
    section.emp_product-set-group-view aside div.filter-slider .filter.active div.price-slider {
        height: 75px;
    }

    section.emp_product-set-group-view aside div.filter {
        margin-bottom: 20px;
    }

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

            section.emp_product-set-group-view aside div.filter div.title span {
                color: #201904;
                font-size: 18px;
                line-height: 25px;
                font-weight: 600;
                text-transform: capitalize
            }

            section.emp_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.emp_product-set-group-view aside div.filter .filter-checkbox {
            height: 0;
            overflow: hidden;
            transition: 0.5s all;
        }

            section.emp_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.emp_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.emp_product-set-group-view aside div.filter .filter-checkbox ul.active {
                    display: block;
                }

        section.emp_product-set-group-view aside div.filter.active .filter-checkbox {
            height: 185px;
        }

    section.emp_product-set-group-view ul.product-view {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

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

            section.emp_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.emp_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.emp_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.emp_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.emp_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.emp_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.emp_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.emp_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.emp_product-set-group-view ul.product-view li:nth-child(1) {
            width: 122px;
        }

        section.emp_product-set-group-view ul.product-view li:nth-child(2) {
            width: 195px;
        }

    section.emp_product-set-group-view div.products-wrapper {
        margin: 15px 0;
        display: grid;
        -moz-column-gap: 25px;
        column-gap: 25px;
        row-gap: 25px;
        transition: width 0.6s;
    }

        section.emp_product-set-group-view div.products-wrapper .item {
            border-radius: 10px;
            background-color: none;
            width: 100%;
        }

            section.emp_product-set-group-view div.products-wrapper .item .product-box {
                display: flex;
            }

                section.emp_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.emp_product-set-group-view div.products-wrapper .item .product-box div.image img {
                        position: relative;
                        z-index: 2;
                        height: auto;
                    }

                    section.emp_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.emp_product-set-group-view div.products-wrapper .item .product-box div.image a i {
                            font-size: 25px;
                        }

                        section.emp_product-set-group-view div.products-wrapper .item .product-box div.image a span {
                            display: block;
                        }

                    section.emp_product-set-group-view div.products-wrapper .item .product-box div.image:hover a {
                        opacity: 1;
                    }

                section.emp_product-set-group-view div.products-wrapper .item .product-box div.details {
                    width: 100%;
                }

                    section.emp_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.emp_product-set-group-view div.products-wrapper .item .product-box div.details span.title {
                            line-height: 21px;
                            font-size: 16px;
                        }

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

                        section.emp_product-set-group-view div.products-wrapper .item .product-box div.details span.price {
                            font-weight: 600;
                        }

        section.emp_product-set-group-view div.products-wrapper.grid {
            grid-template-columns: repeat(4, 1fr);
        }

            section.emp_product-set-group-view div.products-wrapper.grid .item {
                border-radius: 10px;
                background-color: none;
                width: 100%;
            }

                section.emp_product-set-group-view div.products-wrapper.grid .item .product-box {
                    flex-direction: column;
                }

                    section.emp_product-set-group-view div.products-wrapper.grid .item .product-box .image {
                        height: 255px;
                        width: 100%;
                        margin: 0 0 12px;
                    }

                        section.emp_product-set-group-view div.products-wrapper.grid .item .product-box .image img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }

                    section.emp_product-set-group-view div.products-wrapper.grid .item .product-box div.details {
                        width: 100%;
                    }

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

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

                        section.emp_product-set-group-view div.products-wrapper.grid .item .product-box div.details span.price {
                            font-weight: 600;
                        }

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

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

                section.emp_product-set-group-view div.products-wrapper.list .item .product-box {
                    flex-direction: row;
                    padding: 15px;
                    min-height: 155px;
                }

                    section.emp_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.emp_product-set-group-view div.products-wrapper.list .item .product-box .image img {
                            width: 100%;
                            object-fit: contain;
                            max-height: 115px;
                        }

                    section.emp_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.emp_product-set-group-view div.products-wrapper.list .item .product-box div.details span.title {
                            line-height: 30px;
                            font-size: 20px;
                        }

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

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

    section.emp_product-set-group-view .view-group {
        display: none;
        padding: 20px 15px 20px;
    }

        section.emp_product-set-group-view .view-group .item {
            display: flex;
            flex-direction: column;
            margin-bottom: 28px;
        }

            section.emp_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.emp_product-set-group-view .view-group .item.grid-group-item .image img {
                    position: relative;
                    height: 130px;
                    z-index: 2;
                }

                section.emp_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.emp_product-set-group-view .view-group .item.grid-group-item .image a i {
                        font-size: 25px;
                    }

                    section.emp_product-set-group-view .view-group .item.grid-group-item .image a span {
                        display: block;
                    }

                section.emp_product-set-group-view .view-group .item.grid-group-item .image:hover a {
                    display: flex;
                }

            section.emp_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.emp_product-set-group-view .view-group .item.grid-group-item div.details span.title {
                    line-height: 21px;
                }

                section.emp_product-set-group-view .view-group .item.grid-group-item div.details span.qty {
                    color: #7F7F84;
                    font-size: 12px;
                }

                section.emp_product-set-group-view .view-group .item.grid-group-item div.details span.price {
                    font-weight: 600;
                }

            section.emp_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.emp_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.emp_product-set-group-view .view-group .item.list-group-item .image img {
                        position: relative;
                        height: inherit;
                        z-index: 2;
                    }

                    section.emp_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.emp_product-set-group-view .view-group .item.list-group-item .image a i {
                            font-size: 25px;
                        }

                        section.emp_product-set-group-view .view-group .item.list-group-item .image a span {
                            display: block;
                        }

                    section.emp_product-set-group-view .view-group .item.list-group-item .image:hover a {
                        display: flex;
                    }

                section.emp_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.emp_product-set-group-view .view-group .item.list-group-item span.title {
                        line-height: 21px;
                        font-size: 25px;
                    }

                    section.emp_product-set-group-view .view-group .item.list-group-item span.qty {
                        color: #7F7F84;
                        font-size: 12px;
                    }

                    section.emp_product-set-group-view .view-group .item.list-group-item span.price {
                        font-weight: 600;
                    }

section.emp_recent-view {
    padding: 30px 0;
    background-color: #F0EDE5;
}

    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.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 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;
                    }

                section.emp_recent-view .item .product-box div.image:hover a {
                    opacity: 1;
                }

            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_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;
        }

    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 div.price-stock span.status.out-of-stock {
                    color: #D7A90F;
                    background-color: rgba(244, 195, 27, 0.1);
                    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,
                #CartItemEmbelishmentModal .embelishment-popupdetails .product-detail fieldset#DivEmbelishment .option span.option-title {
                    font-weight: 600;
                    font-size: 17px;
                    line-height: 25px;
                    margin-right: 15px;
                    white-space: normal;
                    text-transform: capitalize;
                    min-width: 61px;
                }

                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 div.option-choice a.size {
                        display: block;
                        border-radius: 7px;
                        line-height: 40px;
                        padding: 0 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 div.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.emp_order-number {
    padding-bottom: 30px;
    position: relative;
}

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

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

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

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

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

        section.emp_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.emp_order-number .title-actions div.search input.search {
                border: none;
                background-color: transparent;
                padding: 0 15px;
            }

            section.emp_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.emp_order-number .title-actions div.search button.submit:hover {
                    background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                }

        section.emp_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.emp_order-number .title-actions a.download:hover {
                background: #ffffff url(../images/icons/icon_download_orange.svg) center center no-repeat;
            }

        section.emp_order-number .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.emp_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;
        }

        section.emp_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.emp_order-number .title-actions a.return:hover {
            color: #D25D3E;
            background: url(../images/icons/btn_return_orange.svg) right center no-repeat;
        }

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

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

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

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

                section.emp_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.emp_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.emp_order-number .title-actions ul.more-actions li ul li a i {
                            margin-left: 10px;
                            font-weight: bolder;
                        }

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

        section.emp_order-number .title-actions a.toggle {
            display: none;
            width: 40px;
            min-width: 40px;
            height: 40px;
            line-height: 40px;
            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.emp_order-number .title-actions div.small-device {
            position: absolute;
            right: 0;
            top: 42px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 7px rgba(32, 25, 4, 0.15);
            z-index: 10;
            width: 160px;
            display: none;
        }

            section.emp_order-number .title-actions div.small-device a {
                display: block;
                line-height: 35px;
                color: #201904;
                text-align: left;
                margin-left: 0;
                width: 100%;
                opacity: 1;
                font-size: 15px;
                font-weight: 500;
                padding: 0 15px;
            }

                section.emp_order-number .title-actions div.small-device a .fa {
                    display: none;
                }

                section.emp_order-number .title-actions div.small-device a.close {
                    color: #201904;
                }

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

        section.emp_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.emp_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.emp_order-number form div.card.card-product-summary table.product-summary thead tr th:nth-child(2) {
                width: 60px;
            }

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

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

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

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

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

            section.emp_order-number form div.card.card-product-summary table.product-summary tbody tr td div.details {
                color: #7F7F84;
                font-size: 12px;
                line-height: 15px;
                text-align: left;
            }

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

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

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

            section.emp_order-number form div.card.card-product-summary table.product-summary tbody tr td span.track {
                display: block;
                text-align: left;
                font-size: 12px;
                color: #7F7F84;
            }

                section.emp_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.emp_order-number form div.card.card-product-summary table.product-summary tbody tr td span.track {
                text-align: left;
                color: #7F7F84;
                line-height: 36px;
                display: table;
            }

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

            section.emp_order-number form div.card.card-product-summary table.product-summary tbody tr td span.status {
                line-height: 36px;
                height: 36px;
                border-radius: 18px;
                display: table-cell;
                padding: 0 35px;
                float: right;
            }

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

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

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

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

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

            section.emp_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.emp_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.emp_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.emp_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li {
                    padding: 5px 10px;
                    position: relative;
                }

                    section.emp_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.emp_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.emp_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.emp_order-number form div.card.card-product-summary table.product-summary tbody tr td ul.action li a:hover {
                            background-color: #F0EDE5;
                        }

                    section.emp_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.emp_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.emp_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.emp_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.emp_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.emp_order-number form div.card.card-product-summary table.product-summary tbody tr:nth-of-type(2n+2) {
            border-bottom: 1px solid #F0EDE5;
        }

            section.emp_order-number form div.card.card-product-summary table.product-summary tbody tr:nth-of-type(2n+2) td {
                padding: 0 0 10px;
            }

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

    section.emp_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.emp_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.emp_order-number form div.card.card-product-summary .mark a:hover {
                background: #C64F2F;
            }

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

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

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

                section.emp_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.emp_order-number form div.card.card-timeline ul li span strong em {
                        color: #D25D3E;
                        font-style: normal;
                    }

            section.emp_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.emp_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.emp_order-number form div.card.card-timeline ul li:last-of-type {
                padding-bottom: 0;
            }

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

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

            section.emp_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.emp_order-number form div.card.card-order-summary .card-body label span {
                    text-transform: uppercase;
                }

                section.emp_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.emp_order-number form div.card.card-order-summary .card-body label:last-of-type {
                    width: 100%;
                }

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

                section.emp_order-number form div.card.card-order-summary .card-body div.track-staus span.status {
                    line-height: normal;
                    /*height: 36px;*/
                    height: auto;
                    border-radius: 18px;
                    display: block;
                    padding: 8px 15px;
                }

                    section.emp_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.emp_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.emp_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.emp_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.emp_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.emp_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.emp_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.emp_order-number form div.card.card-customer .order img {
            width: 64px;
            height: 64px;
        }

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

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

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

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

        section.emp_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.emp_order-number form div.card.card-customer .order-detail label span.same {
                font-size: 16px;
                font-weight: 500;
                text-transform: none;
            }

        section.emp_order-number form div.card.card-customer .order-detail label:last-of-type {
            margin-bottom: 0;
        }

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

        section.emp_order-number form div.card.card-notes div.notes {
            font-weight: 500;
            font-size: 16px;
            line-height: 20px;
        }

        section.emp_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.emp_order-number 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.emp_order-number form div.card.card-notes button.send-notes:hover {
                color: #d25d3e;
            }

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

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

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

                    section.emp_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.emp_order-number form div.card.card-notes ul li span strong em {
                            color: #D25D3E;
                            font-style: normal;
                        }

                section.emp_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.emp_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.emp_order-number form div.card.card-notes ul li:last-of-type {
                    padding-bottom: 0;
                }

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

    section.emp_cart form div.single-product {
        margin-bottom: 25px;
    }

        section.emp_cart form div.single-product div.card.card-cart-products div.product-box {
            display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            padding: 10px;
        }

            section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.image {
                width: 120px;
                border: 1px solid #F0EDE5;
                border-radius: 6px;
                overflow: hidden;
            }

                section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.image img {
                    width: 100%;
                }

            section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details {
                padding: 0 15px;
                width: calc(100% - 230px);
                font-weight: 500;
                position: relative;
            }

                section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details span {
                    display: table;
                }

                    section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details span.title {
                        font-size: 18px;
                        line-height: 20px;
                        margin-bottom: 5px;
                    }

                    section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details span.size {
                        font-size: 15px;
                        line-height: 15px;
                        color: #4A4A4D;
                        margin-bottom: 6px;
                    }

                    section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details span.embe {
                        font-size: 14px;
                        line-height: 16px;
                        color: #D25D3E;
                        cursor: pointer;
                    }

                        section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details span.embe img {
                            float: left;
                            margin-right: 10px;
                        }

                        section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details span.embe:hover {
                            text-decoration: underline;
                        }

                section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details div.embe-options {
                    position: absolute;
                    padding: 15px;
                    z-index: 10;
                    display: block;
                    left: 15px;
                    top: 100%;
                    border-radius: 10px;
                    background: #ffffff;
                    box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                    overflow: hidden;
                    min-width: 357px;
                    display: none;
                }

                    section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details div.embe-options span.heading {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        line-height: 30px;
                        margin-bottom: 15px;
                        font-weight: 600;
                        font-size: 20px;
                    }

                        section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details div.embe-options span.heading a {
                            text-decoration: none;
                            font-weight: 300;
                            font-size: 18px;
                        }

                    section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details div.embe-options div.option {
                        display: flex;
                        /* justify-content: space-between;
                        align-items: center;*/
                        padding: 10px 0;
                        border-bottom: 1px solid #F0EDE5;
                        flex-wrap: wrap;
                    }

                        section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details div.embe-options div.option img {
                            height: 30px;
                        }

                        section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details div.embe-options div.option span {
                            display: block;
                            line-height: 25px;
                            font-weight: 500;
                            font-size: 15px;
                            line-height: 25px;
                            color: #201904;
                            width: 50%;
                        }

                            section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details div.embe-options div.option span.value {
                                color: #4A4A4D;
                            }

                        section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details div.embe-options div.option:last-of-type {
                            border-bottom: none;
                        }

                    section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.details div.embe-options button.edit {
                        display: table;
                        background-color: #D25D3E;
                        border-radius: 6px;
                        color: #ffffff;
                        font-weight: 700;
                        font-size: 16px;
                        height: 36px;
                        border: none;
                        padding: 0 35px;
                        margin-top: 10px;
                    }

            section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.quantity {
                max-width: 130px;
                padding: 0 10px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

                section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.quantity .counts {
                    height: 40px;
                    width: 110px;
                    border-radius: 10px;
                    border: 1px solid #F0EDE5;
                    display: flex;
                    flex-wrap: nowrap;
                    flex-direction: row;
                }

                    section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.quantity .counts button {
                        width: 30px;
                        height: 100%;
                        border: none;
                        background: transparent;
                    }

                        section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.quantity .counts button.fa {
                            font-size: 13px;
                            font-weight: 500;
                        }

                        section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.quantity .counts button:hover {
                            color: #D25D3E;
                        }

                    section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.quantity .counts input {
                        width: calc(100% - 62px);
                        border: 1px solid transparent;
                        text-align: center;
                        background-color: transparent;
                        padding: 0 10px;
                        -moz-appearance: textfield;
                    }

                        section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.quantity .counts input::-webkit-outer-spin-button, section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.quantity .counts input::-webkit-inner-spin-button {
                            -webkit-appearance: none;
                            margin: 0;
                        }

                section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.quantity a.remove {
                    margin: 10px auto 0;
                    display: table;
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 16px;
                    color: #D25D3E;
                    text-decoration: none;
                }

                    section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.quantity a.remove img {
                        float: left;
                        margin-right: 10px;
                        height: 16px;
                    }

            section.emp_cart form div.single-product div.card.card-cart-products div.product-box div.price {
                font-weight: 500;
                font-size: 20px;
                line-height: 25px;
                min-width: 80px;
                text-align: right;
                margin-top: -28px;
            }

        section.emp_cart form div.single-product div.quota-set {
            margin: 0 20px;
            padding: 0 15px;
            background-color: #F0EDE5;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            height: 33px;
            line-height: 33px;
            color: #4A4A4D;
            font-weight: 500;
            font-size: 14px;
        }

            section.emp_cart form div.single-product div.quota-set strong {
                color: #201904;
                font-weight: 600;
                font-size: 14px;
                line-height: 33px;
                display: inline-block;
            }

            section.emp_cart form div.single-product div.quota-set span {
                color: #D25D3E;
                line-height: 33px;
                display: inline-block;
            }

        section.emp_cart form div.single-product:last-of-type {
            margin-bottom: 0;
        }

    section.emp_cart form div.card.card-order-summary .card-body h2 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
    }

    section.emp_cart form div.card.card-order-summary .card-body table.order-summary {
        width: 100%;
        margin: 15px 0;
    }

        section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td {
            padding: 5px 0;
            color: #7F7F84;
            font-weight: 500;
            font-size: 15px;
            vertical-align: middle;
            position: relative;
        }

            section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options {
                position: absolute;
                padding: 15px;
                z-index: 10;
                display: block;
                right: 0;
                top: 32px;
                left: 0;
                border-radius: 10px;
                background: #ffffff;
                box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                min-width: 357px;
                display: none;
            }

                section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options span.heading {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    line-height: 30px;
                    margin-bottom: 15px;
                    font-weight: 600;
                    font-size: 20px;
                }

                    section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options span.heading a {
                        text-decoration: none;
                        font-weight: 300;
                        font-size: 18px;
                    }

                section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options div.option {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px 0;
                    border-bottom: 1px solid #F0EDE5;
                }

                    section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options div.option span {
                        display: block;
                        line-height: 25px;
                        font-weight: 500;
                        font-size: 15px;
                        line-height: 25px;
                        color: #201904;
                    }

                        section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options div.option span.amount {
                            color: #4A4A4D;
                        }

                    section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options div.option:last-of-type {
                        border-bottom: none;
                    }

                section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options span.total {
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 25px;
                }

                section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options strong {
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 20px;
                    color: #D25D3E;
                }

            section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td span {
                font-weight: 600;
                font-size: 20px;
                line-height: 25px;
                color: #201904;
            }

            section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td strong {
                font-weight: 600;
                font-size: 24px;
                line-height: 25px;
                color: #201904;
            }

            section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td a.help {
                display: inline-block;
                margin-left: 5px;
            }

            section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td:nth-child(1) {
                text-align: left;
            }

            section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr td:nth-child(2) {
                text-align: right;
            }

        /*  section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr:nth-child(3n+0) {
            border-bottom: 1px solid #F0EDE5;
        }

            section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr:nth-child(3n+0) td {
                padding-bottom: 20px;
            }

        section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr:nth-child(4n) td {
            padding-top: 20px;
        }*/

        section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr:nth-child(4n+0) {
            border-bottom: 1px solid #F0EDE5;
        }

            section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr:nth-child(4n+0) td {
                padding-bottom: 20px;
            }

        section.emp_cart form div.card.card-order-summary .card-body table.order-summary tbody tr:nth-child(5n) td {
            padding-top: 20px;
        }


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

    section.emp_cart form div.card.card-order-summary .card-body a.proceed {
        margin: 15px 0;
        text-decoration: none;
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 20px;
        color: #ffffff;
        background: #D25D3E url(../images/icons/icon_proceed.svg) calc(100% - 15px) center no-repeat;
        line-height: 56px;
        border-radius: 10px;
        display: block;
        text-align: center;
    }

        section.emp_cart form div.card.card-order-summary .card-body a.proceed:hover {
            background-color: #C64F2F;
        }

        section.emp_cart form div.card.card-order-summary .card-body a.proceed:focus {
            background-color: #DC836A;
        }

    section.emp_cart form div.card.card-order-summary .card-body em {
        display: block;
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        line-height: 18px;
        color: #4A4A4D;
        text-align: center;
    }

        section.emp_cart form div.card.card-order-summary .card-body em a {
            color: #201904;
            display: inline-block;
            font-weight: 500;
        }

    section.emp_cart form div.card.card-exceed {
        background: rgba(244, 195, 27, 0.2);
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        padding: 15px;
        align-items: center;
    }

        section.emp_cart form div.card.card-exceed img {
            float: left;
            margin-right: 15px;
            width: 20px;
            height: 20px;
        }

        section.emp_cart form div.card.card-exceed span {
            display: block;
            font-weight: 400;
            font-size: 15px;
            line-height: 20px;
        }

section.emp_checkout {
    position: relative;
    padding: 0 0 40px;
    min-height: calc(100vh - 160px);
}

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

        section.emp_checkout .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.emp_checkout .title-actions a.cancel:hover {
                color: #D32243;
            }

    section.emp_checkout ul.form-stepper {
        list-style: none;
        margin: 0;
        padding: 0;
        padding-left: 0;
        padding-right: 5px;
        display: flex;
        position: relative;
        justify-content: center;
    }

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

            section.emp_checkout 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.emp_checkout ul.form-stepper li a {
                display: flex;
                color: #212529;
                align-items: center;
                text-decoration: none;
            }

            section.emp_checkout ul.form-stepper li span {
                margin-left: 16px;
            }

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

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

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

                section.emp_checkout ul.form-stepper li.active::before, section.emp_checkout 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.emp_checkout ul.form-stepper li.active::after, section.emp_checkout 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.emp_checkout ul.form-stepper li.done strong, section.emp_checkout ul.form-stepper li.form-stepper-completed strong {
                background-color: #B3CE67;
                color: #B3CE67;
                position: relative;
            }

                section.emp_checkout ul.form-stepper li.done strong::after, section.emp_checkout 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.emp_checkout ul.form-stepper li.done::before, section.emp_checkout 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.emp_checkout ul.form-stepper li.done::after, section.emp_checkout 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.emp_checkout 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.emp_checkout 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.emp_checkout ul.form-stepper li:last-of-type {
                margin-right: 0;
            }

    section.emp_checkout form h2 {
        font-size: 24px;
        line-height: 30px;
    }

    section.emp_checkout form h3 {
        font-size: 20px;
        line-height: 25px;
        color: #201904;
    }

    section.emp_checkout form div.card.card-contact .card-body label {
        display: block;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #7F7F84;
    }

    section.emp_checkout form div.card.card-contact .card-body input.fields {
        border: 1px solid #F0EDE5;
        height: 52px;
        border-radius: 10px;
        padding: 0 15px;
        width: 100%;
        margin-bottom: 15px;
    }

    section.emp_checkout form div.card.card-contact .card-body select.fields {
        border: 1px solid #F0EDE5;
        height: 52px;
        border-radius: 10px;
        padding: 0 15px;
        width: 100%;
        margin-bottom: 15px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 15px) center no-repeat;
        background-size: 14px 14px;
    }

    section.emp_checkout form div.card.card-contact .card-body textarea {
        border: 1px solid #F0EDE5;
        height: 52px;
        border-radius: 10px;
        padding: 15px;
        width: 100%;
        min-height: 130px;
    }

    section.emp_checkout form div.card.card-contact .card-body div.shipping-options {
        display: flex;
        flex-direction: column-reverse;
        /* flex-wrap: wrap;*/
        justify-content: flex-end;
    }

        section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option {
            width: 100%;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            border: 1px solid #F0EDE5;
            border-radius: 8px;
            padding: 12px 15px;
            margin-bottom: 10px;
        }

            section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option span {
                color: #4A4A4D;
                font-weight: 400;
                font-size: 15px;
                line-height: 25px;
                padding: 0 15px;
                width: calc(100% - 120px);
            }

                section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option span strong {
                    color: #201904;
                    font-weight: 500;
                    font-size: 18px;
                    line-height: 22px;
                    display: block;
                }

            section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option div.action {
                width: 100px;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
                justify-content: flex-end;
            }

                section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option div.action a {
                    display: block;
                    width: 30px;
                    height: 30px;
                    text-decoration: none;
                    margin-left: 15px;
                }

                    section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option div.action a.edit {
                        background: url(../images/icons/icon_edit_grey.svg) center center no-repeat;
                    }

                        section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option div.action a.edit:hover {
                            background: url(../images/icons/icon_edit_orange.svg) center center no-repeat;
                        }

                    section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option div.action a.delete {
                        background: url(../images/icons/icon_delete_grey.svg) center center no-repeat;
                    }

                        section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option div.action a.delete:hover {
                            background: url(../images/icons/icon_delete_orange.svg) center center no-repeat;
                        }

            section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option div.price {
                width: 100px;
                font-weight: 500;
                font-size: 17px;
                line-height: 20px;
                color: #4A4A4D;
                text-align: right;
            }

            section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.option:last-of-type {
                margin-bottom: 0;
            }

        section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.new-address {
            display: block;
            width: 100%;
            background: #F6F4F0;
            border-radius: 8px;
            padding: 15px;
            margin: 10px 0;
            display: none;
        }

            section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.new-address div.actions {
                display: flex;
                flex-wrap: nowrap;
                justify-content: flex-end;
                margin-top: 10px;
            }

                section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.new-address div.actions button {
                    padding: 0 15px;
                    height: 52px;
                    border: none;
                    border-radius: 10px;
                    background: transparent;
                    margin-left: 15px;
                }

                    section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.new-address div.actions button.cancel {
                        color: #4A4A4D;
                    }

                    section.emp_checkout form div.card.card-contact .card-body div.shipping-options div.new-address div.actions button.save {
                        color: #ffffff;
                        background: #D25D3E;
                    }

        section.emp_checkout form div.card.card-contact .card-body div.shipping-options a.add-address {
            line-height: 36px;
            font-weight: 700;
            font-size: 16px;
            border-radius: 6px;
            padding: 0 25px;
            margin: 5px 0 15px auto;
        }

    section.emp_checkout form div.card.card-contact .card-body div.employee-allowance div.title {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

        section.emp_checkout form div.card.card-contact .card-body div.employee-allowance div.title span {
            display: block;
            font-weight: 600;
            font-size: 24px;
            line-height: 30px;
        }

        section.emp_checkout form div.card.card-contact .card-body div.employee-allowance div.title strong {
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
        }

            section.emp_checkout form div.card.card-contact .card-body div.employee-allowance div.title strong.personal {
                color: #D25D3E;
            }

    section.emp_checkout form div.card.card-contact .card-body div.employee-allowance .credit-cards {
        margin: 0 0 20px;
    }

        section.emp_checkout form div.card.card-contact .card-body div.employee-allowance .credit-cards input[type=radio] {
            width: 29px;
            height: 20px;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            cursor: pointer;
        }

            section.emp_checkout form div.card.card-contact .card-body div.employee-allowance .credit-cards input[type=radio].visa {
                background: url(../images/icons/cc_visa.svg) center center no-repeat;
            }

            section.emp_checkout form div.card.card-contact .card-body div.employee-allowance .credit-cards input[type=radio].extra {
                background: url(../images/icons/cc_extra.svg) center center no-repeat;
            }

            section.emp_checkout form div.card.card-contact .card-body div.employee-allowance .credit-cards input[type=radio].american {
                background: url(../images/icons/cc_american.svg) center center no-repeat;
            }

            section.emp_checkout form div.card.card-contact .card-body div.employee-allowance .credit-cards input[type=radio].discover {
                background: url(../images/icons/cc_discover.svg) center center no-repeat;
            }

            section.emp_checkout form div.card.card-contact .card-body div.employee-allowance .credit-cards input[type=radio].master {
                background: url(../images/icons/cc_master.svg) center center no-repeat;
            }

            section.emp_checkout form div.card.card-contact .card-body div.employee-allowance .credit-cards input[type=radio]:checked {
                box-shadow: 0 3px 2px rgba(32, 25, 4, 0.4);
            }

    section.emp_checkout form div.card.card-contact .card-body div.employee-allowance ul li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #F0EDE5;
    }

        section.emp_checkout form div.card.card-contact .card-body div.employee-allowance ul li span {
            font-weight: 500;
            font-size: 15px;
            line-height: 25px;
        }

            section.emp_checkout form div.card.card-contact .card-body div.employee-allowance ul li span.amount {
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #4A4A4D;
            }

        section.emp_checkout form div.card.card-contact .card-body div.employee-allowance ul li:last-of-type {
            border-bottom: none;
        }

    section.emp_checkout form div.card.card-contact .card-body div.employee-allowance div.cvv {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        border: 1px solid #F0EDE5;
        height: 52px;
        border-radius: 10px;
        padding: 0 15px;
    }

        section.emp_checkout form div.card.card-contact .card-body div.employee-allowance div.cvv a {
            display: block;
            width: 20px;
            height: 20px;
            text-decoration: none;
            background: transparent url(../images/icons/icon_help2.svg) center center no-repeat;
            text-decoration: none;
        }

        section.emp_checkout form div.card.card-contact .card-body div.employee-allowance div.cvv input {
            border: none;
            background: transparent;
            width: calc(100% - 20px);
            padding: 0 15px 0 0;
        }

    section.emp_checkout form div.card.card-contact .card-body div.confirm-box {
        position: relative;
    }

        section.emp_checkout form div.card.card-contact .card-body div.confirm-box a.edit {
            position: absolute;
            right: -5px;
            top: -5px;
            display: block;
            width: 20px;
            height: 20px;
            background: url(../images/icons/icon_edit_orange2.svg) center center no-repeat;
            text-decoration: none;
        }

        section.emp_checkout form div.card.card-contact .card-body div.confirm-box span.title {
            font-weight: 600;
            font-size: 20px;
            line-height: 25px;
            display: block;
        }

        section.emp_checkout form div.card.card-contact .card-body div.confirm-box ul {
            margin: 5px 0 0;
        }

            section.emp_checkout form div.card.card-contact .card-body div.confirm-box ul li {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px 0;
                border-bottom: 1px solid #F0EDE5;
            }

                section.emp_checkout form div.card.card-contact .card-body div.confirm-box ul li strong {
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 25px;
                    color: #201904;
                    max-width: 220px;
                    text-align: right;
                }

                section.emp_checkout form div.card.card-contact .card-body div.confirm-box ul li span {
                    max-width: 150px;
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 20px;
                    color: #7F7F84;
                }

                section.emp_checkout form div.card.card-contact .card-body div.confirm-box ul li:last-of-type {
                    border-bottom: none;
                }

        section.emp_checkout form div.card.card-contact .card-body div.confirm-box div.info {
            margin-top: 63px;
            background: rgba(240, 237, 229, 0.4);
            border-radius: 10px;
            padding: 15px;
            display: flex;
            flex-wrap: nowrap;
            align-items: flex-start;
            justify-content: flex-start;
        }

            section.emp_checkout form div.card.card-contact .card-body div.confirm-box div.info img {
                display: block;
                margin-right: 10px;
            }

            section.emp_checkout form div.card.card-contact .card-body div.confirm-box div.info p {
                margin: 0;
                padding: 0;
                color: #4A4A4D;
                font-weight: 400;
                font-size: 13px;
                line-height: 18px;
            }

    section.emp_checkout form div.card.card-contact div.message {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 42px;
        color: #4A4A4D;
        background: #F0EDE5;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

        section.emp_checkout form div.card.card-contact div.message img {
            height: 20px;
            margin-right: 10px;
        }

        section.emp_checkout form div.card.card-contact div.message span {
            display: block;
            font-weight: 400;
            font-size: 15px;
            line-height: 20px;
        }

    section.emp_checkout form div.card.card-order-summary .card-body table.order-summary {
        width: 100%;
        margin: 15px 0;
    }

        section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td {
            padding: 5px 0;
            color: #7F7F84;
            font-weight: 500;
            font-size: 15px;
            vertical-align: middle;
            position: relative;
        }

            section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options {
                position: absolute;
                padding: 15px;
                z-index: 10;
                display: block;
                right: 55px;
                top: -10px;
                border-radius: 10px;
                background: #ffffff;
                box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                min-width: 357px;
                display: none;
            }

                section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options span.heading {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    line-height: 30px;
                    margin-bottom: 15px;
                    font-weight: 600;
                    font-size: 20px;
                }

                    section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options span.heading a {
                        text-decoration: none;
                        font-weight: 300;
                        font-size: 18px;
                    }

                section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options div.option {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px 0;
                    border-bottom: 1px solid #F0EDE5;
                }

                    section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options div.option span {
                        display: block;
                        line-height: 25px;
                        font-weight: 500;
                        font-size: 15px;
                        line-height: 25px;
                        color: #201904;
                    }

                        section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options div.option span.amount {
                            color: #4A4A4D;
                        }

                    section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options div.option:last-of-type {
                        border-bottom: none;
                    }

                section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options span.total {
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 25px;
                }

                section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td div.embe-options strong {
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 20px;
                    color: #D25D3E;
                }

            section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td span {
                font-weight: 500;
                font-size: 20px;
                line-height: 25px;
                color: #201904;
            }

            section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td strong {
                font-weight: 600;
                font-size: 24px;
                line-height: 25px;
                color: #201904;
            }

            section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td a.help {
                display: inline-block;
                margin-left: 5px;
            }

            section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td:nth-child(1) {
                text-align: left;
            }

            section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td:nth-child(2) {
                text-align: right;
            }

                section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td:nth-child(2).exceed {
                    color: #D25D3E !important;
                    font-weight: 500;
                    font-size: 17px;
                    line-height: 25px;
                }

                section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr td:nth-child(2).dynamic {
                    color: #201904;
                    font-weight: 500;
                    font-size: 17px;
                    line-height: 25px;
                }

        section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr:nth-child(3n+0) {
            border-bottom: 1px solid #F0EDE5;
        }

            section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr:nth-child(3n+0) td {
                padding-bottom: 20px;
            }

        section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr:nth-child(4n) td {
            padding-top: 20px;
        }

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

            section.emp_checkout form div.card.card-order-summary .card-body table.order-summary tbody tr:last-of-type td {
                padding-bottom: 0px;
            }

    section.emp_checkout form div.card.card-order-summary .card-body button.proceed {
        margin: 15px 0 0;
        font-weight: 700;
        font-size: 18px;
        line-height: 20px;
        color: #ffffff;
        background: #D25D3E url(../images/icons/icon_proceed.svg) calc(100% - 15px) center no-repeat;
        border: none;
        line-height: 56px;
        border-radius: 10px;
        display: block;
        text-align: center;
        width: 100%;
    }

        section.emp_checkout form div.card.card-order-summary .card-body button.proceed:hover {
            background-color: #C64F2F;
        }

        section.emp_checkout form div.card.card-order-summary .card-body button.proceed:focus {
            background-color: #DC836A;
        }

    section.emp_checkout form div.card.card-exceed {
        background: rgba(244, 195, 27, 0.2);
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        padding: 15px;
        align-items: center;
    }

        section.emp_checkout form div.card.card-exceed img {
            float: left;
            margin-right: 15px;
            width: 20px;
            height: 20px;
        }

        section.emp_checkout form div.card.card-exceed span {
            display: block;
            font-weight: 400;
            font-size: 15px;
            line-height: 20px;
        }

section.emp_checkout_thanks {
    min-height: calc(100vh - 160px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    section.emp_checkout_thanks .card .card-body {
        padding-top: 80px;
        padding-bottom: 80px;
    }

        section.emp_checkout_thanks .card .card-body img {
            display: block;
            width: 106px;
            height: 106px;
            margin: 0 auto 20px;
        }

        section.emp_checkout_thanks .card .card-body h1 {
            font-weight: 600;
            font-size: 45px;
            line-height: 56px;
            display: block;
            text-align: center;
            margin-bottom: 10px;
        }

        section.emp_checkout_thanks .card .card-body span {
            font-weight: 400;
            font-size: 20px;
            line-height: 20px;
        }

        section.emp_checkout_thanks .card .card-body p {
            display: table;
            margin: 20px auto 35px;
            padding: 20px;
            min-width: 75%;
            background: rgba(240, 237, 229, 0.4);
            border-radius: 10px;
        }

            section.emp_checkout_thanks .card .card-body p strong {
                display: block;
            }

                section.emp_checkout_thanks .card .card-body p strong span {
                    color: #D25D3E;
                }

        section.emp_checkout_thanks .card .card-body a.back {
            margin: 0 auto;
            padding: 0 30px;
            height: 68px;
            line-height: 68px;
            font-size: 18px;
            font-weight: 700;
        }

section.emp_employees {
    padding-bottom: 60px;
}

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

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

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

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

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

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

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

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

                section.emp_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.emp_employees .title-actions form div.search button.submit:hover {
                        background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                    }

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

            section.emp_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.emp_employees .title-actions .other-actions div.toggle-show {
                display: flex;
                height: 52px;
            }

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

                    section.emp_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.emp_employees .title-actions .other-actions div.toggle-show a.main-btn span.text {
                            white-space: nowrap;
                        }

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

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

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

                    section.emp_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_download_black.svg) center center no-repeat;
                        background-size: 20px 20px;
                    }

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

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

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

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

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

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

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

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

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

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

                section.emp_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.emp_employees .title-actions2 form div.search button.submit:hover {
                        background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                    }

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

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

            section.emp_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.emp_employees .users-actions a.save .fa {
                    font-size: 13px;
                }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                section.emp_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.emp_employees table.users-table tbody tr td select.program, section.emp_employees table.users-table tbody tr td select.role {
                        background-color: #ffffff;
                    }

                section.emp_employees table.users-table tbody tr td input[type=text], section.emp_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.emp_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: 40px;
                    top: 8px;
                    border-radius: 10px;
                    display: none;
                    z-index: 10;
                }

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

                        section.emp_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.emp_employees table.users-table tbody tr td ul li a:hover {
                                background-color: #F0EDE5;
                            }

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

                section.emp_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.emp_employees table.users-table tbody tr td span strong {
                        display: block;
                        font-size: 16px;
                        color: #201904;
                        line-height: 26px;
                    }

                section.emp_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.emp_employees table.users-table tbody tr td a.options:hover {
                        background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                    }

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

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

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

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

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

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

            section.emp_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.emp_employees ul#employee-details li a.active {
                    color: #201904;
                }

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

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

    section.emp_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.emp_employees .card.card-users-person input.fields.inputs {
            background: #F6F4F0;
            border: 1px solid #F0EDE5;
            color: #7F7F84;
        }

    section.emp_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% - 15px) center no-repeat;
        background-size: 12px 12px;
    }

        section.emp_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.emp_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.emp_employees .card.card-users-person select.fields.inputs {
            color: #7F7F84;
            background: #F6F4F0 url(../images/icons/select_arrow.svg) calc(100% - 15px) center no-repeat;
            background-size: 12px 12px;
            border: 1px solid #F0EDE5;
        }

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

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

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

            section.emp_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.emp_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.emp_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.emp_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.emp_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.emp_employees .card.card-users-person .quota-box {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

        section.emp_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.emp_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.emp_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.emp_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.emp_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.emp_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.emp_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.emp_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.emp_employees .card.card-users-person .quota-box a.remove:hover {
                color: #D32243;
            }

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

        section.emp_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.emp_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.emp_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.emp_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.emp_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.emp_employees .card.card-users-person div.actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        padding-top: 15px;
    }

        section.emp_employees .card.card-users-person 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.emp_employees .card.card-users-person div.actions button.back {
                color: #7F7F84;
            }

            section.emp_employees .card.card-users-person div.actions button.next {
                background-color: #D25D3E;
                color: #ffffff;
            }

                section.emp_employees .card.card-users-person div.actions button.next:disabled {
                    background-color: #DC836A;
                }

                section.emp_employees .card.card-users-person div.actions button.next:hover {
                    background-color: #C64F2F;
                }

                section.emp_employees .card.card-users-person div.actions button.next:focus {
                    background-color: #DC836A;
                }

            section.emp_employees .card.card-users-person div.actions button.save {
                background-color: #D25D3E;
                color: #ffffff;
            }

                section.emp_employees .card.card-users-person div.actions button.save:disabled {
                    background-color: #DC836A;
                }

                section.emp_employees .card.card-users-person div.actions button.save:hover {
                    background-color: #C64F2F;
                }

                section.emp_employees .card.card-users-person div.actions button.save:focus {
                    background-color: #DC836A;
                }

        section.emp_employees .card.card-users-person div.actions a.save {
            background-color: #D25D3E;
            color: #ffffff;
        }

            section.emp_employees .card.card-users-person div.actions a.save:hover {
                background-color: #C64F2F;
            }

            section.emp_employees .card.card-users-person div.actions a.save:focus {
                background-color: #DC836A;
            }

    section.emp_employees .percent-slider div.chart {
        width: 100%;
        position: relative;
        border-radius: 10px;
        background-color: #ffffff;
        overflow: hidden;
        padding: 15px 5px;
    }

        section.emp_employees .percent-slider 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.emp_employees .percent-slider div.chart svg {
            width: 150px;
            height: 150px;
            margin: 0 auto;
            display: block;
            position: relative;
        }

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

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

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

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

            section.emp_employees .percent-slider 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.emp_employees .percent-slider 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.emp_employees .percent-slider 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;
            }

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

    to {
        stroke-dashoffset: 100;
    }
}

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

    to {
        stroke-dashoffset: 255;
    }
}

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

    to {
        stroke-dashoffset: 255;
    }
}

section.emp_employees .percent-slider div.chart strong {
    text-align: center;
    display: table;
    margin: 0 auto 0;
}

section.emp_employees .card-order-table {
    /*
  table.all-orders{
      width: 100%;
      thead{
          tr{
              th{
                  padding: 10px;
                  font-size: 12px;
                  text-transform: uppercase;
                  color: $medium-grey;
                  font-weight: 600;
                  text-align: left;
                  line-height: 15px;                                
                  &:nth-child(1){
                      width: 110px;
                  }
                  &:nth-child(2){
                      width: 120px;
                  }
                  &:nth-child(3){
                      width: 100px;
                  }
                  &:nth-child(4){
                      width: calc(100% - 590px);
                  }
                  &:nth-child(5){
                      width: 140px;
                      text-align: center;
                  }
                  &:nth-child(6){
                      text-align: right;
                      width: 120px;
                  }
              }

          }
      }
      tbody{
          tr{
              border-bottom: 1px solid $light-grey2;
              td{
                  padding: 15px 5px;
                  text-align: left;
                  font-size: 16px;
                  font-weight: 400;
                  position: relative;
                  strong{
                      font-weight: 500;
                  }
                  a{
                      color: $black;
                      display: table;
                      text-decoration: none;
                  }
                  span{
                      font-size: 14px;
                      line-height: 36px;
                      height: 36px;
                      border-radius: 18px;
                      padding: 0 15px;
                      text-align: center;
                      &.status{
                          width: 100%;
                          display: block;
                          &.pending{
                              color: #D7A90F;
                              background-color: rgba($yellow, 0.1);
                          }
                          &.completed{
                              color: #87AC1E;
                              background: rgba($green, 0.1);
                          }

                          &.cancel{
                              color: #7F7F84;
                              background-color: rgba(#7F7F84, 0.08);
                          }
                          &.shipped{
                              color: #4D6BCB;
                              background-color: rgba($dark-blue, 0.1);
                          }
                          &.waiting{
                              color: $white;
                              padding: 8px 30px 8px 15px;
                              background: $black url(../images/icons/icon_select_white.svg) 140px center no-repeat;
                              background-size: 13px 13px;
                              cursor: pointer;
                          }
                      }

                  }                                
                  &:last-of-type{
                      text-align: right;
                      a{
                          display: inline-block;
                          min-width: 30px;
                          height: 30px;
                          line-height: 30px;
                          margin-left: 5px;
                          font-size: 18px;
                          color: #7F7F84;
                          transition: 0.3s;
                          &.next{
                              font-weight: 600;                                        
                          }
                          &:hover{
                              color: $main;
                          }
                      }
                  }
              }
              &:last-of-type{
                  border-bottom-color: transparent;
              }
          }
      }
  }
  */
}

    section.emp_employees .card-order-table .card-body > table.all-orders {
        width: 100%;
    }

        section.emp_employees .card-order-table .card-body > 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.emp_employees .card-order-table .card-body > table.all-orders thead tr th:nth-child(1) {
                width: 120px;
                max-width: 120px;
            }

            section.emp_employees .card-order-table .card-body > table.all-orders thead tr th:nth-child(2) {
                width: 160px;
                max-width: 160px;
            }

            section.emp_employees .card-order-table .card-body > table.all-orders thead tr th:nth-child(3) {
                width: 110px;
                max-width: 110px;
            }

            section.emp_employees .card-order-table .card-body > table.all-orders thead tr th:nth-child(4) {
                width: calc(100% - 620px);
                max-width: calc(100% - 620px);
            }

            section.emp_employees .card-order-table .card-body > table.all-orders thead tr th:nth-child(5) {
                width: 175px;
                max-width: 175px;
            }

            section.emp_employees .card-order-table .card-body > table.all-orders thead tr th:nth-child(6) {
                width: 100px;
                max-width: 100px;
            }

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

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

                section.emp_employees .card-order-table .card-body > table.all-orders 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.emp_employees .card-order-table .card-body > table.all-orders tbody tr td select.program, section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td select.role {
                        background-color: #ffffff;
                    }

                section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td input[type=text], section.emp_employees .card-order-table .card-body > table.all-orders 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.emp_employees .card-order-table .card-body > table.all-orders tbody tr td .dates {
                    position: relative;
                    background-color: #F6F4F0;
                    height: 34px;
                    padding: 0;
                    border-radius: 6px;
                    display: block;
                    width: 100%;
                    z-index: 0;
                }

                    section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td .dates input.fields {
                        display: block;
                        border: none;
                        height: 34px;
                        background-color: #F6F4F0;
                        padding: 0 15px;
                        border-radius: 6px;
                        width: 82%;
                    }

                    section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td .dates img {
                        width: 20px;
                        height: 20px;
                        position: absolute;
                        right: 10px;
                        top: 50%;
                        transform: translateY(-50%);
                        z-index: 2;
                        cursor: pointer;
                    }

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

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

                    section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td a.order-link {
                        font-weight: 500;
                        color: #d25d3e;
                    }

                        section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td a.order-link:hover {
                            color: #D25D3E;
                        }

                section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td span.status {
                    font-size: 14px;
                    line-height: 36px;
                    height: 36px;
                    border-radius: 18px;
                    padding: 0 15px;
                    text-align: center;
                    width: 100%;
                    display: block;
                }

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

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

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

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

                    section.emp_employees .card-order-table .card-body > 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.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type {
                    text-align: right;
                    position: relative;
                }

                    section.emp_employees .card-order-table .card-body > 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.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type a.view:hover {
                            color: #B3CE67;
                        }

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

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

                    section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products {
                        position: absolute;
                        right: 40px;
                        top: 45px;
                        z-index: 50;
                        background: #ffffff;
                        overflow: hidden;
                        box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                        border-radius: 10px;
                        display: none;
                    }

                        section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer {
                            width: 390px;
                            padding: 0;
                            margin: 15px 5px 15px 10px;
                            overflow-y: auto;
                            max-height: 130px;
                        }

                            section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table {
                                width: 100%;
                            }

                                section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr {
                                    border-bottom: none;
                                }

                                    section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td {
                                        padding: 0;
                                        margin: 0;
                                    }

                                        section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td img {
                                            margin: 10px 0;
                                            width: 56px;
                                            border: 1px solid #F0EDE5;
                                            border-radius: 4px;
                                        }

                                        section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td span {
                                            text-align: left;
                                        }

                                            section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td span strong {
                                                font-weight: 500;
                                                font-size: 16px;
                                                line-height: 16px;
                                                display: block;
                                                color: #201904;
                                            }

                                            section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td span.details {
                                                font-weight: 500;
                                                font-size: 12px;
                                                line-height: 12px;
                                                color: #7F7F84;
                                            }

                                            section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td span.counts {
                                                font-weight: 600;
                                                font-size: 16px;
                                                line-height: 16px;
                                                text-align: right;
                                                color: #201904;
                                            }

                                        section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td:nth-child(1) {
                                            width: 56px;
                                        }

                                        section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td:nth-child(2) {
                                            width: calc(100% - 146px);
                                            padding: 0 10px;
                                            border-bottom: 1px solid #F0EDE5;
                                        }

                                        section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr td:nth-child(3) {
                                            width: 90px;
                                            text-align: right;
                                            border-bottom: 1px solid #F0EDE5;
                                        }

                                    section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.view-products-table-outer table.view-products-table tbody tr:last-of-type td {
                                        border-bottom: 0;
                                    }

                        section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.total {
                            border-top: 1px solid #F0EDE5;
                            margin: 10px 20px 10px 10px;
                            padding-top: 15px;
                            display: flex;
                            justify-content: space-between;
                        }

                            section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.total span {
                                font-weight: 600;
                                font-size: 17px;
                                line-height: 25px;
                                color: #4A4A4D;
                            }

                            section.emp_employees .card-order-table .card-body > table.all-orders tbody tr td:last-of-type div.view-products div.total strong {
                                font-weight: 600;
                                font-size: 22px;
                                line-height: 25px;
                                text-align: right;
                                color: #201904;
                            }

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

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

        section.emp_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.emp_employees .card-order-table table.history thead tr th:nth-child(1) {
                width: 21%;
            }

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

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

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

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

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

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

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

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

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

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

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

    section.emp_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.emp_employees div.actions button.back {
            color: #7F7F84;
        }

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

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

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

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

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

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

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

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: 64px;
            padding: 0 15px;
            border-radius: 10px;
            border: 1px solid #F0EDE5;
            margin-bottom: 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 table.returns {
            width: 100%;
        }

            .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 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 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 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%;
                }

                    .modal .modal-content .modal-body form table.returns tbody tr td select.program, .modal .modal-content .modal-body form table.returns tbody tr td select.role {
                        background-color: #ffffff;
                    }

                    .modal .modal-content .modal-body form table.returns tbody tr td select option[value="0"] {
                        background: rgba(100, 100, 100, 0.3);
                    }

                .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: 110px;
                    margin: 0 auto;
                }

                    .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;
                    }

                        .modal .modal-content .modal-body form table.returns tbody tr td div.quantity input::-webkit-inner-spin-button, .modal .modal-content .modal-body form table.returns tbody tr td div.quantity input .no-spin::-webkit-outer-spin-button {
                            -webkit-appearance: none !important;
                            margin: 0 !important;
                        }

                    .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 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 */

#btnClearFilters {
    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;
}

.product-detail .card-product {
    text-align: center;
}

    .product-detail .card-product .card-body img.img-fluid {
        height: 180px;
        object-fit: contain;
        width: 100%
    }




#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: nowrap;*/
    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;
    line-height: 40px;
    padding: 0 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;
    }

.add-shipping-address {
    display: flex;
    justify-content: flex-end;
    color: #d25d3e;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 10px;
}

section.emp_login div.form-section nav a.logo img {
    width: 100%;
    height: 130pt;
    object-fit: contain;
    max-width: 250pt;
}

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;
    }

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;
    }

.new-address .tags-container .chosen-container.chosen-container-single {
    background-color: #ffffff;
    padding: 14px 15px;
    min-height: auto;
}

.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)
}

.products-wrapper .item .product-box div.details a {
    text-decoration: none;
}

    .products-wrapper .item .product-box div.details a:hover span,
    .main-slider .product-detail a:hover span,
    .recent-slider .product-detail a:hover span {
        color: #d25d3e !important;
    }

.main-slider .product-detail a:hover,
.recent-slider .product-detail a:hover {
    text-decoration: none;
}

.hamLogo {
    object-fit: contain;
    height: 70pt;
    width: 100%;
}

main[role="main"] {
    min-height: 100vh;
}

#Login-store-name span.cs-storename {
    color: #c64f2f;
    text-transform: capitalize;
    display: block;
}

.empty-itemscart .card {
    padding: 3% 20px;
}

    .empty-itemscart .card img {
        max-width: 70px;
        width: 100%;
    }

    .empty-itemscart .card p {
        margin: 10px;
        font-size: 20px;
    }

header .cart img {
    width: 42px;
}

.ibs-more-action.dropdown a.dropdown-toggle:after,
.ibs-more-action.dropdown button.dropdown-toggle:after {
    content: none;
}

.ibs-more-action a.dropdown-toggle {
    color: #201904;
    font-weight: 600
}

header .cs-headerprofileicons .dropdown-toggle ~ .dropdown-menu.show,
#cs-helpinfo .dropdown-toggle ~ .dropdown-menu.show {
    display: block;
}

.order-summary .ibs-more-action .embe-options {
    transform: translate3d(-28px, 23px, 0px) !important;
}

.balance-remain {
    width: 50%;
    box-shadow: 0px 0px 5px 1px #dcd5d5;
    border-radius: 5px;
    background-color: #ffffff;
}

.cs-remain {
    /*display: table;
    margin: 0 auto;*/
    font-weight: 600;
    font-size: 17px;
    line-height: 18px;
    border-bottom: 1px solid #bdbbbb;
    padding: 10px;
}

.cs-categoriesnav a {
    margin: 0px 23px !important;
    padding: 5px 0px !important;
}

.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;
    }

#returnModal .view-returns thead tr,
#returnModal .view-returns tbody tr {
    border-bottom: 1px solid #e3e3e3;
}

    #returnModal .view-returns thead tr th,
    #returnModal .view-returns tbody tr td {
        padding-bottom: 15px;
        padding-top: 10px;
    }

    #returnModal .view-returns thead tr th {
        color: #222;
        text-align: left;
        font-size: 16px;
    }

section.emp_login main.ibs-content {
    width: 100%;
    padding-top: 6%;
}

    section.emp_login main.ibs-content form {
        width: 40%
    }

section.emp_dashboard div.card-order-table .card-body > table.all-orders tbody tr td a.order-link {
    color: #D25D3E;
}

div.tags-container .chosen-container.chosen-with-drop .chosen-drop {
    max-height: 200px !important;
    overflow-y: hidden !important;
}

div.tags-container .chosen-container .chosen-drop ul.chosen-results {
    overflow-y: scroll;
    max-height: 140px;
    position: relative;
}

div.tags-container .chosen-container .chosen-drop .chosen-search {
    border: 1px solid #e3e3e3;
    border-radius: 50px;
    margin-bottom: 7px;
    padding: 0 12px;
}

    div.tags-container .chosen-container .chosen-drop .chosen-search input {
        padding: 5px 10px
    }

.card-disabled {
    background-color: #c7c7c7;
}

.cart-embellishment-img {
    width: 60px;
    height: 40px;
    object-fit: cover;
}

@media (min-width: 1900px) {
    .container {
        max-width: 85vw;
    }

    #DivEmptymyChart-bar, #DivEmptymyChart-line, #myChart-line, #myChart-bar {
        min-height: 21vw
    }
}

.cs-categoriesnav a {
    margin: 0px 23px !important;
    padding: 5px 0px !important;
}

.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;
    }

.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;
    }

#CartItemEmbelishmentModal .modal-dialog {max-width:980px;}
.cs-fieldsgroup {
    display: flex;
    align-items: center;
    position: relative;
}

.cs-fieldsgroup .toggle-password {
    position: absolute;
    right: 20px;
    top: 25px;
}

section.emp_product-details .swiper div.large-image {
    overflow: inherit;
}

section.emp_product-details .swiper .swiper-slide-zoomed div.large-image::after{content:none;}

header div.actions.cs-headerprofileicons { /*width:440px;*/ width:auto;}
header div.actions.cs-headerprofileicons .cs-headerphone a { color: #4a4a4d; display: flex; align-items: center; gap: 5px; }
header div.actions.cs-headerprofileicons .cs-headerphone a:hover{text-decoration:none;}
header div.actions.cs-headerprofileicons .cs-headerphone i{font-size: 20px; background: #d25d3e; border-radius: 50%; padding: 8px; color: #fff; width: 30px; height: 30px; line-height: 15px;}

.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;}
.min-qty{ background: #d25d3e; padding: 10px 15px; border-radius: 5px; color: #fff; font-size: 16px;}

.cs-headerAllowanceCart { display: flex; margin: 0; align-items: center; justify-content: center; margin-right: 20px; }
.cs-headerAllowanceCart .cs-headerAllowanceCart-box  { list-style: none; border-right: 2px solid #fff; padding: 0px 10px; font-size: 1em; }
.cs-headerAllowanceCart .cs-headerAllowanceCart-box h6 { margin: 0; }
.cs-headerAllowanceCart .cs-headerAllowanceCart-box h6 img{width:20px;}
.cs-headerAllowanceCart .cs-headerAllowanceCart-box:last-child { border: none; }

.cs-headerAllowanceCart.whiteAllowanceCart{}
.cs-headerAllowanceCart.whiteAllowanceCart .cs-headerAllowanceCart-box{background:#fff; margin: 0px 7px; padding: 8px 11px; border-radius: 5px;}
.cs-headerAllowanceCart.whiteAllowanceCart .cs-headerAllowanceCart-box span{font-weight: 600;}