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

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

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

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    height: 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: "";
    }

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

.d-none {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        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 .card {
        border-radius: 10px;
        border: none;
        box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
    }

    section.login {
        height: 100%;
    }

        section.login div.login-box {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            padding-bottom: 30px;
            background-color: #ffffff;
        }

            section.login div.login-box div.header {
                display: block;
                margin: 20px auto;
                width: 97%;
            }

                section.login div.login-box div.header .logo {
                    display: table;
                    height: 45px;
                }

                    section.login div.login-box div.header .logo img {
                        height: 100%;
                    }

                section.login div.login-box div.header button.close {
                    display: block;
                    width: 30px;
                    height: 30px;
                    color: #201904;
                    border-radius: 50%;
                }

                    section.login div.login-box div.header button.close .fa {
                        color: #201904;
                        font-size: 16px;
                    }

                    section.login div.login-box div.header button.close:hover {
                        background-color: #F9F3E2;
                        color: #201904;
                    }

            section.login div.login-box div.content {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
            }

                section.login div.login-box div.content h2 {
                    display: block;
                    text-align: center;
                    font-size: 55px;
                    font-weight: 600;
                    line-height: 64px;
                }

                section.login div.login-box div.content p {
                    display: block;
                    text-align: center;
                    width: 50%;
                    font-size: 20px;
                    font-weight: 400;
                    line-height: 20px;
                    margin: 0 auto;
                }

                section.login div.login-box div.content form {
                    margin: 49px auto 0;
                    width: 40%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                }

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

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

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

                        section.login div.login-box div.content form .fields input {
                            border: none;
                            background-color: none;
                            width: calc(100% - 50px);
                            height: 62px;
                            background-color: none;
                            outline: none;
                            font-weight: 500;
                            font-size: 18px;
                        }

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

                        section.login div.login-box div.content form .fields:nth-child(2) {
                            border-bottom-left-radius: 10px;
                            border-bottom-right-radius: 10px;
                        }

                    section.login div.login-box div.content form 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: 20px auto 22px;
                        transition: 0.3s;
                    }

                        section.login div.login-box div.content form input[type=submit]:hover {
                            background-color: #F9F3E2;
                            color: #201904;
                        }

                    section.login div.login-box div.content form a.forgot {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: #201904;
                        font-size: 15px;
                        font-weight: 400;
                    }

            section.login div.login-box div.signup {
                display: flex;
                justify-content: center;
            }

                section.login div.login-box div.signup span.msg-sigup {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 18px;
                    font-weight: 400;
                    line-height: 20px;
                }

                    section.login div.login-box div.signup span.msg-sigup a {
                        display: inline-block;
                        color: #D25D3E;
                        margin-left: 5px;
                        font-weight: 600;
                    }

        section.login div.right-side {
            background: #F9F3E2 url(../images/login_guy.png) right top no-repeat;
            background-size: 75%;
        }

            section.login div.right-side div.message {
                margin: 0 auto;
                padding-bottom: 30px;
                width: 65%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: end;
                align-items: center;
            }

                section.login div.right-side div.message h2 {
                    font-weight: 600;
                    font-size: 28px;
                    line-height: 35px;
                    color: #201904;
                    text-align: center;
                }

                section.login div.right-side div.message p {
                    color: #4A4A4D;
                    font-size: 17px;
                    font-weight: 400;
                    line-height: 24px;
                    text-align: center;
                }

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

        section.dashboard .title-actions a.add-store {
            background-color: #D25D3E;
            color: #ffffff;
            width: 190px;
            display: table;
            text-align: center;
            line-height: 52px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
        }

            section.dashboard .title-actions a.add-store span.text {
                display: inline-block;
            }

            section.dashboard .title-actions a.add-store .fa {
                font-size: 18px;
                margin-right: 15px;
            }

            section.dashboard .title-actions a.add-store:hover {
                background-color: #C64F2F;
            }

            section.dashboard .title-actions a.add-store:focus {
                background-color: #DC836A;
            }

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

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

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

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

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

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

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

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

    section.dashboard .card-chart {
        border-radius: 10px;
    }

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

    section.dashboard .product-detail .card.card-product {
        border-radius: 10px;
        margin-bottom: 10px;
    }

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

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

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

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

    section.dashboard .card.card-tickets {
        border-radius: 10px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    section.edit-product {
        padding-bottom: 30px;
    }

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

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

                section.edit-product .title-actions a.delete-product:hover, section.edit-product .title-actions a.cancel-product:hover {
                    color: #D32243;
                }

        section.edit-product .card.card-info {
            border-radius: 10px;
        }

            section.edit-product .card.card-info .card-body label.info {
                color: #201904;
                display: block;
                line-height: 20px;
                font-size: 16px;
                font-weight: 500;
            }

            section.edit-product .card.card-info .card-body div.category-search {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0;
                border-radius: 10px;
                display: flex;
                flex-wrap: nowrap;
                flex-direction: row;
                width: 100%;
                margin-bottom: 24px;
                outline: none;
                position: relative;
            }

                section.edit-product .card.card-info .card-body div.category-search input {
                    height: 62px;
                    border: none;
                    background: none;
                    padding: 0 15px;
                    width: calc(100% - 62px);
                    outline: none;
                }

                section.edit-product .card.card-info .card-body div.category-search button[type=button] {
                    display: block;
                    width: 62px;
                    height: 62px;
                    border: none;
                    background: none;
                    font-size: 22px;
                    background: url(../images/icons/icon_search_black.svg) center center no-repeat;
                }

                    section.edit-product .card.card-info .card-body div.category-search button[type=button]:hover {
                        background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                    }

                section.edit-product .card.card-info .card-body div.category-search ul.add-category {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    padding: 3px;
                    background-color: #fff;
                    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                    border-radius: 10px;
                    position: absolute;
                    right: 0;
                    left: 0;
                    top: 66px;
                    z-index: 10;
                    display: none;
                }

                    section.edit-product .card.card-info .card-body div.category-search ul.add-category li a {
                        color: #201904;
                        text-decoration: none;
                        display: block;
                        line-height: 43px;
                        padding: 0 15px;
                        font-weight: 400;
                        border-radius: 8px;
                        font-size: 18px;
                    }

                        section.edit-product .card.card-info .card-body div.category-search ul.add-category li a.add {
                            background-color: #D25D3E;
                            color: #ffffff;
                        }

                            section.edit-product .card.card-info .card-body div.category-search ul.add-category li a.add span {
                                font-weight: normal;
                            }

                                section.edit-product .card.card-info .card-body div.category-search ul.add-category li a.add span i {
                                    font-size: 18px;
                                    font-weight: 500;
                                }

                                section.edit-product .card.card-info .card-body div.category-search ul.add-category li a.add span strong {
                                    font-weight: 600;
                                }

                            section.edit-product .card.card-info .card-body div.category-search ul.add-category li a.add:hover {
                                background-color: #DC836A;
                            }

                        section.edit-product .card.card-info .card-body div.category-search ul.add-category li a:hover {
                            background-color: #F0EDE5;
                        }

            section.edit-product .card.card-info .card-body input.name, section.edit-product .card.card-info .card-body input.price, section.edit-product .card.card-info .card-body input.sku, section.edit-product .card.card-info .card-body input.hs-code, section.edit-product .card.card-info .card-body input.multi-option {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0 15px;
                border-radius: 10px;
                display: block;
                width: 100%;
                margin-bottom: 24px;
                outline: none;
            }

            section.edit-product .card.card-info .card-body input.qty {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0 15px;
                border-radius: 10px;
                display: block;
                width: 100%;
                margin-bottom: 24px;
                outline: none;
            }

            section.edit-product .card.card-info .card-body div.input-select {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0;
                border-radius: 10px;
                display: flex;
                width: 100%;
                margin-bottom: 24px;
                overflow: hidden;
            }

                section.edit-product .card.card-info .card-body div.input-select input {
                    outline: none;
                    height: 62px;
                    width: calc(100% - 88px);
                    border: none;
                    background: none;
                    padding: 0 15px;
                }

                section.edit-product .card.card-info .card-body div.input-select select {
                    background: #F6F4F0 url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
                    background-size: 12px 12px;
                    width: 88px;
                    border: none;
                    height: 62px;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    padding: 0 15px;
                    outline: none;
                }

            section.edit-product .card.card-info .card-body .drag-drop {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 296px;
                min-height: 296px;
                border: 1px dashed #F0EDE5;
                border-radius: 10px;
                position: relative;
            }

                section.edit-product .card.card-info .card-body .drag-drop .upload-icon {
                    width: 26px;
                }

                section.edit-product .card.card-info .card-body .drag-drop span {
                    color: #7F7F84;
                    font-size: 12px;
                    font-weight: 500;
                    line-height: 25px;
                }

                    section.edit-product .card.card-info .card-body .drag-drop span.drop {
                        display: block;
                        margin: 10px 0 5px;
                        font-size: 16px;
                        line-height: 20px;
                        font-weight: 600;
                        color: #201904;
                    }

                section.edit-product .card.card-info .card-body .drag-drop label {
                    display: inline;
                    color: #D25D3E;
                    text-decoration: none;
                    font-size: 14px;
                    cursor: pointer;
                }

                section.edit-product .card.card-info .card-body .drag-drop input[type=file] {
                    opacity: 0;
                    position: absolute;
                    z-index: -1;
                }

            section.edit-product .card.card-info .card-body table.products {
                width: 100%;
            }

                section.edit-product .card.card-info .card-body table.products thead tr th {
                    text-transform: uppercase;
                    text-align: center;
                    color: #7F7F84;
                    font-weight: 600;
                    font-size: 12px;
                }

                section.edit-product .card.card-info .card-body table.products tbody tr {
                    border-bottom: 1px solid #F0EDE5;
                }

                    section.edit-product .card.card-info .card-body table.products tbody tr td {
                        vertical-align: middle;
                        text-align: center;
                        padding: 10px 0;
                    }

                        section.edit-product .card.card-info .card-body table.products tbody tr td img {
                            width: 58px;
                        }

                        section.edit-product .card.card-info .card-body 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;
                            margin: 0;
                        }

                        section.edit-product .card.card-info .card-body table.products tbody tr td a {
                            display: inline-block;
                            font-size: 18px;
                            text-decoration: none;
                            margin: 0 10px;
                        }

                            section.edit-product .card.card-info .card-body table.products tbody tr td a.more-option {
                                color: #7F7F84;
                            }

                            section.edit-product .card.card-info .card-body table.products tbody tr td a.delete {
                                color: #7F7F84;
                            }

                                section.edit-product .card.card-info .card-body table.products tbody tr td a.delete:hover {
                                    color: #D32243;
                                }

                    section.edit-product .card.card-info .card-body table.products tbody tr:last-of-type {
                        border-bottom: none;
                    }

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

            section.edit-product .card.card-info .card-body .multiple {
                margin: 15px 0 25px;
                padding: 0 15px 15px;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                border-bottom: 1px solid #F0EDE5;
            }

                section.edit-product .card.card-info .card-body .multiple span {
                    line-height: 20px;
                    color: #201904;
                    font-size: 16px;
                    font-weight: 500;
                    margin-left: 15px;
                }

            section.edit-product .card.card-info .card-body div.preview {
                display: block;
                border-top: 1px solid #F0EDE5;
            }

                section.edit-product .card.card-info .card-body div.preview div.preview-table {
                    width: 100%;
                }

                    section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview {
                        width: 100%;
                    }

                        section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview thead tr th {
                            font-size: 12px;
                            font-weight: 600;
                            color: #7F7F84;
                            text-align: center;
                        }

                            section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview thead tr th:nth-child(1) {
                                width: calc(100% - 480px);
                            }

                            section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview thead tr th:nth-child(2) {
                                width: 110px;
                            }

                            section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview thead tr th:nth-child(3) {
                                width: 190px;
                            }

                            section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview thead tr th:nth-child(4) {
                                width: 90px;
                            }

                            section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview thead tr th:nth-child(5) {
                                width: 90px;
                            }

                        section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr {
                            position: relative;
                            border-bottom: 1px solid #F0EDE5;
                        }

                            section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td {
                                padding: 10px 5px;
                                text-align: center;
                                position: relative;
                            }

                                section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td:nth-child(1) {
                                    display: flex;
                                    flex-direction: row;
                                    flex-wrap: nowrap;
                                    align-items: center;
                                }

                                    section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td:nth-child(1) img {
                                        height: 70px;
                                    }

                                    section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td:nth-child(1) span {
                                        font-size: 16px;
                                        line-height: 20px;
                                        font-weight: 500;
                                    }

                                        section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td:nth-child(1) span span {
                                            display: block;
                                            font-size: 16px;
                                            color: #7F7F84;
                                            line-height: 20px;
                                        }

                                section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td input.fields {
                                    border: 1px solid #F0EDE5;
                                    height: 36px;
                                    padding: 0 15px;
                                    border-radius: 10px;
                                    display: block;
                                    width: 100%;
                                    outline: none;
                                    margin: 0;
                                }

                                section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td .option {
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                }

                                    section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td .option a.toggle {
                                        display: table;
                                        width: 40px;
                                        height: 40px;
                                        color: #7F7F84;
                                        text-decoration: none;
                                        line-height: 40px;
                                    }

                                    section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td .option ul {
                                        display: none;
                                        position: absolute;
                                        right: 50px;
                                        top: -12px;
                                        margin: 0;
                                        padding: 0;
                                        list-style: none;
                                        white-space: normal;
                                        background: #ffffff;
                                        border-radius: 4px;
                                        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                                        width: 100px;
                                        border-bottom: 1px solid rgba(0, 0, 0, 0.25);
                                    }

                                        section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td .option ul li {
                                            display: block;
                                            display: 100%;
                                            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
                                        }

                                            section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td .option ul li a {
                                                display: block;
                                                width: 100%;
                                                height: 32px;
                                                line-height: 32px;
                                                color: #201904;
                                                white-space: normal;
                                                font-size: 13px;
                                            }

                                            section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr td .option ul li:last-of-type {
                                                border-bottom: none;
                                            }

                            section.edit-product .card.card-info .card-body div.preview div.preview-table table.preview tbody tr:last-of-type {
                                border-bottom: none;
                            }

            section.edit-product .card.card-info .card-body .number-input {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0 0;
                border-radius: 10px;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                overflow: hidden;
            }

                section.edit-product .card.card-info .card-body .number-input input.quantity {
                    border: none;
                    outline: none;
                    height: 62px;
                    width: 100%;
                    padding: 0 15px;
                }

                section.edit-product .card.card-info .card-body .number-input div.btns {
                    display: flex;
                    flex-direction: column;
                }

                    section.edit-product .card.card-info .card-body .number-input div.btns button {
                        background-color: orange;
                        outline: none;
                        background-color: transparent;
                        border: none;
                        align-items: center;
                        justify-content: center;
                        width: 32px;
                        height: 32px;
                        cursor: pointer;
                        margin: 0;
                        position: relative;
                        font-weight: 600;
                        font-size: 18px;
                    }

                        section.edit-product .card.card-info .card-body .number-input div.btns button:nth-child(1) {
                            transform: rotate(90deg);
                        }

                        section.edit-product .card.card-info .card-body .number-input div.btns button:nth-child(2) {
                            transform: rotate(90deg);
                        }

            section.edit-product .card.card-info .card-body .remove {
                position: absolute;
                right: 15px;
                top: 0;
                color: #D25D3E;
                text-decoration: none;
                font-size: 15px;
                line-height: 20px;
                font-weight: 600;
            }

            section.edit-product .card.card-info .card-body .removeRow {
                position: absolute;
                right: 15px;
                color: #D25D3E;
                text-decoration: none;
                font-size: 15px;
                font-weight: 600;
            }

            section.edit-product .card.card-info .card-body .wrapper {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0 15px;
                border-radius: 10px;
                display: block;
                width: 100%;
                margin-bottom: 24px;
                outline: none;
            }

            section.edit-product .card.card-info .card-body .add-options {
                display: table;
                color: #D25D3E;
                font-size: 16px;
                font-weight: 600;
                margin: 0 15px;
                line-height: 20px;
            }

                section.edit-product .card.card-info .card-body .add-options .fa {
                    font-size: 14px;
                }

            section.edit-product .card.card-info .card-body input[type=number] {
                -webkit-appearance: textfield;
                -moz-appearance: textfield;
                appearance: textfield;
            }

                section.edit-product .card.card-info .card-body input[type=number]::-webkit-inner-spin-button,
                section.edit-product .card.card-info .card-body input[type=number]::-webkit-outer-spin-button {
                    -webkit-appearance: none;
                }

            section.edit-product .card.card-info .card-body .number-input, section.edit-product .card.card-info .card-body .number-input * {
                box-sizing: border-box;
            }

        section.edit-product div.actions {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: center;
            align-items: center;
        }

            section.edit-product div.actions a {
                text-decoration: none;
                padding: 0 25px;
                line-height: 52px;
                display: block;
                border-radius: 10px;
                margin: 0 10px;
            }

                section.edit-product div.actions a.cancel {
                    color: #7F7F84;
                }

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

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

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

    section.new-product {
        padding-bottom: 15px;
    }

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

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

                section.new-product .title-actions a.delete-product:hover, section.new-product .title-actions a.cancel-product:hover {
                    color: #D32243;
                }

        section.new-product .card.card-info {
            border-radius: 10px;
        }

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

            section.new-product .card.card-info .card-body div.category-search {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0;
                border-radius: 10px;
                display: flex;
                flex-wrap: nowrap;
                flex-direction: row;
                width: 100%;
                margin-bottom: 24px;
                outline: none;
                position: relative;
            }

                section.new-product .card.card-info .card-body div.category-search input {
                    height: 62px;
                    border: none;
                    background: none;
                    padding: 0 15px;
                    width: calc(100% - 62px);
                    outline: none;
                }

                section.new-product .card.card-info .card-body div.category-search button[type=button] {
                    display: block;
                    width: 62px;
                    height: 62px;
                    border: none;
                    background: none;
                    font-size: 22px;
                    background: url(../images/icons/icon_search_black.svg) center center no-repeat;
                }

                    section.new-product .card.card-info .card-body div.category-search button[type=button]:hover {
                        background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                    }

                section.new-product .card.card-info .card-body div.category-search ul.add-category {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    padding: 3px;
                    background-color: #fff;
                    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                    border-radius: 10px;
                    position: absolute;
                    right: 0;
                    left: 0;
                    top: 66px;
                    z-index: 10;
                    display: none;
                }

                    section.new-product .card.card-info .card-body div.category-search ul.add-category li a {
                        color: #201904;
                        text-decoration: none;
                        display: block;
                        line-height: 43px;
                        padding: 0 15px;
                        font-weight: 400;
                        border-radius: 8px;
                        font-size: 18px;
                    }

                        section.new-product .card.card-info .card-body div.category-search ul.add-category li a.add {
                            background-color: #D25D3E;
                            color: #ffffff;
                        }

                            section.new-product .card.card-info .card-body div.category-search ul.add-category li a.add span {
                                font-weight: normal;
                            }

                                section.new-product .card.card-info .card-body div.category-search ul.add-category li a.add span i {
                                    font-size: 18px;
                                    font-weight: 500;
                                }

                                section.new-product .card.card-info .card-body div.category-search ul.add-category li a.add span strong {
                                    font-weight: 600;
                                }

                            section.new-product .card.card-info .card-body div.category-search ul.add-category li a.add:hover {
                                background-color: #DC836A;
                            }

                        section.new-product .card.card-info .card-body div.category-search ul.add-category li a:hover {
                            background-color: #F0EDE5;
                        }

            section.new-product .card.card-info .card-body input.name, section.new-product .card.card-info .card-body input.price, section.new-product .card.card-info .card-body input.sku, section.new-product .card.card-info .card-body input.hs-code, section.new-product .card.card-info .card-body input.multi-option {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0 15px;
                border-radius: 10px;
                display: block;
                width: 100%;
                margin-bottom: 24px;
                outline: none;
            }

            section.new-product .card.card-info .card-body input.qty {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0 15px;
                border-radius: 10px;
                display: block;
                width: 100%;
                margin-bottom: 24px;
                outline: none;
            }

            section.new-product .card.card-info .card-body div.input-select {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0;
                border-radius: 10px;
                display: flex;
                width: 100%;
                margin-bottom: 24px;
                overflow: hidden;
            }

                section.new-product .card.card-info .card-body div.input-select input {
                    outline: none;
                    height: 62px;
                    width: calc(100% - 88px);
                    border: none;
                    background: none;
                    padding: 0 15px;
                }

                section.new-product .card.card-info .card-body div.input-select select {
                    background: #F6F4F0 url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
                    background-size: 12px 12px;
                    width: 88px;
                    border: none;
                    height: 62px;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    padding: 0 15px;
                    outline: none;
                }

            section.new-product .card.card-info .card-body .drag-drop {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 296px;
                min-height: 296px;
                border: 1px dashed #F0EDE5;
                border-radius: 10px;
                position: relative;
            }

                section.new-product .card.card-info .card-body .drag-drop .upload-icon {
                    width: 26px;
                }

                section.new-product .card.card-info .card-body .drag-drop span {
                    color: #7F7F84;
                    font-size: 12px;
                    font-weight: 500;
                    line-height: 25px;
                }

                    section.new-product .card.card-info .card-body .drag-drop span.drop {
                        display: block;
                        margin: 10px 0 5px;
                        font-size: 16px;
                        line-height: 20px;
                        font-weight: 600;
                        color: #201904;
                    }

                section.new-product .card.card-info .card-body .drag-drop label {
                    display: inline;
                    color: #D25D3E;
                    text-decoration: none;
                    font-size: 14px;
                    cursor: pointer;
                }

                section.new-product .card.card-info .card-body .drag-drop input[type=file] {
                    opacity: 0;
                    position: absolute;
                    z-index: -1;
                }

                section.new-product .card.card-info .card-body .drag-drop div.selected-image {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: auto;
                    height: 140px;
                    overflow: hidden;
                    border-radius: 6px;
                    z-index: 10;
                    background-color: rgba(0, 0, 0, 0.35);
                    width: 100%;
                    height: 100%;
                    justify-content: center;
                    display: none;
                    text-align: center;
                }

                    section.new-product .card.card-info .card-body .drag-drop div.selected-image a {
                        position: absolute;
                        right: 5px;
                        top: 5px;
                        color: #ffffff;
                        font-size: 22px;
                        width: 20px;
                        height: 20px;
                        line-height: 20px;
                    }

                        section.new-product .card.card-info .card-body .drag-drop div.selected-image a:hover {
                            color: #201904;
                        }

                    section.new-product .card.card-info .card-body .drag-drop div.selected-image img {
                        width: auto;
                        height: 100%;
                    }

            section.new-product .card.card-info .card-body table.products {
                width: 100%;
            }

                section.new-product .card.card-info .card-body table.products thead tr th {
                    text-transform: uppercase;
                    text-align: center;
                    color: #7F7F84;
                    font-weight: 600;
                    font-size: 12px;
                }

                section.new-product .card.card-info .card-body table.products tbody tr {
                    border-bottom: 1px solid #F0EDE5;
                }

                    section.new-product .card.card-info .card-body table.products tbody tr td {
                        vertical-align: middle;
                        text-align: center;
                        padding: 10px 0;
                    }

                        section.new-product .card.card-info .card-body table.products tbody tr td img {
                            width: 58px;
                        }

                        section.new-product .card.card-info .card-body 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;
                            margin: 0;
                        }

                        section.new-product .card.card-info .card-body table.products tbody tr td a {
                            display: inline-block;
                            font-size: 18px;
                            text-decoration: none;
                            margin: 0 10px;
                        }

                            section.new-product .card.card-info .card-body table.products tbody tr td a.more-option {
                                color: #7F7F84;
                            }

                            section.new-product .card.card-info .card-body table.products tbody tr td a.delete {
                                color: #7F7F84;
                            }

                                section.new-product .card.card-info .card-body table.products tbody tr td a.delete:hover {
                                    color: #D32243;
                                }

                    section.new-product .card.card-info .card-body table.products tbody tr:last-of-type {
                        border-bottom: none;
                    }

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

            section.new-product .card.card-info .card-body .multiple {
                margin: 15px 0 25px;
                padding: 0 15px 15px;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                border-bottom: 1px solid #F0EDE5;
            }

                section.new-product .card.card-info .card-body .multiple span {
                    line-height: 20px;
                    color: #201904;
                    font-size: 16px;
                    font-weight: 500;
                    margin-left: 15px;
                }

            section.new-product .card.card-info .card-body div.preview {
                display: block;
                border-top: 1px solid #F0EDE5;
            }

                section.new-product .card.card-info .card-body div.preview table.preview {
                    width: 100%;
                }

                    section.new-product .card.card-info .card-body div.preview table.preview thead tr th {
                        font-size: 12px;
                        font-weight: 600;
                        color: #7F7F84;
                        text-align: center;
                    }

                        section.new-product .card.card-info .card-body div.preview table.preview thead tr th:nth-child(1) {
                            width: calc(100% - 480px);
                        }

                        section.new-product .card.card-info .card-body div.preview table.preview thead tr th:nth-child(2) {
                            width: 110px;
                        }

                        section.new-product .card.card-info .card-body div.preview table.preview thead tr th:nth-child(3) {
                            width: 190px;
                        }

                        section.new-product .card.card-info .card-body div.preview table.preview thead tr th:nth-child(4) {
                            width: 90px;
                        }

                        section.new-product .card.card-info .card-body div.preview table.preview thead tr th:nth-child(5) {
                            width: 90px;
                        }

                    section.new-product .card.card-info .card-body div.preview table.preview tbody tr {
                        position: relative;
                        border-bottom: 1px solid #F0EDE5;
                    }

                        section.new-product .card.card-info .card-body div.preview table.preview tbody tr td {
                            padding: 10px 5px;
                            text-align: center;
                            position: relative;
                        }

                            section.new-product .card.card-info .card-body div.preview table.preview tbody tr td:nth-child(1) {
                                display: flex;
                                flex-direction: row;
                                flex-wrap: nowrap;
                                align-items: center;
                            }

                                section.new-product .card.card-info .card-body div.preview table.preview tbody tr td:nth-child(1) img {
                                    height: 70px;
                                }

                                section.new-product .card.card-info .card-body div.preview table.preview tbody tr td:nth-child(1) span {
                                    font-size: 16px;
                                    line-height: 20px;
                                    font-weight: 500;
                                }

                                    section.new-product .card.card-info .card-body div.preview table.preview tbody tr td:nth-child(1) span span {
                                        display: block;
                                        font-size: 16px;
                                        color: #7F7F84;
                                        line-height: 20px;
                                    }

                            section.new-product .card.card-info .card-body div.preview table.preview tbody tr td input.fields {
                                border: 1px solid #F0EDE5;
                                height: 36px;
                                padding: 0 15px;
                                border-radius: 10px;
                                display: block;
                                width: 100%;
                                outline: none;
                                margin: 0;
                            }

                            section.new-product .card.card-info .card-body div.preview table.preview tbody tr td .option {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                            }

                                section.new-product .card.card-info .card-body div.preview table.preview tbody tr td .option a.toggle {
                                    display: table;
                                    width: 40px;
                                    height: 40px;
                                    color: #7F7F84;
                                    text-decoration: none;
                                    line-height: 40px;
                                }

                                section.new-product .card.card-info .card-body div.preview table.preview tbody tr td .option ul {
                                    display: none;
                                    position: absolute;
                                    right: 50px;
                                    top: -12px;
                                    margin: 0;
                                    padding: 0;
                                    list-style: none;
                                    white-space: normal;
                                    background: #ffffff;
                                    border-radius: 4px;
                                    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                                    width: 100px;
                                    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
                                }

                                    section.new-product .card.card-info .card-body div.preview table.preview tbody tr td .option ul li {
                                        display: block;
                                        display: 100%;
                                        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
                                    }

                                        section.new-product .card.card-info .card-body div.preview table.preview tbody tr td .option ul li a {
                                            display: block;
                                            width: 100%;
                                            height: 32px;
                                            line-height: 32px;
                                            color: #201904;
                                            white-space: normal;
                                            font-size: 13px;
                                        }

                                        section.new-product .card.card-info .card-body div.preview table.preview tbody tr td .option ul li:last-of-type {
                                            border-bottom: none;
                                        }

                        section.new-product .card.card-info .card-body div.preview table.preview tbody tr:last-of-type {
                            border-bottom: none;
                        }

            section.new-product .card.card-info .card-body .number-input {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0 0;
                border-radius: 10px;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                overflow: hidden;
            }

                section.new-product .card.card-info .card-body .number-input input.quantity {
                    border: none;
                    outline: none;
                    height: 62px;
                    width: 100%;
                    padding: 0 15px;
                }

                section.new-product .card.card-info .card-body .number-input div.btns {
                    display: flex;
                    flex-direction: column;
                }

                    section.new-product .card.card-info .card-body .number-input div.btns button {
                        outline: none;
                        background-color: transparent;
                        border: none;
                        align-items: center;
                        justify-content: center;
                        width: 32px;
                        height: 32px;
                        cursor: pointer;
                        margin: 0;
                        position: relative;
                        font-weight: 600;
                        font-size: 18px;
                    }

                        section.new-product .card.card-info .card-body .number-input div.btns button:nth-child(1) {
                            transform: rotate(90deg);
                        }

                        section.new-product .card.card-info .card-body .number-input div.btns button:nth-child(2) {
                            transform: rotate(90deg);
                        }

            section.new-product .card.card-info .card-body .remove {
                position: absolute;
                right: 15px;
                top: 0;
                color: #D25D3E;
                text-decoration: none;
                font-size: 15px;
                line-height: 20px;
                font-weight: 600;
            }

            section.new-product .card.card-info .card-body .wrapper {
                border: 1px solid #F0EDE5;
                height: 64px;
                padding: 0 15px;
                border-radius: 10px;
                display: block;
                width: 100%;
                margin-bottom: 24px;
                outline: none;
            }

            section.new-product .card.card-info .card-body .add-options {
                display: table;
                color: #D25D3E;
                font-size: 16px;
                font-weight: 600;
                margin: 0 15px;
                line-height: 20px;
            }

                section.new-product .card.card-info .card-body .add-options .fa {
                    font-size: 14px;
                }

        section.new-product div.actions {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: center;
            align-items: center;
        }

            section.new-product div.actions a {
                text-decoration: none;
                padding: 0 25px;
                line-height: 52px;
                display: block;
                border-radius: 10px;
                margin: 0 10px;
            }

                section.new-product div.actions a.cancel {
                    color: #7F7F84;
                }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                section.catalogue .title-actions .other-actions a.add-product {
                    order: 2;
                    background-color: #D25D3E;
                    color: #ffffff;
                    width: 100%;
                    display: table;
                    text-align: center;
                    line-height: 52px;
                    border-radius: 10px;
                    font-weight: 700;
                    font-size: 16px;
                    text-decoration: none;
                }

                    section.catalogue .title-actions .other-actions a.add-product .fa {
                        margin-right: 10px;
                    }

                    section.catalogue .title-actions .other-actions a.add-product:hover {
                        background-color: #C64F2F;
                    }

                    section.catalogue .title-actions .other-actions a.add-product:focus {
                        background-color: #DC836A;
                    }

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

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

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

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

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

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

                section.catalogue .card-category .card-body div.action {
                    display: flex;
                    justify-content: flex-end;
                    position: relative;
                }

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

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

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

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

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

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

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

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

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

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

        section.catalogue .card.card-stats .card-body {
            border-radius: 10px;
        }

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

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

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

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

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

            section.catalogue .time button.date {
                width: 20px;
                height: 20px;
                border: none;
                background: url(../images/icons/calendar.svg) center center no-repeat;
                background-size: 100% 100%;
                margin-left: 8px;
                outline: none;
            }

        section.catalogue .card-chart {
            border-radius: 10px;
        }

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

        section.catalogue .product-detail .card.card-product {
            border-radius: 10px;
            margin-bottom: 10px;
        }

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

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

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

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

        section.catalogue .card.card-tickets {
            border-radius: 10px;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    section.config-store {
        position: relative;
    }

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

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

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

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

                section.config-store 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.config-store ul.form-stepper li span {
                    display: none;
                    margin-left: 16px;
                }

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

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

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

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

                    section.config-store ul.form-stepper li.done strong::after, section.config-store 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.config-store ul.form-stepper li.done span, section.config-store ul.form-stepper li.form-stepper-completed span {
                    display: none;
                }

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

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

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

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

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

                section.config-store ul.group-steps li.active {
                    background-color: #efd6cc;
                }

                    section.config-store ul.group-steps li.active strong {
                        background-color: #D25D3E;
                        color: #ffffff;
                    }

                    section.config-store ul.group-steps li.active span {
                        display: block;
                    }

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

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

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

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

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

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

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

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

                section.config-store ul.group-steps li:last-of-type {
                    margin-right: 0;
                }

        section.config-store .search-product {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            position: relative;
        }

            section.config-store .search-product .search-area {
                display: flex;
                flex-wrap: wrap;
                flex-direction: row;
                background-color: #ffffff;
                border-radius: 10px;
                height: 62px;
                border: 1px solid #F0EDE5;
                position: relative;
                width: calc(100% - 164px);
            }

                section.config-store .search-product .search-area:focus-within {
                    border-color: #D25D3E;
                }

                section.config-store .search-product .search-area input[type=text] {
                    border: none;
                    background-color: none;
                    padding: 0 15px;
                    height: 60px;
                    width: calc(100% - 62px);
                    border-top-left-radius: 10px;
                    border-bottom-left-radius: 10px;
                }

                section.config-store .search-product .search-area button {
                    border: none;
                    background: none;
                    width: 62px;
                    height: 62px;
                }

            section.config-store .search-product a.import {
                display: block;
                height: 64px;
                border-radius: 10px;
                color: #ffffff;
                line-height: 64px;
                text-align: center;
                min-width: 148px;
                margin-left: 16px;
                background-color: #D25D3E;
                font-weight: bold;
                font-size: 18px;
            }

                section.config-store .search-product a.import span.text {
                    display: inline-block;
                }

                section.config-store .search-product a.import img {
                    margin-left: 5px;
                }

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

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

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

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

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

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

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

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

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

        section.config-store form {
            padding-bottom: 20px;
        }

            section.config-store form div.card.add-dash {
                position: relative;
            }

                section.config-store form div.card.add-dash::after {
                    z-index: 2;
                    position: absolute;
                    left: -32px;
                    top: -50px;
                    bottom: -5px;
                    content: "";
                    background: #7F7F84;
                    opacity: 0.16;
                    width: 4px;
                }

            section.config-store form div.card.add-dash2 {
                position: relative;
            }

                section.config-store form div.card.add-dash2::after {
                    z-index: 2;
                    position: absolute;
                    left: -32px;
                    top: 20px;
                    bottom: -5px;
                    content: "";
                    background: #7F7F84;
                    opacity: 0.16;
                    width: 4px;
                }

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

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

            section.config-store form div.card.card-info .card-body textarea.descp {
                border: 1px solid #F0EDE5;
                height: 180px;
                padding: 15px;
                border-radius: 10px;
                display: block;
                width: 100%;
                margin-bottom: 24px;
                outline: none;
            }

            section.config-store form div.card.card-info .card-body .drag-drop {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 180px;
                border: 1px dashed #F0EDE5;
                border-radius: 10px;
                position: relative;
                margin-bottom: 24px;
            }

                section.config-store form div.card.card-info .card-body .drag-drop .upload-icon {
                    width: 26px;
                }

                section.config-store form div.card.card-info .card-body .drag-drop span {
                    color: #7F7F84;
                    font-size: 12px;
                    font-weight: 500;
                    line-height: 25px;
                }

                    section.config-store form div.card.card-info .card-body .drag-drop span.drop {
                        display: block;
                        margin: 10px 0 5px;
                        font-size: 16px;
                        line-height: 20px;
                        font-weight: 600;
                        color: #201904;
                    }

                section.config-store form div.card.card-info .card-body .drag-drop label {
                    display: inline;
                    color: #D25D3E;
                    text-decoration: none;
                    font-size: 14px;
                    cursor: pointer;
                }

                section.config-store form div.card.card-info .card-body .drag-drop input[type=file] {
                    opacity: 0;
                    position: absolute;
                    z-index: -1;
                }

                section.config-store form div.card.card-info .card-body .drag-drop div.selected-image, section.config-store form div.card.card-info .card-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;
                }

                    section.config-store form div.card.card-info .card-body .drag-drop div.selected-image a, section.config-store form div.card.card-info .card-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;
                    }

                        section.config-store form div.card.card-info .card-body .drag-drop div.selected-image a:hover, section.config-store form div.card.card-info .card-body .drag-drop div.selected-image2 a:hover {
                            color: #201904;
                        }

                    section.config-store form div.card.card-info .card-body .drag-drop div.selected-image img, section.config-store form div.card.card-info .card-body .drag-drop div.selected-image2 img {
                        width: auto;
                        height: 100%;
                    }

            section.config-store form div.card.card-info .card-body .product-details {
                margin-bottom: 15px;
            }

                section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider {
                    margin-bottom: 20px;
                }

                    section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.title {
                        display: flex;
                        justify-content: space-between;
                        height: 25px;
                        align-items: center;
                        margin-bottom: 10px;
                    }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.title span {
                            color: #201904;
                            font-size: 18px;
                            line-height: 25px;
                            font-weight: 600;
                        }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.title a {
                            display: block;
                            color: #201904;
                            font-weight: 800;
                            font-size: 22px;
                            text-decoration: none;
                            width: 25px;
                            height: 25px;
                            line-height: 25px;
                            text-align: center;
                        }

                    section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider {
                        height: 0;
                        overflow: hidden;
                        width: 100%;
                        padding: 0 10px;
                        transition: 0.5s all;
                    }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            width: 100%;
                        }

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

                                section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                                    text-align: right;
                                }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .slider-box {
                            width: 100%;
                            margin: 15px auto;
                        }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-slider {
                            margin-top: 20px;
                            height: 5px;
                            position: relative;
                            border: none;
                            background: #C6C5C5;
                        }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-state-default, section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
                            background: #ffffff;
                            border-radius: 50%;
                            outline: none;
                            border: none;
                            position: absolute;
                            top: -9px;
                            box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
                        }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
                            background: #D25D3E;
                        }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider #labelHolder {
                            height: 5px;
                            position: relative;
                            border: none;
                        }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider span {
                            position: absolute;
                            width: 1.2em;
                            height: 1.2em;
                            margin-left: -0.6em;
                            text-align: center;
                        }

                    section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider.active div.price-slider {
                        height: 75px;
                    }

                section.config-store form div.card.card-info .card-body .product-details aside div.filter {
                    margin-bottom: 20px;
                }

                    section.config-store form div.card.card-info .card-body .product-details aside div.filter div.title {
                        display: flex;
                        justify-content: space-between;
                        height: 25px;
                        align-items: center;
                        margin-bottom: 10px;
                    }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter div.title span {
                            color: #201904;
                            font-size: 18px;
                            line-height: 25px;
                            font-weight: 600;
                        }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter div.title a {
                            display: block;
                            color: #201904;
                            font-weight: 800;
                            font-size: 22px;
                            text-decoration: none;
                            width: 25px;
                            height: 25px;
                            line-height: 25px;
                            text-align: center;
                        }

                    section.config-store form div.card.card-info .card-body .product-details aside div.filter .filter-checkbox {
                        height: 0;
                        overflow: hidden;
                        transition: 0.5s all;
                    }

                        section.config-store form div.card.card-info .card-body .product-details aside div.filter .filter-checkbox ul {
                            margin: 0;
                            padding: 0;
                            list-style: none;
                            min-height: 185px;
                            max-height: 185px;
                            overflow-y: auto;
                        }

                            section.config-store form div.card.card-info .card-body .product-details aside div.filter .filter-checkbox ul li label {
                                line-height: 37px;
                                display: flex;
                                flex-direction: row;
                                flex-wrap: nowrap;
                                font-size: 15px;
                                font-weight: 400;
                                color: #4A4A4D;
                                align-items: center;
                                margin: 0;
                            }

                            section.config-store form div.card.card-info .card-body .product-details aside div.filter .filter-checkbox ul.active {
                                display: block;
                            }

                    section.config-store form div.card.card-info .card-body .product-details aside div.filter.active .filter-checkbox {
                        height: 185px;
                    }

                section.config-store form div.card.card-info .card-body .product-details div.products-box {
                    padding-left: 15px;
                    width: 100%;
                }

                    section.config-store form div.card.card-info .card-body .product-details div.products-box table.products {
                        width: 100%;
                    }

                        section.config-store form div.card.card-info .card-body .product-details div.products-box table.products thead tr th {
                            text-transform: uppercase;
                            text-align: center;
                            color: #7F7F84;
                            font-weight: 600;
                            font-size: 12px;
                        }

                            section.config-store form div.card.card-info .card-body .product-details div.products-box table.products thead tr th:nth-child(1) {
                                text-align: left;
                            }

                            section.config-store form div.card.card-info .card-body .product-details div.products-box table.products thead tr th:nth-child(2) {
                                text-align: left;
                            }

                            section.config-store form div.card.card-info .card-body .product-details div.products-box table.products thead tr th:nth-child(3) {
                                text-align: right;
                            }

                        section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr {
                            border-bottom: 1px solid #F0EDE5;
                        }

                            section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td {
                                vertical-align: middle;
                                text-align: left;
                                padding: 10px 0;
                            }

                                section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td img {
                                    width: 56px;
                                    margin: 0 5px;
                                }

                                section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td input.fields {
                                    width: 52px;
                                    height: 36px;
                                    border: 1px solid #F0EDE5;
                                    border-radius: 10px;
                                    text-align: center;
                                    padding: 0 5px;
                                    vertical-align: middle;
                                }

                                section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a {
                                    display: inline-block;
                                    font-size: 18px;
                                    text-decoration: none;
                                    margin: 0 10px;
                                    color: #7F7F84;
                                }

                                    section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.action {
                                        display: table;
                                        margin: 0 0 0 auto;
                                        width: 30px;
                                        height: 30px;
                                        background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                                    }

                                        section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.action:hover {
                                            background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                                        }

                                    section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.more-option {
                                        color: #7F7F84;
                                    }

                                    section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.delete {
                                        color: #D32243;
                                    }

                                section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type {
                                    display: flex;
                                    align-items: center;
                                }

                                    section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span {
                                        display: block;
                                        text-align: left;
                                        font-size: 12px;
                                        color: #7F7F84;
                                        line-height: 18px;
                                        font-weight: 500;
                                    }

                                        section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span.title {
                                            color: #201904;
                                            font-size: 16px;
                                            line-height: 20px;
                                        }

                                        section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span.qty, section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span.size {
                                            font-size: 12px;
                                        }

                                section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:last-of-type {
                                    text-align: right;
                                }

                            section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr:last-of-type {
                                border-bottom: none;
                            }

            section.config-store form div.card.card-info .card-body .product-actions ul {
                list-style: none;
                margin: 0;
                padding: 0;
            }

                section.config-store form div.card.card-info .card-body .product-actions ul li {
                    display: flex;
                }

                    section.config-store form div.card.card-info .card-body .product-actions ul li a {
                        display: block;
                        height: 40px;
                        line-height: 40px;
                        border-radius: 10px;
                        font-size: 16px;
                        font-weight: 600;
                        text-decoration: none;
                        text-align: center;
                        color: #ffffff;
                    }

                        section.config-store form div.card.card-info .card-body .product-actions ul li a.all {
                            background-color: #D25D3E;
                            width: 120px;
                        }

                        section.config-store form div.card.card-info .card-body .product-actions ul li a.small-device-toggle2 {
                            width: 40px;
                            padding: 0;
                            box-shadow: 0px 7px 10px rgba(201, 201, 201, 0.4);
                            background: #ffffff url(../images/icons/btn_filter_black.svg) center center no-repeat;
                            display: none;
                        }

                            section.config-store form div.card.card-info .card-body .product-actions ul li a.small-device-toggle2:hover {
                                background: #ffffff url(../images/icons/btn_filter_orange.svg) center center no-repeat;
                            }

                        section.config-store form div.card.card-info .card-body .product-actions ul li a.toggle-product-sets {
                            background-color: #F8E5E0;
                            color: #201904;
                            width: 100%;
                            margin-top: 10px;
                        }

                            section.config-store form div.card.card-info .card-body .product-actions ul li a.toggle-product-sets .fa {
                                color: #D25D3E;
                                font-weight: bolder;
                                font-size: 18px;
                                margin-left: 10px;
                            }

                    section.config-store form div.card.card-info .card-body .product-actions ul li div.add-set {
                        position: relative;
                        margin: 0 10px;
                    }

                        section.config-store form div.card.card-info .card-body .product-actions ul li div.add-set a.add-product-set {
                            background-color: #201904;
                            width: 200px;
                        }

                        section.config-store form div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action {
                            position: absolute;
                            background-color: #ffffff;
                            left: 50%;
                            top: 40px;
                            transform: translateX(-50%);
                            box-shadow: 2px 2px 17px rgba(32, 25, 4, 0.17);
                            border-radius: 10%;
                            padding: 10px;
                            width: 90%;
                            z-index: 40;
                            display: none;
                        }

                            section.config-store form div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action button {
                                display: block;
                                width: 100%;
                                border: none;
                                height: 42px;
                                font-size: 18px;
                                font-weight: 500;
                                text-align: left;
                                color: #201904;
                                background-color: #ffffff;
                                border-radius: 10px;
                                padding: 0 15px;
                            }

                                section.config-store form div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action button.active {
                                    color: #ffffff;
                                    background-color: #D25D3E;
                                }

                    section.config-store form div.card.card-info .card-body .product-actions ul li:nth-child(2) {
                        display: none;
                    }

            section.config-store form div.card.card-set-outer {
                position: relative;
            }

                section.config-store form div.card.card-set-outer .product-sets .set-outer {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    align-items: flex-start;
                    margin-bottom: 12px;
                }

                    section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-checkbox {
                        width: 40px;
                        margin-top: 35px;
                    }

                    section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product {
                        border: 1px solid #F0EDE5;
                        border-radius: 10px;
                        width: calc(100% - 40px);
                        padding: 20px;
                    }

                        section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product ul {
                            list-style: none;
                            margin: 0;
                            padding: 0;
                            display: flex;
                            flex-direction: row;
                            align-items: center;
                        }

                            section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li img.icon {
                                display: block;
                                margin-right: 14px;
                                width: 56px;
                                height: 48px;
                            }

                            section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li span {
                                font-size: 18px;
                                line-height: 22px;
                                font-weight: 600;
                                color: #201904;
                                display: block;
                            }

                                section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li span.qty {
                                    font-size: 12px;
                                    line-height: 25px;
                                    font-weight: 500;
                                    color: #7F7F84;
                                }

                            section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li a {
                                display: block;
                                width: 36px;
                                height: 36px;
                                background: #F6F4F0;
                                color: #212121;
                                text-decoration: none;
                                text-align: center;
                                line-height: 36px;
                                border-radius: 4px;
                            }

                            section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li:nth-child(1) {
                                width: 56px;
                            }

                            section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li:nth-child(2) {
                                width: calc(100% - 92px);
                                padding: 0 15px;
                            }

                            section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li:nth-child(3) {
                                width: 36px;
                            }

                        section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table {
                            display: none;
                            margin: 20px 0 0;
                        }

                            section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table {
                                width: 100%;
                            }

                                section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th {
                                    padding: 5px 0;
                                    font-size: 12px;
                                    color: #7F7F84;
                                    text-transform: uppercase;
                                }

                                    section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:first-of-type {
                                        width: calc(100% - 100px);
                                        text-align: left;
                                    }

                                    section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:last-of-type {
                                        width: 100px;
                                        text-align: center;
                                    }

                                section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr {
                                    border-bottom: 1px solid #F0EDE5;
                                }

                                    section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
                                        padding: 8px 0;
                                    }

                                        section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td img {
                                            width: 70px;
                                        }

                                        section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail {
                                            margin: 0 10px;
                                        }

                                            section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span {
                                                color: #7F7F84;
                                                font-size: 12px;
                                                line-height: 18px;
                                                font-weight: 500;
                                                display: block;
                                            }

                                                section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span.title {
                                                    font-size: 16px;
                                                    font-weight: 600;
                                                    color: #201904;
                                                    line-height: 25px;
                                                }

                                        section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:first-of-type {
                                            display: flex;
                                            align-items: center;
                                        }

                                        section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:last-of-type {
                                            text-align: center;
                                            color: #201904;
                                            font-size: 16px;
                                            font-weight: 600;
                                        }

                                    section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type {
                                        border-bottom: none;
                                    }

                                        section.config-store form div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type td {
                                            padding-bottom: 0;
                                        }

                section.config-store form div.card.card-set-outer .product-actions ul {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                }

                    section.config-store form div.card.card-set-outer .product-actions ul li {
                        display: flex;
                    }

                        section.config-store form div.card.card-set-outer .product-actions ul li a {
                            display: block;
                            height: 40px;
                            line-height: 40px;
                            border-radius: 10px;
                            font-size: 16px;
                            font-weight: 600;
                            text-decoration: none;
                            text-align: center;
                            color: #ffffff;
                        }

                            section.config-store form div.card.card-set-outer .product-actions ul li a.all {
                                background-color: #D25D3E;
                                width: 120px;
                            }

                        section.config-store form div.card.card-set-outer .product-actions ul li div.add-set {
                            position: relative;
                            margin: 0 10px;
                        }

                            section.config-store form div.card.card-set-outer .product-actions ul li div.add-set a.add-product-set {
                                background-color: #201904;
                                width: 250px;
                            }

                            section.config-store form div.card.card-set-outer .product-actions ul li div.add-set div.add-set-action {
                                position: absolute;
                                background-color: #ffffff;
                                left: 50%;
                                top: 40px;
                                transform: translateX(-50%);
                                box-shadow: 2px 2px 17px rgba(32, 25, 4, 0.17);
                                border-radius: 10%;
                                padding: 10px;
                                width: 90%;
                                z-index: 40;
                                display: none;
                            }

                                section.config-store form div.card.card-set-outer .product-actions ul li div.add-set div.add-set-action button {
                                    display: block;
                                    width: 100%;
                                    border: none;
                                    height: 42px;
                                    font-size: 18px;
                                    font-weight: 500;
                                    text-align: left;
                                    color: #201904;
                                    background-color: #ffffff;
                                    border-radius: 10px;
                                    padding: 0 15px;
                                }

                                    section.config-store form div.card.card-set-outer .product-actions ul li div.add-set div.add-set-action button.active {
                                        color: #ffffff;
                                        background-color: #D25D3E;
                                    }

                        section.config-store form div.card.card-set-outer .product-actions ul li:nth-child(2) {
                            display: none;
                        }

            section.config-store form div.card.card-selection .card-body .no-selection {
                min-height: 329px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
            }

                section.config-store form div.card.card-selection .card-body .no-selection p {
                    font-size: 20px;
                    color: #7F7F84;
                    font-weight: 500;
                    line-height: 25px;
                    margin: 0;
                    padding: 0;
                    width: 50%;
                }

                section.config-store form div.card.card-selection .card-body .no-selection img {
                    width: 90px;
                    margin-bottom: 30px;
                }

            section.config-store form div.product-set-group .card.card-set-group {
                margin-bottom: 15px;
            }

                section.config-store form div.product-set-group .card.card-set-group ul.more-actions {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    align-items: center;
                }

                    section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li {
                        position: relative;
                    }

                        section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li img {
                            width: 56px;
                            height: 48px;
                        }

                        section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li span {
                            font-size: 18px;
                            line-height: 22px;
                            font-weight: 600;
                            color: #201904;
                            display: block;
                        }

                            section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li span.qty {
                                font-size: 12px;
                                line-height: 25px;
                                font-weight: 500;
                                color: #7F7F84;
                            }

                        section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li a.toggle-table {
                            display: block;
                            width: 36px;
                            height: 36px;
                            background: #F6F4F0;
                            color: #212121;
                            text-decoration: none;
                            text-align: center;
                            line-height: 36px;
                            border-radius: 4px;
                        }

                        section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li a.more-action-toggle {
                            display: block;
                            line-height: 36px;
                            color: #201904;
                            font-size: 16px;
                            font-weight: 600;
                            text-decoration: none;
                            padding: 0 10px;
                        }

                        section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions {
                            position: absolute;
                            left: 50%;
                            top: 36px;
                            transform: translateX(-50%);
                            display: none;
                            background-color: #ffffff;
                            width: 100px;
                            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                            border-radius: 10px;
                            overflow: hidden;
                            flex-direction: column;
                            z-index: 10;
                        }

                            section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li {
                                display: block;
                                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                            }

                                section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li a {
                                    display: block;
                                    line-height: 30px;
                                    font-size: 13px;
                                    color: #201904;
                                    text-decoration: none;
                                    text-align: center;
                                }

                                section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li:last-of-type {
                                    border-bottom: none;
                                }

                        section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(1) {
                            width: 56px;
                        }

                        section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(2) {
                            width: calc(100% - 242px);
                            padding: 0 15px;
                        }

                        section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(3) {
                            width: 150px;
                        }

                        section.config-store form div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(4) {
                            width: 36px;
                        }

                section.config-store form div.product-set-group .card.card-set-group div.product-set {
                    display: none;
                }

                    section.config-store form div.product-set-group .card.card-set-group div.product-set span.heading {
                        color: #7F7F84;
                        font-weight: 600;
                        font-size: 12px;
                        display: block;
                        line-height: 20px;
                        margin: 15px 0;
                    }

                    section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer {
                        display: flex;
                        flex-direction: row;
                        flex-wrap: nowrap;
                        align-items: flex-start;
                        margin-bottom: 12px;
                    }

                        section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product {
                            border: 1px solid #F0EDE5;
                            border-radius: 10px;
                            width: 100%;
                            padding: 20px;
                        }

                            section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul {
                                list-style: none;
                                margin: 0;
                                padding: 0;
                                display: flex;
                                flex-direction: row;
                                align-items: center;
                            }

                                section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li img.icon {
                                    display: block;
                                    margin-right: 14px;
                                    width: 56px;
                                    height: 48px;
                                }

                                section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li span {
                                    font-size: 18px;
                                    line-height: 22px;
                                    font-weight: 600;
                                    color: #201904;
                                    display: block;
                                }

                                    section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li span.qty {
                                        font-size: 12px;
                                        line-height: 25px;
                                        font-weight: 500;
                                        color: #7F7F84;
                                    }

                                section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li a {
                                    display: block;
                                    width: 36px;
                                    height: 36px;
                                    background: #F6F4F0;
                                    color: #212121;
                                    text-decoration: none;
                                    text-align: center;
                                    line-height: 36px;
                                    border-radius: 4px;
                                }

                                section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(1) {
                                    width: 56px;
                                }

                                section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(2) {
                                    width: calc(100% - 92px);
                                    padding: 0 15px;
                                }

                                section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(3) {
                                    width: 36px;
                                }

                            section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table {
                                display: none;
                                margin: 20px 0 0;
                            }

                                section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table {
                                    width: 100%;
                                }

                                    section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th {
                                        padding: 5px 0;
                                        font-size: 12px;
                                        color: #7F7F84;
                                        text-transform: uppercase;
                                    }

                                        section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:first-of-type {
                                            width: calc(100% - 100px);
                                            text-align: left;
                                        }

                                        section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:last-of-type {
                                            width: 100px;
                                            text-align: center;
                                        }

                                    section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr {
                                        border-bottom: 1px solid #F0EDE5;
                                    }

                                        section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
                                            padding: 8px 0;
                                        }

                                            section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td img {
                                                width: 70px;
                                            }

                                            section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail {
                                                margin: 0 10px;
                                            }

                                                section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span {
                                                    color: #7F7F84;
                                                    font-size: 12px;
                                                    line-height: 18px;
                                                    font-weight: 500;
                                                    display: block;
                                                }

                                                    section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span.title {
                                                        font-size: 16px;
                                                        font-weight: 600;
                                                        color: #201904;
                                                        line-height: 25px;
                                                    }

                                            section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:first-of-type {
                                                display: flex;
                                                align-items: center;
                                            }

                                            section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:last-of-type {
                                                text-align: center;
                                                color: #201904;
                                                font-size: 16px;
                                                font-weight: 600;
                                            }

                                        section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type {
                                            border-bottom: none;
                                        }

                                            section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type td {
                                                padding-bottom: 0;
                                            }

                        section.config-store form div.product-set-group .card.card-set-group div.product-set .set-outer:last-of-type {
                            margin-bottom: 0;
                        }

                section.config-store form div.product-set-group .card.card-set-group:last-of-type {
                    margin-bottom: 0;
                }

            section.config-store form .card.card-product-outer {
                position: relative;
                margin-bottom: 15px;
            }

                section.config-store form .card.card-product-outer .product-sets .set-outer {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    align-items: flex-start;
                    margin-bottom: 12px;
                }

                    section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product {
                        width: 100%;
                    }

                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions {
                            list-style: none;
                            margin: 0;
                            padding: 0;
                            display: flex;
                            flex-direction: row;
                            flex-wrap: nowrap;
                            align-items: center;
                        }

                            section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li {
                                position: relative;
                            }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li img {
                                    width: 56px;
                                    height: 48px;
                                }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li span {
                                    font-size: 18px;
                                    line-height: 22px;
                                    font-weight: 600;
                                    color: #201904;
                                    display: block;
                                }

                                    section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li span.qty {
                                        font-size: 12px;
                                        line-height: 25px;
                                        font-weight: 500;
                                        color: #7F7F84;
                                    }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li a.toggle-table {
                                    display: block;
                                    width: 36px;
                                    height: 36px;
                                    background: #F6F4F0;
                                    color: #212121;
                                    text-decoration: none;
                                    text-align: center;
                                    line-height: 36px;
                                    border-radius: 4px;
                                }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li a.more-action-toggle {
                                    display: block;
                                    line-height: 36px;
                                    color: #201904;
                                    font-size: 16px;
                                    font-weight: 600;
                                    text-decoration: none;
                                    padding: 0 10px;
                                }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions {
                                    position: absolute;
                                    right: 0;
                                    top: 36px;
                                    display: none;
                                    background-color: #ffffff;
                                    width: 220px;
                                    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                                    border-radius: 10px;
                                    overflow: hidden;
                                    flex-direction: column;
                                    z-index: 10;
                                }

                                    section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li {
                                        display: block;
                                    }

                                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li a {
                                            display: block;
                                            line-height: 40px;
                                            font-weight: 500;
                                            font-size: 18px;
                                            color: #201904;
                                            text-decoration: none;
                                            padding: 0 10px;
                                        }

                                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li:first-of-type {
                                            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                                        }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(1) {
                                    width: 56px;
                                }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(2) {
                                    width: calc(100% - 242px);
                                    padding: 0 15px;
                                }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(3) {
                                    width: 150px;
                                }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(4) {
                                    width: 36px;
                                }

                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table {
                            display: none;
                            margin: 20px 0 0;
                        }

                            section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table {
                                width: 100%;
                            }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th {
                                    padding: 5px 0;
                                    font-size: 12px;
                                    color: #7F7F84;
                                    text-transform: uppercase;
                                    text-align: center;
                                }

                                    section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:nth-child(1) {
                                        width: calc(100% - 200px);
                                        text-align: left;
                                    }

                                    section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:nth-child(2) {
                                        width: 100px;
                                    }

                                    section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:nth-child(3) {
                                        width: 100px;
                                    }

                                section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr {
                                    border-bottom: 1px solid #F0EDE5;
                                }

                                    section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
                                        padding: 8px 0;
                                        text-align: center;
                                    }

                                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td img {
                                            width: 70px;
                                            margin: 0 8px;
                                        }

                                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span {
                                            color: #7F7F84;
                                            font-size: 12px;
                                            line-height: 15px;
                                            font-weight: 500;
                                            display: block;
                                        }

                                            section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span.title {
                                                font-size: 16px;
                                                color: #201904;
                                                line-height: 20px;
                                            }

                                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td input.price {
                                            border: 1px solid #F0EDE5;
                                            height: 36px;
                                            padding: 0 15px;
                                            border-radius: 10px;
                                            display: block;
                                            width: 80px;
                                            outline: none;
                                            margin: 0 auto;
                                            text-align: center;
                                        }

                                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td a.action {
                                            display: block;
                                            width: 30px;
                                            height: 30px;
                                            line-height: 30px;
                                            color: #7F7F84;
                                            margin: 0 auto;
                                        }

                                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:nth-child(1) {
                                            display: flex;
                                            align-items: center;
                                            justify-content: flex-start;
                                            text-align: left;
                                        }

                                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:nth-child(2) {
                                            text-align: center;
                                        }

                                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:nth-child(3) {
                                            text-align: center;
                                            color: #201904;
                                            font-size: 16px;
                                            font-weight: 600;
                                            width: 80px;
                                        }

                                    section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type {
                                        border-bottom: none;
                                    }

                                        section.config-store form .card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type td {
                                            padding-bottom: 0;
                                        }

                    section.config-store form .card.card-product-outer .product-sets .set-outer:last-of-type {
                        margin-bottom: 0;
                    }

                section.config-store form .card.card-product-outer:last-of-type {
                    margin-bottom: 0;
                }

                section.config-store form .card.card-product-outer .product-actions {
                    height: 50px;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    align-items: center;
                }

                    section.config-store form .card.card-product-outer .product-actions ul {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                        display: flex;
                    }

                        section.config-store form .card.card-product-outer .product-actions ul li {
                            display: block;
                            position: relative;
                        }

                            section.config-store form .card.card-product-outer .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;
                            }

                                section.config-store form .card.card-product-outer .product-actions ul li a.all {
                                    background-color: #D25D3E;
                                }

                                section.config-store form .card.card-product-outer .product-actions ul li a.add-set {
                                    background-color: #201904;
                                }

                            section.config-store form .card.card-product-outer .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;
                            }

                                section.config-store form .card.card-product-outer .product-actions ul li ul li {
                                    display: block;
                                }

                                    section.config-store form .card.card-product-outer .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;
                                    }

                                    section.config-store form .card.card-product-outer .product-actions ul li ul li span {
                                        display: block;
                                        line-height: 42px;
                                        font-size: 18px;
                                        font-weight: 500;
                                        text-align: center;
                                    }

            section.config-store form div.card.card-payment-method table.payment-method {
                width: 100%;
                color: #201904;
            }

                section.config-store form div.card.card-payment-method table.payment-method thead tr th {
                    color: #7F7F84;
                    text-align: center;
                    font-size: 12px;
                    font-weight: 600;
                    text-transform: uppercase;
                }

                    section.config-store form div.card.card-payment-method table.payment-method thead tr th:nth-child(1) {
                        text-align: left;
                        width: 205px;
                    }

                    section.config-store form div.card.card-payment-method table.payment-method thead tr th:nth-child(2) {
                        text-align: left;
                        width: calc(100% - 420px);
                    }

                    section.config-store form div.card.card-payment-method table.payment-method thead tr th:nth-child(3) {
                        width: 140px;
                    }

                    section.config-store form div.card.card-payment-method table.payment-method thead tr th:nth-child(4) {
                        width: 75px;
                    }

                section.config-store form div.card.card-payment-method table.payment-method tbody tr td {
                    vertical-align: top;
                    padding: 10px 8px;
                }

                    section.config-store form div.card.card-payment-method table.payment-method tbody tr td strong {
                        font-size: 17px;
                        font-weight: 600;
                        line-height: 25px;
                    }

                    section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box {
                        margin: 10px 0;
                    }

                        section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance {
                            list-style: none;
                            margin: 5px 0;
                            padding: 0;
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            width: 100%;
                            border: 1px solid #F0EDE5;
                            border-radius: 8px;
                            padding: 8px 15px;
                            margin-bottom: 10px;
                        }

                            section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li {
                                text-align: left;
                            }

                                section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span {
                                    font-size: 17px;
                                    font-weight: 400;
                                    line-height: 17px;
                                    display: block;
                                }

                                    section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.expire {
                                        color: #4A4A4D;
                                        font-size: 14px;
                                        line-height: 20px;
                                    }

                                    section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.price {
                                        font-size: 16px;
                                        font-weight: 500;
                                        line-height: 16px;
                                    }

                                section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a {
                                    display: block;
                                    width: 30px;
                                    height: 30px;
                                    font-size: 17px;
                                    text-align: center;
                                    margin: 0 auto;
                                    line-height: 30px;
                                }

                                    section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a.edit {
                                        color: #7F7F84;
                                    }

                                    section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a.trash {
                                        color: #D25D3E;
                                    }

                                section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(1) {
                                    width: 40px;
                                }

                                section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(2) {
                                    width: calc(100% - 140px);
                                }

                                section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(3) {
                                    width: 100px;
                                    text-align: center;
                                }

                                section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(4) {
                                    width: 50px;
                                }

                                section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(5) {
                                    width: 50px;
                                }

                            section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance:last-of-type {
                                margin-bottom: none;
                            }

                        section.config-store form div.card.card-payment-method table.payment-method tbody tr td .allowance-box a.add-allowance {
                            display: flex;
                            justify-content: flex-end;
                            color: #D25D3E;
                            font-size: 16px;
                            font-weight: 600;
                            line-height: 22px;
                        }

                    section.config-store form div.card.card-payment-method table.payment-method tbody tr td .option {
                        display: block;
                        margin: 0 auto;
                        height: 20px;
                        width: 20px;
                        color: #7F7F84;
                    }

                    section.config-store form div.card.card-payment-method table.payment-method tbody tr td .charge-shipping span {
                        display: block;
                    }

                    section.config-store form div.card.card-payment-method table.payment-method tbody tr td .charge-shipping .action {
                        display: flex;
                        justify-content: flex-start;
                        align-items: center;
                        margin-top: 5px;
                    }

                        section.config-store form div.card.card-payment-method table.payment-method tbody tr td .charge-shipping .action span {
                            display: block;
                            font-size: 15px;
                            line-height: 20px;
                            color: #4A4A4D;
                            margin-right: 15px;
                            margin-right: 20px;
                        }

                        section.config-store form div.card.card-payment-method table.payment-method tbody tr td .charge-shipping .action label {
                            margin: 0 15px 0 0;
                            padding: 0;
                            display: inherit;
                            align-items: center;
                            color: #4A4A4D;
                            cursor: pointer;
                        }

                    section.config-store form div.card.card-payment-method table.payment-method tbody tr td:nth-child(3), section.config-store form div.card.card-payment-method table.payment-method tbody tr td:nth-child(4) {
                        text-align: center;
                    }

            section.config-store form .add-payment {
                position: absolute;
                right: 15px;
                top: 0;
                display: block;
                line-height: 20px;
                font-weight: 600;
                font-size: 16px;
                color: #D25D3E;
                text-decoration: none;
            }

            section.config-store form div.card.card-payment-program table.payment-program {
                width: 100%;
                color: #201904;
            }

                section.config-store form div.card.card-payment-program table.payment-program thead tr th {
                    color: #7F7F84;
                    text-align: center;
                    font-size: 12px;
                    font-weight: 600;
                    text-transform: uppercase;
                }

                    section.config-store form div.card.card-payment-program table.payment-program thead tr th:nth-child(1) {
                        text-align: left;
                        width: 255px;
                    }

                    section.config-store form div.card.card-payment-program table.payment-program thead tr th:nth-child(2) {
                        text-align: left;
                        width: calc(100% - 490px);
                    }

                    section.config-store form div.card.card-payment-program table.payment-program thead tr th:nth-child(3) {
                        width: 140px;
                    }

                    section.config-store form div.card.card-payment-program table.payment-program thead tr th:nth-child(4) {
                        width: 100px;
                    }

                section.config-store form div.card.card-payment-program table.payment-program tbody tr {
                    border-bottom: 1px solid #F0EDE5;
                }

                    section.config-store form div.card.card-payment-program table.payment-program tbody tr td {
                        vertical-align: top;
                        padding: 15px 8px;
                    }

                        section.config-store form div.card.card-payment-program table.payment-program tbody tr td strong {
                            font-size: 17px;
                            font-weight: 600;
                            line-height: 25px;
                        }

                        section.config-store form div.card.card-payment-program table.payment-program tbody tr td ul {
                            margin: 0;
                            padding: 0;
                        }

                        section.config-store form div.card.card-payment-program table.payment-program tbody tr td .option {
                            display: block;
                            margin: 0 auto;
                            height: 20px;
                            width: 20px;
                            color: #7F7F84;
                        }

                        section.config-store form div.card.card-payment-program table.payment-program tbody tr td .charge-shipping span {
                            display: block;
                        }

                        section.config-store form div.card.card-payment-program table.payment-program tbody tr td .charge-shipping .action {
                            display: flex;
                            justify-content: flex-start;
                            align-items: center;
                            margin-top: 5px;
                        }

                            section.config-store form div.card.card-payment-program table.payment-program tbody tr td .charge-shipping .action span {
                                display: block;
                                font-size: 15px;
                                line-height: 20px;
                                color: #4A4A4D;
                                margin-right: 15px;
                                margin-right: 20px;
                            }

                            section.config-store form div.card.card-payment-program table.payment-program tbody tr td .charge-shipping .action label {
                                margin: 0 15px 0 0;
                                padding: 0;
                                display: inherit;
                                align-items: center;
                                color: #4A4A4D;
                                cursor: pointer;
                            }

                        section.config-store form div.card.card-payment-program table.payment-program tbody tr td:nth-child(3), section.config-store form div.card.card-payment-program table.payment-program tbody tr td:nth-child(4) {
                            text-align: center;
                        }

                    section.config-store form div.card.card-payment-program table.payment-program tbody tr:last-of-type {
                        border: none;
                    }

                        section.config-store form div.card.card-payment-program table.payment-program tbody tr:last-of-type td {
                            padding-bottom: 10px;
                        }

            section.config-store form div.card.card-users table.users-table {
                color: #201904;
                width: 100%;
            }

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

                    section.config-store form div.card.card-users table.users-table thead tr th:nth-child(1) {
                        width: 28px;
                    }

                    section.config-store form div.card.card-users table.users-table thead tr th:nth-child(2) {
                        width: auto;
                    }

                    section.config-store form div.card.card-users table.users-table thead tr th:nth-child(3) {
                        width: 220px;
                    }

                    section.config-store form div.card.card-users table.users-table thead tr th:nth-child(4) {
                        width: 130px;
                    }

                    section.config-store form div.card.card-users table.users-table thead tr th:nth-child(5) {
                        width: 160px;
                    }

                    section.config-store form div.card.card-users table.users-table thead tr th:nth-child(6) {
                        width: 160px;
                    }

                    section.config-store form div.card.card-users table.users-table thead tr th:nth-child(7) {
                        width: 90px;
                        text-align: center;
                    }

                    section.config-store form div.card.card-users table.users-table thead tr th:nth-child(8) {
                        width: 40px;
                    }

                section.config-store form div.card.card-users table.users-table tbody tr {
                    border-bottom: 1px solid #D8D8D8;
                }

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

                        section.config-store form div.card.card-users 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.config-store form div.card.card-users table.users-table tbody tr td select.program, section.config-store form div.card.card-users table.users-table tbody tr td select.role {
                                background-color: #ffffff;
                            }

                        section.config-store form div.card.card-users table.users-table tbody tr td input[type=text], section.config-store form div.card.card-users 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.config-store form div.card.card-users 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: 60px;
                            top: 30px;
                            border-radius: 10px;
                            display: none;
                            z-index: 10;
                        }

                            section.config-store form div.card.card-users table.users-table tbody tr td ul li {
                                padding: 4px;
                            }

                                section.config-store form div.card.card-users 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.config-store form div.card.card-users table.users-table tbody tr td ul li a:hover {
                                        background-color: #F0EDE5;
                                    }

                        section.config-store form div.card.card-users table.users-table tbody tr td .image img {
                            float: left;
                            margin-right: 10px;
                        }

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

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

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

                        section.config-store form div.card.card-users table.users-table tbody tr td:nth-child(7) {
                            text-align: right;
                        }

                    section.config-store form div.card.card-users table.users-table tbody tr:first-of-type {
                        border-bottom-color: transparent;
                    }

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

                    section.config-store form div.card.card-users table.users-table tbody tr:last-of-type {
                        border-bottom: none;
                    }

            section.config-store form div.card.card-users-person label.info {
                color: #201904;
                display: block;
                line-height: 20px;
                font-size: 16px;
                font-weight: 500;
            }

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

                section.config-store form div.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.config-store form div.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.config-store form div.card.card-users-person .allowance-box {
                position: relative;
            }

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

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

                    section.config-store form div.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.config-store form div.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.config-store form div.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.config-store form div.card.card-users-person .allowance-box div.allowance span strong {
                            display: block;
                            line-height: 20px;
                            font-size: 16px;
                            font-weight: 500;
                            color: #201904;
                        }

                        section.config-store form div.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.config-store form a.add-method {
                position: absolute;
                right: 15px;
                top: 0;
                color: #D25D3E;
                text-decoration: none;
            }

                section.config-store form a.add-method span.text {
                    display: none;
                }

                section.config-store form a.add-method span.add {
                    display: inline-block;
                }

            section.config-store form div.card.card-shipping table.shipping {
                width: 100%;
                margin-top: 15px;
            }

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

                    section.config-store form div.card.card-shipping table.shipping thead tr th:nth-child(1) {
                        width: 200px;
                    }

                    section.config-store form div.card.card-shipping table.shipping thead tr th:nth-child(2) {
                        width: calc(100% - 405px);
                    }

                    section.config-store form div.card.card-shipping table.shipping thead tr th:nth-child(3) {
                        width: 120px;
                    }

                    section.config-store form div.card.card-shipping table.shipping thead tr th:nth-child(4) {
                        width: 85px;
                    }

                section.config-store form div.card.card-shipping table.shipping tbody tr {
                    border-bottom: 1px solid #F0EDE5;
                }

                    section.config-store form div.card.card-shipping table.shipping tbody tr td {
                        text-align: center;
                        padding: 15px 5px;
                        vertical-align: top;
                    }

                        section.config-store form div.card.card-shipping table.shipping tbody tr td.no-method div {
                            font-size: 20px;
                            font-weight: 600;
                            line-height: 25px;
                            display: block;
                            text-align: center;
                            padding: 50px;
                            color: #7F7F84;
                            text-align: center;
                        }

                            section.config-store form div.card.card-shipping table.shipping tbody tr td.no-method div a {
                                display: inline-block;
                                color: #D25D3E;
                                text-decoration: none;
                            }

                        section.config-store form div.card.card-shipping table.shipping tbody tr td ul {
                            margin: 5px 0 0;
                            padding: 0;
                            list-style: none;
                            display: flex;
                        }

                        section.config-store form div.card.card-shipping table.shipping tbody tr td strong {
                            font-size: 17px;
                            font-weight: 600;
                            line-height: 24px;
                        }

                        section.config-store form div.card.card-shipping table.shipping tbody tr td span {
                            display: block;
                            width: 100%;
                            font-size: 16px;
                            line-height: 20px;
                        }

                        section.config-store form div.card.card-shipping table.shipping tbody tr td input[type=text] {
                            border-radius: 10px;
                            border: 1px solid #F0EDE5;
                            width: 200px;
                            height: 36px;
                            padding: 0 15px;
                            border-radius: 6px;
                            margin-top: 5px;
                        }

                        section.config-store form div.card.card-shipping table.shipping tbody tr td a.action {
                            display: table;
                            width: 36px;
                            height: 20px;
                            line-height: 20px;
                            margin: 0 auto;
                            background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                        }

                            section.config-store form div.card.card-shipping table.shipping tbody tr td a.action:hover {
                                background-image: url(../images/icons/btn_action_orange.svg);
                            }

                        section.config-store form div.card.card-shipping table.shipping tbody tr td:nth-child(2) {
                            text-align: left;
                        }

                    section.config-store form div.card.card-shipping table.shipping tbody tr:last-of-type {
                        border-bottom: none;
                    }

            section.config-store form div.card.card-shipping .payment-option {
                display: flex;
                justify-content: space-between;
                padding: 20px 15px;
            }

                section.config-store form div.card.card-shipping .payment-option strong {
                    display: block;
                    line-height: 18px;
                    font-size: 16px;
                    font-weight: 500;
                }

            section.config-store form div.card.card-shipping label {
                margin: 0 15px 0 0;
                padding: 0;
                display: flex;
                align-items: center;
                align-items: center;
                color: #4A4A4D;
                cursor: pointer;
                font-size: 16px;
                font-weight: 400;
            }

            section.config-store form div.card.card-shipping .tax-by-toggle {
                padding: 25px 25px;
                border-top: 1px solid #F0EDE5;
                display: none;
            }

                section.config-store form div.card.card-shipping .tax-by-toggle div.tax-by {
                    margin: 0;
                    padding: 0;
                }

                    section.config-store form div.card.card-shipping .tax-by-toggle div.tax-by span.title {
                        font-size: 18px;
                        font-weight: 500;
                        line-height: 22px;
                        color: #201904;
                        margin-bottom: 15px;
                        display: block;
                    }

                    section.config-store form div.card.card-shipping .tax-by-toggle div.tax-by label {
                        margin-bottom: 5px;
                    }

                        section.config-store form div.card.card-shipping .tax-by-toggle div.tax-by label:last-of-type {
                            margin-bottom: 0;
                        }

                section.config-store form div.card.card-shipping .tax-by-toggle hr {
                    margin: 25px 0;
                }

                section.config-store form div.card.card-shipping .tax-by-toggle div.country-state {
                    padding: 0;
                    margin: 0;
                }

                    section.config-store form div.card.card-shipping .tax-by-toggle div.country-state span {
                        display: block;
                        color: #201904;
                        font-weight: 500;
                        font-size: 18px;
                        line-height: 20px;
                        margin: 20px 0;
                    }

                section.config-store form div.card.card-shipping .tax-by-toggle table.country-state {
                    margin: 0;
                    width: 100%;
                    margin: 15px auto 0;
                }

                    section.config-store form div.card.card-shipping .tax-by-toggle table.country-state thead tr th {
                        padding: 8px 0;
                        font-size: 12px;
                        text-transform: uppercase;
                        color: #7F7F84;
                        font-weight: 600;
                        text-align: left;
                        line-height: 30px;
                    }

                        section.config-store form div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(1) {
                            width: 40%;
                        }

                        section.config-store form div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(2) {
                            width: calc(60% - 85px);
                        }

                        section.config-store form div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(3) {
                            width: 85px;
                            text-align: center;
                        }

                    section.config-store form div.card.card-shipping .tax-by-toggle table.country-state tbody tr td {
                        padding: 5px 0;
                    }

                        section.config-store form div.card.card-shipping .tax-by-toggle table.country-state tbody tr td strong {
                            font-size: 17px;
                            font-weight: 600;
                            line-height: 24px;
                        }

                        section.config-store form div.card.card-shipping .tax-by-toggle table.country-state tbody tr td span {
                            display: block;
                            width: 100%;
                            font-size: 16px;
                            line-height: 20px;
                        }

                        section.config-store form div.card.card-shipping .tax-by-toggle table.country-state tbody tr td input[type=text] {
                            border-radius: 10px;
                            border: 1px solid #F0EDE5;
                            width: 200px;
                            height: 36px;
                            padding: 0 15px;
                            border-radius: 6px;
                            margin-top: 0;
                        }

                        section.config-store form div.card.card-shipping .tax-by-toggle table.country-state tbody tr td a.action {
                            text-decoration: none;
                            display: table;
                            width: 36px;
                            height: 36px;
                            line-height: 36px;
                            margin: 0 auto;
                            background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                        }

                            section.config-store form div.card.card-shipping .tax-by-toggle table.country-state tbody tr td a.action:hover {
                                background-image: url(../images/icons/btn_action_orange.svg);
                            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                section.config-store form a.new-user .fa {
                    font-size: 13px;
                }

                section.config-store form a.new-user:hover {
                    background-color: #C64F2F;
                }

                section.config-store form a.new-user:focus {
                    background-color: #DC836A;
                }

            section.config-store form .quota-table-header {
                list-style: none;
                margin: 50px 28px 20px;
                padding: 0;
                display: flex;
                flex-wrap: nowrap;
                font-size: 12px;
                line-height: 12px;
                font-weight: 600;
                color: #7F7F84;
                text-transform: uppercase;
            }

                section.config-store form .quota-table-header li {
                    display: block;
                }

                    section.config-store form .quota-table-header li:nth-child(1) {
                        width: 526px;
                    }

                    section.config-store form .quota-table-header li:nth-child(2) {
                        width: 162px;
                    }

                    section.config-store form .quota-table-header li:nth-child(3) {
                        width: 230px;
                    }

                    section.config-store form .quota-table-header li:nth-child(4) {
                        width: 136px;
                    }

            section.config-store form .quota-group-box .quota-group {
                background-color: #ffffff;
                border-radius: 10px;
                padding: 30px;
                margin-bottom: 15px;
            }

                section.config-store form .quota-group-box .quota-group .quota {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    align-items: center;
                }

                    section.config-store form .quota-group-box .quota-group .quota img {
                        width: 56px;
                        height: 48px;
                        margin: 0 14px 0 20px;
                    }

                    section.config-store form .quota-group-box .quota-group .quota span {
                        font-size: 15px;
                        font-weight: 500;
                        color: #4A4A4D;
                        display: block;
                        text-align: left;
                    }

                        section.config-store form .quota-group-box .quota-group .quota span.title {
                            display: block;
                            font-size: 12px;
                            font-weight: 500;
                            color: #7F7F84;
                            width: 418px;
                        }

                            section.config-store form .quota-group-box .quota-group .quota span.title strong {
                                font-size: 18px;
                                font-weight: 600;
                                line-height: 22px;
                                color: #201904;
                                display: block;
                            }

                        section.config-store form .quota-group-box .quota-group .quota span.quota {
                            width: 160px;
                        }

                        section.config-store form .quota-group-box .quota-group .quota span.payment-structure {
                            width: 238px;
                        }

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

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

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

                section.config-store form .quota-group-box .quota-group .quota-result {
                    margin-top: 15px;
                    display: none;
                    padding-left: 65px;
                }

                    section.config-store form .quota-group-box .quota-group .quota-result .quota-sets {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                        width: 100%;
                        display: flex;
                        flex-wrap: nowrap;
                        justify-content: space-between;
                        font-size: 12px;
                        line-height: 25px;
                        font-weight: 600;
                        color: #7F7F84;
                        text-transform: uppercase;
                    }

                    section.config-store form .quota-group-box .quota-group .quota-result .quota-detail {
                        border-radius: 10px;
                        border: 1px solid #F0EDE5;
                        padding: 15px;
                        margin-left: 0;
                    }

                        section.config-store form .quota-group-box .quota-group .quota-result .quota-detail .detail {
                            margin-bottom: 10px;
                            display: flex;
                            flex-direction: row;
                            justify-content: space-between;
                            align-items: center;
                        }

                            section.config-store form .quota-group-box .quota-group .quota-result .quota-detail .detail img {
                                width: 56px;
                                height: 48px;
                            }

                            section.config-store form .quota-group-box .quota-group .quota-result .quota-detail .detail span {
                                display: block;
                                font-size: 12px;
                                font-weight: 500;
                                color: #7F7F84;
                                text-align: left;
                                width: calc(100% - 86px);
                                padding: 0 15px;
                            }

                                section.config-store form .quota-group-box .quota-group .quota-result .quota-detail .detail span strong {
                                    font-size: 18px;
                                    font-weight: 600;
                                    line-height: 22px;
                                    color: #201904;
                                    display: block;
                                }

                            section.config-store form .quota-group-box .quota-group .quota-result .quota-detail .detail a.action {
                                display: block;
                                width: 30px;
                                height: 30px;
                                background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                            }

                                section.config-store form .quota-group-box .quota-group .quota-result .quota-detail .detail a.action:hover {
                                    background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                                }

                            section.config-store form .quota-group-box .quota-group .quota-result .quota-detail .detail:last-of-type {
                                margin-bottom: 0;
                            }

                    section.config-store form .quota-group-box .quota-group .quota-result:last-of-type {
                        margin-bottom: 0;
                    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                section.config-store form div.search.no-margin {
                    margin: 0;
                }

            section.config-store form div.action {
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }

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

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

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

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

                        section.config-store form div.action a.download:hover {
                            color: #D25D3E;
                            background: transparent url(../images/icons/icon_export_orange.svg) 80px center no-repeat;
                        }

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

                        section.config-store form div.action a.new-user .fa {
                            font-size: 18px;
                            margin-right: 5px;
                        }

                        section.config-store form div.action a.new-user:hover {
                            background-color: #C64F2F;
                        }

                        section.config-store form div.action a.new-user:focus {
                            background-color: #DC836A;
                        }

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

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

                    section.config-store form div.actions button.back {
                        color: #7F7F84;
                    }

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

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

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

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

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

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

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

    section.config-store-created {
        width: 100vw;
        height: calc(100vh - 64px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

        section.config-store-created p {
            margin: 25px 0 15px;
            padding: 0;
            font-size: 28px;
            font-weight: 500;
            line-height: 35px;
            width: 20%;
        }

        section.config-store-created a {
            display: block;
            color: #D25D3E;
            font-size: 16px;
            line-height: 20px;
            font-weight: 600;
        }

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

        section.store .title-actions form {
            margin-right: 10px;
            display: flex;
            justify-content: flex-end;
            height: 52px;
        }

            section.store .title-actions form div.search {
                position: relative;
                /*display: table;*/
                border-radius: 10px;
                overflow: hidden;
                height: inherit;
                background: #ffffff;
            }

                section.store .title-actions form div.search button.submit {
                    width: 52px;
                    height: inherit;
                    border: none;
                    float: right;
                    border-radius: 10px;
                    cursor: pointer;
                    transition: all 0.3s ease-out;
                    position: relative;
                    right: 0;
                    z-index: 1;
                    background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
                }

                    section.store .title-actions form div.search button.submit:hover {
                        background-image: url(../images/icons/icon_search_orange.svg);
                    }

                section.store .title-actions form div.search input.search {
                    width: 300px;
                    min-width: 52px;
                    height: inherit;
                    border: none;
                    float: left;
                    background: transparent;
                    position: relative;
                    padding: 0 15px;
                    z-index: 1;
                    transition: width 0.6s;
                    outline: none;
                    color: #4a4a4d;
                    opacity: 1;
                }

        section.store .title-actions a.request-store {
            background-color: #D25D3E;
            color: #ffffff;
            min-width: 52px;
            display: flex;
            justify-content: center;
            text-align: center;
            height: 52px;
            line-height: 52px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            padding: 0 15px;
        }

            section.store .title-actions a.request-store span.text {
                display: block;
                line-height: inherit;
            }

            section.store .title-actions a.request-store .fa {
                line-height: inherit;
                margin-right: 8px;
                display: block;
            }

            section.store .title-actions a.request-store:hover {
                background-color: #C64F2F;
            }

            section.store .title-actions a.request-store:focus {
                background-color: #DC836A;
            }

    section.store div.pending-store-box div.pending-store {
        background: #D25D3E url(../images/icons/circles.png) right center no-repeat;
        border-radius: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 12px;
        color: #ffffff;
    }

        section.store div.pending-store-box div.pending-store img.icon {
            width: 97px;
            height: 87px;
        }

        section.store div.pending-store-box div.pending-store div.details {
            width: calc(100% - 275px);
            padding: 0 15px;
        }

            section.store div.pending-store-box div.pending-store div.details strong {
                font-size: 19px;
                display: block;
                font-weight: 600;
                line-height: 24px;
            }

            section.store div.pending-store-box div.pending-store div.details p {
                margin: 0;
                padding: 0;
                font-size: 15px;
                font-weight: 400;
                line-height: 19px;
            }

            section.store div.pending-store-box div.pending-store div.details span {
                font-size: 13px;
                line-height: 19px;
                font-weight: 400;
            }

        section.store div.pending-store-box div.pending-store div.details2 {
            width: calc(100% - 275px);
            padding: 0 15px;
            display: none;
        }

            section.store div.pending-store-box div.pending-store div.details2 p {
                margin: 0;
                padding: 0;
                font-size: 15px;
                font-weight: 400;
                line-height: 19px;
            }

            section.store div.pending-store-box div.pending-store div.details2 span {
                font-size: 13px;
                line-height: 19px;
                font-weight: 400;
            }

        section.store div.pending-store-box div.pending-store a.configure {
            display: block;
            margin-top: 10px;
            width: 178px;
            height: 36px;
            background: url(../images/icons/btn_configure_store_black.svg) center center no-repeat;
        }

            section.store div.pending-store-box div.pending-store a.configure:hover {
                background: url(../images/icons/btn_configure_store_orange.svg) center center no-repeat;
            }

    section.store div.store-list-box .store-list {
        display: flex;
        flex-wrap: nowrap;
        background-color: #ffffff;
        border-radius: 10px;
        overflow: hidden;
        padding: 12px;
        margin-bottom: 15px;
    }

        section.store div.store-list-box .store-list img {
            width: 110px;
            height: 110px;
        }

        section.store div.store-list-box .store-list div.details {
            width: calc(100% - 220px);
            height: 110px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 10px 15px;
        }

            section.store div.store-list-box .store-list div.details p {
                margin: 0;
                padding: 0;
                font-size: 15px;
                font-weight: 400;
                color: #4A4A4D;
            }

                section.store div.store-list-box .store-list div.details p strong {
                    display: block;
                    font-size: 19px;
                    font-weight: 600;
                    line-height: 24px;
                }

            section.store div.store-list-box .store-list div.details ul {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
            }

                section.store div.store-list-box .store-list div.details ul li {
                    padding-right: 15px;
                    color: #4A4A4D;
                    font-size: 13px;
                    font-weight: 400;
                }

                    section.store div.store-list-box .store-list div.details ul li i {
                        display: inline-block;
                        color: #D25D3E;
                        margin-right: 5px;
                    }

                    section.store div.store-list-box .store-list div.details ul li em {
                        font-style: normal;
                        color: #D25D3E;
                    }

        section.store div.store-list-box .store-list div.details2 {
            display: none;
        }

            section.store div.store-list-box .store-list div.details2 ul {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
            }

                section.store div.store-list-box .store-list div.details2 ul li {
                    padding-right: 15px;
                    color: #4A4A4D;
                    font-size: 13px;
                    font-weight: 400;
                }

                    section.store div.store-list-box .store-list div.details2 ul li i {
                        display: inline-block;
                        color: #D25D3E;
                        margin-right: 5px;
                    }

                    section.store div.store-list-box .store-list div.details2 ul li em {
                        font-style: normal;
                    }

        section.store div.store-list-box .store-list div {
            width: 120px;
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
        }

            section.store div.store-list-box .store-list div a {
                line-height: 20px;
                padding-left: 15px;
                text-decoration: none;
            }

                section.store div.store-list-box .store-list div a.status {
                    display: block;
                    width: 20px;
                    height: 20px;
                    line-height: 30px;
                    background: url(../images/icons/bell_2.svg) center center no-repeat;
                }

                    section.store div.store-list-box .store-list div a.status.active {
                        background: url(../images/icons/bell_1.svg) center center no-repeat;
                    }

                section.store div.store-list-box .store-list div a.edit {
                    display: block;
                    height: 20px;
                    line-height: 20px;
                    color: #D25D3E;
                    font-weight: 600;
                    font-size: 16px;
                }

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

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

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

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

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

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

            section.store .card-category .card-body div.action {
                display: flex;
                justify-content: flex-end;
                position: relative;
            }

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

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

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

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

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

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

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

            section.store div.swiper-actions .slide-button button {
                background: transparent;
                width: 30px;
                height: 30px;
                font-size: 20px;
                border: none;
                outline: none;
            }

    section.store div.card.card-stats .card-body {
        border-radius: 10px;
    }

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

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

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

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

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

        section.store .time button.date {
            width: 20px;
            height: 20px;
            border: none;
            background: url(../images/icons/calendar.svg) center center no-repeat;
            background-size: 100% 100%;
            margin-left: 8px;
            outline: none;
        }

    section.store .card-chart {
        border-radius: 10px;
    }

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

    section.store .product-detail .card.card-product {
        border-radius: 10px;
        margin-bottom: 10px;
    }

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

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

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

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

    section.store div.card.card-tickets {
        border-radius: 10px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    section.store a.hide-details {
        position: absolute;
        right: 25px;
        top: 0;
        color: #D25D3E;
        font-size: 16px;
        font-weight: 600;
        line-height: 30px;
    }

        section.store a.hide-details i {
            font-weight: 600;
            font-size: 18px;
            margin-left: 8px;
            line-height: inherit;
        }

    section.store .store-view-details .card.card-store-view .store-view-box {
        color: #201904;
        display: flex;
        align-items: center;
        width: 100%;
    }

        section.store .store-view-details .card.card-store-view .store-view-box .left-side {
            border-right: 1px solid #F0EDE5;
            width: 350px;
            padding: 10px 20px 10px 10px;
        }

            section.store .store-view-details .card.card-store-view .store-view-box .left-side strong {
                display: block;
                font-size: 18px;
                font-weight: 600;
                line-height: 22px;
                margin-bottom: 5px;
            }

            section.store .store-view-details .card.card-store-view .store-view-box .left-side ul {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
                align-items: center;
                font-size: 14px;
                font-weight: 400;
                width: 100%;
                justify-content: space-between;
            }

                section.store .store-view-details .card.card-store-view .store-view-box .left-side ul li img {
                    margin-right: 5px;
                }

        section.store .store-view-details .card.card-store-view .store-view-box .right-side {
            width: calc(100% - 350px);
            padding: 10px 10px 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            section.store .store-view-details .card.card-store-view .store-view-box .right-side .stats-box {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
                width: 62%;
            }

                section.store .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat {
                    display: flex;
                    align-items: center;
                    padding-right: 10px;
                }

                    section.store .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat .stat-icon {
                        width: 46px;
                        height: 46px;
                        margin-right: 18px;
                    }

                    section.store .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat span {
                        font-size: 15px;
                        font-weight: 500;
                        line-height: 15px;
                        color: #4A4A4D;
                    }

                        section.store .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat span.number {
                            font-size: 37px;
                            font-weight: 600;
                            line-height: 37px;
                            color: #201904;
                            display: block;
                        }

            section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box {
                width: 38%;
            }

                section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    margin-bottom: 10px;
                }

                    section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span {
                        line-height: 20px;
                        font-size: 14px;
                    }

                        section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span.title {
                            text-align: left;
                        }

                        section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span.value {
                            text-align: right;
                            font-size: 12px;
                        }

                            section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span.value strong {
                                font-size: 17px;
                                font-weight: 600;
                                color: #4A4A4D;
                                line-height: 17px;
                            }

                    section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar {
                        display: block;
                        background: #F0EDE5;
                        height: 6px;
                        border-radius: 3px;
                        position: relative;
                        width: 100%;
                    }

                        section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar .bar-fill {
                            height: 6px;
                            border-radius: inherit;
                            width: 50%;
                        }

                            section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar .bar-fill.green {
                                background-color: #87AC1E;
                            }

                            section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar .bar-fill.blue {
                                background-color: #5979B7;
                            }

                    section.store .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress:last-of-type {
                        margin-bottom: 0;
                    }

    section.store form ul#store-overview-tabs {
        margin-bottom: 20px;
    }

        section.store form ul#store-overview-tabs li a {
            font-size: 20px;
            font-weight: 600;
            line-height: 25px;
            text-decoration: none;
            color: #201904;
        }

            section.store form ul#store-overview-tabs li a.active {
                color: #D25D3E;
                text-decoration: underline !important;
            }

    section.store form div#store-overview-tabs div.card.card-store-info .card-body {
        padding: 30px;
    }

        section.store form div#store-overview-tabs div.card.card-store-info .card-body label.info {
            color: #201904;
            display: block;
            line-height: 20px;
            font-size: 16px;
            font-weight: 500;
        }

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

        section.store form div#store-overview-tabs div.card.card-store-info .card-body textarea.descp {
            border: 1px solid #F0EDE5;
            height: 180px;
            padding: 15px;
            border-radius: 10px;
            display: block;
            width: 100%;
            outline: none;
        }

        section.store form div#store-overview-tabs div.card.card-store-info .card-body .image {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 180px;
            border: 1px dashed #e5e5e5;
            border-radius: 10px;
            position: relative;
            margin-bottom: 24px;
        }

            section.store form div#store-overview-tabs div.card.card-store-info .card-body .image.icon-file {
                margin-bottom: 0;
            }

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

        section.store form div#store-overview-tabs a.new-user .fa {
            font-size: 13px;
        }

        section.store form div#store-overview-tabs a.new-user:hover {
            background-color: #C64F2F;
        }

        section.store form div#store-overview-tabs a.new-user:focus {
            background-color: #DC836A;
        }

    section.store form div#store-overview-tabs div.product-set-group .card.card-set-group {
        margin-bottom: 15px;
    }

        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
        }

            section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li {
                position: relative;
            }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li img {
                    width: 56px;
                    height: 48px;
                }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li span {
                    font-size: 18px;
                    line-height: 22px;
                    font-weight: 600;
                    color: #201904;
                    display: block;
                }

                    section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li span.qty {
                        font-size: 12px;
                        line-height: 25px;
                        font-weight: 500;
                        color: #7F7F84;
                    }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li a.toggle-table {
                    display: block;
                    width: 36px;
                    height: 36px;
                    background: #F6F4F0;
                    color: #212121;
                    text-decoration: none;
                    text-align: center;
                    line-height: 36px;
                    border-radius: 4px;
                }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li a.more-action-toggle {
                    display: block;
                    line-height: 36px;
                    color: #201904;
                    font-size: 16px;
                    font-weight: 600;
                    text-decoration: none;
                    padding: 0 10px;
                }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions {
                    position: absolute;
                    left: 50%;
                    top: 36px;
                    transform: translateX(-50%);
                    display: none;
                    background-color: #ffffff;
                    width: 100px;
                    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                    border-radius: 10px;
                    overflow: hidden;
                    flex-direction: column;
                    z-index: 10;
                    font-weight: 500;
                }

                    section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li {
                        display: block;
                    }

                        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li a {
                            display: block;
                            line-height: 40px;
                            font-size: 18px;
                            color: #201904;
                            text-decoration: none;
                            padding: 0 15px;
                        }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(1) {
                    width: 56px;
                }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(2) {
                    width: calc(100% - 242px);
                    padding: 0 15px;
                }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(3) {
                    width: 150px;
                }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(4) {
                    width: 36px;
                }

        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set {
            display: none;
        }

            section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set span.heading {
                color: #7F7F84;
                font-weight: 600;
                font-size: 12px;
                display: block;
                line-height: 20px;
                margin: 15px 0;
            }

            section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: flex-start;
                margin-bottom: 12px;
            }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product {
                    border: 1px solid #F0EDE5;
                    border-radius: 10px;
                    width: 100%;
                    padding: 20px;
                }

                    section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                    }

                        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li img.icon {
                            display: block;
                            margin-right: 14px;
                            width: 56px;
                            height: 48px;
                        }

                        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li span {
                            font-size: 18px;
                            line-height: 22px;
                            font-weight: 600;
                            color: #201904;
                            display: block;
                        }

                            section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li span.qty {
                                font-size: 12px;
                                line-height: 25px;
                                font-weight: 500;
                                color: #7F7F84;
                            }

                        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li a {
                            display: block;
                            width: 36px;
                            height: 36px;
                            background: #F6F4F0;
                            color: #212121;
                            text-decoration: none;
                            text-align: center;
                            line-height: 36px;
                            border-radius: 4px;
                        }

                        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(1) {
                            width: 56px;
                        }

                        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(2) {
                            width: calc(100% - 92px);
                            padding: 0 15px;
                        }

                        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(3) {
                            width: 36px;
                        }

                    section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table {
                        display: none;
                        margin: 20px 0 0;
                    }

                        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table {
                            width: 100%;
                        }

                            section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th {
                                padding: 5px 0;
                                font-size: 12px;
                                color: #7F7F84;
                                text-transform: uppercase;
                            }

                                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:first-of-type {
                                    width: calc(100% - 100px);
                                    text-align: left;
                                }

                                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:last-of-type {
                                    width: 100px;
                                    text-align: center;
                                }

                            section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr {
                                border-bottom: 1px solid #F0EDE5;
                            }

                                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
                                    padding: 8px 0;
                                }

                                    section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td img {
                                        width: 70px;
                                    }

                                    section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail {
                                        margin: 0 10px;
                                    }

                                        section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span {
                                            color: #7F7F84;
                                            font-size: 12px;
                                            line-height: 18px;
                                            font-weight: 500;
                                            display: block;
                                        }

                                            section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span.title {
                                                font-size: 16px;
                                                color: #201904;
                                                line-height: 25px;
                                            }

                                    section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:first-of-type {
                                        display: flex;
                                        align-items: center;
                                    }

                                    section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:last-of-type {
                                        text-align: center;
                                        color: #201904;
                                        font-size: 16px;
                                        font-weight: 600;
                                    }

                                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type {
                                    border-bottom: none;
                                }

                                    section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type td {
                                        padding-bottom: 0;
                                    }

                section.store form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer:last-of-type {
                    margin-bottom: 0;
                }

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

        section.store form div#store-overview-tabs div.search input.search {
            border: none;
            background-color: transparent;
            padding: 0 15px;
            width: calc(100% - 52px);
        }

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

        section.store form div#store-overview-tabs div.search.no-margin {
            margin: 0;
        }

    section.store form div#store-overview-tabs div.more-actions {
        position: relative;
    }

        section.store form div#store-overview-tabs div.more-actions a.more-action-toggle {
            display: block;
            line-height: 36px;
            color: #201904;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            padding: 0 10px;
        }

        section.store form div#store-overview-tabs div.more-actions ul.sub-actions {
            position: absolute;
            left: 50%;
            top: 36px;
            transform: translateX(-50%);
            display: none;
            min-width: 150px;
            background-color: #ffffff;
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            overflow: hidden;
            flex-direction: column;
            z-index: 10;
            font-weight: 500;
        }

            section.store form div#store-overview-tabs div.more-actions ul.sub-actions li {
                display: block;
            }

                section.store form div#store-overview-tabs div.more-actions ul.sub-actions li a {
                    display: block;
                    line-height: 40px;
                    font-size: 18px;
                    color: #201904;
                    text-decoration: none;
                    padding: 0 25px;
                }

    section.store form div#store-overview-tabs div.action {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

        section.store form div#store-overview-tabs div.action a {
            text-decoration: none;
            line-height: 52px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

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

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

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

                section.store form div#store-overview-tabs div.action a.new-user .fa {
                    font-size: 13px;
                }

                section.store form div#store-overview-tabs div.action a.new-user:hover {
                    background-color: #C64F2F;
                }

                section.store form div#store-overview-tabs div.action a.new-user:focus {
                    background-color: #DC836A;
                }

    section.store form div#store-overview-tabs div.card.card-users table.users-table {
        color: #201904;
        width: 100%;
    }

        section.store form div#store-overview-tabs div.card.card-users table.users-table thead tr th {
            color: #7F7F84;
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

            section.store form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(1) {
                width: 28px;
            }

            section.store form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(2) {
                width: auto;
            }

            section.store form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(3) {
                width: 220px;
            }

            section.store form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(4) {
                width: 130px;
            }

            section.store form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(5) {
                width: 160px;
            }

            section.store form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(6) {
                width: 160px;
            }

            section.store form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(7) {
                width: 90px;
                text-align: center;
            }

            section.store form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(8) {
                width: 40px;
            }

        section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr {
            border-bottom: 1px solid #D8D8D8;
        }

            section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr td {
                position: relative;
                padding: 12px 5px;
                text-align: left;
                vertical-align: middle;
                font-size: 16px;
            }

                section.store form div#store-overview-tabs div.card.card-users 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.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr td select.program, section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr td select.role {
                        background-color: #ffffff;
                    }

                section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr td input[type=text], section.store form div#store-overview-tabs div.card.card-users 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.store form div#store-overview-tabs div.card.card-users 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.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr td ul li {
                        padding: 4px;
                    }

                        section.store form div#store-overview-tabs div.card.card-users 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.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr td ul li a:hover {
                                background-color: #F0EDE5;
                            }

                section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr td .image img {
                    float: left;
                    margin-right: 10px;
                }

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

                    section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr td span strong {
                        display: block;
                        font-size: 16px;
                        color: #201904;
                        line-height: 26px;
                    }

                section.store form div#store-overview-tabs div.card.card-users 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.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr td a.options:hover {
                        background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                    }

                section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr td:nth-child(7) {
                    text-align: right;
                }

            section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr:first-of-type {
                border-bottom-color: transparent;
            }

                section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr:first-of-type td input[type=text]:focus, section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr:first-of-type td input[type=email]:focus {
                    background: #ffffff;
                }

            section.store form div#store-overview-tabs div.card.card-users table.users-table tbody tr:last-of-type {
                border-bottom: none;
            }

    section.store form div#store-overview-tabs .card.card-payment-method table.payment-method {
        width: 100%;
        color: #201904;
    }

        section.store form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th {
            color: #7F7F84;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(1) {
                text-align: left;
                width: 205px;
            }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(2) {
                text-align: left;
                width: calc(100% - 445px);
            }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(3) {
                width: 140px;
            }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(4) {
                width: 100px;
            }

        section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td {
            vertical-align: top;
            padding: 10px 8px;
        }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td strong {
                font-size: 17px;
                font-weight: 600;
                line-height: 25px;
            }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box {
                margin: 10px 0;
            }

                section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance {
                    list-style: none;
                    margin: 5px 0;
                    padding: 0;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    width: 100%;
                    border: 1px solid #F0EDE5;
                    border-radius: 8px;
                    padding: 8px 15px;
                    margin-bottom: 10px;
                }

                    section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li {
                        text-align: left;
                    }

                        section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span {
                            font-size: 17px;
                            font-weight: 400;
                            line-height: 17px;
                            display: block;
                        }

                            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.title {
                                font-weight: 500;
                            }

                            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.expire {
                                color: #4A4A4D;
                                font-size: 14px;
                                line-height: 20px;
                            }

                            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.price {
                                font-size: 16px;
                                font-weight: 500;
                                line-height: 16px;
                            }

                        section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a {
                            display: block;
                            width: 30px;
                            height: 30px;
                            font-size: 17px;
                            text-align: center;
                            margin: 0 auto;
                            line-height: 30px;
                        }

                            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a.edit {
                                color: #7F7F84;
                            }

                            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a.trash {
                                color: #D25D3E;
                            }

                        section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(1) {
                            width: 40px;
                        }

                        section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(2) {
                            width: calc(100% - 140px);
                        }

                        section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(3) {
                            width: 100px;
                            text-align: center;
                        }

                        section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(4) {
                            width: 50px;
                        }

                        section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(5) {
                            width: 50px;
                        }

                    section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance:last-of-type {
                        margin-bottom: none;
                    }

                section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box a.add-allowance {
                    display: flex;
                    justify-content: flex-end;
                    color: #D25D3E;
                    font-size: 16px;
                    font-weight: 600;
                    line-height: 22px;
                }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .option {
                display: block;
                margin: 0 auto;
                height: 20px;
                width: 20px;
                color: #7F7F84;
            }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping span {
                display: block;
            }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping .action {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                margin-top: 5px;
            }

                section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping .action span {
                    display: block;
                    font-size: 15px;
                    line-height: 20px;
                    color: #4A4A4D;
                    margin-right: 15px;
                    margin-right: 20px;
                }

                section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping .action label {
                    margin: 0 15px 0 0;
                    padding: 0;
                    display: inherit;
                    align-items: center;
                    color: #4A4A4D;
                    cursor: pointer;
                }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td:nth-child(3) {
                text-align: center;
            }

            section.store form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td:nth-child(4) {
                text-align: center;
            }

    section.store form div#store-overview-tabs .add-payment {
        position: absolute;
        right: 15px;
        top: 0;
        display: block;
        line-height: 20px;
        font-weight: 600;
        font-size: 16px;
        color: #D25D3E;
        text-decoration: none;
    }

    section.store form div#store-overview-tabs .card.card-payment-program table.payment-program {
        width: 100%;
        color: #201904;
    }

        section.store form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th {
            color: #7F7F84;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

            section.store form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(1) {
                text-align: left;
                width: 255px;
            }

            section.store form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(2) {
                text-align: left;
                width: calc(100% - 490px);
            }

            section.store form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(3) {
                width: 140px;
            }

            section.store form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(4) {
                width: 100px;
            }

        section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr {
            border-bottom: 1px solid #F0EDE5;
        }

            section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td {
                vertical-align: top;
                padding: 15px 8px;
            }

                section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td strong {
                    font-size: 17px;
                    font-weight: 600;
                    line-height: 25px;
                }

                section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td ul {
                    margin: 0;
                    padding: 0;
                }

                section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .option {
                    display: block;
                    margin: 0 auto;
                    height: 20px;
                    width: 20px;
                    color: #7F7F84;
                }

                section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping span {
                    display: block;
                }

                section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping .action {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    margin-top: 5px;
                }

                    section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping .action span {
                        display: block;
                        font-size: 15px;
                        line-height: 20px;
                        color: #4A4A4D;
                        margin-right: 15px;
                        margin-right: 20px;
                    }

                    section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping .action label {
                        margin: 0 15px 0 0;
                        padding: 0;
                        display: inherit;
                        align-items: center;
                        color: #4A4A4D;
                        cursor: pointer;
                    }

                section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td:nth-child(3) {
                    text-align: center;
                }

                section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td:nth-child(4) {
                    text-align: center;
                }

            section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr:last-of-type {
                border: none;
            }

                section.store form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr:last-of-type td {
                    padding-bottom: 10px;
                }

    section.store form div#store-overview-tabs .quota-table-header {
        list-style: none;
        margin: 50px 28px 20px;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        font-size: 12px;
        line-height: 12px;
        font-weight: 600;
        color: #7F7F84;
        text-transform: uppercase;
    }

        section.store form div#store-overview-tabs .quota-table-header li {
            display: block;
        }

            section.store form div#store-overview-tabs .quota-table-header li:nth-child(1) {
                width: 526px;
            }

            section.store form div#store-overview-tabs .quota-table-header li:nth-child(2) {
                width: 162px;
            }

            section.store form div#store-overview-tabs .quota-table-header li:nth-child(3) {
                width: 230px;
            }

            section.store form div#store-overview-tabs .quota-table-header li:nth-child(4) {
                width: 136px;
            }

    section.store form div#store-overview-tabs .quota-group-box .quota-group {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 15px;
    }

        section.store form div#store-overview-tabs .quota-group-box .quota-group .quota {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
        }

            section.store form div#store-overview-tabs .quota-group-box .quota-group .quota img {
                width: 56px;
                height: 48px;
                margin: 0 14px 0 20px;
            }

            section.store form div#store-overview-tabs .quota-group-box .quota-group .quota span {
                font-size: 15px;
                font-weight: 500;
                color: #4A4A4D;
                display: block;
                text-align: left;
            }

                section.store form div#store-overview-tabs .quota-group-box .quota-group .quota span.title {
                    display: block;
                    font-size: 12px;
                    font-weight: 500;
                    color: #7F7F84;
                    width: 418px;
                }

                    section.store form div#store-overview-tabs .quota-group-box .quota-group .quota span.title strong {
                        font-size: 18px;
                        font-weight: 600;
                        line-height: 22px;
                        color: #201904;
                        display: block;
                    }

                section.store form div#store-overview-tabs .quota-group-box .quota-group .quota span.quota {
                    width: 160px;
                }

                section.store form div#store-overview-tabs .quota-group-box .quota-group .quota span.payment-structure {
                    width: 238px;
                }

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

                section.store form div#store-overview-tabs .quota-group-box .quota-group .quota a.action:hover {
                    background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                }

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

        section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result {
            margin-top: 15px;
            display: none;
            padding-left: 65px;
        }

            section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-sets {
                list-style: none;
                margin: 0;
                padding: 0;
                width: 100%;
                display: flex;
                flex-wrap: nowrap;
                justify-content: space-between;
                font-size: 12px;
                line-height: 25px;
                font-weight: 600;
                color: #7F7F84;
                text-transform: uppercase;
            }

            section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail {
                border-radius: 10px;
                border: 1px solid #F0EDE5;
                padding: 15px;
                margin-left: 0;
            }

                section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail {
                    margin-bottom: 10px;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                }

                    section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail img {
                        width: 56px;
                        height: 48px;
                    }

                    section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail span {
                        display: block;
                        font-size: 12px;
                        font-weight: 500;
                        color: #7F7F84;
                        text-align: left;
                        width: calc(100% - 86px);
                        padding: 0 15px;
                    }

                        section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail span strong {
                            font-size: 18px;
                            font-weight: 600;
                            line-height: 22px;
                            color: #201904;
                            display: block;
                        }

                    section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail a.action {
                        display: block;
                        width: 30px;
                        height: 30px;
                        background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                    }

                        section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail a.action:hover {
                            background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                        }

                    section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail:last-of-type {
                        margin-bottom: 0;
                    }

            section.store form div#store-overview-tabs .quota-group-box .quota-group .quota-result:last-of-type {
                margin-bottom: 0;
            }

    section.store form div#store-overview-tabs a.add-method {
        position: absolute;
        right: 15px;
        top: 0;
        color: #D25D3E;
        text-decoration: none;
    }

    section.store form div#store-overview-tabs div.card.card-shipping table.shipping {
        width: 100%;
        margin-top: 15px;
    }

        section.store form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th {
            padding: 8px 10px;
            font-size: 12px;
            text-transform: uppercase;
            color: #7F7F84;
            font-weight: 600;
            text-align: left;
            line-height: 30px;
        }

            section.store form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(1) {
                width: 200px;
            }

            section.store form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(2) {
                width: calc(100% - 405px);
            }

            section.store form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(3) {
                width: 120px;
            }

            section.store form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(4) {
                width: 85px;
            }

        section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr {
            border-bottom: 1px solid #F0EDE5;
        }

            section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td {
                text-align: left;
                padding: 15px 5px;
                vertical-align: top;
            }

                section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td.no-method div {
                    font-size: 20px;
                    font-weight: 600;
                    line-height: 25px;
                    display: block;
                    text-align: center;
                    padding: 50px;
                    color: #7F7F84;
                    text-align: center;
                }

                    section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td.no-method div a {
                        display: inline-block;
                        color: #D25D3E;
                        text-decoration: none;
                    }

                section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td ul {
                    margin: 5px 0 0;
                    padding: 0;
                    list-style: none;
                    display: flex;
                }

                section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td strong {
                    font-size: 17px;
                    font-weight: 600;
                    line-height: 24px;
                }

                section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td span {
                    display: block;
                    width: 100%;
                    font-size: 16px;
                    line-height: 20px;
                }

                section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td input[type=text] {
                    border-radius: 10px;
                    border: 1px solid #F0EDE5;
                    width: 200px;
                    height: 36px;
                    padding: 0 15px;
                    border-radius: 6px;
                    margin-top: 5px;
                }

                section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td a.action {
                    display: table;
                    width: 20px;
                    height: 20px;
                    line-height: 20px;
                    text-align: center;
                    margin: 0 auto;
                    color: #7F7F84;
                }

                section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td:nth-child(2) {
                    text-align: left;
                }

            section.store form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr:last-of-type {
                border-bottom: none;
            }

    section.store form div#store-overview-tabs div.card.card-shipping .payment-option {
        display: flex;
        justify-content: space-between;
        padding: 20px 15px;
    }

        section.store form div#store-overview-tabs div.card.card-shipping .payment-option strong {
            display: block;
            line-height: 18px;
            font-size: 16px;
            font-weight: 500;
        }

    section.store form div#store-overview-tabs div.card.card-shipping label {
        margin: 0 15px 0 0;
        padding: 0;
        display: flex;
        align-items: center;
        align-items: center;
        color: #4A4A4D;
        cursor: pointer;
        font-size: 16px;
        font-weight: 400;
    }

    section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle {
        padding: 25px 25px;
        border-top: 1px solid #F0EDE5;
        display: none;
    }

        section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by {
            margin: 0;
            padding: 0;
        }

            section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by span.title {
                font-size: 18px;
                font-weight: 500;
                line-height: 22px;
                color: #201904;
                margin-bottom: 15px;
                display: block;
            }

            section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by label {
                margin-bottom: 5px;
            }

                section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by label:last-of-type {
                    margin-bottom: 0;
                }

        section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle hr {
            margin: 25px 0;
        }

        section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.country-state {
            padding: 0;
            margin: 0;
        }

            section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.country-state span {
                display: block;
                color: #201904;
                font-weight: 500;
                font-size: 18px;
                line-height: 20px;
                margin: 20px 0;
            }

        section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state {
            margin: 0;
            width: 100%;
            margin: 15px auto 0;
        }

            section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th {
                padding: 8px 0;
                font-size: 12px;
                text-transform: uppercase;
                color: #7F7F84;
                font-weight: 600;
                text-align: left;
                line-height: 30px;
            }

                section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(1) {
                    width: 40%;
                }

                section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(2) {
                    width: calc(60% - 85px);
                }

                section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(3) {
                    width: 85px;
                    text-align: center;
                }

            section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td strong {
                font-size: 17px;
                font-weight: 600;
                line-height: 24px;
            }

            section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td span {
                display: block;
                width: 100%;
                font-size: 16px;
                line-height: 20px;
            }

            section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td input[type=text] {
                border-radius: 10px;
                border: 1px solid #F0EDE5;
                width: 200px;
                height: 36px;
                padding: 0 15px;
                border-radius: 6px;
                margin-top: 5px;
            }

            section.store form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td a.action {
                text-decoration: none;
                display: table;
                width: 20px;
                height: 20px;
                line-height: 20px;
                text-align: center;
                margin: 0 auto;
                color: #7F7F84;
            }

    section.store form div#store-overview-tabs .card.card-shipping-options .option-box .option {
        padding: 25px 0;
    }

        section.store form div#store-overview-tabs .card.card-shipping-options .option-box .option span {
            display: block;
            font-size: 18px;
            font-weight: 500;
            line-height: 22px;
            color: #201904;
            margin-bottom: 20px;
        }

        section.store form div#store-overview-tabs .card.card-shipping-options .option-box .option label {
            margin: 10px 15px 10px 0;
            padding: 0;
            display: table;
            vertical-align: middle;
            align-items: center;
            align-items: center;
            color: #4A4A4D;
            cursor: pointer;
            line-height: 20px;
            font-weight: 400;
        }

        section.store form div#store-overview-tabs .card.card-shipping-options .option-box .option em {
            font-style: normal;
            font-size: 16px;
            font-weight: 400;
            color: #7F7F84;
            line-height: 25px;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                        section.orders form div.card.card-orders table.all-orders tbody tr td span.deleted {
                            color: #9f2323;
                            background: rgba(229, 150, 137, 0.16);
                        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                        section.orders form div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.deleted {
                            color: #4D6BCB;
                            background-color: rgba(255, 231, 227, 1);
                        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                    section.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.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.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.order-number form div.card.card-product-summary table.product-summary tbody tr td div.track-staus {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding-left: 65px;
                }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    section.reports {
        padding-bottom: 10px;
    }

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

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

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

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

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

        section.reports div.report-box div.report {
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 15px;
            padding: 15px;
            display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
            align-items: center;
        }

            section.reports div.report-box div.report img {
                width: 64px;
                height: 64px;
            }

            section.reports div.report-box div.report span {
                display: block;
                color: #4A4A4D;
                font-size: 15px;
                font-weight: 500;
                padding: 0 10px;
                width: calc(100% - 94px);
                line-height: 30px;
            }

                section.reports div.report-box div.report span strong {
                    font-size: 24px;
                    font-weight: 600;
                    display: block;
                    color: #201904;
                    line-height: 30px;
                }

            section.reports div.report-box div.report a {
                text-decoration: none;
                color: #201904;
                font-size: 20px;
                font-weight: bolder;
                width: 30px;
                height: 30px;
                display: block;
                line-height: 30px;
            }

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

        section.order-sales-report .title-actions a.toggle {
            display: none;
            border-radius: 10px;
        }

        section.order-sales-report .title-actions div.buttons {
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
            background-color: transparent;
            border-radius: 10px;
            position: static;
            right: 0;
            top: 42px;
            z-index: 10;
            box-shadow: none;
            width: 100%;
        }

            section.order-sales-report .title-actions div.buttons a {
                text-decoration: none;
                height: 52px;
                line-height: 50px;
                margin-left: 15px;
                display: block;
                border-radius: 10px;
                font-weight: 600;
                font-size: 16px;
                padding: 0 25px;
                text-align: center;
            }

                section.order-sales-report .title-actions div.buttons a img {
                    margin: 0 5px;
                }

                section.order-sales-report .title-actions div.buttons a.print {
                    color: #201904;
                    min-width: 120px;
                    padding: 0 50px 0 15px;
                    background: #ffffff url(../images/icons/icon_printer_black.svg) 70px center no-repeat;
                }

                    section.order-sales-report .title-actions div.buttons a.print:hover {
                        color: #D25D3E;
                        background: #ffffff url(../images/icons/icon_printer_orange.svg) 70px center no-repeat;
                    }

                section.order-sales-report .title-actions div.buttons a.export {
                    color: #201904;
                    min-width: 120px;
                    padding: 0 50px 0 15px;
                    background: #ffffff url(../images/icons/icon_export_black.svg) 80px center no-repeat;
                }

                    section.order-sales-report .title-actions div.buttons a.export:hover {
                        color: #D25D3E;
                        background: #ffffff url(../images/icons/icon_export_orange.svg) 80px center no-repeat;
                    }

                section.order-sales-report .title-actions div.buttons a.close {
                    color: #7F7F84;
                }

                    section.order-sales-report .title-actions div.buttons a.close:hover {
                        color: #D32243;
                        opacity: 1;
                    }

    section.order-sales-report aside h3.toggle-form i {
        display: none;
    }

    section.order-sales-report aside form {
        display: block;
        margin-top: 20px;
    }

        section.order-sales-report aside form label.info {
            color: #7F7F84;
            display: block;
            line-height: 16px;
            font-size: 14px;
            font-weight: 500;
        }

        section.order-sales-report aside form div.time {
            position: relative;
            border: 1px solid #F0EDE5;
            background-color: #ffffff;
            height: 52px;
            padding: 0 15px;
            border-radius: 8px;
            display: block;
            width: 100%;
            margin-bottom: 24px;
            z-index: 0;
        }

            section.order-sales-report aside form div.time span {
                font-size: 16px;
                line-height: 52px;
                text-align: left;
                position: relative;
                z-index: 1;
                display: block;
                height: 52px;
                width: 90%;
                overflow-x: hidden;
            }

            section.order-sales-report aside form div.time img {
                width: 20px;
                height: 20px;
                position: absolute;
                right: 10px;
                top: 50%;
                transform: translateY(-50%);
                z-index: 2;
            }

        section.order-sales-report aside form select.fields {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border: 1px solid #F0EDE5;
            height: 52px;
            padding: 0 15px;
            border-radius: 8px;
            display: block;
            width: 100%;
            margin-bottom: 24px;
            outline: none;
            background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
            background-size: 12px 12px;
        }

        section.order-sales-report aside form button[type=submit] {
            height: 52px;
            font-size: 18px;
            font-weight: 700;
            padding: 0 15px;
            min-width: 212px;
            border-radius: 10px;
            border: none;
            background-color: #D25D3E;
            color: #ffffff;
        }

            section.order-sales-report aside form button[type=submit]:hover {
                background-color: #C64F2F;
            }

            section.order-sales-report aside form button[type=submit]:focus {
                background-color: #DC836A;
            }

    section.order-sales-report .card.card-order-sales h4 {
        display: block;
        font-size: 28px;
        font-weight: 600;
        line-height: 28px;
        color: #201904;
        margin: 0;
    }

    section.order-sales-report .card.card-order-sales span {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: #7F7F84;
        margin: 0;
    }

        section.order-sales-report .card.card-order-sales span.full-date {
            text-align: right;
        }

    section.order-sales-report table.order-sales {
        width: 100%;
    }

        section.order-sales-report table.order-sales thead tr {
            background-color: #F0EDE5;
        }

            section.order-sales-report table.order-sales thead tr th {
                padding: 8px 25px;
                font-size: 12px;
                text-transform: uppercase;
                color: #7F7F84;
                font-weight: 600;
                text-align: left;
                line-height: 30px;
            }

                section.order-sales-report table.order-sales thead tr th:nth-child(1) {
                    width: 160px;
                }

                section.order-sales-report table.order-sales thead tr th:nth-child(2) {
                    width: 130px;
                }

                section.order-sales-report table.order-sales thead tr th:nth-child(3) {
                    width: 150px;
                }

                section.order-sales-report table.order-sales thead tr th:nth-child(4) {
                    width: calc(100% - 640px);
                }

                section.order-sales-report table.order-sales thead tr th:nth-child(5) {
                    text-align: center;
                    width: 100px;
                }

                section.order-sales-report table.order-sales thead tr th:nth-child(6) {
                    text-align: center;
                    width: 100px;
                }

        section.order-sales-report table.order-sales tbody tr td {
            text-align: left;
            padding: 15px 25px;
            font-size: 14px;
            color: #4A4A4D;
        }

            section.order-sales-report table.order-sales tbody tr td:nth-child(n+5) {
                text-align: right;
            }

    section.order-sales-report .paging-report {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        list-style: none;
        margin: 25px 0;
        padding: 0;
        justify-content: center;
        font-size: 16px;
        font-weight: 500;
    }

        section.order-sales-report .paging-report li a {
            min-width: 36px;
            line-height: 36px;
            border-radius: 4px;
            background: #ffffff;
            color: #201904;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            text-transform: uppercase;
            transition: 0.3s;
            margin: 0 5px;
        }

            section.order-sales-report .paging-report li a .fa {
                font-size: 18px;
                font-weight: bolder;
                margin: 0 15px;
            }

        section.order-sales-report .paging-report li:hover a {
            background-color: #D25D3E;
            color: #ffffff;
        }

        section.order-sales-report .paging-report li.active a {
            background-color: #D25D3E;
            color: #ffffff;
        }

    section.category-view {
        padding: 30px 0 56px;
    }

        section.category-view aside div.filter-slider {
            margin-bottom: 20px;
        }

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

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

                section.category-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.category-view aside div.filter-slider div.price-slider {
                height: 0;
                overflow: hidden;
                width: 100%;
                padding: 0 10px;
                transition: 0.5s all;
            }

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

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

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

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

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

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

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

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

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

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

        section.category-view aside div.filter {
            margin-bottom: 20px;
        }

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

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

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

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

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

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

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

            section.category-view ul.product-view li div.search {
                display: flex;
                flex-direction: row;
                height: 52px;
                border-radius: 10px;
                overflow: hidden;
                background-color: #ffffff;
                margin-right: 12px;
                width: 100%;
            }

                section.category-view ul.product-view li div.search input.search {
                    border: none;
                    background-color: transparent;
                    padding: 0 15px;
                    width: calc(100% - 52px);
                }

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

                    section.category-view ul.product-view li div.search button.submit:hover {
                        background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
                    }

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

                section.category-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.category-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.category-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.category-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.category-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.category-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.category-view ul.product-view li span {
                display: inline-block;
                line-height: 40px;
                color: #7F7F84;
                font-size: 14px;
                font-weight: 500;
                margin-right: 10px;
            }

            section.category-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.category-view ul.product-view li:nth-child(1) {
                width: calc(100% - 317px);
            }

            section.category-view ul.product-view li:nth-child(2) {
                width: 122px;
            }

            section.category-view ul.product-view li:nth-child(3) {
                width: 195px;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                section.category-view .view-group .item.grid-group-item div.details span {
                    display: block;
                    color: #201904;
                    font-size: 16px;
                    line-height: 25px;
                    font-weight: 500;
                }

                    section.category-view .view-group .item.grid-group-item div.details span.title {
                        line-height: 21px;
                    }

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

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

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

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

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

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

                    section.category-view .view-group .item.list-group-item span {
                        display: block;
                        color: #201904;
                        font-size: 25px;
                        line-height: 25px;
                        font-weight: 500;
                    }

                        section.category-view .view-group .item.list-group-item span.title {
                            line-height: 21px;
                            font-size: 25px;
                        }

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

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

    section.products-list {
        padding: 36px 0;
    }

    section.store-overview {
        padding-bottom: 50px;
        /*
  .title-actions{
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-end;            
      div.search{
          display: flex;
          flex-direction: row;
          height: 52px;
          border-radius: $border10;
          overflow: hidden;
          background-color: $white;
          margin-right: 12px;
          input.search{
              border: none;
              background-color: transparent;
              padding: 0 15px;
          }
          button.submit{
              width: 52px;
              height: 52px;
              display: block;
              border-radius: $border10;
              line-height: 52px;
              text-align: center;
              border: none;
              background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
              &:hover{
                  background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
              }
          }
      }
      a.request-store{
          background-color: $main;
          color: $white;
          width: 190px;
          display: table;
          text-align: center;
          line-height: 52px;
          border-radius: $border10;
          font-weight: 700;
          font-size: 18px;
          text-decoration: none;
          span.text{
              display: inline-block;
          }                
          .fa{
              font-size: 18px;
              margin-right: 8px;
          }
          &:hover{
              background-color: #C64F2F;
          }
          &:focus{
              background-color: #DC836A;
          }
      }            
      a{
          color: $medium-grey;
          font-size: 16px;
          font-weight: 600;
          line-height: 20px;
          display: inline-block;
          margin-left: 20px;
          margin-right: 0;
          text-decoration: none;
          line-height: 30px;
          &.cancel{
              &:hover{
                  color:  $red;
              }
          }
          &.deactive{
              width: 136px;
              padding: 0 10px;
              background: url(../images/icons/btn_deactive_gray.svg) 105px center no-repeat;
              &:hover{
                  color:  $red;
                  background: url(../images/icons/btn_deactive_red.svg) 105px center no-repeat;
              }
          }

      }

  }
  */
        /*.new-category{
      position: absolute;
      right: 15px;
      top: 0;
      color: $main;
      font-size: 16px;
      font-weight: 600;
      line-height: 20px;
      text-decoration: none;
  }
  .card-category{
      border-radius: $border10;
      border: 0;
      .card-body{
          display: flex;
          flex-direction: row;
          flex-wrap: nowrap;
          justify-content: space-between;
          div.product{
              img{
                  width: 120px;
                  display: block;
              }
              span.title{
                  color: $black;
                  font-size: 20px;
                  font-weight: 600;
                  line-height: 25px;
                  display: block;
              }
              span.counts{
                  display: block;
                  font-size: 15px;
                  font-weight: 500;
                  line-height: 25px;
                  color: $grey;
              }
          }
          div.action{
              display: flex;
              justify-content: flex-end;
              position: relative;
              a.toggle{
                  display: table;
                  width: 25px;
                  height: 25px;
                  line-height: 25px;
                  text-align: center;
                  color: $medium-grey;
                  border-radius: 50%;
                  &:hover{
                      background-color: #e4e4e4;
                      color: $white;
                  }
              }
              ul{
                  position: absolute;
                  right: 25px;
                  top: 0;
                  list-style: none;
                  margin: 0;
                  padding: 0;
                  background: $white;
                  border-radius: $border10;
                  box-shadow: 0 3px 5px rgba(0,0,0,0.25);
                  width: 80px;
                  overflow: hidden;
                  display: none;
                  li{
                      display: block;
                      border-bottom: 1px solid rgba(0,0,0,0.15);
                      a{
                          text-align: center;
                          line-height: 28px;
                          display: block;
                          color: $black;
                          font-size: 12px;
                          text-decoration: none;
                      }
                  }
              }
          }
      }
  }
  div.swiper-actions{
      margin: 10px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;

      .slide-button{
          display: flex;
          button{
              background: transparent;
              width: 30px;
              height: 30px;
              font-size: 20px;
              border: none;
              outline: none;
          }
      }
  }
  div.card.card-stats{            
      .card-body{                
          border-radius: $border10;
          .stat-icon{
              width: 46px;
              height: 46px;
              margin-right: 18px;
          }
          span{
              font-size: 15px;
              font-weight: 500;
              line-height: 25px;
              color: $grey;
              &.number{
                  font-size: 37px;
                  font-weight: 600;
                  line-height: 46px;
                  color: $black;
                  display: block;
              }
          }
      }
  }
  .time{
      position: absolute;
      right: 15px;
      top: 0;
      display: flex;
      span{
          font-size: 16px;
          line-height: 20px;
          font-weight: 600px;
      }
      button.date{
          width: 20px;
          height: 20px;
          border: none;
          background: url(../images/icons/calendar.svg) center center no-repeat;
          background-size: 100% 100%;
          margin-left: 8px;
          outline: none;
      }
  }
  .card-chart{
      border-radius: $border10;
  }
  .view-all{
      position: absolute;
      right: 15px;
      top: 0;
      font-size: 16px;
      font-weight: 600;
      color: $main;
      line-height: 20px;
      text-decoration: none;
  }
  .product-detail{
      .card.card-product{
          border-radius: $border10;
          margin-bottom: 10px;
      }
      span{
          font-size: 16px;
          color: $black;
          display: block;
          font-weight: 500;
          &.title{
              line-height: 21px;
          }
          &.qty{
              font-size: 12px;
              line-height: 25px;
              color: $medium-grey;
          }
          &.price{
              font-size: 16px;
              font-weight: 600;
              line-height: 25px;
              color: $black;
          }
      }                
  }
  div.card.card-tickets{
      border-radius: $border10;
      .card-body{
          ul{
              &.tickets{
                  margin: 10px 0 0 28px;
                  padding: 0;
                  list-style: none;
                  min-height: 460px;
                  max-height: 460px;
                  li{                            
                      border-bottom: 1px solid $light-grey2;
                      padding: 18px 0 18px;
                      position: relative;
                      z-index: 1;
                      span{
                          color: $black;
                          font-weight: 600;
                          line-height: 21px;
                          display: block;                                
                          &.person{
                              font-size: 13px;
                              font-weight: 400;
                              line-height: 16px;
                              color: $medium-grey;
                          }
                      }
                      p{
                          display: block;
                          font-size: 15px;
                          font-weight: 400;
                          line-height: 18px;
                          color: $grey;
                          margin: 0;
                          padding: 0;
                      }
                      &:last-of-type{
                          border-bottom-color: transparent;
                      }
                      &::before{
                          content: '';
                          position: absolute;
                          z-index: 2;
                          display: block;
                          width: 10px;
                          height: 10px;
                          border-radius: 50%;                                    
                          left: -24px;
                          top: 23px;
                      }
                      &:nth-child(1){
                          &::before{
                              background-color: $main;
                          }
                      }
                      &:nth-child(2){
                          &::before{
                              background-color: $main;
                          }
                      }
                      &:nth-child(3){
                          &::before{
                              background-color: $yellow;
                          }
                      }
                      &:nth-child(4){
                          &::before{
                              background-color: $green;
                          }
                      }
                      &:nth-child(5){
                          &::before{
                              background-color: $green;
                          }
                      }
                  }
              }
              &.activity{
                  margin: 10px 0 0 28px;
                  padding: 0;
                  list-style: none;
                  min-height: 460px;
                  max-height: 460px;
                  li{                            
                      border-bottom: 1px solid transparent;
                      padding: 14px 0 14px;
                      position: relative;
                      z-index: 1;
                      position: relative;
                      z-index: 1;
                      p{
                          font-size: 17px;
                          font-weight: 600;
                          line-height: 21px;
                          margin: 0;
                          padding: 0;
                          span{
                              color: $main;
                          }
                      }
                      span.person{
                          font-size: 13px;
                          font-weight: 400;
                          line-height: 16px;
                          color: $medium-grey;
                      }
                      &::before{
                          content: '';
                          position: absolute;
                          z-index: 2;
                          display: block;
                          width: 10px;
                          height: 10px;
                          border-radius: 50%;
                          background-color: $light-grey2;                                    
                          left: -24px;
                          top: 20px;
                      }
                      &::after{
                          content: '';
                          position: absolute;
                          left: -19px;
                          top: 36px;
                          width: 1px;
                          height: 50px;
                          background-color: $light-grey2;
                      }
                  }
              }
          }

          .view{
              display: table;
              margin: 20px auto 10px;
              color: $main;
              font-size: 16px;
              font-weight: 600;
              line-height: 20px;
              text-decoration: none;
          }
      }
  }*/
}
section.store-overview .title-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
section.store-overview .title-actions a.toggle {
  display: none;
  border-radius: 10px;
  width: 40px;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0;
  background: #ffffff url(../images/icons/btn_action_black.svg) center center no-repeat;
}
section.store-overview .title-actions a.toggle:hover {
  background: #ffffff url(../images/icons/btn_action_orange.svg) center center no-repeat;
}
section.store-overview .title-actions div.buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  background-color: transparent;
  border-radius: 10px;
  position: static;
  right: 0;
  top: 42px;
  z-index: 10;
  box-shadow: none;
  width: 100%;
}
section.store-overview .title-actions div.buttons a {
  color: #7F7F84;
  text-decoration: none;
  height: 52px;
  line-height: 50px;
  margin-left: 15px;
  display: block;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  padding: 0 15px;
  text-align: center;
}
section.store-overview .title-actions div.buttons a.deactive {
  min-width: 150px;
  padding: 0 40px 0 15px;
  background: url(../images/icons/btn_deactive_gray.svg) 110px center no-repeat;
}
section.store-overview .title-actions div.buttons a.deactive:hover {
  color: #D32243;
  background-image: url(../images/icons/btn_deactive_red.svg);
}
section.store-overview .title-actions div.buttons a.cancel:hover {
  color: #D32243;
  opacity: 1;
}
section.store-overview a.hide-details {
  position: absolute;
  right: 25px;
  top: 0;
  color: #D25D3E;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
}
section.store-overview a.hide-details i {
  font-weight: 600;
  font-size: 18px;
  margin-left: 8px;
  line-height: inherit;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box {
  color: #201904;
  display: flex;
  align-items: center;
  width: 100%;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .left-side {
  border-right: 1px solid #F0EDE5;
  width: 350px;
  padding: 10px 20px 10px 10px;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .left-side strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 5px;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .left-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  justify-content: space-between;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .left-side ul li img {
  margin-right: 5px;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side {
  width: calc(100% - 350px);
  padding: 10px 10px 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .stats-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 62%;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat {
  display: flex;
  align-items: center;
  padding-right: 10px;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat .stat-icon {
  width: 46px;
  height: 46px;
  margin-right: 18px;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat span {
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  color: #4A4A4D;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat span.number {
  font-size: 37px;
  font-weight: 600;
  line-height: 37px;
  color: #201904;
  display: block;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box {
  width: 38%;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span {
  line-height: 20px;
  font-size: 14px;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span.title {
  text-align: left;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span.value {
  text-align: right;
  font-size: 12px;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span.value strong {
  font-size: 17px;
  font-weight: 600;
  color: #4A4A4D;
  line-height: 17px;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar {
  display: block;
  background: #F0EDE5;
  height: 6px;
  border-radius: 3px;
  position: relative;
  width: 100%;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar .bar-fill {
  height: 6px;
  border-radius: inherit;
  width: 50%;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar .bar-fill.green {
  background-color: #87AC1E;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar .bar-fill.blue {
  background-color: #5979B7;
}
section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress:last-of-type {
  margin-bottom: 0;
}
section.store-overview form ul#store-overview-tabs {
  margin-bottom: 20px;
}
section.store-overview form ul#store-overview-tabs li a {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  text-decoration: none;
  color: #201904;
}
section.store-overview form ul#store-overview-tabs li a.active {
  color: #D25D3E;
  text-decoration: underline !important;
}
section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body {
  padding: 30px;
}
section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body label.info {
  color: #201904;
  display: block;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
}
section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body input.fields {
  border: 1px solid #F0EDE5;
  height: 64px;
  padding: 0 15px;
  border-radius: 10px;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  outline: none;
}
section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body textarea.descp {
  border: 1px solid #F0EDE5;
  height: 180px;
  padding: 15px;
  border-radius: 10px;
  display: block;
  width: 100%;
  outline: none;
}
section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body .image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 180px;
  border: 1px dashed #e5e5e5;
  border-radius: 10px;
  position: relative;
  margin-bottom: 24px;
}
section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body .image.icon-file {
  margin-bottom: 0;
}
section.store-overview form div#store-overview-tabs a.add-new-set {
  right: 15px;
  top: 0;
  background-color: #D25D3E;
  color: #ffffff;
  padding: 0 25px;
  display: table;
  text-align: center;
  line-height: 52px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
section.store-overview form div#store-overview-tabs a.add-new-set .fa {
  font-size: 18px;
  margin-right: 15px;
}
section.store-overview form div#store-overview-tabs a.add-new-set:hover {
  background-color: #C64F2F;
}
section.store-overview form div#store-overview-tabs a.add-new-set:focus {
  background-color: #DC836A;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group {
  margin-bottom: 15px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li {
  position: relative;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li img {
  width: 56px;
  height: 48px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li span {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: #201904;
  display: block;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li span.qty {
  font-size: 12px;
  line-height: 25px;
  font-weight: 500;
  color: #7F7F84;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li a.toggle-table {
  display: block;
  width: 36px;
  height: 36px;
  background: #F6F4F0;
  color: #212121;
  text-decoration: none;
  text-align: center;
  line-height: 36px;
  border-radius: 4px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li a.more-action-toggle {
  display: block;
  line-height: 36px;
  color: #201904;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 0 10px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions {
  position: absolute;
  left: 50%;
  top: 36px;
  transform: translateX(-50%);
  display: none;
  background-color: #ffffff;
  width: 100px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  flex-direction: column;
  z-index: 10;
  font-weight: 500;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li {
  display: block;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li a {
  display: block;
  line-height: 40px;
  font-size: 18px;
  color: #201904;
  text-decoration: none;
  padding: 0 15px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(1) {
  width: 56px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(2) {
  width: calc(100% - 242px);
  padding: 0 15px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(3) {
  width: 150px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(4) {
  width: 36px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set {
  display: none;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set span.heading {
  color: #7F7F84;
  font-weight: 600;
  font-size: 12px;
  display: block;
  line-height: 20px;
  margin: 15px 0;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-bottom: 12px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product {
  border: 1px solid #F0EDE5;
  border-radius: 10px;
  width: 100%;
  padding: 20px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li img.icon {
  display: block;
  margin-right: 14px;
  width: 56px;
  height: 48px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li span {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: #201904;
  display: block;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li span.qty {
  font-size: 12px;
  line-height: 25px;
  font-weight: 500;
  color: #7F7F84;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li a {
  display: block;
  width: 36px;
  height: 36px;
  background: #F6F4F0;
  color: #212121;
  text-decoration: none;
  text-align: center;
  line-height: 36px;
  border-radius: 4px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(1) {
  width: 56px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(2) {
  width: calc(100% - 92px);
  padding: 0 15px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(3) {
  width: 36px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table {
  display: none;
  margin: 20px 0 0;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table {
  width: 100%;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th {
  padding: 5px 0;
  font-size: 12px;
  color: #7F7F84;
  text-transform: uppercase;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:first-of-type {
  width: calc(100% - 100px);
  text-align: left;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:last-of-type {
  width: 100px;
  text-align: center;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr {
  border-bottom: 1px solid #F0EDE5;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
  padding: 8px 0;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td img {
  width: 70px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail {
  margin: 0 10px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span {
  color: #7F7F84;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  display: block;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span.title {
  font-size: 16px;
  color: #201904;
  line-height: 25px;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:first-of-type {
  display: flex;
  align-items: center;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:last-of-type {
  text-align: center;
  color: #201904;
  font-size: 16px;
  font-weight: 600;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type {
  border-bottom: none;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type td {
  padding-bottom: 0;
}
section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer:last-of-type {
  margin-bottom: 0;
}
section.store-overview form div#store-overview-tabs div.search {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 12px;
  width: 100%;
  background-color: #ffffff;
}
section.store-overview form div#store-overview-tabs div.search input.search {
  border: none;
  background-color: transparent;
  padding: 0 15px;
  width: calc(100% - 52px);
}
section.store-overview form div#store-overview-tabs 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.store-overview form div#store-overview-tabs div.search button.submit:hover {
  background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs div.search.no-margin {
  margin: 0;
}
section.store-overview form div#store-overview-tabs div.more-actions {
  position: relative;
}
section.store-overview form div#store-overview-tabs div.more-actions a.more-action-toggle {
  display: block;
  line-height: 36px;
  color: #201904;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 0 10px;
}
section.store-overview form div#store-overview-tabs div.more-actions ul.sub-actions {
  position: absolute;
  left: 50%;
  top: 36px;
  transform: translateX(-50%);
  display: none;
  min-width: 150px;
  background-color: #ffffff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  flex-direction: column;
  z-index: 10;
  font-weight: 500;
}
section.store-overview form div#store-overview-tabs div.more-actions ul.sub-actions li {
  display: block;
}
section.store-overview form div#store-overview-tabs div.more-actions ul.sub-actions li a {
  display: block;
  line-height: 40px;
  font-size: 18px;
  color: #201904;
  text-decoration: none;
  padding: 0 25px;
}
section.store-overview form div#store-overview-tabs div.more-actions ul.sub-actions li button {
  display: block;
  line-height: 40px;
  font-size: 18px;
  color: #201904;
  text-decoration: none;
  padding: 0 25px;
  border:0px;
  background:white;
  width:150px;
}
section.store-overview form div#store-overview-tabs div.action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
section.store-overview form div#store-overview-tabs div.action a {
  text-decoration: none;
  line-height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.store-overview form div#store-overview-tabs div.action a.import {
  height: 52px;
  display: flex;
  border-radius: 10px;
  line-height: 52px;
  text-align: center;
  margin-right: 12px;
  color: #201904;
  font-weight: 500;
  padding: 0 45px 0 15px;
  background: transparent url(../images/icons/icon_download_black.svg) 80px center no-repeat;
}
section.store-overview form div#store-overview-tabs div.action button.import {
    height: 52px;
    display: flex;
    border-radius: 10px;
    line-height: 52px;
    text-align: center;
    margin-right: 12px;
    color: #201904;
    font-weight: 500;
    padding: 0 45px 0 15px;
    border:0;
    background: transparent url(../images/icons/icon_download_black.svg) 80px center no-repeat;
}
section.store-overview form div#store-overview-tabs div.action a.import:hover {
  color: #D25D3E;
  background: transparent url(../images/icons/icon_download_orange.svg) 80px center no-repeat;
}
section.store-overview form div#store-overview-tabs div.action a.new-user {
  width:135px;
  background-color: #D25D3E;
  color: #ffffff;
  display: table;
  text-align: center;
  line-height: 52px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
section.store-overview form div#store-overview-tabs div.action a.new-user .fa {
  font-size: 18px;
  margin-right: 10px;
}
section.store-overview form div#store-overview-tabs div.action a.new-user:hover {
  background-color: #C64F2F;
}
section.store-overview form div#store-overview-tabs div.action a.new-user:focus {
  background-color: #DC836A;
}
section.store-overview form div#store-overview-tabs div.action a.add-new-user {
  right: 15px;
  top: 0;
  background-color: #D25D3E;
  color: #ffffff;
  padding: 0 15px;
  display: table;
  text-align: center;
  line-height: 52px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
section.store-overview form div#store-overview-tabs div.action a.add-new-user .fa {
  margin-right: 8px;
}
section.store-overview form div#store-overview-tabs div.action a.add-new-user:hover {
  background-color: #C64F2F;
}
section.store-overview form div#store-overview-tabs div.action a.add-new-user:focus {
  background-color: #DC836A;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table {
  color: #201904;
  width: 100%;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th {
  color: #7F7F84;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(1) {
  width: 28px;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(2) {
  width: auto;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(3) {
  width: 220px;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(4) {
  width: 130px;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(5) {
  width: 160px;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(6) {
  width: 160px;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(7) {
  width: 90px;
  text-align: center;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(8) {
  width: 40px;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr {
  border-bottom: 1px solid #D8D8D8;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td {
  position: relative;
  padding: 12px 5px;
  text-align: left;
  vertical-align: middle;
  font-size: 16px;
}
section.store-overview form div#store-overview-tabs div.card.card-users 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.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td select.program, section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td select.role {
  background-color: #ffffff;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td input[type=text], section.store-overview form div#store-overview-tabs div.card.card-users 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.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  background-color: #ffffff;
  box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 55px;
  top: 8px;
  border-radius: 10px;
  display: none;
  z-index: 10;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td ul li {
  padding: 4px;
}
section.store-overview form div#store-overview-tabs div.card.card-users 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.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td ul li a:hover {
  background-color: #F0EDE5;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td .image img {
  float: left;
  margin-right: 10px;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td span {
  display: block;
  font-size: 12px;
  color: #7F7F84;
  font-weight: 500;
  text-align: left;
  line-height: 18px;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td span strong {
  display: block;
  font-size: 16px;
  color: #201904;
  line-height: 26px;
}
section.store-overview form div#store-overview-tabs div.card.card-users 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.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td a.options:hover {
  background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td:nth-child(7) {
  text-align: right;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr:first-of-type {
  border-bottom-color: transparent;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr:first-of-type td input[type=text]:focus, section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr:first-of-type td input[type=email]:focus {
  background: #ffffff;
}
section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr:last-of-type {
  border-bottom: none;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method {
  width: 100%;
  color: #201904;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th {
  color: #7F7F84;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(1) {
  text-align: left;
  width: 205px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(2) {
  text-align: left;
  width: calc(100% - 445px);
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(3) {
  width: 140px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(4) {
  width: 100px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td {
  vertical-align: top;
  padding: 10px 8px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 25px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box {
  margin: 10px 0;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance {
  list-style: none;
  margin: 5px 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid #F0EDE5;
  border-radius: 8px;
  padding: 8px 15px;
  margin-bottom: 10px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li {
  text-align: left;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span {
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  display: block;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.title {
  font-weight: 500;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.expire {
  color: #4A4A4D;
  font-size: 14px;
  line-height: 20px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.price {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 17px;
  text-align: center;
  margin: 0 auto;
  line-height: 30px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a.edit {
  color: #7F7F84;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a.trash {
  color: #D25D3E;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(1) {
  width: 40px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(2) {
  width: calc(100% - 140px);
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(3) {
  width: 100px;
  text-align: center;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(4) {
  width: 50px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(5) {
  width: 50px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance:last-of-type {
  margin-bottom: none;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box a.add-allowance {
  display: flex;
  justify-content: flex-end;
  color: #D25D3E;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .option {
  display: block;
  margin: 0 auto;
  height: 32px;
  width: 32px;
  line-height: 32px;
  background: url(../images/icons/btn_action_black.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .option:hover {
  background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping span {
  display: block;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping .action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping .action span {
  display: block;
  font-size: 15px;
  line-height: 20px;
  color: #4A4A4D;
  margin-right: 15px;
  margin-right: 20px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping .action label {
  margin: 0 15px 0 0;
  padding: 0;
  display: inherit;
  align-items: center;
  color: #4A4A4D;
  cursor: pointer;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td:nth-child(3) {
  text-align: center;
}
section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td:nth-child(4) {
  text-align: center;
}
section.store-overview form div#store-overview-tabs .add-payment {
  position: absolute;
  right: 15px;
  top: 0;
  display: block;
  line-height: 20px;
  font-weight: 600;
  font-size: 16px;
  color: #D25D3E;
  text-decoration: none;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program {
  width: 100%;
  color: #201904;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th {
  color: #7F7F84;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(1) {
  text-align: left;
  width: 255px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(2) {
  text-align: left;
  width: calc(100% - 490px);
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(3) {
  width: 140px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(4) {
  width: 100px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr {
  border-bottom: 1px solid #F0EDE5;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td {
  vertical-align: top;
  padding: 15px 8px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 25px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td ul {
  margin: 0;
  padding: 0;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .option {
  display: block;
  margin: 0 auto;
  height: 32px;
  width: 32px;
  line-height: 32px;
  background: url(../images/icons/btn_action_black.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .option:hover {
  background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping span {
  display: block;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping .action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping .action span {
  display: block;
  font-size: 15px;
  line-height: 20px;
  color: #4A4A4D;
  margin-right: 15px;
  margin-right: 20px;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping .action label {
  margin: 0 15px 0 0;
  padding: 0;
  display: inherit;
  align-items: center;
  color: #4A4A4D;
  cursor: pointer;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td:nth-child(3) {
  text-align: center;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td:nth-child(4) {
  text-align: center;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr:last-of-type {
  border: none;
}
section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr:last-of-type td {
  padding-bottom: 10px;
}
section.store-overview form div#store-overview-tabs .quota-table-header {
  list-style: none;
  margin: 50px 28px 20px;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #7F7F84;
  text-transform: uppercase;
}
section.store-overview form div#store-overview-tabs .quota-table-header li {
  display: block;
}
section.store-overview form div#store-overview-tabs .quota-table-header li:nth-child(1) {
  width: 526px;
}
section.store-overview form div#store-overview-tabs .quota-table-header li:nth-child(2) {
  width: 162px;
}
section.store-overview form div#store-overview-tabs .quota-table-header li:nth-child(3) {
  width: 230px;
}
section.store-overview form div#store-overview-tabs .quota-table-header li:nth-child(4) {
  width: 136px;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 15px;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota img {
  width: 56px;
  height: 48px;
  margin: 0 14px 0 20px;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota span {
  font-size: 15px;
  font-weight: 500;
  color: #4A4A4D;
  display: block;
  text-align: left;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota span.title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #7F7F84;
  width: 418px;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota span.title strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #201904;
  display: block;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota span.quota {
  width: 160px;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota span.payment-structure {
  width: 238px;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota a.action {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 30px;
  background: url(../images/icons/btn_action_black.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota a.action:hover {
  background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota button {
  width: 36px;
  height: 36px;
  display: block;
  border: none;
  background: #F6F4F0;
  color: #212121;
  font-size: 18px;
  font-weight: 400;
  border-radius: 4px;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result {
  margin-top: 15px;
  display: none;
  padding-left: 65px;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-sets {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  font-size: 12px;
  line-height: 25px;
  font-weight: 600;
  color: #7F7F84;
  text-transform: uppercase;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail {
  border-radius: 10px;
  border: 1px solid #F0EDE5;
  padding: 15px;
  margin-left: 0;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail img {
  width: 56px;
  height: 48px;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #7F7F84;
  text-align: left;
  width: calc(100% - 86px);
  padding: 0 15px;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail span strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #201904;
  display: block;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail a.action {
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/icons/btn_action_black.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail a.action:hover {
  background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail:last-of-type {
  margin-bottom: 0;
}
section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result:last-of-type {
  margin-bottom: 0;
}
section.store-overview form div#store-overview-tabs a.add-method {
  position: absolute;
  right: 15px;
  top: 0;
  color: #D25D3E;
  text-decoration: none;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping {
  width: 100%;
  margin-top: 15px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th {
  padding: 8px 10px;
  font-size: 12px;
  text-transform: uppercase;
  color: #7F7F84;
  font-weight: 600;
  text-align: left;
  line-height: 30px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(1) {
  width: 200px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(2) {
  width: calc(100% - 405px);
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(3) {
  width: 120px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(4) {
  width: 85px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr {
  border-bottom: 1px solid #F0EDE5;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td {
  text-align: left;
  padding: 15px 5px;
  vertical-align: top;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td.no-method div {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  display: block;
  text-align: center;
  padding: 50px;
  color: #7F7F84;
  text-align: center;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td.no-method div a {
  display: inline-block;
  color: #D25D3E;
  text-decoration: none;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td ul {
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td span {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td input[type=text] {
  border-radius: 10px;
  border: 1px solid #F0EDE5;
  width: 200px;
  height: 36px;
  padding: 0 15px;
  border-radius: 6px;
  margin-top: 5px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td a.action {
  display: table;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin: 0 auto;
  background: url(../images/icons/btn_action_black.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td a.action:hover {
  background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td:nth-child(2) {
  text-align: left;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr:last-of-type {
  border-bottom: none;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .payment-option {
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .payment-option strong {
  display: block;
  line-height: 18px;
  font-size: 16px;
  font-weight: 500;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping label {
  margin: 0 15px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  align-items: center;
  color: #4A4A4D;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle {
  padding: 25px 25px;
  border-top: 1px solid #F0EDE5;
  display: none;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by {
  margin: 0;
  padding: 0;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by span.title {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #201904;
  margin-bottom: 15px;
  display: block;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by label {
  margin-bottom: 5px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by label:last-of-type {
  margin-bottom: 0;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle hr {
  margin: 25px 0;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.country-state {
  padding: 0;
  margin: 0;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.country-state span {
  display: block;
  color: #201904;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  margin: 20px 0;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state {
  margin: 0;
  width: 100%;
  margin: 15px auto 0;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th {
  padding: 8px 0;
  font-size: 12px;
  text-transform: uppercase;
  color: #7F7F84;
  font-weight: 600;
  text-align: left;
  line-height: 30px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(1) {
  width: 40%;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(2) {
  width: calc(60% - 85px);
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(3) {
  width: 85px;
  text-align: center;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td span {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td input[type=text] {
  border-radius: 10px;
  border: 1px solid #F0EDE5;
  width: 200px;
  height: 36px;
  padding: 0 15px;
  border-radius: 6px;
  margin-top: 5px;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td a.action {
  text-decoration: none;
  display: table;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0 auto;
  background: url(../images/icons/btn_action_black.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td a.action:hover {
  background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
}
section.store-overview form div#store-overview-tabs .card.card-shipping-options .option-box .option {
  padding: 25px 0;
}
section.store-overview form div#store-overview-tabs .card.card-shipping-options .option-box .option span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #201904;
  margin-bottom: 20px;
}
section.store-overview form div#store-overview-tabs .card.card-shipping-options .option-box .option label {
  margin: 10px 15px 10px 0;
  padding: 0;
  display: table;
  vertical-align: middle;
  align-items: center;
  align-items: center;
  color: #4A4A4D;
  cursor: pointer;
  line-height: 20px;
  font-weight: 400;
}
section.store-overview form div#store-overview-tabs .card.card-shipping-options .option-box .option em {
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  color: #7F7F84;
  line-height: 25px;
}
section.store-overview form div.actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
section.store-overview form div.actions button {
  text-decoration: none;
  padding: 0 25px;
  line-height: 52px;
  display: block;
  border-radius: 10px;
  margin: 0 10px;
  border: none;
  background: none;
  cursor: pointer;
}
section.store-overview form div.actions button.back {
  color: #7F7F84;
}
section.store-overview form div.actions button.next {
  background-color: #D25D3E;
  color: #ffffff;
}
section.store-overview form div.actions button.next:disabled {
  background-color: #DC836A;
}
section.store-overview form div.actions button.next:hover {
  background-color: #C64F2F;
}
section.store-overview form div.actions button.next:focus {
  background-color: #DC836A;
}
section.store-overview form div.actions a.save {
  background-color: #D25D3E;
  color: #ffffff;
}
section.store-overview form div.actions a.save:hover {
  background-color: #C64F2F;
}
section.store-overview form div.actions a.save:focus {
  background-color: #DC836A;
}
section.new-quota-set {
  position: relative;
}
section.new-quota-set .title-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.title-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}
section.new-quota-set .title-actions a.cancel {
  color: #7F7F84;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
  margin-left: 20px;
  margin-right: 0;
  text-decoration: none;
}
.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.new-quota-set .title-actions a.cancel:hover {
  color: #D32243;
}
section.new-quota-set ul.form-stepper {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0;
  padding-right: 5px;
  display: flex;
  position: relative;
}
section.new-quota-set ul.form-stepper li {
  background-color: #F0EDE5;
  height: 48px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  justify-content: center;
  min-width: 91px;
  padding: 0 21px;
  margin-right: 45px;
  position: relative;
}
section.new-quota-set ul.form-stepper li strong {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
  background-color: #E0DCCF;
  color: #7F7F84;
}
section.new-quota-set ul.form-stepper li span {
  display: none;
  margin-left: 16px;
}
section.new-quota-set ul.form-stepper li.active, section.new-quota-set ul.form-stepper li.form-stepper-active {
  background-color: #efd6cc;
  min-width: 272px;
}
section.new-quota-set ul.form-stepper li.active strong, section.new-quota-set ul.form-stepper li.form-stepper-active strong {
  background-color: #D25D3E;
  color: #ffffff;
}
section.new-quota-set ul.form-stepper li.active span, section.new-quota-set ul.form-stepper li.form-stepper-active span {
  display: block;
}
section.new-quota-set ul.form-stepper li.active::before, section.new-quota-set ul.form-stepper li.form-stepper-active::before {
  content: "";
  border-left: 24px solid transparent;
  border-top: 24px solid #efd6cc;
  border-bottom: 24px solid #efd6cc;
  border-right: 0;
  position: absolute;
  left: -24px;
}
section.new-quota-set ul.form-stepper li.active::after, section.new-quota-set ul.form-stepper li.form-stepper-active::after {
  content: "";
  border-left: 24px solid #efd6cc;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 0;
  position: absolute;
  right: -24px;
}
section.new-quota-set ul.form-stepper li.done strong, section.new-quota-set ul.form-stepper li.form-stepper-completed strong {
  background-color: #B3CE67;
  color: #B3CE67;
  position: relative;
}
section.new-quota-set ul.form-stepper li.done strong::after, section.new-quota-set ul.form-stepper li.form-stepper-completed strong::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  color: #ffffff;
  content: "";
  background: url(../images/icons/check2.svg) center center no-repeat;
  border-radius: 50%;
}
section.new-quota-set ul.form-stepper li.done span, section.new-quota-set ul.form-stepper li.form-stepper-completed span {
  display: none;
}
section.new-quota-set ul.form-stepper li.done::before, section.new-quota-set ul.form-stepper li.form-stepper-completed::before {
  content: "";
  border-left: 24px solid transparent;
  border-top: 24px solid #F0EDE5;
  border-bottom: 24px solid #F0EDE5;
  border-right: 0;
  position: absolute;
  left: -24px;
}
section.new-quota-set ul.form-stepper li.done::after, section.new-quota-set ul.form-stepper li.form-stepper-completed::after {
  content: "";
  border-left: 24px solid #F0EDE5;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 0;
  position: absolute;
  right: -24px;
}
section.new-quota-set ul.form-stepper li::before {
  content: "";
  border-left: 24px solid transparent;
  border-top: 24px solid #F0EDE5;
  border-bottom: 24px solid #F0EDE5;
  border-right: 0;
  position: absolute;
  left: -24px;
}
section.new-quota-set ul.form-stepper li::after {
  content: "";
  border-left: 24px solid #F0EDE5;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 0;
  position: absolute;
  right: -24px;
}
section.new-quota-set ul.form-stepper li:last-of-type {
  margin-right: 0;
}
section.new-quota-set ul.group-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0;
  padding-right: 5px;
  display: flex;
  position: relative;
}
section.new-quota-set ul.group-steps li {
  background-color: #F0EDE5;
  height: 48px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 0 21px;
  margin-right: 45px;
  position: relative;
  width: 33.33%;
}
section.new-quota-set ul.group-steps li strong {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
  background-color: #E0DCCF;
  color: #7F7F84;
}
section.new-quota-set ul.group-steps li span {
  color: #7F7F84;
  margin-left: 16px;
}
section.new-quota-set ul.group-steps li.active {
  background-color: #efd6cc;
}
section.new-quota-set ul.group-steps li.active strong {
  background-color: #D25D3E;
  color: #ffffff;
}
section.new-quota-set ul.group-steps li.active span {
  display: block;
}
section.new-quota-set ul.group-steps li.active::before {
  content: "";
  border-left: 24px solid transparent;
  border-top: 24px solid #efd6cc;
  border-bottom: 24px solid #efd6cc;
  border-right: 0;
  position: absolute;
  left: -24px;
}
section.new-quota-set ul.group-steps li.active::after {
  content: "";
  border-left: 24px solid #efd6cc;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 0;
  position: absolute;
  right: -24px;
}
section.new-quota-set ul.group-steps li.done strong, section.new-quota-set ul.group-steps li.form-stepper-completed strong {
  background-color: #B3CE67;
  color: #B3CE67;
  position: relative;
}
section.new-quota-set ul.group-steps li.done strong::after, section.new-quota-set ul.group-steps li.form-stepper-completed strong::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  color: #ffffff;
  content: "";
  background: #87AC1E url(../images/icons/check2.svg) center center no-repeat;
  border-radius: 50%;
}
section.new-quota-set ul.group-steps li.done::before, section.new-quota-set ul.group-steps li.form-stepper-completed::before {
  content: "";
  border-left: 24px solid transparent;
  border-top: 24px solid #F0EDE5;
  border-bottom: 24px solid #F0EDE5;
  border-right: 0;
  position: absolute;
  left: -24px;
}
section.new-quota-set ul.group-steps li.done::after, section.new-quota-set ul.group-steps li.form-stepper-completed::after {
  content: "";
  border-left: 24px solid #F0EDE5;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 0;
  position: absolute;
  right: -24px;
}
section.new-quota-set ul.group-steps li::before {
  content: "";
  border-left: 24px solid transparent;
  border-top: 24px solid #F0EDE5;
  border-bottom: 24px solid #F0EDE5;
  border-right: 0;
  position: absolute;
  left: -24px;
}
section.new-quota-set ul.group-steps li::after {
  content: "";
  border-left: 24px solid #F0EDE5;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 0;
  position: absolute;
  right: -24px;
}
section.new-quota-set ul.group-steps li:last-of-type {
  margin-right: 0;
}
section.new-quota-set form a.new-user {
  right: 15px;
  top: 0;
  background-color: #D25D3E;
  color: #ffffff;
  padding: 0 25px;
  display: table;
  text-align: center;
  line-height: 52px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
section.new-quota-set form a.new-user .fa {
  font-size: 18px;
  margin-right: 10px;
}
section.new-quota-set form a.new-user:hover {
  background-color: #C64F2F;
}
section.new-quota-set form a.new-user:focus {
  background-color: #DC836A;
}
section.new-quota-set form div.quota-set-box .quota-set {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 0 25px 0 25px;
  margin-bottom: 10px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  margin: 25px 0;
}
section.new-quota-set form div.quota-set-box .quota-set .quota img.icon {
  width: 65px;
  height: 48px;
  margin-left: 15px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #7F7F84;
  text-align: left;
  width: calc(100% - 196px);
  padding: 0 15px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota span strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #201904;
  display: block;
}
section.new-quota-set form div.quota-set-box .quota-set .quota a.action {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 15px;
  background: url(../images/icons/btn_action_black.svg) center center no-repeat;
}
section.new-quota-set form div.quota-set-box .quota-set .quota a.action:hover {
  background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
}
section.new-quota-set form div.quota-set-box .quota-set .quota button {
  width: 36px;
  min-width: 30px;
  height: 36px;
  display: block;
  border: none;
  background: #F6F4F0;
  color: #212121;
  font-size: 18px;
  font-weight: 400;
  border-radius: 4px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail {
  display: none;
  padding: 25px;
  border: 1px solid #F0EDE5;
  border-radius: 10px;
  margin-bottom: 25px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table {
  width: 100%;
  margin-bottom: 10px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table thead tr th {
  padding: 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  color: #7F7F84;
  font-weight: 600;
  text-align: left;
  line-height: 20px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table tbody tr td {
  border-bottom: 1px solid #F0EDE5;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0;
  vertical-align: middle;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table tbody tr td img {
  width: 56px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table tbody tr td span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #7F7F84;
  text-align: left;
  width: 100%;
  padding: 0 10px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table tbody tr td span strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  color: #201904;
  display: block;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table tbody tr td span span {
  line-height: 16px;
  font-size: 12px;
  font-weight: 500;
  display: block;
  padding: 0;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table.product-set tbody tr td:nth-child(1) {
  width: 50px;
  border-bottom-color: transparent;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table.product-set tbody tr td:nth-child(2) {
  width: 56px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table.product-set tbody tr td:nth-child(3) {
  width: calc(100% - 116px);
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table.product thead tr th:nth-child(2) {
  text-align: right;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table.product tbody tr td:nth-child(1) {
  width: 50px;
  border-bottom-color: transparent;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table.product tbody tr td:nth-child(2) {
  width: 56px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table.product tbody tr td:nth-child(3) {
  width: calc(100% - 226px);
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table.product tbody tr td:nth-child(4) {
  width: 120px;
  text-align: right;
  padding: 0 15px;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table.product tbody tr:last-of-type td {
  border-bottom: none;
}
section.new-quota-set form div.quota-set-box .quota-set .quota-detail table:last-of-type {
  margin-bottom: 0;
}
section.new-quota-set form div.quota-set-box .quota-set:last-of-type {
  margin-bottom: 0;
}
section.new-quota-set form div.card.card-new-quota .card-body label.info {
  color: #201904;
  display: block;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
}
section.new-quota-set form div.card.card-new-quota .card-body input.fields {
  border: 1px solid #F0EDE5;
  height: 64px;
  padding: 0 15px;
  border-radius: 10px;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  outline: none;
}
section.new-quota-set form div.card.card-new-quota .card-body select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 10px;
  padding: 0 40px 0 15px;
  height: 64px;
  background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
  background-size: 12px 12px;
  color: #4A4A4D;
  font-size: 15px;
  border: 1px solid #F0EDE5;
  width: 100%;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table {
  color: #201904;
  width: 100%;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th {
  color: #7F7F84;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 5px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th:nth-child(1) {
  width: calc(100% - 741px);
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th:nth-child(2) {
  width: 215px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th:nth-child(3) {
  width: 264px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th:nth-child(4) {
  width: 200px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table thead tr th:nth-child(5) {
  width: 60px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr {
  border-bottom: 1px solid #D8D8D8;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td {
  position: relative;
  padding: 12px 5px;
  text-align: left;
  vertical-align: middle;
  font-size: 16px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td .reserve-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 6px;
  padding: 0 40px 0 15px;
  height: 34px;
  background: #F6F4F0 url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
  background-size: 12px 12px;
  color: #4A4A4D;
  font-size: 15px;
  border: 1px solid #F0EDE5;
  width: 100%;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td input[type=text], section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td input[type=email] {
  border-radius: 6px;
  border: 1px solid #F0EDE5;
  width: 100%;
  height: 34px;
  padding: 0 15px;
  border-radius: 6px;
  background-color: #F6F4F0;
  display: inline-block;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  background-color: #ffffff;
  box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 40px;
  top: 8px;
  border-radius: 10px;
  display: none;
  z-index: 10;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td ul li {
  padding: 4px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td ul li a {
  display: block;
  line-height: 43px;
  border-radius: 10px;
  text-decoration: none;
  color: #201904;
  text-align: center;
  padding: 0 25px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td ul li a:hover {
  background-color: #F0EDE5;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td img {
  float: left;
  margin: 0 10px 0 10px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td span {
  display: block;
  font-size: 12px;
  color: #7F7F84;
  font-weight: 500;
  text-align: left;
  line-height: 18px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td span strong {
  display: block;
  font-size: 16px;
  color: #201904;
  line-height: 18px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td a.options {
  display: block;
  margin: 9px auto;
  width: 30px;
  height: 30px;
  color: #7F7F84;
  text-decoration: none;
  font-size: 22px;
  transition: 0.3s;
  background: url(../images/icons/btn_action_black.svg) center center no-repeat;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td a.options:hover {
  background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr td:last-of-type {
  text-align: right;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr:first-of-type {
  border-bottom-color: transparent;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr:first-of-type td input[type=checkbox] {
  margin-right: 10px;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr:first-of-type td input[type=text]:focus, section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr:first-of-type td input[type=email]:focus {
  background: #ffffff;
}
section.new-quota-set form div.card.card-new-quota .card-body table.employee-table tbody tr:last-of-type {
  border-bottom: none;
}
section.new-quota-set form div.search {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 12px;
  width: 100%;
  background-color: #ffffff;
}
section.new-quota-set form div.search input.search {
  border: none;
  background-color: transparent;
  padding: 0 15px;
  width: calc(100% - 52px);
}
section.new-quota-set form div.search button.submit {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 10px;
  line-height: 52px;
  text-align: center;
  border: none;
  background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
}
section.new-quota-set form div.search button.submit:hover {
  background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
}
section.new-quota-set form div.search.no-margin {
  margin: 0;
}
section.new-quota-set form div.action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
section.new-quota-set form div.action a {
  text-decoration: none;
  line-height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.new-quota-set form div.action a.import {
  height: 52px;
  display: flex;
  border-radius: 10px;
  line-height: 52px;
  text-align: center;
  margin-right: 12px;
  color: #201904;
  font-weight: 500;
  padding: 0 45px 0 15px;
  background: transparent url(../images/icons/icon_download_black.svg) 80px center no-repeat;
}
section.new-quota-set form div.action a.import:hover {
  color: #D25D3E;
  background: transparent url(../images/icons/icon_download_orange.svg) 80px center no-repeat;
}
section.new-quota-set form div.action a.new-user {
  background-color: #D25D3E;
  color: #ffffff;
  display: table;
  text-align: center;
  line-height: 52px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
section.new-quota-set form div.action a.new-user .fa {
  font-size: 13px;
}
section.new-quota-set form div.action a.new-user:hover {
  background-color: #C64F2F;
}
section.new-quota-set form div.action a.new-user:focus {
  background-color: #DC836A;
}
section.new-quota-set form div.actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 30px 0 30px;
}
section.new-quota-set form div.actions button {
  text-decoration: none;
  padding: 0 25px;
  line-height: 52px;
  display: block;
  border-radius: 10px;
  margin: 0 10px;
  border: none;
  background: none;
  cursor: pointer;
}
section.new-quota-set form div.actions button.back {
  color: #7F7F84;
}
section.new-quota-set form div.actions button.next {
  background-color: #D25D3E;
  color: #ffffff;
}
section.new-quota-set form div.actions button.next:disabled {
  background-color: #DC836A;
}
section.new-quota-set form div.actions button.next:hover {
  background-color: #C64F2F;
}
section.new-quota-set form div.actions button.next:focus {
  background-color: #DC836A;
}
section.new-quota-set form div.actions a.save {
  background-color: #D25D3E;
  color: #ffffff;
}
section.new-quota-set form div.actions a.save:hover {
  background-color: #C64F2F;
}
section.new-quota-set form div.actions a.save:focus {
  background-color: #DC836A;
}
         section.store-overview .title-actions {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: flex-end;
        }

            section.store-overview .title-actions a.toggle {
                display: none;
                border-radius: 10px;
                width: 40px;
                min-width: 40px;
                height: 40px;
                line-height: 40px;
                margin: 0;
                padding: 0;
                background: #ffffff url(../images/icons/btn_action_black.svg) center center no-repeat;
            }

                section.store-overview .title-actions a.toggle:hover {
                    background: #ffffff url(../images/icons/btn_action_orange.svg) center center no-repeat;
                }

            section.store-overview .title-actions div.buttons {
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                background-color: transparent;
                border-radius: 10px;
                position: static;
                right: 0;
                top: 42px;
                z-index: 10;
                box-shadow: none;
                width: 100%;
            }

                section.store-overview .title-actions div.buttons a {
                    color: #7F7F84;
                    text-decoration: none;
                    height: 52px;
                    line-height: 50px;
                    margin-left: 15px;
                    display: block;
                    border-radius: 10px;
                    font-weight: 600;
                    font-size: 16px;
                    padding: 0 15px;
                    text-align: center;
                }

                    section.store-overview .title-actions div.buttons a.deactive {
                        min-width: 150px;
                        padding: 0 40px 0 15px;
                        background: url(../images/icons/btn_deactive_gray.svg) 110px center no-repeat;
                    }

                        section.store-overview .title-actions div.buttons a.deactive:hover {
                            color: #D32243;
                            background-image: url(../images/icons/btn_deactive_red.svg);
                        }

                    section.store-overview .title-actions div.buttons a.cancel:hover {
                        color: #D32243;
                        opacity: 1;
                    }

        section.store-overview a.hide-details {
            position: absolute;
            right: 25px;
            top: 0;
            color: #D25D3E;
            font-size: 16px;
            font-weight: 600;
            line-height: 30px;
        }

            section.store-overview a.hide-details i {
                font-weight: 600;
                font-size: 18px;
                margin-left: 8px;
                line-height: inherit;
            }

        section.store-overview .store-view-details .card.card-store-view .store-view-box {
            color: #201904;
            display: flex;
            align-items: center;
            width: 100%;
        }

            section.store-overview .store-view-details .card.card-store-view .store-view-box .left-side {
                border-right: 1px solid #F0EDE5;
                width: 350px;
                padding: 10px 20px 10px 10px;
            }

                section.store-overview .store-view-details .card.card-store-view .store-view-box .left-side strong {
                    display: block;
                    font-size: 18px;
                    font-weight: 600;
                    line-height: 22px;
                    margin-bottom: 5px;
                }

                section.store-overview .store-view-details .card.card-store-view .store-view-box .left-side ul {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    display: flex;
                    align-items: center;
                    font-size: 14px;
                    font-weight: 400;
                    width: 100%;
                    justify-content: space-between;
                }

                    section.store-overview .store-view-details .card.card-store-view .store-view-box .left-side ul li img {
                        margin-right: 5px;
                    }

            section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side {
                width: calc(100% - 350px);
                padding: 10px 10px 10px 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

                section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .stats-box {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    align-items: center;
                    width: 62%;
                }

                    section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat {
                        display: flex;
                        align-items: center;
                        padding-right: 10px;
                    }

                        section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat .stat-icon {
                            width: 46px;
                            height: 46px;
                            margin-right: 18px;
                        }

                        section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat span {
                            font-size: 15px;
                            font-weight: 500;
                            line-height: 15px;
                            color: #4A4A4D;
                        }

                            section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .stats-box .stat span.number {
                                font-size: 37px;
                                font-weight: 600;
                                line-height: 37px;
                                color: #201904;
                                display: block;
                            }

                section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box {
                    width: 38%;
                }

                    section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress {
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: space-between;
                        margin-bottom: 10px;
                    }

                        section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span {
                            line-height: 20px;
                            font-size: 14px;
                        }

                            section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span.title {
                                text-align: left;
                            }

                            section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span.value {
                                text-align: right;
                                font-size: 12px;
                            }

                                section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress span.value strong {
                                    font-size: 17px;
                                    font-weight: 600;
                                    color: #4A4A4D;
                                    line-height: 17px;
                                }

                        section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar {
                            display: block;
                            background: #F0EDE5;
                            height: 6px;
                            border-radius: 3px;
                            position: relative;
                            width: 100%;
                        }

                            section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar .bar-fill {
                                height: 6px;
                                border-radius: inherit;
                                width: 50%;
                            }

                                section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar .bar-fill.green {
                                    background-color: #87AC1E;
                                }

                                section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress .progress-bar .bar-fill.blue {
                                    background-color: #5979B7;
                                }

                        section.store-overview .store-view-details .card.card-store-view .store-view-box .right-side .progress-box .single-progress:last-of-type {
                            margin-bottom: 0;
                        }

        section.store-overview form ul#store-overview-tabs {
            margin-bottom: 20px;
        }

            section.store-overview form ul#store-overview-tabs li a {
                font-size: 20px;
                font-weight: 600;
                line-height: 25px;
                text-decoration: none;
                color: #201904;
            }

                section.store-overview form ul#store-overview-tabs li a.active {
                    color: #D25D3E;
                    text-decoration: underline !important;
                }

        section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body {
            padding: 30px;
        }

            section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body label.info {
                color: #201904;
                display: block;
                line-height: 20px;
                font-size: 16px;
                font-weight: 500;
            }

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

            section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body textarea.descp {
                border: 1px solid #F0EDE5;
                height: 180px;
                padding: 15px;
                border-radius: 10px;
                display: block;
                width: 100%;
                outline: none;
            }

            section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body .image {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 180px;
                border: 1px dashed #e5e5e5;
                border-radius: 10px;
                position: relative;
                margin-bottom: 24px;
            }

                section.store-overview form div#store-overview-tabs div.card.card-store-info .card-body .image.icon-file {
                    margin-bottom: 0;
                }

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

            section.store-overview form div#store-overview-tabs a.add-new-set .fa {
                font-size: 18px;
                margin-right: 15px;
            }

            section.store-overview form div#store-overview-tabs a.add-new-set:hover {
                background-color: #C64F2F;
            }

            section.store-overview form div#store-overview-tabs a.add-new-set:focus {
                background-color: #DC836A;
            }

        section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group {
            margin-bottom: 15px;
        }

            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
            }

                section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li {
                    position: relative;
                }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li img {
                        width: 56px;
                        height: 48px;
                    }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li span {
                        font-size: 18px;
                        line-height: 22px;
                        font-weight: 600;
                        color: #201904;
                        display: block;
                    }

                        section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li span.qty {
                            font-size: 12px;
                            line-height: 25px;
                            font-weight: 500;
                            color: #7F7F84;
                        }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li a.toggle-table {
                        display: block;
                        width: 36px;
                        height: 36px;
                        background: #F6F4F0;
                        color: #212121;
                        text-decoration: none;
                        text-align: center;
                        line-height: 36px;
                        border-radius: 4px;
                    }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li a.more-action-toggle {
                        display: block;
                        line-height: 36px;
                        color: #201904;
                        font-size: 16px;
                        font-weight: 600;
                        text-decoration: none;
                        padding: 0 10px;
                    }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions {
                        position: absolute;
                        left: 50%;
                        top: 36px;
                        transform: translateX(-50%);
                        display: none;
                        background-color: #ffffff;
                        width: 100px;
                        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                        border-radius: 10px;
                        overflow: hidden;
                        flex-direction: column;
                        z-index: 10;
                        font-weight: 500;
                    }

                        section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li {
                            display: block;
                        }

                            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li a {
                                display: block;
                                line-height: 40px;
                                font-size: 18px;
                                color: #201904;
                                text-decoration: none;
                                padding: 0 15px;
                            }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(1) {
                        width: 56px;
                    }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(2) {
                        width: calc(100% - 242px);
                        padding: 0 15px;
                    }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(3) {
                        width: 150px;
                    }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(4) {
                        width: 36px;
                    }

            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set {
                display: none;
            }

                section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set span.heading {
                    color: #7F7F84;
                    font-weight: 600;
                    font-size: 12px;
                    display: block;
                    line-height: 20px;
                    margin: 15px 0;
                }

                section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    align-items: flex-start;
                    margin-bottom: 12px;
                }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product {
                        border: 1px solid #F0EDE5;
                        border-radius: 10px;
                        width: 100%;
                        padding: 20px;
                    }

                        section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul {
                            list-style: none;
                            margin: 0;
                            padding: 0;
                            display: flex;
                            flex-direction: row;
                            align-items: center;
                        }

                            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li img.icon {
                                display: block;
                                margin-right: 14px;
                                width: 56px;
                                height: 48px;
                            }

                            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li span {
                                font-size: 18px;
                                line-height: 22px;
                                font-weight: 600;
                                color: #201904;
                                display: block;
                            }

                                section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li span.qty {
                                    font-size: 12px;
                                    line-height: 25px;
                                    font-weight: 500;
                                    color: #7F7F84;
                                }

                            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li a {
                                display: block;
                                width: 36px;
                                height: 36px;
                                background: #F6F4F0;
                                color: #212121;
                                text-decoration: none;
                                text-align: center;
                                line-height: 36px;
                                border-radius: 4px;
                            }

                            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(1) {
                                width: 56px;
                            }

                            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(2) {
                                width: calc(100% - 92px);
                                padding: 0 15px;
                            }

                            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(3) {
                                width: 36px;
                            }

                        section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table {
                            display: none;
                            margin: 20px 0 0;
                        }

                            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table {
                                width: 100%;
                            }

                                section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th {
                                    padding: 5px 0;
                                    font-size: 12px;
                                    color: #7F7F84;
                                    text-transform: uppercase;
                                }

                                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:first-of-type {
                                        width: calc(100% - 100px);
                                        text-align: left;
                                    }

                                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:last-of-type {
                                        width: 100px;
                                        text-align: center;
                                    }

                                section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr {
                                    border-bottom: 1px solid #F0EDE5;
                                }

                                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
                                        padding: 8px 0;
                                    }

                                        section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td img {
                                            width: 70px;
                                        }

                                        section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail {
                                            margin: 0 10px;
                                        }

                                            section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span {
                                                color: #7F7F84;
                                                font-size: 12px;
                                                line-height: 18px;
                                                font-weight: 500;
                                                display: block;
                                            }

                                                section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span.title {
                                                    font-size: 16px;
                                                    color: #201904;
                                                    line-height: 25px;
                                                }

                                        section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:first-of-type {
                                            display: flex;
                                            align-items: center;
                                        }

                                        section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:last-of-type {
                                            text-align: center;
                                            color: #201904;
                                            font-size: 16px;
                                            font-weight: 600;
                                        }

                                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type {
                                        border-bottom: none;
                                    }

                                        section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type td {
                                            padding-bottom: 0;
                                        }

                    section.store-overview form div#store-overview-tabs div.product-set-group .card.card-set-group div.product-set .set-outer:last-of-type {
                        margin-bottom: 0;
                    }

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

            section.store-overview form div#store-overview-tabs div.search input.search {
                border: none;
                background-color: transparent;
                padding: 0 15px;
                width: calc(100% - 52px);
            }

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

            section.store-overview form div#store-overview-tabs div.search.no-margin {
                margin: 0;
            }

        section.store-overview form div#store-overview-tabs div.more-actions {
            position: relative;
        }

            section.store-overview form div#store-overview-tabs div.more-actions a.more-action-toggle {
                display: block;
                line-height: 36px;
                color: #201904;
                font-size: 16px;
                font-weight: 600;
                text-decoration: none;
                padding: 0 10px;
            }

            section.store-overview form div#store-overview-tabs div.more-actions ul.sub-actions {
                position: absolute;
                left: 50%;
                top: 36px;
                transform: translateX(-50%);
                display: none;
                min-width: 150px;
                background-color: #ffffff;
                box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                border-radius: 10px;
                overflow: hidden;
                flex-direction: column;
                z-index: 10;
                font-weight: 500;
            }

                section.store-overview form div#store-overview-tabs div.more-actions ul.sub-actions li {
                    display: block;
                }

                    section.store-overview form div#store-overview-tabs div.more-actions ul.sub-actions li a {
                        display: block;
                        line-height: 40px;
                        font-size: 18px;
                        color: #201904;
                        text-decoration: none;
                        padding: 0 25px;
                    }

        section.store-overview form div#store-overview-tabs div.action {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

            section.store-overview form div#store-overview-tabs div.action a {
                text-decoration: none;
                line-height: 52px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

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

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

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

                    section.store-overview form div#store-overview-tabs div.action a.new-user .fa {
                        font-size: 18px;
                        margin-right: 10px;
                    }

                    section.store-overview form div#store-overview-tabs div.action a.new-user:hover {
                        background-color: #C64F2F;
                    }

                    section.store-overview form div#store-overview-tabs div.action a.new-user:focus {
                        background-color: #DC836A;
                    }

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

                    section.store-overview form div#store-overview-tabs div.action a.add-new-user .fa {
                        margin-right: 8px;
                    }

                    section.store-overview form div#store-overview-tabs div.action a.add-new-user:hover {
                        background-color: #C64F2F;
                    }

                    section.store-overview form div#store-overview-tabs div.action a.add-new-user:focus {
                        background-color: #DC836A;
                    }

        section.store-overview form div#store-overview-tabs div.card.card-users table.users-table {
            color: #201904;
            width: 100%;
        }

            section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th {
                color: #7F7F84;
                text-align: left;
                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
            }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(1) {
                    width: 28px;
                }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(2) {
                    width: auto;
                }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(3) {
                    width: 220px;
                }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(4) {
                    width: 130px;
                }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(5) {
                    width: 160px;
                }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(6) {
                    width: 160px;
                }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(7) {
                    width: 90px;
                    text-align: center;
                }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table thead tr th:nth-child(8) {
                    width: 40px;
                }

            section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr {
                border-bottom: 1px solid #D8D8D8;
            }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td {
                    position: relative;
                    padding: 12px 5px;
                    text-align: left;
                    vertical-align: middle;
                    font-size: 16px;
                }

                    section.store-overview form div#store-overview-tabs div.card.card-users 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.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td select.program, section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td select.role {
                            background-color: #ffffff;
                        }

                    section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td input[type=text], section.store-overview form div#store-overview-tabs div.card.card-users 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.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td ul {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                        display: block;
                        background-color: #ffffff;
                        box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                        position: absolute;
                        right: 55px;
                        top: 8px;
                        border-radius: 10px;
                        display: none;
                        z-index: 10;
                    }

                        section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td ul li {
                            padding: 4px;
                        }

                            section.store-overview form div#store-overview-tabs div.card.card-users 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.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td ul li a:hover {
                                    background-color: #F0EDE5;
                                }

                    section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td .image img {
                        float: left;
                        margin-right: 10px;
                    }

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

                        section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td span strong {
                            display: block;
                            font-size: 16px;
                            color: #201904;
                            line-height: 26px;
                        }

                    section.store-overview form div#store-overview-tabs div.card.card-users 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.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td a.options:hover {
                            background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                        }

                    section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr td:nth-child(7) {
                        text-align: right;
                    }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr:first-of-type {
                    border-bottom-color: transparent;
                }

                    section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr:first-of-type td input[type=text]:focus, section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr:first-of-type td input[type=email]:focus {
                        background: #ffffff;
                    }

                section.store-overview form div#store-overview-tabs div.card.card-users table.users-table tbody tr:last-of-type {
                    border-bottom: none;
                }

        section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method {
            width: 100%;
            color: #201904;
        }

            section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th {
                color: #7F7F84;
                text-align: center;
                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
            }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(1) {
                    text-align: left;
                    width: 205px;
                }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(2) {
                    text-align: left;
                    width: calc(100% - 445px);
                }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(3) {
                    width: 140px;
                }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method thead tr th:nth-child(4) {
                    width: 100px;
                }

            section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td {
                vertical-align: top;
                padding: 10px 8px;
            }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td strong {
                    font-size: 17px;
                    font-weight: 600;
                    line-height: 25px;
                }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box {
                    margin: 10px 0;
                }

                    section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance {
                        list-style: none;
                        margin: 5px 0;
                        padding: 0;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        width: 100%;
                        border: 1px solid #F0EDE5;
                        border-radius: 8px;
                        padding: 8px 15px;
                        margin-bottom: 10px;
                    }

                        section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li {
                            text-align: left;
                        }

                            section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span {
                                font-size: 17px;
                                font-weight: 400;
                                line-height: 17px;
                                display: block;
                            }

                                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.title {
                                    font-weight: 500;
                                }

                                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.expire {
                                    color: #4A4A4D;
                                    font-size: 14px;
                                    line-height: 20px;
                                }

                                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li span.price {
                                    font-size: 16px;
                                    font-weight: 500;
                                    line-height: 16px;
                                }

                            section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a {
                                display: block;
                                width: 30px;
                                height: 30px;
                                font-size: 17px;
                                text-align: center;
                                margin: 0 auto;
                                line-height: 30px;
                            }

                                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a.edit {
                                    color: #7F7F84;
                                }

                                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li a.trash {
                                    color: #D25D3E;
                                }

                            section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(1) {
                                width: 40px;
                            }

                            section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(2) {
                                width: calc(100% - 140px);
                            }

                            section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(3) {
                                width: 100px;
                                text-align: center;
                            }

                            section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(4) {
                                width: 50px;
                            }

                            section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance li:nth-child(5) {
                                width: 50px;
                            }

                        section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box ul.allowance:last-of-type {
                            margin-bottom: none;
                        }

                    section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .allowance-box a.add-allowance {
                        display: flex;
                        justify-content: flex-end;
                        color: #D25D3E;
                        font-size: 16px;
                        font-weight: 600;
                        line-height: 22px;
                    }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .option {
                    display: block;
                    margin: 0 auto;
                    height: 32px;
                    width: 32px;
                    line-height: 32px;
                    background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                }

                    section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .option:hover {
                        background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                    }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping span {
                    display: block;
                }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping .action {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    margin-top: 5px;
                }

                    section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping .action span {
                        display: block;
                        font-size: 15px;
                        line-height: 20px;
                        color: #4A4A4D;
                        margin-right: 15px;
                        margin-right: 20px;
                    }

                    section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td .charge-shipping .action label {
                        margin: 0 15px 0 0;
                        padding: 0;
                        display: inherit;
                        align-items: center;
                        color: #4A4A4D;
                        cursor: pointer;
                    }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td:nth-child(3) {
                    text-align: center;
                }

                section.store-overview form div#store-overview-tabs .card.card-payment-method table.payment-method tbody tr td:nth-child(4) {
                    text-align: center;
                }

        section.store-overview form div#store-overview-tabs .add-payment {
            position: absolute;
            right: 15px;
            top: 0;
            display: block;
            line-height: 20px;
            font-weight: 600;
            font-size: 16px;
            color: #D25D3E;
            text-decoration: none;
        }

        section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program {
            width: 100%;
            color: #201904;
        }

            section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th {
                color: #7F7F84;
                text-align: center;
                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
            }

                section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(1) {
                    text-align: left;
                    width: 255px;
                }

                section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(2) {
                    text-align: left;
                    width: calc(100% - 490px);
                }

                section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(3) {
                    width: 140px;
                }

                section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program thead tr th:nth-child(4) {
                    width: 100px;
                }

            section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr {
                border-bottom: 1px solid #F0EDE5;
            }

                section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td {
                    vertical-align: top;
                    padding: 15px 8px;
                }

                    section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td strong {
                        font-size: 17px;
                        font-weight: 600;
                        line-height: 25px;
                    }

                    section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td ul {
                        margin: 0;
                        padding: 0;
                    }

                    section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .option {
                        display: block;
                        margin: 0 auto;
                        height: 32px;
                        width: 32px;
                        line-height: 32px;
                        background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                    }

                        section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .option:hover {
                            background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                        }

                    section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping span {
                        display: block;
                    }

                    section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping .action {
                        display: flex;
                        justify-content: flex-start;
                        align-items: center;
                        margin-top: 5px;
                    }

                        section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping .action span {
                            display: block;
                            font-size: 15px;
                            line-height: 20px;
                            color: #4A4A4D;
                            margin-right: 15px;
                            margin-right: 20px;
                        }

                        section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td .charge-shipping .action label {
                            margin: 0 15px 0 0;
                            padding: 0;
                            display: inherit;
                            align-items: center;
                            color: #4A4A4D;
                            cursor: pointer;
                        }

                    section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td:nth-child(3) {
                        text-align: center;
                    }

                    section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr td:nth-child(4) {
                        text-align: center;
                    }

                section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr:last-of-type {
                    border: none;
                }

                    section.store-overview form div#store-overview-tabs .card.card-payment-program table.payment-program tbody tr:last-of-type td {
                        padding-bottom: 10px;
                    }

        section.store-overview form div#store-overview-tabs .quota-table-header {
            list-style: none;
            margin: 50px 28px 20px;
            padding: 0;
            display: flex;
            flex-wrap: nowrap;
            font-size: 12px;
            line-height: 12px;
            font-weight: 600;
            color: #7F7F84;
            text-transform: uppercase;
        }

            section.store-overview form div#store-overview-tabs .quota-table-header li {
                display: block;
            }

                section.store-overview form div#store-overview-tabs .quota-table-header li:nth-child(1) {
                    width: 526px;
                }

                section.store-overview form div#store-overview-tabs .quota-table-header li:nth-child(2) {
                    width: 162px;
                }

                section.store-overview form div#store-overview-tabs .quota-table-header li:nth-child(3) {
                    width: 230px;
                }

                section.store-overview form div#store-overview-tabs .quota-table-header li:nth-child(4) {
                    width: 136px;
                }

        section.store-overview form div#store-overview-tabs .quota-group-box .quota-group {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 15px;
        }

            section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
            }

                section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota img {
                    width: 56px;
                    height: 48px;
                    margin: 0 14px 0 20px;
                }

                section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota span {
                    font-size: 15px;
                    font-weight: 500;
                    color: #4A4A4D;
                    display: block;
                    text-align: left;
                }

                    section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota span.title {
                        display: block;
                        font-size: 12px;
                        font-weight: 500;
                        color: #7F7F84;
                        width: 418px;
                    }

                        section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota span.title strong {
                            font-size: 18px;
                            font-weight: 600;
                            line-height: 22px;
                            color: #201904;
                            display: block;
                        }

                    section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota span.quota {
                        width: 160px;
                    }

                    section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota span.payment-structure {
                        width: 238px;
                    }

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

                    section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota a.action:hover {
                        background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                    }

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

            section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result {
                margin-top: 15px;
                display: none;
                padding-left: 65px;
            }

                section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-sets {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    width: 100%;
                    display: flex;
                    flex-wrap: nowrap;
                    justify-content: space-between;
                    font-size: 12px;
                    line-height: 25px;
                    font-weight: 600;
                    color: #7F7F84;
                    text-transform: uppercase;
                }

                section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail {
                    border-radius: 10px;
                    border: 1px solid #F0EDE5;
                    padding: 15px;
                    margin-left: 0;
                }

                    section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail {
                        margin-bottom: 10px;
                        display: flex;
                        flex-direction: row;
                        justify-content: space-between;
                        align-items: center;
                    }

                        section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail img {
                            width: 56px;
                            height: 48px;
                        }

                        section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail span {
                            display: block;
                            font-size: 12px;
                            font-weight: 500;
                            color: #7F7F84;
                            text-align: left;
                            width: calc(100% - 86px);
                            padding: 0 15px;
                        }

                            section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail span strong {
                                font-size: 18px;
                                font-weight: 600;
                                line-height: 22px;
                                color: #201904;
                                display: block;
                            }

                        section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail a.action {
                            display: block;
                            width: 30px;
                            height: 30px;
                            background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                        }

                            section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail a.action:hover {
                                background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                            }

                        section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result .quota-detail .detail:last-of-type {
                            margin-bottom: 0;
                        }

                section.store-overview form div#store-overview-tabs .quota-group-box .quota-group .quota-result:last-of-type {
                    margin-bottom: 0;
                }

        section.store-overview form div#store-overview-tabs a.add-method {
            position: absolute;
            right: 15px;
            top: 0;
            color: #D25D3E;
            text-decoration: none;
        }

        section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping {
            width: 100%;
            margin-top: 15px;
        }

            section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th {
                padding: 8px 10px;
                font-size: 12px;
                text-transform: uppercase;
                color: #7F7F84;
                font-weight: 600;
                text-align: left;
                line-height: 30px;
            }

                section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(1) {
                    width: 200px;
                }

                section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(2) {
                    width: calc(100% - 405px);
                }

                section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(3) {
                    width: 120px;
                }

                section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping thead tr th:nth-child(4) {
                    width: 85px;
                }

            section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr {
                border-bottom: 1px solid #F0EDE5;
            }

                section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td {
                    text-align: left;
                    padding: 15px 5px;
                    vertical-align: top;
                }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td.no-method div {
                        font-size: 20px;
                        font-weight: 600;
                        line-height: 25px;
                        display: block;
                        text-align: center;
                        padding: 50px;
                        color: #7F7F84;
                        text-align: center;
                    }

                        section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td.no-method div a {
                            display: inline-block;
                            color: #D25D3E;
                            text-decoration: none;
                        }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td ul {
                        margin: 5px 0 0;
                        padding: 0;
                        list-style: none;
                        display: flex;
                    }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td strong {
                        font-size: 17px;
                        font-weight: 600;
                        line-height: 24px;
                    }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td span {
                        display: block;
                        width: 100%;
                        font-size: 16px;
                        line-height: 20px;
                    }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td input[type=text] {
                        border-radius: 10px;
                        border: 1px solid #F0EDE5;
                        width: 200px;
                        height: 36px;
                        padding: 0 15px;
                        border-radius: 6px;
                        margin-top: 5px;
                    }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td a.action {
                        display: table;
                        width: 32px;
                        height: 32px;
                        line-height: 32px;
                        margin: 0 auto;
                        background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                    }

                        section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td a.action:hover {
                            background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                        }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr td:nth-child(2) {
                        text-align: left;
                    }

                section.store-overview form div#store-overview-tabs div.card.card-shipping table.shipping tbody tr:last-of-type {
                    border-bottom: none;
                }

        section.store-overview form div#store-overview-tabs div.card.card-shipping .payment-option {
            display: flex;
            justify-content: space-between;
            padding: 20px 15px;
        }

            section.store-overview form div#store-overview-tabs div.card.card-shipping .payment-option strong {
                display: block;
                line-height: 18px;
                font-size: 16px;
                font-weight: 500;
            }

        section.store-overview form div#store-overview-tabs div.card.card-shipping label {
            margin: 0 15px 0 0;
            padding: 0;
            display: flex;
            align-items: center;
            align-items: center;
            color: #4A4A4D;
            cursor: pointer;
            font-size: 16px;
            font-weight: 400;
        }

        section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle {
            padding: 25px 25px;
            border-top: 1px solid #F0EDE5;
            display: none;
        }

            section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by {
                margin: 0;
                padding: 0;
            }

                section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by span.title {
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 22px;
                    color: #201904;
                    margin-bottom: 15px;
                    display: block;
                }

                section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by label {
                    margin-bottom: 5px;
                }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.tax-by label:last-of-type {
                        margin-bottom: 0;
                    }

            section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle hr {
                margin: 25px 0;
            }

            section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.country-state {
                padding: 0;
                margin: 0;
            }

                section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle div.country-state span {
                    display: block;
                    color: #201904;
                    font-weight: 500;
                    font-size: 18px;
                    line-height: 20px;
                    margin: 20px 0;
                }

            section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state {
                margin: 0;
                width: 100%;
                margin: 15px auto 0;
            }

                section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th {
                    padding: 8px 0;
                    font-size: 12px;
                    text-transform: uppercase;
                    color: #7F7F84;
                    font-weight: 600;
                    text-align: left;
                    line-height: 30px;
                }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(1) {
                        width: 40%;
                    }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(2) {
                        width: calc(60% - 85px);
                    }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state thead tr th:nth-child(3) {
                        width: 85px;
                        text-align: center;
                    }

                section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td strong {
                    font-size: 17px;
                    font-weight: 600;
                    line-height: 24px;
                }

                section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td span {
                    display: block;
                    width: 100%;
                    font-size: 16px;
                    line-height: 20px;
                }

                section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td input[type=text] {
                    border-radius: 10px;
                    border: 1px solid #F0EDE5;
                    width: 200px;
                    height: 36px;
                    padding: 0 15px;
                    border-radius: 6px;
                    margin-top: 5px;
                }

                section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td a.action {
                    text-decoration: none;
                    display: table;
                    width: 36px;
                    height: 36px;
                    line-height: 36px;
                    margin: 0 auto;
                    background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                }

                    section.store-overview form div#store-overview-tabs div.card.card-shipping .tax-by-toggle table.country-state tbody tr td a.action:hover {
                        background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                    }

        section.store-overview form div#store-overview-tabs .card.card-shipping-options .option-box .option {
            padding: 25px 0;
        }

            section.store-overview form div#store-overview-tabs .card.card-shipping-options .option-box .option span {
                display: block;
                font-size: 18px;
                font-weight: 500;
                line-height: 22px;
                color: #201904;
                margin-bottom: 20px;
            }

            section.store-overview form div#store-overview-tabs .card.card-shipping-options .option-box .option label {
                margin: 10px 15px 10px 0;
                padding: 0;
                display: table;
                vertical-align: middle;
                align-items: center;
                align-items: center;
                color: #4A4A4D;
                cursor: pointer;
                line-height: 20px;
                font-weight: 400;
            }

            section.store-overview form div#store-overview-tabs .card.card-shipping-options .option-box .option em {
                font-style: normal;
                font-size: 16px;
                font-weight: 400;
                color: #7F7F84;
                line-height: 25px;
            }

        section.store-overview form div.actions {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
        }

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

                section.store-overview form div.actions button.back {
                    color: #7F7F84;
                }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                section.new-quota-set form 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 #F0EDE5;
        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, .inactivepaging {
    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, .inactivepaging li {
        padding-left: 10px;
    }

        .paging li a, .inactivepaging 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, .inactivepaging li a .fa {
                font-size: 18px;
                font-weight: bolder;
                margin: 0 15px;
            }

        .paging li:hover a, .inactivepaging li:hover a {
            background-color: #D25D3E;
            color: #ffffff;
        }

        .paging li.active a, .inactivepaging li.active a {
            background-color: #D25D3E;
            color: #ffffff;
        }

        .paging li:first-of-type a, .paging li:last-of-type a, .inactivepaging li:first-of-type a, .inactivepaging li:last-of-type a {
            background: transparent;
            font-weight: 600;
        }

            .paging li:first-of-type a:hover, .paging li:last-of-type a:hover, .inactivepaging li:first-of-type a:hover, .inactivepaging 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-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: 52px;
            padding: 0 15px;
            border-radius: 10px;
            border: 1px solid #F0EDE5;
            margin-bottom: 15px;
        }

        .modal .modal-content .modal-body form input.name, .modal .modal-content .modal-body form input[type=password] {
            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 input.name, .modal .modal-content .modal-body form .select-form-fields {
            appearance: none;
            border: 1px solid #F0EDE5;
            height: 64px;
            padding: 0 15px;
            border-radius: 10px;
            display: block;
            width: 100%;
            margin-bottom: 24px;
            outline: none;
            background: url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
            background-size: 12px 12px;
        }

.allowance-box-user {
    position: relative;
}

.heading-user {
    position: relative;
}

.add-allowance-user {
    display: table;
    position: absolute;
    right: 15px;
    top: 0;
    color: #D25D3E;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.allowance-user {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #F0EDE5;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.allowances-span-user {
    display: block;
    line-height: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #201904;
}

.store-user-actions-step5 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.a-save-employee-store-step5 {
    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;
}

.h5-new-user {
    display: table !important;
    font-size: 12px !important;
    line-height: 20px !important;
    font-weight: 600 !important;
    color: #7F7F84 !important;
}

.a-cancel-employee-store-step5 {
    color: #7F7F84;
    margin-right: 5%;
}

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

.allowances-span-user {
    width: calc(100% - 100px);
    text-align: left;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #4A4A4D;
    padding: 0 15px;
}

.allowances-span-strong-user {
    display: block;
    line-height: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #201904;
}


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

select.fields {
    appearance: none;
    border: 1px solid $light-grey2;
    height: 64px;
    padding: 0 15px;
    border-radius: $border10;
    display: block;
    width: 100%;
    margin-bottom: 24px;
    outline: none;
    background: url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
    background-size: 12px 12px;
    &.classic

        {
            display: inline-block;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            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% - .5rem), 100% 0;
            background-size: 1.5em 1.5em;
            background-repeat: no-repeat;
            &:focus

        {
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA3klEQVRIS+3VMU9CMRTF8d8zBL+aizoQFhx0kUk33RzdYMNFXUFnYeGrYYyaJiUxJHDLSxodbNKpfeffc9/pbaPyaCrr+3OA++z4rtT5Pg5GuMnCY9yWQEoBE1xhlUUP8YDrCBIB0vojLvGO0yz4hm4JJAKcYYoPHGOZAUdYoIMBXrc5iQAHeMlzviFygj7O8dkWEJU4XI8chALRhn9AVKHf70VRTHu4wFfbmKZLNKt50dLBnna0imcMd/2I0phWa3Y/D1e1Xa9BCZJG0VuQNpaWKMx72xS1Fl5/WN3BN+AgJhnZQlq4AAAAAElFTkSuQmCC');
            background-position: calc(100% - .5rem), 100% 0;
            background-size: 1.5em 1.5em;
            background-repeat: no-repeat;
            border-color: grey;
            outline: 0;
        }

    }
}

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

section.orders form div.card-orders div.card-body div.title-actions {
    padding-bottom: 20px;
}


    section.orders form div.card-orders div.card-body div.title-actions div.search {
        display: flex;
        flex-direction: row;
        height: 52px;
        border-radius: 10px;
        overflow: hidden;
        background-color: #f6f4f0;
        position: relative;
    }

        section.orders form div.card-orders div.card-body div.title-actions div.search input.search {
            border: none;
            background-color: transparent;
            padding: 0 15px;
            width: calc(100% - 52px);
            margin-bottom: 0px;
        }

        section.orders form div.card-orders div.card-body div.title-actions div.search button.submit {
            width: 52px;
            height: 52px;
            display: block;
            border-radius: 10px;
            line-height: 52px;
            text-align: center;
            border: none;
            background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
        }

            section.orders form div.card-orders div.card-body div.title-actions div.search button.submit:hover {
                background: transparent url(../images/icons/icon_search_orange.svg) center center no-repeat;
            }

    section.orders form div.card-orders div.card-body div.title-actions a.add {
        width: 67px;
        min-width: 67px;
        height: 52px;
        display: block;
        border-radius: 10px;
        line-height: 52px;
        text-align: center;
        margin-left: 12px;
        background: #f6f4f0 url(../images/icons/icon_download_black.svg) center center no-repeat;
    }

        section.orders form div.card-orders div.card-body div.title-actions a.add:hover {
            background: #ffffff url(../images/icons/icon_download_orange.svg) center center no-repeat;
        }

section.orders form div.card-orders div.card-body table.all-orders tbody tr {
    border-bottom: 1px solid #F0EDE5;
 
}

    section.orders form div.card-orders div.card-body table.all-orders tbody tr td {
        width: 20%;
    }

section.orders form div.card-orders div.card-body table.all-orders thead.productInfoHead tr th {
    width: 20%;
}

section.orders form div.card-orders div.card-body table.all-orders tbody tr td a {
    text-decoration: none;
    color: #201904;
    text-align: center;
    margin-right: 10px;
    position: relative;
    font-size: 16px;
}

    section.orders form div.card-orders div.card-body table.all-orders tbody tr td a i {
        margin-right: 4px;
    }

section.orders form div.card-orders div.card-body select.PIC-Select {
    appearance: none;
    border: 1px solid #F0EDE5;
    height: 64px;
    padding: 0 15px;
    border-radius: 10px;
    display: block;
    width: 100%;
    margin-bottom: 24px;
    outline: none;
    background: url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
    background-size: 12px 12px;
}

section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box {
    padding-left: 15px;
    width: 100%;
}

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products {
        width: 100%;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products thead tr th {
            text-transform: uppercase;
            text-align: center;
            color: #7F7F84;
            font-weight: 600;
            font-size: 12px;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products thead tr th:nth-child(1) {
                text-align: left;
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products thead tr th:nth-child(2) {
                text-align: left;
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products thead tr th:nth-child(3) {
                text-align: right;
            }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr {
            border-bottom: 1px solid #F0EDE5;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td {
                vertical-align: middle;
                text-align: left;
                padding: 10px 0;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td img {
                    width: 56px;
                    margin: 0 5px;
                }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td input.fields {
                    width: 52px;
                    height: 36px;
                    border: 1px solid #F0EDE5;
                    border-radius: 10px;
                    text-align: center;
                    padding: 0 5px;
                    vertical-align: middle;
                }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a {
                    display: inline-block;
                    font-size: 18px;
                    text-decoration: none;
                    margin: 0 10px;
                    color: #7F7F84;
                }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.action {
                        display: table;
                        margin: 0 0 0 auto;
                        width: 30px;
                        height: 30px;
                        background: url(../images/icons/btn_action_black.svg) center center no-repeat;
                    }

                        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.action:hover {
                            background: url(../images/icons/btn_action_orange.svg) center center no-repeat;
                        }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.more-option {
                        color: #7F7F84;
                    }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td a.delete {
                        color: #D32243;
                    }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type {
                    display: flex;
                    align-items: center;
                }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span {
                        display: block;
                        text-align: left;
                        font-size: 12px;
                        color: #7F7F84;
                        line-height: 18px;
                        font-weight: 500;
                    }

                        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span.title {
                            color: #201904;
                            font-size: 16px;
                            line-height: 20px;
                        }

                        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span.qty, section.config-store form div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:first-of-type span.size {
                            font-size: 12px;
                        }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr td:last-of-type {
                    text-align: right;
                }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details div.products-box table.products tbody tr:last-of-type {
                border-bottom: none;
            }

section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li {
        display: flex;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a {
            display: block;
            height: 40px;
            line-height: 40px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            color: #ffffff;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a.all {
                background-color: #D25D3E;
                width: 120px;
            }

section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a.small-device-toggle2 {
    width: 40px;
    padding: 0;
    box-shadow: 0px 7px 10px rgba(201, 201, 201, 0.4);
    background: #ffffff url(../images/icons/btn_filter_black.svg) center center no-repeat;
    display: none;
}

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a.small-device-toggle2:hover {
        background: #ffffff url(../images/icons/btn_filter_orange.svg) center center no-repeat;
    }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a.toggle-product-sets {
                background-color: #F8E5E0;
                color: #201904;
                width: 100%;
                margin-top: 10px;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li a.toggle-product-sets .fa {
                    color: #D25D3E;
                    font-weight: bolder;
                    font-size: 18px;
                    margin-left: 10px;
                }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set {
            position: relative;
            margin: 0 10px;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set a.add-product-set {
                background-color: #201904;
                width: 200px;
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action {
                position: absolute;
                background-color: #ffffff;
                left: 50%;
                top: 40px;
                transform: translateX(-50%);
                box-shadow: 2px 2px 17px rgba(32, 25, 4, 0.17);
                border-radius: 10%;
                padding: 10px;
                width: 90%;
                z-index: 40;
                display: none;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action button {
                    display: block;
                    width: 100%;
                    border: none;
                    height: 42px;
                    font-size: 18px;
                    font-weight: 500;
                    text-align: left;
                    color: #201904;
                    background-color: #ffffff;
                    border-radius: 10px;
                    padding: 0 15px;
                }

                    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action button.active {
                        color: #ffffff;
                        background-color: #D25D3E;
                    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li:nth-child(2) {
            display: none;
        }

section.orders form div.card-orders div.card-body div.card.card-selection .card-body .no-selection {
    min-height: 329px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    section.orders form div.card-orders div.card-body div.card.card-selection .card-body .no-selection p {
        font-size: 20px;
        color: #7F7F84;
        font-weight: 500;
        line-height: 25px;
        margin: 0;
        padding: 0;
        width: 50%;
    }

    section.orders form div.card-orders div.card-body div.card.card-selection .card-body .no-selection img {
        width: 90px;
        margin-bottom: 30px;
    }

section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider {
    margin-bottom: 20px;
}

section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.title {
    display: flex;
    justify-content: space-between;
    height: 25px;
    align-items: center;
    margin-bottom: 10px;
}

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.title span {
        color: #201904;
        font-size: 18px;
        line-height: 25px;
        font-weight: 600;
    }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.title a {
        display: block;
        color: #201904;
        font-weight: 800;
        font-size: 22px;
        text-decoration: none;
        width: 25px;
        height: 25px;
        line-height: 25px;
        text-align: center;
    }



    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider {
        height: 0;
        overflow: hidden;
        width: 100%;
        padding: 0 10px;
        transition: 0.5s all;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values input[type=text] {
                border: none;
                display: block;
                width: 100px;
                background-color: transparent;
                color: #4A4A4D;
                font-size: 15px;
                font-weight: 400;
                line-height: 37px;
            }

                section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .values input[type=text]:last-of-type {
                    text-align: right;
                }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .slider-box {
            width: 100%;
            margin: 15px auto;
        }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-slider {
            margin-top: 20px;
            height: 5px;
            position: relative;
            border: none;
            background: #C6C5C5;
        }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-state-default, section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-widget-content .ui-state-default, section.config-store form div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-widget-header .ui-state-default {
            background: #ffffff;
            border-radius: 50%;
            outline: none;
            border: none;
            position: absolute;
            top: -9px;
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
        }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider .ui-slider-horizontal .ui-slider-range {
            background: #D25D3E;
        }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider #labelHolder {
            height: 5px;
            position: relative;
            border: none;
        }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider div.price-slider span {
            position: absolute;
            width: 1.2em;
            height: 1.2em;
            margin-left: -0.6em;
            text-align: center;
        }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter-slider.active div.price-slider {
        height: 75px;
    }

section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter {
    margin-bottom: 20px;
}

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter div.title {
        display: flex;
        justify-content: space-between;
        height: 25px;
        align-items: center;
        margin-bottom: 10px;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter div.title span {
            color: #201904;
            font-size: 18px;
            line-height: 25px;
            font-weight: 600;
        }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter div.title a {
            display: block;
            color: #201904;
            font-weight: 800;
            font-size: 22px;
            text-decoration: none;
            width: 25px;
            height: 25px;
            line-height: 25px;
            text-align: center;
        }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter .filter-checkbox {
        height: 0;
        overflow: hidden;
        transition: 0.5s all;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter .filter-checkbox ul {
            margin: 0;
            padding: 0;
            list-style: none;
            min-height: 185px;
            max-height: 185px;
            overflow-y: auto;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter .filter-checkbox ul li label {
                line-height: 37px;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                font-size: 15px;
                font-weight: 400;
                color: #4A4A4D;
                align-items: center;
                margin: 0;
            }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter .filter-checkbox ul.active {
                display: block;
            }

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-details aside div.filter.active .filter-checkbox {
        height: 185px;
    }



section.orders form div.card-orders div.card-body div.card.card-info {
    margin-top: 30px;
}

    section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action {
        position: absolute;
        background-color: #ffffff;
        left: 50%;
        top: 40px;
        transform: translateX(-50%);
        box-shadow: 2px 2px 17px rgba(32, 25, 4, 0.17);
        border-radius: 10%;
        padding: 10px;
        width: 90%;
        z-index: 40;
        display: none;
    }

        section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action button {
            display: block;
            width: 100%;
            border: none;
            height: 42px;
            font-size: 18px;
            font-weight: 500;
            text-align: left;
            color: #201904;
            background-color: #ffffff;
            border-radius: 10px;
            padding: 0 15px;
        }

            section.orders form div.card-orders div.card-body div.card.card-info .card-body .product-actions ul li div.add-set div.add-set-action button.active {
                color: #ffffff;
                background-color: #D25D3E;
            }




section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer {
    position: relative;
    margin-bottom: 15px;
}

section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 12px;
}

    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product {
        width: 100%;
    }

        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
        }

            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li {
                position: relative;
            }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li img {
                    width: 56px;
                    height: 48px;
                }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li span {
                    font-size: 18px;
                    line-height: 22px;
                    font-weight: 600;
                    color: #201904;
                    display: block;
                }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li span.qty {
                        font-size: 12px;
                        line-height: 25px;
                        font-weight: 500;
                        color: #7F7F84;
                    }

                section.orders form div.card-orders div.card-body  div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li a.toggle-table {
                    display: block;
                    width: 36px;
                    height: 36px;
                    background: #F6F4F0;
                    color: #212121;
                    text-decoration: none;
                    text-align: center;
                    line-height: 36px;
                    border-radius: 4px;
                }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li a.more-action-toggle {
                    display: block;
                    line-height: 36px;
                    color: #201904;
                    font-size: 16px;
                    font-weight: 600;
                    text-decoration: none;
                    padding: 0 10px;
                }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions {
                    position: absolute;
                    right: 0;
                    top: 36px;
                    display: none;
                    background-color: #ffffff;
                    width: 220px;
                    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                    border-radius: 10px;
                    overflow: hidden;
                    flex-direction: column;
                    z-index: 10;
                }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li {
                        display: block;
                    }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li a {
                            display: block;
                            line-height: 40px;
                            font-weight: 500;
                            font-size: 18px;
                            color: #201904;
                            text-decoration: none;
                            padding: 0 10px;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li ul.sub-actions li:first-of-type {
                            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                        }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(1) {
                    width: 56px;
                }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(2) {
                    width: calc(100% - 110px);
                    padding: 0 15px;
                }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(3) {
                    width: 36px;
                }

                /*section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product ul.more-actions > li:nth-child(4) {
                    width: 36px;
                }*/

        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table {
            display: none;
            margin: 20px 0 0;
        }

            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table {
                width: 100%;
            }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th {
                    padding: 5px 0;
                    font-size: 12px;
                    color: #7F7F84;
                    text-transform: uppercase;
                    text-align: center;
                }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:nth-child(1) {
                        width: calc(100% - 200px);
                        text-align: left;
                    }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:nth-child(2) {
                        width: 100px;
                    }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:nth-child(3) {
                        width: 100px;
                    }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr {
                    border-bottom: 1px solid #F0EDE5;
                }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
                        padding: 8px 0;
                        text-align: center;
                    }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td img {
                            width: 70px;
                            margin: 0 8px;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span {
                            color: #7F7F84;
                            font-size: 12px;
                            line-height: 15px;
                            font-weight: 500;
                            display: block;
                        }

                            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span.title {
                                font-size: 16px;
                                color: #201904;
                                line-height: 20px;
                            }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td input.price {
                            border: 1px solid #F0EDE5;
                            height: 36px;
                            padding: 0 15px;
                            border-radius: 10px;
                            display: block;
                            width: 80px;
                            outline: none;
                            margin: 0 auto;
                            text-align: center;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td a.action {
                            display: block;
                            width: 30px;
                            height: 30px;
                            line-height: 30px;
                            color: #7F7F84;
                            margin: 0 auto;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:nth-child(1) {
                            display: flex;
                            align-items: center;
                            justify-content: flex-start;
                            text-align: left;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:nth-child(2) {
                            text-align: center;
                        }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:nth-child(3) {
                            text-align: center;
                            color: #201904;
                            font-size: 16px;
                            font-weight: 600;
                            width: 80px;
                        }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type {
                        border-bottom: none;
                    }

                        section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type td {
                            padding-bottom: 0;
                        }

    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-sets .set-outer:last-of-type {
        margin-bottom: 0;
    }

section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer:last-of-type {
    margin-bottom: 0;
}

section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-actions {
    height: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

    section.orders form div.card-orders div.card-body  div.selectionDiv div.card.card-product-outer .product-actions ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
    }

        section.orders form div.card-orders div.card-body  div.selectionDiv div.card.card-product-outer .product-actions ul li {
            display: block;
            position: relative;
        }

            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .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;
            }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-actions ul li a.all {
                    background-color: #D25D3E;
                }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-actions ul li a.add-set {
                    background-color: #201904;
                }

            section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .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;
            }

                section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-actions ul li ul li {
                    display: block;
                }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .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;
                    }

                    section.orders form div.card-orders div.card-body div.selectionDiv div.card.card-product-outer .product-actions ul li ul li span {
                        display: block;
                        line-height: 42px;
                        font-size: 18px;
                        font-weight: 500;
                        text-align: center;
                    }


                    /*/////*/
section.orders form div.card-orders div.card-body div.card.card-set-outer {
    position: relative;
}

    section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        margin-bottom: 12px;
    }

        section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-checkbox {
            width: 40px;
            margin-top: 35px;
        }

        section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product {
            border: 1px solid #F0EDE5;
            border-radius: 10px;
            width: calc(100% - 40px);
            padding: 20px;
        }

            section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product ul {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
                flex-direction: row;
                align-items: center;
            }

                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li img.icon {
                    display: block;
                    margin-right: 14px;
                    width: 56px;
                    height: 48px;
                }

                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li span {
                    font-size: 18px;
                    line-height: 22px;
                    font-weight: 600;
                    color: #201904;
                    display: block;
                }

                    section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li span.qty {
                        font-size: 12px;
                        line-height: 25px;
                        font-weight: 500;
                        color: #7F7F84;
                    }

                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li a {
                    display: block;
                    width: 36px;
                    height: 36px;
                    background: #F6F4F0;
                    color: #212121;
                    text-decoration: none;
                    text-align: center;
                    line-height: 36px;
                    border-radius: 4px;
                }

                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li:nth-child(1) {
                    width: 56px;
                }

                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li:nth-child(2) {
                    width: calc(100% - 92px);
                    padding: 0 15px;
                }

                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product ul li:nth-child(3) {
                    width: 36px;
                }

            section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table {
                display: none;
                margin: 20px 0 0;
            }

                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table {
                    width: 100%;
                }

                    section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th {
                        padding: 5px 0;
                        font-size: 12px;
                        color: #7F7F84;
                        text-transform: uppercase;
                    }

                        section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:first-of-type {
                            width: calc(100% - 100px);
                            text-align: left;
                        }

                        section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:last-of-type {
                            width: 100px;
                            text-align: center;
                        }

                    section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr {
                        border-bottom: 1px solid #F0EDE5;
                    }

                        section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
                            padding: 8px 0;
                        }

                            section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td img {
                                width: 70px;
                            }

                            section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail {
                                margin: 0 10px;
                            }

                                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span {
                                    color: #7F7F84;
                                    font-size: 12px;
                                    line-height: 18px;
                                    font-weight: 500;
                                    display: block;
                                }

section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span.title {
    font-size: 16px;
    font-weight: 600;
    color: #201904;
    line-height: 25px;
}

                            section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:first-of-type {
                                display: flex;
                                align-items: center;
                            }

                            section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:last-of-type {
                                text-align: center;
                                color: #201904;
                                font-size: 16px;
                                font-weight: 600;
                            }

                        section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type {
                            border-bottom: none;
                        }

                            section.orders form div.card-orders div.card-body div.card.card-set-outer .product-sets .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type td {
                                padding-bottom: 0;
                            }

    section.orders form div.card-orders div.card-body div.card.card-set-outer .product-actions ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        section.orders form div.card-orders div.card-body div.card.card-set-outer .product-actions ul li {
            display: flex;
        }

            section.orders form div.card-orders div.card-body div.card.card-set-outer .product-actions ul li a {
                display: block;
                height: 40px;
                line-height: 40px;
                border-radius: 10px;
                font-size: 16px;
                font-weight: 600;
                text-decoration: none;
                text-align: center;
                color: #ffffff;
            }

                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-actions ul li a.all {
                    background-color: #D25D3E;
                    width: 120px;
                }

            section.orders form div.card-orders div.card-body div.card.card-set-outer .product-actions ul li div.add-set {
                position: relative;
                margin: 0 10px;
            }

                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-actions ul li div.add-set a.add-product-set {
                    background-color: #201904;
                    width: 250px;
                }

                section.orders form div.card-orders div.card-body div.card.card-set-outer .product-actions ul li div.add-set div.add-set-action {
                    position: absolute;
                    background-color: #ffffff;
                    left: 50%;
                    top: 40px;
                    transform: translateX(-50%);
                    box-shadow: 2px 2px 17px rgba(32, 25, 4, 0.17);
                    border-radius: 10%;
                    padding: 10px;
                    width: 90%;
                    z-index: 40;
                    display: none;
                }

                    section.orders form div.card-orders div.card-body div.card.card-set-outer .product-actions ul li div.add-set div.add-set-action button {
                        display: block;
                        width: 100%;
                        border: none;
                        height: 42px;
                        font-size: 18px;
                        font-weight: 500;
                        text-align: left;
                        color: #201904;
                        background-color: #ffffff;
                        border-radius: 10px;
                        padding: 0 15px;
                    }

                        section.orders form div.card-orders div.card-body div.card.card-set-outer .product-actions ul li div.add-set div.add-set-action button.active {
                            color: #ffffff;
                            background-color: #D25D3E;
                        }

            section.orders form div.card-orders div.card-body div.card.card-set-outer .product-actions ul li:nth-child(2) {
                display: none;
            }

section.orders form div.card-orders div.card-body div.card.card-set-outer {
    margin-top: 30px;
}

section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group {
    margin-bottom: 15px;
}

    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }

        section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li {
            position: relative;
        }

            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li img {
                width: 56px;
                height: 48px;
            }

            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li span {
                font-size: 18px;
                line-height: 22px;
                font-weight: 600;
                color: #201904;
                display: block;
            }

                section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li span.qty {
                    font-size: 12px;
                    line-height: 25px;
                    font-weight: 500;
                    color: #7F7F84;
                }

            /*section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li a.toggle-table {
                display: block;
                width: 36px;
                height: 36px;
                background: #F6F4F0;
                color: #212121;
                text-decoration: none;
                text-align: center;
                line-height: 36px;
                border-radius: 4px;
            }
*/
            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li a.more-action-toggle {
                display: block;
                line-height: 36px;
                color: #201904;
                font-size: 16px;
                font-weight: 600;
                text-decoration: none;
                padding: 0 10px;
            }

            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions {
                position: absolute;
                left: 50%;
                top: 36px;
                transform: translateX(-50%);
                display: none;
                background-color: #ffffff;
                width: 100px;
                box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
                border-radius: 10px;
                overflow: hidden;
                flex-direction: column;
                z-index: 10;
            }

                section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li {
                    display: block;
                    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                }

                    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li a {
                        display: block;
                        line-height: 30px;
                        font-size: 13px;
                        color: #201904;
                        text-decoration: none;
                        text-align: center;
                    }

                    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li ul.sub-actions li:last-of-type {
                        border-bottom: none;
                    }

            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(1) {
                width: 56px;
            }

            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(2) {
                width: calc(100% - 14px);
                padding: 0 15px;
            }

            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(3) {
                width: 40px;
            }

            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group ul.more-actions > li:nth-child(4) {
                width: 36px;
            }

    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set {
        display: none;
    }

        section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set span.heading {
            color: #7F7F84;
            font-weight: 600;
            font-size: 12px;
            display: block;
            line-height: 20px;
            margin: 15px 0;
        }

        section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: flex-start;
            margin-bottom: 12px;
        }

            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product {
                border: 1px solid #F0EDE5;
                border-radius: 10px;
                width: 100%;
                padding: 20px;
            }

                section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                }

                    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li img.icon {
                        display: block;
                        margin-right: 14px;
                        width: 56px;
                        height: 48px;
                    }

                    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li span {
                        font-size: 18px;
                        line-height: 22px;
                        font-weight: 600;
                        color: #201904;
                        display: block;
                    }

                        section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li span.qty {
                            font-size: 12px;
                            line-height: 25px;
                            font-weight: 500;
                            color: #7F7F84;
                        }

                    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li a {
                        display: block;
                        width: 36px;
                        height: 36px;
                        background: #F6F4F0;
                        color: #212121;
                        text-decoration: none;
                        text-align: center;
                        line-height: 36px;
                        border-radius: 4px;
                    }

                    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(1) {
                        width: 56px;
                    }

                    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(2) {
                        width: calc(100% - 92px);
                        padding: 0 15px;
                    }

                    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product ul li:nth-child(3) {
                        width: 36px;
                    }

                section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table {
                    display: none;
                    margin: 20px 0 0;
                }

                    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table {
                        width: 100%;
                    }

                        section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th {
                            padding: 5px 0;
                            font-size: 12px;
                            color: #7F7F84;
                            text-transform: uppercase;
                        }

                            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:first-of-type {
                                width: calc(100% - 100px);
                                text-align: left;
                            }

                            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table thead tr th:last-of-type {
                                width: 100px;
                                text-align: center;
                            }

                        section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr {
                            border-bottom: 1px solid #F0EDE5;
                        }

                            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td {
                                padding: 8px 0;
                            }

                                section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td img {
                                    width: 70px;
                                }

                                section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail {
                                    margin: 0 10px;
                                }

                                    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span {
                                        color: #7F7F84;
                                        font-size: 12px;
                                        line-height: 18px;
                                        font-weight: 500;
                                        display: block;
                                    }

                                        section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td div.detail span.title {
                                            font-size: 16px;
                                            font-weight: 600;
                                            color: #201904;
                                            line-height: 25px;
                                        }

                                section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:first-of-type {
                                    display: flex;
                                    align-items: center;
                                }

                                section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr td:last-of-type {
                                    text-align: center;
                                    color: #201904;
                                    font-size: 16px;
                                    font-weight: 600;
                                }

                            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type {
                                border-bottom: none;
                            }

                                section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer .set-outer-product .set-outer-product-table table.set-table tbody tr:last-of-type td {
                                    padding-bottom: 0;
                                }

            section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group div.product-set .set-outer:last-of-type {
                margin-bottom: 0;
            }

    section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group .card.card-set-group:last-of-type {
        margin-bottom: 0;
    }

section.orders form div.card-orders div.card-body div.selectionDivPSG div.product-set-group div.card-set-group ul li a {
    display: block;
    width: 36px;
    height: 36px;
    background: #F6F4F0;
    color: #212121;
    text-decoration: none;
    text-align: center;
    line-height: 36px;
    border-radius: 4px;
}

.EmbelishmentListView tr td a.edit {
    display: block !important;
    height: 20px;
    line-height: 20px;
    color: #D25D3E !important;
    font-weight: 600;
    font-size: 16px;
    width: 60px;
}

.btnsave {
    background-color: #C64F2F !important;
    color: white;
    text-decoration: none;
    padding: 0 25px;
    line-height: 52px;
    display: block;
    border-radius: 10px;
    margin: 0 10px;
    border: none;
    background: none;
    cursor: pointer
}

.more-actions, .sub-actions {
    list-style-type: none;
}
/*#QuotaSetGroupStoreEmployeeTable tbody tr td input[type=text],
#QuotaSetGroupStoreEmployeeTable tbody tr td input[type=email],
#QuotaSetGroupStoreEmployeeTable thead tr td input[type=text],
#QuotaSetGroupStoreEmployeeTable thead tr td input[type=email],
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td input[type=text],
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td input[type=email],
#QuotaSetGroupStoreEmployeeTableAssigned thead tr td input[type=text],
#QuotaSetGroupStoreEmployeeTableAssigned thead tr td input[type=email],
#QuotaSetGroupStoreEmployeeTableUnAssigned tbody tr td input[type=text],
#QuotaSetGroupStoreEmployeeTableUnAssigned tbody tr td input[type=email],
#QuotaSetGroupStoreEmployeeTableUnAssigned thead tr td input[type=text],
#QuotaSetGroupStoreEmployeeTableUnAssigned thead 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;
}*/

#QuotaSetGroupStoreEmployeeTable tbody tr td input[type=text],
#QuotaSetGroupStoreEmployeeTable tbody tr td input[type=email],
#QuotaSetGroupStoreEmployeeTable thead tr td input[type=text],
#QuotaSetGroupStoreEmployeeTable thead tr td input[type=email],
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td input[type=text],
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td input[type=email],
#QuotaSetGroupStoreEmployeeTableAssigned thead tr td input[type=text],
#QuotaSetGroupStoreEmployeeTableAssigned thead tr td input[type=email],
#QuotaSetGroupStoreEmployeeTableUnAssigned tbody tr td input[type=text],
#QuotaSetGroupStoreEmployeeTableUnAssigned tbody tr td input[type=email],
#QuotaSetGroupStoreEmployeeTableUnAssigned thead tr td input[type=text],
#QuotaSetGroupStoreEmployeeTableUnAssigned thead 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;
    margin-bottom: 10px
}

#QuotaSetGroupStoreEmployeeTable tbody tr,
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr,
#QuotaSetGroupStoreEmployeeTableUnAssigned tbody tr {
    border-bottom: 1px solid #D8D8D8;
}

#QuotaSetGroupStoreEmployeeTable thead tr td,
#QuotaSetGroupStoreEmployeeTable tbody tr td,
#QuotaSetGroupStoreEmployeeTableAssigned thead tr td,
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td,
#QuotaSetGroupStoreEmployeeTableUnAssigned thead tr td,
#QuotaSetGroupStoreEmployeeTableUnAssigned tbody tr td {
    position: relative;
    padding: 12px 5px;
    text-align: left;
    vertical-align: middle;
    font-size: 16px;
}

#QuotaSetGroupStoreEmployeeTable tbody tr td .image img,
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td .image img,
#QuotaSetGroupStoreEmployeeTableUnAssigned tbody tr td .image img {
    float: left;
    margin-right: 10px;
}

#QuotaSetGroupStoreEmployeeTable tbody tr td select,
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td select,
#QuotaSetGroupStoreEmployeeTableUnAssigned 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%;
}

.toggle-options-ul 
{
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    background-color: #ffffff;
    box-shadow: 2px 2px 17px rgb(0 0 0 / 10%);
    position: relative;
    right: 40px;
    top: 8px;
    border-radius: 10px;
    display: none;
    z-index: 10;
}
}

#PaymentProgramList tbody tr td ul.sub-actions {
    position: absolute;
    transform: translateX(-50%);
    background-color: #ffffff;
    width: 100px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
    z-index: 10;
}
#PaymentProgramList tbody tr td ul.sub-actions li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#PaymentProgramList tbody tr td ul.sub-actions li a {
    display: block;
    line-height: 30px;
    font-size: 13px;
    color: #201904;
    text-decoration: none;
    text-align: center;
}

#DivQuotaSetList ul.more-actions ul.sub-actions {
    position: absolute;
    transform: translateX(-50%);
    background-color: #ffffff;
    width: 100px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
    z-index: 10;
}

#DivQuotaSetList ul.more-actions ul.sub-actions li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#DivQuotaSetList ul.more-actions ul.sub-actions li a {
    display: block;
    line-height: 30px;
    font-size: 13px;
    color: #201904;
    text-decoration: none;
    text-align: center;
}

#QuotaSetGroupStoreEmployeeTableAssigned thead tr th,
#QuotaSetGroupStoreEmployeeTableUnAssigned thead tr th {
    color: #7F7F84;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

#QuotaSetGroupStoreEmployeeTable tbody tr td a.options-qs,
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td a.options-qs,
#QuotaSetGroupStoreEmployeeTableUnAssigned tbody tr td a.options-qs {
    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;
}

#QuotaSetGroupStoreEmployeeTable tbody tr td ul,
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td ul,
#QuotaSetGroupStoreEmployeeTableUnAssigned 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: 60px;
    border-radius: 10px;
    display: none;
    z-index: 10;
}

#QuotaSetGroupStoreEmployeeTable tbody tr td ul li,
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td ul li,
#QuotaSetGroupStoreEmployeeTableUnAssigned tbody tr td ul li{
    padding: 4px;
}

#QuotaSetGroupStoreEmployeeTable tbody tr td ul li a,
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td ul li a,
#QuotaSetGroupStoreEmployeeTableUnAssigned 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;
}

#QuotaSetGroupStoreEmployeeTable tbody tr td ul li a:hover,
#QuotaSetGroupStoreEmployeeTableAssigned tbody tr td ul li a:hover,
#QuotaSetGroupStoreEmployeeTableUnAssigned tbody tr td ul li a:hover{
    background-color: #F0EDE5;
}

#divQuotaSetGroupList a.more-action-toggle-qsg {
    display: block;
    line-height: 36px;
    color: #201904;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 0 10px;
}

#divQuotaSetGroupList ul.sub-actions {
    position: absolute;
    left: 84%;
    transform: translateX(-50%);
    background-color: #ffffff;
    width: 100px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
    z-index: 10;
}
#divQuotaSetGroupList ul.quota-set-sub-actions {
    position: absolute;
    left: 87%;
    transform: translateX(-50%);
    background-color: #ffffff;
    width: 100px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
    z-index: 10;
}

#divQuotaSetGroupList ul.sub-actions li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#divQuotaSetGroupList ul.sub-actions li a {
    display: block;
    line-height: 30px;
    font-size: 13px;
    color: #201904;
    text-decoration: none;
    text-align: center;
}

#divQuotaSetGroupList ul.quota-set-sub-actions li a {
    display: block;
    line-height: 30px;
    font-size: 13px;
    color: #201904;
    text-decoration: none;
    text-align: center;
}

#PaymentProgramList tbody tr td a, #divEmployeeAllowance a, #divEmployeeAllowanceCompanyPay a, #divEmployeeAllowancePO a, #divEmployeeAllowanceCC a {
    color: #7F7F84;
}
#PaymentProgramList tbody tr td a:hover, #divEmployeeAllowance a:hover, #divEmployeeAllowanceCompanyPay a:hover, #divEmployeeAllowancePO a:hover, #divEmployeeAllowanceCC a:hover {
    color: #d25d3e;
    text-decoration: none;
}

#PaymentProgramList tbody tr td .option {
    display: block;
    margin: 0 auto;
    height: 20px;
    width: 20px;
    color: #7F7F84;
}
#PaymentProgramList tbody tr td .option:hover {
    color: #d25d3e;
}

.CustomSelect {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding: 0 40px 0 15px;
    height: 40px;
    border: none;
    background: #ffffff url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
    background-size: 12px 12px;
    color: #4A4A4D;
    font-size: 15px;
}

.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)
}

}

#QuotaSetGroupStoreEmployeeTableBodyAssigned a.cancel, #QuotaSetGroupStoreEmployeeTableBodyUnAssigned 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;
}
#QuotaSetGroupStoreEmployeeTableBodyAssigned a.cancel:hover, #QuotaSetGroupStoreEmployeeTableBodyUnAssigned a.cancel:hover {
    color: #d25d3e;
}

section.orders form div.card-orders div.card-body .product-actions ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

section.orders form div.card-orders div.card-body div.product-actions ul li a.all {
    background-color: #D25D3E;
    width: 120px;
}

section.orders form div.card-orders div.card-body .product-actions ul li a {
    display: block;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
}

section.config-store .search-product .search-area div.autocomplete_result {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    z-index: 10;
    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;
}

section.config-store .search-product .search-area div.autocomplete_result ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

section.config-store .search-product .search-area div.autocomplete_result ul 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;
}

section.config-store .search-product .search-area div.autocomplete_result ul li div {
    display: flex;
    align-items: center;
}

section.config-store .search-product .search-area div.autocomplete_result ul li div img {
    margin: 0 10px;
    width: 70px;
    float: left;
}

section.config-store .search-product .search-area div.autocomplete_result ul li div span {
    display: block;
    font-size: 12px;
    color: #7F7F84;
}

section.config-store .search-product .search-area div.autocomplete_result ul li div span strong {
    display: block;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #201904;
}

section.config-store .search-product .search-area div.autocomplete_result ul li div span.price {
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: #201904;
}

section.config-store .search-product .search-area div.autocomplete_result.active {
    display: block;
}

.btnAssignUnAssignAll {
    background-color: #C64F2F !important;
    color: white;
    padding: 0 25px;
    line-height: 52px;
    display: block;
    border-radius: 10px;
    margin: 0 10px;
    border: none;
    background: none;
    cursor: pointer;
}
.CategoryFilterCardClick:hover {
    cursor:pointer;
}
#divProductList td ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 10%) 2px 2px 17px;
    position: relative;
    right: 50px;
    top: -25px;
    border-radius: 10px;
    z-index: 10;
}

#divProductList td ul li a:hover{
    text-decoration:underline
}
.CategoryFilterCardClick img{
    width:150px !important;
    height:100px;
}

.apply-filters {
    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;
}
.cancel-filters {
    order: 2;
    background-color: transparent;
    width: 100%;
    display: table;
    text-align: center;
    line-height: 52px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 0px;
    color: #7F7F84;
}
.add-product{
    margin-left:5px;
}
.ImportAllowanceCSV {
    background-image: url(../images/icons/icon_download_black.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    width: 55px;
    height: 52px;
    display: block;
    border-radius: 10px;
    margin: 0 5px;
    color: #201904;
    border:0;
}
.ImportAllowanceCSV span {
    display: none;
    line-height: 40px;
    padding: 0 15px 0 40px;
}
#imgLogo{
    width:150px;
    height:120px;
}
#imgStoreLogo, #imgStoreFavicon {
    width: 330px;
    height: 180px;
}
#helperButtons{
    text-align:center;
}
.BulkHelperButton {
    display: block;
    line-height: 36px;
    color: #201904;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 0 10px;
}
.BulkHelperButtonSubOptions {
    position: absolute;
    left: 50%;
    top: 36px;
    transform: translateX(-50%);
    display: none;
    min-width: 150px;
    background-color: #ffffff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
    z-index: 10;
    font-weight: 500;
}
.BulkHelperButtonSubOptions li button {
    display: block;
    line-height: 40px;
    font-size: 18px;
    color: #201904;
    text-decoration: none;
    padding: 0 25px;
    border: 0px;
    background: white;
    width: 150px;
}
.import {
    height: 52px;
    display: flex;
    border-radius: 10px;
    line-height: 52px;
    text-align: center;
    margin-right: 12px;
    color: #201904;
    font-weight: 500;
    padding: 0 45px 0 15px;
    border: 0;
    background: transparent url(../images/icons/icon_download_black.svg) 80px center no-repeat;
}
#PaymentProgramAllowancesList {
    width: 400px;
    flex-flow: wrap;
}
#PaymentProgramAllowancesList li {
    margin-bottom: 10px;
}
#selectCountries{
    width:100%;
    border: 1px solid lightgray;
}
#txtFRPI:read-only, #txtFRPO:read-only, #txtISP:read-only, #txtUPS:read-only, #txtFedex:read-only {
    background-color: lightgrey;
}
#btnSearchProductStep2{
    line-height:62px;
}
#btnSearchProductStep2 img{
    margin-left: 30px;
}

.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;
}

    .drag-drop .upload-icon {
        width: 26px;
    }

    .drag-drop span {
        color: #7F7F84;
        font-size: 12px;
        font-weight: 500;
        line-height: 25px;
    }

        .drag-drop span.drop {
            display: block;
            margin: 10px 0 5px;
            font-size: 16px;
            line-height: 20px;
            font-weight: 600;
            color: #201904;
        }

    .drag-drop label {
        display: inline;
        color: #D25D3E;
        text-decoration: none;
        font-size: 14px;
        cursor: pointer;
    }

    .drag-drop input[type=file] {
        opacity: 0;
        position: absolute;
        z-index: -1;
    }

    .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;
    }

        .drag-drop div.selected-image a {
            position: absolute;
            right: 5px;
            top: 5px;
            color: #ffffff;
            font-size: 22px;
            width: 20px;
            height: 20px;
            line-height: 20px;
        }

        .drag-drop div.selected-image a:hover {
                color: #201904;
            }

        .drag-drop div.selected-image img {
            width: auto;
            height: 100%;
        }

.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;
}

    .drag-drop div.selected-image2 a {
        position: absolute;
        right: 5px;
        top: 5px;
        color: #ffffff;
        font-size: 22px;
        width: 20px;
        height: 20px;
        line-height: 20px;
    }

.drag-drop div.selected-image2 a:hover {
    color: #201904;
}

.drag-drop div.selected-image2 img {
    width: auto;
    height: 100%;
}

.fishbowl-done-button {
    background-color: #C64F2F;
    color: #ffffff;
    border-radius: 10px;
    padding: 0 24px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    height: 52px;
}


/* Rana Mix */

#Reseller-Admin-Table tbody tr {
    border-bottom: 1px solid #F0EDE5;
}

    #Reseller-Admin-Table tbody tr td {
        width: 20%;
    }

#Reseller-Admin-Table thead.productInfoHead tr th {
    width: 20%;
}

#Reseller-Admin-Table tbody tr td a {
    text-decoration: none;
    color: #201904;
    text-align: center;
    margin-right: 10px;
    position: relative;
    font-size: 16px;
}

#Reseller-Admin-Table tbody tr td a i {
    margin-right: 4px;
}

#Search-Reseller-Admin-Input {
    border: none;
    background-color: transparent;
    padding: 0 15px;
    width: calc(100% - 52px);
    margin-bottom: 0px;
}

section.orders form ul.allOrders {
    margin-bottom: 15px;
}

/* Without form */
section.orders ul.allOrders li.nav-item a.nav-link {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #201904;
}

    section.orders ul.allOrders li.nav-item a.nav-link.active {
        color: #D25D3E;
        text-decoration: underline;
    }

section.orders div.card.card-orders table.all-orders {
    width: 100%;
}

    section.orders div.card.card-orders table.all-orders thead tr th {
        padding: 8px 10px;
        font-size: 12px;
        text-transform: uppercase;
        color: #7F7F84;
        font-weight: 600;
        text-align: left;
        line-height: 30px;
    }

        section.orders div.card.card-orders table.all-orders thead tr th:nth-child(1) {
            width: 180px;
        }

        section.orders div.card.card-orders table.all-orders thead tr th:nth-child(2) {
            width: 136px;
        }

        section.orders div.card.card-orders table.all-orders thead tr th:nth-child(3) {
            width: 167px;
        }

        section.orders div.card.card-orders table.all-orders thead tr th:nth-child(4) {
            width: 109px;
        }

        section.orders div.card.card-orders table.all-orders thead tr th:nth-child(5) {
            width: calc(100% - 769px);
        }

        section.orders div.card.card-orders table.all-orders thead tr th:nth-child(6) {
            text-align: right;
            width: 177px;
        }

    section.orders div.card.card-orders table.all-orders tbody tr {
        border-bottom: 1px solid #F0EDE5;
    }

        section.orders div.card.card-orders table.all-orders tbody tr td {
            padding: 15px 5px;
            text-align: left;
            font-size: 16px;
            font-weight: 400;
            position: relative;
        }

            section.orders div.card.card-orders table.all-orders tbody tr td input.fields {
                display: block;
                border: none;
                height: 34px;
                background-color: #F6F4F0;
                padding: 0 15px;
                border-radius: 6px;
                width: 100%;
            }

            section.orders div.card.card-orders table.all-orders tbody tr td select.fields {
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                width: 100%;
                padding: 0 15px 0 0;
                border-radius: 6px;
                border: none;
                height: 34px;
                background: #F6F4F0 url(../images/icons/select_arrow.svg) calc(100% - 10px) center no-repeat;
                background-size: 12px 12px;
            }

            section.orders div.card.card-orders table.all-orders tbody tr td .date {
                position: relative;
                background-color: #F6F4F0;
                height: 34px;
                padding: 0;
                border-radius: 6px;
                display: block;
                width: 100%;
                z-index: 0;
            }

                section.orders div.card.card-orders table.all-orders tbody tr td .date input.fields {
                    display: block;
                    border: none;
                    height: 34px;
                    background-color: #F6F4F0;
                    padding: 0 15px;
                    border-radius: 6px;
                    width: 82%;
                }

                section.orders div.card.card-orders table.all-orders tbody tr td .date img {
                    width: 20px;
                    height: 20px;
                    position: absolute;
                    right: 10px;
                    top: 50%;
                    transform: translateY(-50%);
                    z-index: 2;
                    cursor: pointer;
                }

            section.orders div.card.card-orders table.all-orders tbody tr td strong {
                font-weight: 500;
            }

            section.orders div.card.card-orders table.all-orders tbody tr td a {
                color: #201904;
                display: table;
                text-decoration: none;
            }

            section.orders div.card.card-orders table.all-orders tbody tr td span {
                line-height: 36px;
                height: 36px;
                border-radius: 18px;
                padding: 8px 18px;
                text-align: center;
            }

                section.orders div.card.card-orders table.all-orders tbody tr td span.pending {
                    color: #D7A90F;
                    background-color: rgba(244, 195, 27, 0.1);
                }

                section.orders div.card.card-orders table.all-orders tbody tr td span.completed {
                    color: #87AC1E;
                    background: rgba(179, 206, 103, 0.1);
                }

                section.orders div.card.card-orders table.all-orders tbody tr td span.cancel {
                    color: #7F7F84;
                    background-color: rgba(127, 127, 132, 0.08);
                }

                section.orders div.card.card-orders table.all-orders tbody tr td span.shipped {
                    color: #4D6BCB;
                    background-color: rgba(47, 80, 184, 0.1);
                }

                section.orders div.card.card-orders table.all-orders tbody tr td span.deleted {
                    color: #9f2323;
                    background: rgba(229, 150, 137, 0.16);
                }

            section.orders div.card.card-orders table.all-orders tbody tr td:last-of-type {
                text-align: left;
            }

        section.orders div.card.card-orders table.all-orders tbody tr:first-of-type, section.orders div.card.card-orders table.all-orders tbody tr:last-of-type {
            border-bottom-color: transparent;
        }

section.orders div.card.card-product-summary table.product-summary {
    width: 100%;
}

    section.orders div.card.card-product-summary table.product-summary thead tr th {
        padding: 8px 10px;
        font-size: 12px;
        text-transform: uppercase;
        color: #7F7F84;
        font-weight: 600;
        text-align: center;
        line-height: 30px;
    }

        section.orders div.card.card-product-summary table.product-summary thead tr th:nth-child(1) {
            text-align: left;
            width: calc(100% - 300px);
        }

        section.orders div.card.card-product-summary table.product-summary thead tr th:nth-child(2) {
            width: 60px;
        }

        section.orders div.card.card-product-summary table.product-summary thead tr th:nth-child(3) {
            width: 90px;
        }

        section.orders div.card.card-product-summary table.product-summary thead tr th:nth-child(4) {
            width: 110px;
        }

        section.orders div.card.card-product-summary table.product-summary thead tr th:nth-child(5) {
            width: 40px;
        }

    section.orders div.card.card-product-summary table.product-summary tbody tr td {
        position: relative;
        padding: 10px 5px;
        text-align: center;
        vertical-align: top;
    }

        section.orders div.card.card-product-summary table.product-summary tbody tr td img {
            width: 65px;
        }

        section.orders div.card.card-product-summary table.product-summary tbody tr td div.products-detail {
            display: flex;
            justify-content: flex-start;
            text-align: left;
        }

            section.orders div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details {
                color: #7F7F84;
                font-size: 12px;
                line-height: 15px;
            }

                section.orders div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details strong {
                    display: block;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 20px;
                    color: #201904;
                }

                section.orders div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details span.qty {
                    display: block;
                }

                section.orders div.card.card-product-summary table.product-summary tbody tr td div.products-detail div.details span.add {
                    color: #D25D3E;
                    display: block;
                    font-weight: 600;
                }

        section.orders div.card.card-product-summary table.product-summary tbody tr td span.track {
            font-size: 12px;
            color: #7F7F84;
        }

            section.orders div.card.card-product-summary table.product-summary tbody tr td span.track strong {
                color: #201904;
                font-size: 15px;
                font-weight: 500;
            }

        section.orders div.card.card-product-summary table.product-summary tbody tr td a.action {
            display: block;
            margin: 0 auto;
            width: 24px;
            height: 24px;
            line-height: 24px;
            display: block;
            color: #7F7F84;
            background: url(../images/icons/three-dots.svg) center center no-repeat;
            transition: 0.3s;
        }

            section.orders div.card.card-product-summary table.product-summary tbody tr td a.action:hover {
                background: url(../images/icons/three-dots-hover.svg) center center no-repeat;
            }

        section.orders div.card.card-product-summary table.product-summary tbody tr td div.track-staus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-left: 65px;
        }

            section.orders div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.track {
                text-align: left;
                color: #7F7F84;
            }

                section.orders div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.track strong {
                    color: #201904;
                }

            section.orders div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status {
                line-height: 36px;
                height: 36px;
                border-radius: 18px;
                display: block;
                padding: 0 20px;
            }

                section.orders div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.pending {
                    color: #D7A90F;
                    background-color: rgba(244, 195, 27, 0.1);
                }

                section.orders div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.completed {
                    color: #87AC1E;
                    background: rgba(179, 206, 103, 0.1);
                }

                section.orders div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.cancel {
                    color: #7F7F84;
                    background-color: rgba(127, 127, 132, 0.08);
                }

                section.orders div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.shipped {
                    color: #4D6BCB;
                    background-color: rgba(47, 80, 184, 0.1);
                }

                section.orders div.card.card-product-summary table.product-summary tbody tr td div.track-staus span.status.deleted {
                    color: #4D6BCB;
                    background-color: rgba(255, 231, 227, 1);
                }

        section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action {
            list-style: none;
            margin: 0;
            padding: 0;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
            position: absolute;
            right: 0;
            top: 0;
            z-index: 10;
            width: 200px;
            display: none;
        }

            section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action li {
                padding: 5px 10px;
                position: relative;
            }

                section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action li a {
                    display: block;
                    color: #201904;
                    padding: 0 25px;
                    line-height: 43px;
                    border-radius: 8px;
                    text-decoration: none;
                }

                    section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action li a i {
                        margin-left: 10px;
                        font-weight: bolder;
                    }

                    section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action li a.cancel {
                        color: #D25D3E;
                        font-weight: 600;
                    }

                    section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action li a:hover {
                        background-color: #F0EDE5;
                    }

                section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action li ul {
                    background: #ffffff;
                    position: absolute;
                    right: -110px;
                    top: 10px;
                    border-radius: 10px;
                    box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.1);
                    list-style: none;
                    margin: 0;
                    list-style: none;
                    display: none;
                }

                    section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status {
                        display: block;
                        color: #201904;
                        line-height: 40px;
                        text-decoration: none;
                        position: relative;
                        padding: 0 10px 0 25px;
                    }

                        section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status::before {
                            content: "";
                            width: 8px;
                            height: 8px;
                            left: 5px;
                            top: 50%;
                            transform: translateY(-50%);
                            border-radius: 50%;
                            background-color: orange;
                            position: absolute;
                        }

                        section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status.shipped::before {
                            background-color: #8FA4E8;
                        }

                        section.orders div.card.card-product-summary table.product-summary tbody tr td ul.action li ul li a.status.pending::before {
                            background-color: #F4C31B;
                        }

    section.orders div.card.card-product-summary table.product-summary tbody tr:nth-of-type(2n+2) {
        border-bottom: 1px solid #F0EDE5;
    }

    section.orders div.card.card-product-summary table.product-summary tbody tr:last-of-type {
        border-bottom: none;
    }

section.orders div.card.card-product-summary .mark {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #F0EDE5;
    padding: 16px 15px;
    background: transparent;
}

    section.orders div.card.card-product-summary .mark a {
        display: block;
        color: #ffffff;
        background: #D25D3E;
        text-decoration: none;
        line-height: 52px;
        padding: 0 25px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 700;
    }

        section.orders div.card.card-product-summary .mark a:hover {
            background: #C64F2F;
        }

section.orders div.card.card-timeline ul {
    list-style: none;
    margin: 10px;
    padding: 0;
}

    section.orders div.card.card-timeline ul li {
        padding-bottom: 20px;
        position: relative;
        padding-left: 20px;
        margin-bottom: 5px;
    }

        section.orders div.card.card-timeline ul li span {
            color: #7F7F84;
            font-size: 13px;
            font-weight: 400;
            display: block;
            line-height: 20px;
        }

            section.orders div.card.card-timeline ul li span strong {
                display: block;
                font-size: 17px;
                font-weight: 500;
                color: #201904;
                line-height: 20px;
            }

                section.orders div.card.card-timeline ul li span strong em {
                    color: #D25D3E;
                    font-style: normal;
                }

        section.orders div.card.card-timeline ul li::before {
            position: absolute;
            content: "";
            width: 10px;
            height: 10px;
            display: block;
            background-color: #F0EDE5;
            left: 0;
            top: 5px;
            border-radius: 50%;
        }

        section.orders div.card.card-timeline ul li::after {
            background-color: #F0EDE5;
            width: 1px;
            left: 5px;
            top: 12px;
            bottom: 0;
            position: absolute;
            content: "";
        }

        section.orders div.card.card-timeline ul li:last-of-type {
            padding-bottom: 0;
        }

section.orders div.card.card-order-summary {
    overflow: hidden;
}

    section.orders div.card.card-order-summary label {
        font-size: 12px;
        font-weight: 600;
        line-height: 25px;
        color: #7F7F84;
        display: block;
        margin-bottom: 10px;
    }

        section.orders div.card.card-order-summary label strong {
            display: block;
            color: #201904;
            font-size: 16px;
            font-weight: 500;
            line-height: 16px;
        }

    section.orders div.card.card-order-summary div.total {
        background-color: #B3CE67;
        color: #ffffff;
        font-size: 20px;
        line-height: 25px;
        font-weight: 500;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 30px;
    }

section.orders div.card.card-customer .order {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    height: 64px;
    align-items: center;
    margin-bottom: 30px;
}

    section.orders div.card.card-customer .order img {
        width: 64px;
        height: 64px;
    }

    section.orders div.card.card-customer .order span {
        color: #7F7F84;
        display: block;
        padding: 0 15px;
        font-size: 12px;
        font-weight: 500;
    }

        section.orders div.card.card-customer .order span strong {
            display: block;
            color: #201904;
            font-size: 19px;
            font-weight: 600;
        }

            section.orders div.card.card-customer .order span strong em {
                font-style: normal;
                font-size: 12px;
                font-weight: 500;
                color: #7F7F84;
            }

section.orders div.card.card-customer .order-detail label {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    color: #201904;
    margin-bottom: 10px;
}

    section.orders div.card.card-customer .order-detail label span {
        display: block;
        font-size: 12px;
        line-height: 16px;
        font-weight: 600;
        color: #7F7F84;
    }

        section.orders div.card.card-customer .order-detail label span.same {
            font-size: 16px;
            font-weight: 500;
        }

section.orders div.card.card-notes {
    font-size: 16px;
    font-weight: 600;
}

    section.orders div.card.card-notes textarea {
        border: none;
        width: 100%;
        height: 100px;
        padding: 0;
        line-height: 20px;
        font-weight: 500;
    }

    section.orders div.card.card-notes button.send-notes {
        border: none;
        background: none;
        color: rgba(210, 93, 62, 0.5);
        transition: 0.3s;
        height: 50px;
    }

        section.orders div.card.card-notes button.send-notes:hover {
            color: #d25d3e;
        }

    section.orders div.card.card-notes ul {
        list-style: none;
        margin: 10px 0;
        padding: 0;
    }

        section.orders div.card.card-notes ul li {
            padding-bottom: 20px;
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }

            section.orders div.card.card-notes ul li span {
                color: #7F7F84;
                font-size: 13px;
                font-weight: 400;
                display: block;
                line-height: 20px;
            }

                section.orders div.card.card-notes ul li span strong {
                    display: block;
                    font-size: 17px;
                    font-weight: 500;
                    color: #201904;
                    line-height: 20px;
                }

                    section.orders div.card.card-notes ul li span strong em {
                        color: #D25D3E;
                        font-style: normal;
                    }

            section.orders div.card.card-notes ul li::before {
                position: absolute;
                content: "";
                width: 10px;
                height: 10px;
                display: block;
                background-color: #F0EDE5;
                left: 0;
                top: 5px;
                border-radius: 50%;
            }

            section.orders div.card.card-notes ul li::after {
                background-color: #F0EDE5;
                width: 1px;
                left: 5px;
                top: 12px;
                bottom: 0;
                position: absolute;
                content: "";
            }

            section.orders div.card.card-notes ul li:last-of-type {
                padding-bottom: 0;
            }

section.orders div.card-orders div.card-body div.title-actions div.search {
    display: flex;
    flex-direction: row;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f6f4f0;
    position: relative;
}

section.orders div.card-orders div.card-body div.title-actions div.search input.search {
    border: none;
    background-color: transparent;
    padding: 0 15px;
    width: calc(100% - 52px);
    margin-bottom: 0px;
}

section.orders div.card-orders div.card-body div.title-actions div.search button.submit {
    width: 52px;
    height: 52px;
    display: block;
    border-radius: 10px;
    line-height: 52px;
    text-align: center;
    border: none;
    background: transparent url(../images/icons/icon_search_black.svg) center center no-repeat;
}

.Add-Subscription-Modal {
    width: 67px;
    min-width: 67px;
    height: 52px;
    display: block;
    border-radius: 10px;
    line-height: 52px;
    text-align: center;
    margin-left: 12px;
    background: #f6f4f0 url(../images/icons/icon_download_black.svg) center center no-repeat;
}

.Add-Subscription-Modal:hover {
    background: #ffffff url(../images/icons/icon_download_orange.svg) center center no-repeat;
}