    @charset "UTF-8";
    /* CSS Document */
    
    @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@300;400;500;600;700&family=Jost:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&family=Nunito:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&display=swap');
    @import url('../vendor/fontawesome/all.min.css');
    @import url('../vendor/ionicons/ionicons.min.css');
    @import url('../vendor/bootstrap-icons-1.11.3/bootstrap-icons.min.css');
    html {
        -webkit-tap-highlight-color: transparent;
        scroll-behavior: smooth;
        overflow-x: hidden!important
    }
    
    body {
        margin: 0;
        font-family: 'Nunito', 'IBM Plex Sans Thai', sans-serif;
        font-size: 16px;
        line-height: 1.4em;
        min-height: 75rem;
        background-color: #f0f2f5;
    }
    
    a {
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -ms-transition: 0.5s all;
        cursor: pointer;
        color: #0072bb;
        text-decoration: none;
    }
    
    a:hover,
    a:focus {
        text-decoration: none;
        color: #ff3a11;
    }
    /*
::-webkit-scrollbar {
    width: 6px;
    background-color: #e6e6e6
}

::-webkit-scrollbar-thumb {
    background-color: grey
}

::-webkit-scrollbar-thumb:hover {
    background-color: #666
}

::-webkit-scrollbar-thumb:active {
    background-color: #4d4d4d
}
*/
    
    .flip-x {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
    /*----- Theme Custom -----*/
    
    .theme-btn {
        display: inline-block;
        font-weight: 400;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        user-select: none;
        padding: 0.5em 1.5em;
        border-radius: .25rem;
        color: #fff;
        cursor: pointer;
        z-index: 5;
        transition: all .4s ease-in-out;
        border: none;
        background: linear-gradient(to left, #e40d00 0%, #ff6056 50.39%, #e40d00 100%);
        background-size: 200% auto;
        overflow: hidden;
    }
    
    .theme-btn:hover,
    .theme-btn:focus {
        background-position: right center;
        color: #fff;
        box-shadow: 0px 0px 30px rgba(255, 96, 86, 0.45);
    }
    
    .theme-btn.border-btn {
        padding: 14px 40px;
        background: transparent;
        border: 1.5px solid #e40d00;
        color: #6A7C92;
        font-size: 18px;
        box-shadow: none;
    }
    
    .btn-default {
        color: #333333;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
        background-color: #f5f5f5;
        background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
        background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
        background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
        background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
        background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
        background-repeat: repeat-x;
        border: 1px solid #cccccc;
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
        border-bottom-color: #b3b3b3;
        filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
        filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    }
    
    .btn-default:hover,
    .btn-default:focus,
    .btn-default:active {
        background-color: #d6d5d5!important;
        border-color: #b3b3b3!important;
        color: #333333!important;
        text-decoration: none;
        background-position: 0 -15px;
        -webkit-transition: background-position 0.1s linear;
        -moz-transition: background-position 0.1s linear;
        -o-transition: background-position 0.1s linear;
        transition: background-position 0.1s linear;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        background: #e40d00;
        text-align: center;
        line-height: 45px;
        font-size: 20px;
        color: #fff;
        border-radius: .25rem;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 9;
        cursor: pointer;
        transition: all 0.3s ease-out 0s;
        padding: 0.6em;
    }
    
    .scroll-top:hover {
        background: rgba(228, 13, 0, 0.7);
        color: #fff;
    }
    
    @keyframes animation1 {
        0% {
            transform: translateY(0px);
            opacity: 0.29;
        }
        50% {
            transform: translateY(-700px);
            opacity: 0;
        }
        100% {
            transform: translateY(0px);
            opacity: 0;
        }
    }
    /*----- Preloader -----*/
    
    .preloader {
        /* Body Overlay */
        position: fixed;
        top: 0;
        left: 0;
        display: table;
        height: 100%;
        width: 100%;
        /* Change Background Color */
        background: #fff;
        z-index: 99999;
    }
    
    .preloader .loader {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }
    
    .preloader .loader .spinner {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 64px;
        margin-left: -32px;
        z-index: 18;
        pointer-events: none;
    }
    
    .preloader .loader .spinner .spinner-container {
        pointer-events: none;
        position: absolute;
        width: 100%;
        padding-bottom: 100%;
        top: 50%;
        left: 50%;
        margin-top: -50%;
        margin-left: -50%;
        animation: spinner-linspin 1568.2353ms linear infinite;
    }
    
    .preloader .loader .spinner .spinner-container .spinner-rotator {
        position: absolute;
        width: 100%;
        height: 100%;
        animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    }
    
    .preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        overflow: hidden;
        right: 50%;
    }
    
    .preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        left: 50%;
    }
    
    .preloader .loader .spinner-circle {
        box-sizing: border-box;
        position: absolute;
        width: 200%;
        height: 100%;
        border-style: solid;
        /* Spinner Color */
        border-color: #e40d00 #e40d00 #F4EEFB;
        border-radius: 50%;
        border-width: 6px;
    }
    
    .preloader .loader .spinner-left .spinner-circle {
        left: 0;
        right: -100%;
        border-right-color: #F4EEFB;
        animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    }
    
    .preloader .loader .spinner-right .spinner-circle {
        left: -100%;
        right: 0;
        border-left-color: #F4EEFB;
        animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    }
    /* Preloader Animations */
    
    @keyframes spinner-linspin {
        to {
            transform: rotate(360deg);
        }
    }
    
    @keyframes spinner-easespin {
        12.5% {
            transform: rotate(135deg);
        }
        25% {
            transform: rotate(270deg);
        }
        37.5% {
            transform: rotate(405deg);
        }
        50% {
            transform: rotate(540deg);
        }
        62.5% {
            transform: rotate(675deg);
        }
        75% {
            transform: rotate(810deg);
        }
        87.5% {
            transform: rotate(945deg);
        }
        to {
            transform: rotate(1080deg);
        }
    }
    
    @keyframes spinner-left-spin {
        0% {
            transform: rotate(130deg);
        }
        50% {
            transform: rotate(-5deg);
        }
        to {
            transform: rotate(130deg);
        }
    }
    
    @keyframes right-spin {
        0% {
            transform: rotate(-130deg);
        }
        50% {
            transform: rotate(5deg);
        }
        to {
            transform: rotate(-130deg);
        }
    }
    /* Page Style */
    
    .b-shadows {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }
    
    .bar-controls {
        padding: 0;
        background-color: #343a40;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }
    
    .edit-item-button {
        align-items: center;
        color: #fff;
        display: flex;
        min-height: 48px;
        outline: 0;
        padding: 0 20px;
        text-decoration: none!important;
    }
    
    .edit-item-button h5 {
        margin: 0;
        align-items: baseline;
        display: flex;
    }
    
    .edit-item-button.bl {
        border-left: 1px solid #666;
        cursor: pointer;
    }
    
    .edit-item-button.bl:hover {
        background: #e40d00;
        color: #fff;
    }
    
    #main-controls {
        background-color: #fff;
        width: 280px;
    }
    
    .b-example-divider {
        width: 100%;
        height: 3rem;
        background-color: rgba(0, 0, 0, .1);
        border: solid rgba(0, 0, 0, .15);
        border-width: 1px 0;
        box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, .1), inset 0 0.125em 0.5em rgba(0, 0, 0, .15);
    }
    
    .b-example-vr {
        flex-shrink: 0;
        width: 1.5rem;
        height: 100vh;
    }
    
    .content-wrapper {
        position: relative;
        max-width: 767.98px;
        margin: 0 auto;
    }
    
    .flsale {
        transform: scale(1.1);
    }
    
    #countdown {
        display: flex;
        align-items: center;
    }
    
    @media all and (min-width: 768px) {
        .flsale {
            transform: scale(1.4);
            margin-left: 1.75rem;
            margin-top: 0.25rem;
        }
    }
    
    .sale-header {
        display: flex;
        align-items: center;
        height: 3.25rem;
        color: #fff;
        padding: 0 1.2rem;
        background-image: url(), linear-gradient(0deg, #f0451e 9%, #f32424 96%);
    }
    
    .sale-header-right {
        justify-content: end;
    }
    
    .sale-price {
        display: flex;
        align-items: center;
        padding: 1.5rem 1rem;
        background: #fafafa;
    }
    
    .price-normal {
        color: #000;
        font-size: 1.875rem;
    }
    
    .sale-price.on-sale .price-normal {
        text-decoration: line-through;
        color: #929292;
        font-size: 1.2rem;
    }
    
    .sale-price .price-sale {
        margin-left: 10px;
        font-size: 1.875rem;
        font-weight: 500;
        color: #d0011b;
    }
    
    .sale-price .price-hilight {
        background-color: #d0011b;
        margin-left: 15px;
        font-size: .85rem;
        color: #fff;
        text-transform: uppercase;
        border-radius: 2px;
        padding: 5px 8px;
        font-weight: 600;
        line-height: 1;
        white-space: nowrap;
    }
    
    .sale-price .sale-amount {
        font-size: 1.2rem;
        font-weight: 500;
        color: #d0011b;
        margin: 0 0 0 auto;
    }
    
    #countdown ul {
        margin: 0;
        padding: 0;
    }
    
    #countdown li {
        display: inline-block;
        font-size: 0.65rem;
        text-align: center;
        line-height: 0.95rem;
        list-style-type: none;
        padding: 0.55rem 0.2rem;
        background-color: #343a40;
        border-radius: 0.325rem;
        width: 40px;
        height: 40px;
        color: #fff;
        text-transform: uppercase;
    }
    
    #countdown li span {
        display: block;
        font-size: 1.2rem;
        text-align: center;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    @media all and (max-width: 767px) {
        .sale-header-right {
            padding: 0 0 0 0;
        }
        .sale-price .price-hilight {
            position: absolute;
            /* left: calc(50% - 25px); */
            right: 0;
            top: 0;
            width: 100px;
            font-size: 1.5em;
            text-align: center;
            white-space: break-spaces;
            padding: .75rem 0;
        }
    }
    /* Page Shopping Control */
    
    #page-content {
        box-shadow: 0 2px 6px 0 rgba(67, 89, 113, .12);
    }
    
    #page-shopping,
    #shopping-cart,
    #deliver-info {
        padding: 0.5rem 0rem;
        box-shadow: 0 2px 6px 0 rgba(67, 89, 113, .12);
    }
    
    h3.heading-text {
        /*
    padding: 1rem 0;
    border-bottom: solid 1px #ddd;
    margin-bottom: 1rem;
    text-align: center;
    background-image: url(https://deo.shopeemobile.com/shopee/shopee-pcmall-live-sg/4323ad4….jpg), linear-gradient(0deg, #f0451e 9%, #f32424 96%);
    color: #fff;
    */
        border-bottom: solid 1px #bbbbbb;
        line-height: 0.2rem;
        text-align: center;
        margin: 2rem 0;
    }
    
    h3.heading-text span {
        padding: 0.25rem 1rem;
        background-color: #ffffff;
    }
    
    .shopping-control-input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }
    
    .shopping-control-label {
        position: relative;
        margin-bottom: 0;
        vertical-align: top;
    }
    
    .product-variant {
        border: solid 1px #ddd;
    }
    
    .product-variant img {
        width: 100%;
    }
    
    .product-variant.product-edit {
        height: 359.98px;
        position: relative;
    }
    
    .p-variant-detail {
        padding: 0.5rem 0.75rem 0.75rem 0.75rem;
        position: relative;
        height: 13.25rem;
    }
    
    .product-variant.product-edit .p-variant-detail {
        height: auto;
    }
    
    .p-variant-title {
        font-size: 1rem;
        line-height: 1.25rem;
        margin: 0.25rem 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: 3.75rem;
    }
    
    .p-variant-price {
        display: flex;
    }
    
    .p-variant-price .price-normal {
        color: #000000;
        font-size: 1.35rem;
    }
    
    .p-variant-price.on-sale .price-normal {
        text-decoration: line-through;
        color: #929292;
        font-size: 0.9rem;
    }
    
    .p-variant-price.on-sale .price-sale {
        margin-left: 6px;
        font-size: 1.35rem;
        font-weight: 500;
        color: #d0011b;
    }
    
    .p-variant-price.on-sale .price-hilight {
        background-color: #d0011b;
        margin-left: 6px;
        font-size: .75rem;
        color: #fff;
        text-transform: uppercase;
        border-radius: 2px;
        padding: 0px 5px;
        font-weight: 600;
    }
    
    .shopping-control-label .box-spinner {
        opacity: 0;
        margin-top: 1rem;
        position: absolute;
        width: calc(100% - 1.5rem);
        bottom: 0.75rem;
    }
    
    .shopping-control-input:checked~.shopping-control-label .box-spinner {
        opacity: 1;
    }
    
    .shopping-control-input:checked~.shopping-control-label .product-variant {
        border: solid 1px #bbbbbb;
        -webkit-box-shadow: 0px 10px 30px -4px rgb(0 0 0 / 15%);
        -moz-box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 10px 30px -4px rgb(0 0 0 / 15%);
    }
    
    .btn-addtocart {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .number-spinner .btn-outline-secondary {
        display: inline-block;
        vertical-align: middle;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        position: relative;
        -webkit-transition-property: color;
        transition-property: color;
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -ms-transition: 0.5s all;
        color: #555;
        background-color: #f5f5f5;
        border-color: #ccc;
    }
    
    .number-spinner .btn-outline-secondary:hover {
        background-color: #eee;
        border-color: #aaa;
        color: #222;
    }
    
    @media all and (max-width: 767px) {
        #page-shopping {
            padding: 1rem 0.5rem;
        }
        .p-variant-detail {
            padding: 0.5rem 0.3rem;
        }
        .p-variant-title {
            font-size: 0.9rem;
            line-height: 1.1rem;
            margin-top: 0;
        }
        .p-variant-price .price-normal {
            font-size: 1.15rem;
        }
        .p-variant-price.on-sale .price-normal {
            font-size: 0.8rem;
        }
        .p-variant-price.on-sale .price-sale {
            font-size: 1.15rem;
        }
        .p-variant-price.on-sale .price-hilight {
            font-size: .65rem;
        }
        .shopping-control-label .box-spinner {
            width: calc(100% - 1.2rem);
            bottom: 0.5rem;
            margin-left: 0.3rem;
        }
    }
    /* Cart */
    
    #cart-list>thead>tr>th {
        font-weight: bold;
        width: 15%;
        text-align: center;
        background-color: #edf2fa;
        border-bottom: solid 1px #dadfe7;
        border-top: solid 1px #dadfe7;
    }
    
    #cart-list>thead>tr>th:nth-child(2) {
        width: auto;
        text-align: start;
    }
    
    #cart-list>thead>tr>th:nth-child(3) {
        width: 20%;
    }
    
    #cart-list>thead>tr>th:nth-child(4) {
        width: 15%;
        text-align: end;
        padding-right: 1rem;
    }
    
    #cart-list>tbody>tr>td {
        text-align: start;
        line-height: 1.25rem;
    }
    
    #cart-list>tbody>tr>td:nth-child(3) {
        text-align: center;
    }
    
    #cart-list>tbody>tr>td:nth-child(4) {
        text-align: end;
        padding-top: 1rem;
    }
    
    #cart-list>tfoot {
        border-top: solid 2px #cfd3db;
        border-bottom: solid 2px #cfd3db;
    }
    
    #cart-list>tfoot>tr>th {
        text-align: end;
        font-weight: normal;
        padding: 0rem 0.5rem;
        border-bottom: none;
    }
    
    #cart-list>tfoot>tr:first-child>th {
        padding-top: 0.5rem;
    }
    
    #cart-list>tfoot>tr:last-child>th {
        padding-bottom: 0.5rem;
    }
    
    #cart-list img {
        max-width: 100%;
    }
    
    .del-item {
        color: #ff0000;
        margin: 0.5rem 0;
        display: block;
    }
    
    .del-item::before {
        content: '';
        background: url(../img/trash3-fill.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 17px;
        height: 17px;
        margin-right: 3px;
        margin-bottom: 5px;
        display: inline-block;
        vertical-align: middle;
    }
    
    .cart-summary>th {
        font-weight: bold!important;
    }
    
    .cart-summary>th:nth-last-child(1) {
        font-size: 1.35rem;
        color: #f32424;
    }
    
    section {
        background-color: #fff;
    }
    
    .form-check {
        display: inline-flex;
        align-items: center;
        margin-right: 25px;
    }
    
    .form-check label {
        margin-left: 10px;
        padding-top: 5px;
    }
    
    .form-check .form-check-input[type=checkbox] {
        border-radius: .25em;
        height: 25px;
        width: 25px;
    }
    
    .form-check .form-check-input[type=radio] {
        border-radius: 100%;
        height: 22px;
        width: 22px;
    }
    
    .form-switch .form-check-input[type=checkbox] {
        border-radius: 2em;
        border-radius: 2em;
        height: 30px;
        width: 50px;
    }
    
    .form-check-input:checked {
        background-color: #dc3545;
        border-color: #dc3545;
    }
    /* Slick */
    
    .slick-slide {
        height: auto!important;
    }
    
    .slider-nav {
        background-color: rgba(255, 255, 255, 0.75);
        text-align: center;
        padding-top: 0.35rem;
    }
    
    .slider-nav .slick-slide {
        padding: 0.35rem 0.35rem 0.7rem 0.35rem;
        position: relative;
    }
    
    .slider-nav .slick-slide a.del-img {
        position: absolute;
        margin: 0.25rem;
        padding: 0.175rem 0.25rem 0.25rem;
        background-color: rgba(255, 255, 255, 0.85);
        color: #343a40;
        border: solid 1px #343a40;
        border-radius: 50%;
        top: 5px;
        right: 5px;
        width: 26px;
        height: 26px;
        font-size: 1.2rem;
    }
    
    .slider-nav .slick-slide a.add-img {
        width: 98.81px;
        height: 98.81px;
        background-color: #e4e6eb;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #606770;
    }
    
    .slider-nav .slick-slide a.add-img i {
        font-size: 1.5rem;
        display: block;
    }
    
    .slider-nav .slick-slide a:hover {
        border: solid 1px #ccc;
        color: #000;
    }
    
    .slider-nav .slick-slide a.add-img:hover {
        background-color: rgb(224, 224, 224);
    }
    /* Side Bar */
    
    .wrapper {
        width: 100%;
    }
    
    #sidebar {
        min-width: 360px;
        max-width: 360px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        background: #fff;
        color: #343a40;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        position: relative;
    }
    
    #sidebar .h6 {
        color: #343a40;
    }
    
    #sidebar.active {
        margin-left: -360px;
    }
    
    #sidebar h1 {
        margin-bottom: 20px;
        font-weight: 500;
        font-size: 26px;
    }
    
    #sidebar h1 .fa-store {
        font-size: 2.4rem;
        color: #e40d00;
        margin-right: 0.75rem;
    }
    
    .myshop {
        width: 60px;
        margin-right: 0.5rem;
    }
    
    #sidebar h1 .logo {
        color: #343a40;
    }
    
    #sidebar h1 .logo span {
        font-size: 14px;
        color: #e40d00;
        display: block;
    }
    
    #sidebar ul.components {
        padding: 0;
    }
    
    #sidebar ul li {
        font-size: 16px;
        position: relative;
    }
    /*
#sidebar ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 0;
    background-color: #e40d00;
}

#sidebar ul li:hover:before,
#sidebar ul li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
    -moz-transition: width .2s ease-in;
    -ms-transition: width .2s ease-in;
    transition: width .2s ease-in;
}
*/
    
    #sidebar ul li a {
        padding: 10px 1.5rem;
        display: block;
        position: relative;
        color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }
    
    #sidebar ul li a span {
        color: #e40d00;
        margin-right: 0.5rem;
        font-size: 1.2rem;
        width: 23.15px;
    }
    
    #sidebar ul li a:hover,
    #sidebar ul li.open a:hover {
        color: #e40d00;
        text-decoration: none;
        background-color: transparent;
    }
    /*
#sidebar ul li:hover a,
#sidebar ul li:hover a span {
    color: #fff;
}
*/
    
    #sidebar ul li.active>a {
        background: transparent;
        color: #e40d00;
        font-weight: bold;
    }
    
    #sidebar ul li>ul {
        position: relative!important;
        border-radius: 0;
        border: none;
        margin-bottom: 20px;
        margin-left: 3rem!important;
        margin-top: 0;
        padding: 0;
        list-style: none;
        border-left: 1px solid #e4e9f0;
    }
    
    #sidebar ul li>ul li a {
        padding: 0.5rem 2rem 0.5rem 22px;
        border-bottom: 1px solid #e4e9f0;
    }
    
    .dropdown-toggle::after {
        right: 1rem!important;
        border: none;
        content: "\f078";
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
    }
    
    @media (max-width: 991.98px) {
        #sidebar {
            margin-left: -270px;
        }
        #sidebar.active {
            margin-left: 0;
        }
    }
    
    #sidebar .custom-menu {
        display: inline-block;
        position: absolute;
        top: 20px;
        right: 0;
        margin-right: -20px;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
    
    @media (prefers-reduced-motion: reduce) {
        #sidebar .custom-menu {
            -webkit-transition: none;
            -o-transition: none;
            transition: none;
        }
    }
    
    #sidebar .custom-menu .btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        position: relative;
    }
    
    #sidebar .custom-menu .btn i {
        margin-right: -40px;
        font-size: 14px;
    }
    
    #sidebar .custom-menu .btn.btn-primary {
        background: transparent;
        border-color: transparent;
    }
    
    #sidebar .custom-menu .btn.btn-primary:after {
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        background: #e40d00;
        border-radius: 10px;
    }
    
    #sidebar .custom-menu .btn.btn-primary:hover,
    #sidebar .custom-menu .btn.btn-primary:focus {
        background: transparent !important;
        border-color: transparent !important;
    }
    
    a[data-toggle="collapse"] {
        position: relative;
    }
    
    .dropdown-toggle::after {
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    
    @media (max-width: 991.98px) {
        #sidebarCollapse span {
            display: none;
        }
    }
    
    #content {
        width: 100%;
        padding: 0;
        min-height: 100vh;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    
    .btn.btn-primary {
        background: #3445b4;
        border-color: #3445b4;
    }
    
    .btn.btn-primary:hover,
    .btn.btn-primary:focus {
        background: #3445b4 !important;
        border-color: #3445b4 !important;
    }
    
    .footer p {
        color: rgba(255, 255, 255, 0.5);
        text-align: center;
    }
    
    #controls-bar {
        margin: 1rem 0;
        padding: 1rem 0;
        border-top: solid 1px #ced0d4;
    }
    
    .form-control {
        border-radius: 4px;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
    
    .form-control:focus,
    .form-control:active {
        border-color: #000;
    }
    
    .form-control::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: rgba(0, 0, 0, 0.5);
    }
    
    .form-control::-moz-placeholder {
        /* Firefox 19+ */
        color: rgba(0, 0, 0, 0.5);
    }
    
    .form-control:-ms-input-placeholder {
        /* IE 10+ */
        color: rgba(0, 0, 0, 0.5);
    }
    
    .form-control:-moz-placeholder {
        /* Firefox 18- */
        color: rgba(0, 0, 0, 0.5);
    }
    
    .abs-right {
        position: absolute;
        right: 1rem;
    }
    
    .box-add {
        background-color: rgb(228, 230, 235);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: rgb(96, 103, 112);
        width: 100%;
        height: 100%;
    }
    
    .box-add i {
        font-size: 3.5rem;
        margin-bottom: 0.35rem;
        display: block;
    }
    
    .box-add:hover {
        border: solid 1px #ccc;
        color: #000;
        background-color: rgb(224, 224, 224);
    }
    
    .modal-header,
    .modal-body {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-header h5 {
        margin: 0;
    }
    
    .modal-header .fa {
        margin-right: 0.5rem;
        color: #d0011b;
    }