:root
{
    --main-color: #2b3a42;
    --hover-color: #2c6588;
    --main-2-color: #FFC900;
    --bg-color: #fff4ca;
    --label-color: #f53139;
    --dark-color: #263138;
    --color-border: #565656;
    --text-color: #263138;
}

body
{
    line-height: 1.5;
    color: #252F38;
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif !important;
    background: #f5f5f5;
    overflow-x: hidden;
}

b, strong
{
    font-weight: 600;
}

a
{
    color: inherit;
    text-decoration: none !important;
    font-size: 1rem;
    transition: .3s all;
}

a:hover
{
    color: var(--main-color);
}

.grey-bg
{
    background-color: #f9f9f9 !important;
}

.overflow_hidden
{
    overflow: hidden;
}

.py_30
{
    padding: 30px 0;
}

/* Header, Language, Search ... */

.header-container
{
    position: relative;
    z-index: 99;
    transition: .3s all ease;
    -webkit-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
}

.header-container .header-bg-gray
{
    background-color: var(--main-2-color) !important;
    /*border: 1px solid #cfb8a9 !important;*/
}

.header-container .header-bg-white
{
    background: #fff;
}

/* Top bar */

.header-container .header-topbar
{
    position: relative;
    z-index: 100;
    padding: 5px 0;

}

.header-container .header-topbar .topbar-left .topbar-inner
{
    display: flex;
    align-items: center;
}

.header-container .header-topbar .topbar-left .topbar-inner .botbar-icon
{
    color: #1c1c1c;
    margin-right: 5px;
}

.header-container .header-topbar .topbar-left .topbar-inner .botbar-icon:not(:first-of-type)
{
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #fff;
    line-height: 1rem;
}

.header-container .header-topbar .topbar-left .topbar-inner .botbar-text
{
    /*font-weight: 600;*/
    color: #1c1c1c;
    font-size: .95rem;
}

.header-container .header-topbar .topbar-left .topbar-inner .botbar-text a
{
    font-size: .92rem;
    margin-left: 5px;
}

.header-container .header-topbar .topbar-language
{
    position: relative;
    z-index: 10;
    display: inline-block;
}

.header-container .header-topbar .topbar-language > a
{
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #fff;
    font-size: .85rem;
}

.header-container .header-topbar .topbar-language > a > img
{
    width: 20px;
}

.header-container .header-topbar .topbar-language > a > p
{
    margin: 0 5px 0;
}

.header-container .header-topbar .topbar-language > a > span
{
    display: flex;
    align-items: flex-end;
}

.header-container .header-topbar .topbar-language > ul
{
    position: absolute;
    top: 100%;
    left: 0%;
    min-width: 130px;
    width: auto;
    border: 1px solid #d9d9d9;
    z-index: 5;
    transform: scaleY(0);
    transition: .2s all ease-in;
    transform-origin: top;
    border-radius: 0;
    background: #fff;
}

.header-container .header-topbar .topbar-language > ul > li > a
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 10px;
    color: #333;
    font-size: .85rem;
    cursor: pointer;
    transition: .3s all ease-in;
}

.header-container .header-topbar .topbar-language > ul > li > a > img
{
    width: 18px
}

.header-container .header-topbar .topbar-language > ul > li > a > p
{
    margin: 0 5px;
}

.header-container .header-topbar .topbar-language.js-openLang > ul
{
    transform: scaleY(1);
}

.header-container .header-topbar .topbar-right .topbar-inner
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-container .header-topbar .topbar-right .topbar-inner .topbar-customer
{
    position: relative;
    z-index: 10;
}

.header-container .header-topbar .topbar-right .topbar-inner .topbar-customer > a
{
    color: #1c1c1c;
    font-weight: 600;
    font-size: .95rem;
    transition: .3s all ease;
}

.header-container .header-topbar .topbar-right .topbar-inner .topbar-customer > a > p
{
    margin: 0 5px;
}

.header-container .header-topbar .topbar-right .topbar-inner .topbar-customer > ul
{
    position: absolute;
    top: 100%;
    left: 0%;
    min-width: 130px;
    width: max-content;
    border: 1px solid #d9d9d9;
    z-index: 5;
    transform: scaleY(0);
    transition: .2s all ease-in;
    transform-origin: top;
    border-radius: 0;
    background: #fff;
}

.header-container .header-topbar .topbar-right .topbar-inner .topbar-customer > ul > li > a
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 10px;
    color: #333;
    font-size: .85rem;
    cursor: pointer;
    transition: .3s all ease-in;
}

.header-container .header-topbar .topbar-right .topbar-inner .topbar-customer.js-openCustomer > ul
{
    transform: scaleY(1);
}

.header-container .header-topbar .topbar-right .topbar-inner .topbar-checkout a
{
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #555;
    font-size: .9rem;
    transition: .3s all ease;
}

/* End top bar */

.header-container .header-botbar
{
    position: relative;
    z-index: 99;
}

.header-container .header-botbar .botbar-logo a
{
    display: inline-block;
}

.header-container .header-botbar .botbar-logo a img
{
    max-width: 240px;
    max-height: 80px;
}

.header-container .header-botbar .botbar-inner .botbar-phone a
{
    display: flex;
    align-items: center;
}


.header-container .header-botbar .botbar-inner.botbar-flex
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.header-container .header-botbar .botbar-inner.botbar-flex .botbar-search
{
    position: relative;
    z-index: 9;
    width: 100%;
    min-width: 350px;
    margin: 0 auto;
}

.header-container .header-botbar .botbar-inner.botbar-flex .botbar-search .form-group
{
    margin-bottom: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid #d1d1d1;
}

.header-container .header-botbar .botbar-inner.botbar-flex .botbar-search .form-group input
{
    background: none;
    border: none;
    color: #a4a4a4;
    height: 40px;
    line-height: 40px;
    margin: 0;
    max-width: 100%;
    outline: none;
    padding: 0 80px 0 20px;
    text-align: left;
    white-space: nowrap;
    width: 100%;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}

.header-container .header-botbar .botbar-inner.botbar-flex .botbar-search .form-group button
{
    /*background: var(--main-color);*/
    border: 1px solid var(--main-2-color);
    box-shadow: none;
    background-color: var(--main-2-color);
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    height: 36px;
    outline: none;
    padding: 0;
    position: absolute;
    right: 2px;
    top: 50%;
    width: 60px;
    z-index: 9;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    /*border-radius: 100%;*/
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.header-container .header-botbar .botbar-inner.botbar-flex .botbar-search .form-group button:hover
{
    background-color: #fff;
    color: var(--main-2-color);
}

.botbar-tags
{
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: 10px;
    overflow: hidden;
}

.botbar-tags a
{
    padding: 0 7px;
    color: #ffae0c;
    font-size: .9rem;
}

.botbar-tags a:hover
{
    color: var(--main-color);
}

.header-container .header-botbar .botbar-cart, .header-container .header-botbar .botbar-tglv
{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-container .header-botbar .botbar-cart
{
    justify-content: flex-end;
}

.header-container .header-botbar a
{
    display: flex;
    align-items: center;
    /*justify-content: flex-end;*/
}

.header-container .header-botbar .botbar-icon
{
    font-size: 1.2rem;
    color: #fff;
    height: 2.5rem;
    width: 2.5rem;
    /*border-radius: 100%;*/
    background-color: var(--main-2-color);
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container .header-botbar .botbar-tglv .botbar-icon
{
    background: none;
    color: var(--main-2-color);
    font-size: 2rem;
    margin-right: 10px;
}

.header-container .header-botbar .botbar-icon i
{
    position: relative;
    top: -2px;
}

.header-container .header-botbar .botbar-text
{
    line-height: 1.4;
    margin-bottom: .4rem;
    font-size: .9rem;
    color: #555;
}

.header-container .header-botbar .botbar-text span
{
    font-weight: 600;
    color: var(--main-2-color);
}


.header-container .header-botbar .botbar-text sup
{
    color: var(--main-2-color);
}

#ketquatim
{
    position: absolute;
    top: 150%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    left: 0;
    transition: .4s all ease-in-out;
    background: #fff;
    border: 1px solid #f1f1f1;
}

#ketquatim.open
{
    top: 104%;
    opacity: 1;
    visibility: visible;
}

#ketquatim ul
{
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

#ketquatim ul .image
{
    width: 60px;
}

#ketquatim ul .image img
{
    width: 100%;
}

#ketquatim ul li
{
    padding: 10px;
    border-bottom: 1px solid #d9d9d9;
    align-items: center;
    width: 100%;
}

#ketquatim ul li:last-child
{
    border-bottom: 0;
}

#ketquatim ul .info
{
    width: calc(100% - 160px);
    padding: 0 15px
}

#ketquatim ul .price-search
{
    width: 100px;
}


@media screen and (min-width: 769px)
{
    .header-container .header-navibar
    {
        background: #F7F8F6;
    }

    .header-container .header-navibar #navigation-main > ul
    {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .header-container .header-navibar #navigation-main > ul > li
    {
        position: relative;
    }

    .header-container .header-navibar #navigation-main > ul > li > a
    {
        font-weight: 600;
        font-size: .95rem;
        padding: 15px 25px;
        color: #263138;
        display: block;
    }

    .header-container .header-navibar #navigation-main > ul > li > a:hover
    {
        color: var(--hover-color);
    }

    .header-container .header-navibar #navigation-main > ul > li ul
    {
        display: block;
        opacity: 0;
        background: #fff;
        color: #f9ac00;
        position: absolute;
        top: 130%;
        left: 0;
        right: auto;
        transition: .3s all;
        width: 250px;
        visibility: hidden;
        opacity: 0;
        text-align: left;
        box-shadow: 0 5px 10px 1px rgba(7, 19, 28, 0.3);
        margin: 0;
        padding: 10px 0;
    }

    .header-container .header-navibar #navigation-main > ul > li > ul li
    {
        position: relative;
    }

    .header-container .header-navibar #navigation-main > ul > li > ul li a
    {
        font-size: .95rem;
        padding: 10px 15px 10px 25px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .header-container .header-navibar #navigation-main > ul > li > ul li a:hover
    {
        color: var(--hover-color);
    }

    .header-container .header-navibar #navigation-main > ul > li > ul li a i
    {
        margin-top: 5px;
        margin-left: 15px;
    }

    .header-container .header-navibar #navigation-main > ul > li:hover > ul
    {
        visibility: visible;
        max-height: 3000px;
        max-width: 3000px;
        opacity: 1;
        top: 100%;
    }


    .header-container .header-navibar #navigation-main > ul > li > ul > li > ul
    {
        position: absolute;
        left: 100%;
        top: 10%;
        border-left: 3px solid var(--main-2-color);
        width: -webkit-fill-available;
    }

    .header-container .header-navibar #navigation-main > ul > li > ul > li > ul > li
    {

    }

    .header-container .header-navibar #navigation-main > ul > li > ul > li:hover > ul
    {

        visibility: visible;
        opacity: 1;
        top: -10px;
    }

    .scroll-bar
    {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pageNavigation
    {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    .pageNavigation #categoryBar
    {
        /*display: none;*/
    }


    .pageNavigation.header-container .header-botbar #navigation-main > ul
    {
        justify-content: flex-end;
    }

    .pageNavigation .header-bg-white
    {
        background: rgba(255, 255, 255, 0.95);
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    }

    .pageNavigation .scroll-bar #categoryBar
    {
        display: block;
    }

    .pageNavigation .header-topbar,
    .pageNavigation .botbar-logo,
    .pageNavigation .botbar-top
    {
        display: none;
    }

    .pageNavigation.header-container .header-botbar
    {
        padding-top: 0;
        display: none;
    }

    .pageNavigation.header-container .header-botbar #navigation-main > ul > li > a
    {
        line-height: unset;
    }

}

@media screen and (max-width: 768px)
{
    .container-fluid
    {
        padding: 0;
    }

    .header-mobile
    {
        box-shadow: 0 1px 0px rgba(0, 0, 0, .3);
        border-bottom: 1px solid #d9d9d9;
        position: relative;
        z-index: 98;
        transition: .3s all ease;
    }

    .mobile-logo img
    {
        max-width: 650px;
        display: block;
        margin: 0 auto;
    }

    .header-mobile-top > .row
    {
        margin: 0;
    }

    .header-mobile-top > .row > [class*=col]
    {
        padding: 0 10px;
    }

    .mobile-cart
    {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        display: none;
    }

    .mobile-cart a
    {
        display: inline-block;
        position: relative;
    }

    .mobile-cart-icon
    {
        font-size: 1.2rem;
    }

    .mobile-cart-text
    {
        position: absolute;
        top: -8px;
        right: -10px;
        min-width: 20px;
        display: flex;
        height: 20px;
        background: var(--main-color);
        color: #fff;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        font-size: .7rem;
    }

    .mobile-search-item .form-group
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: .5rem auto;
        position: relative;
        width: 100%;
        overflow: hidden;
        border: 1px solid #d1d1d1;
    }

    .mobile-search-item .form-group .form-control
    {
        background: #fff;
        border: none;
        color: #a4a4a4;
        height: 32px;
        line-height: 32px;
        margin: 0;
        max-width: 100%;
        outline: none;
        font-size: .8rem;
        padding: 0 40px 0 10px;
        text-align: left;
        white-space: nowrap;
        width: 100%;
        border-radius: 0;
    }

    #ketquatim
    {
        right: 0;
        left: unset;
        width: 320px;
    }

    .mobile-search-item .form-group button
    {
        background: var(--main-color);
        border: none;
        box-shadow: none;
        color: #fff;
        cursor: pointer;
        font-size: .95rem;
        height: 28px;
        line-height: 28px;
        outline: none;
        padding: 0;
        position: absolute;
        right: 2px;
        text-align: center;
        top: 50%;
        width: 32px;
        z-index: 9;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    #ketquatim ul .info
    {
        width: calc(100% - 140px);
        padding: 0 10px;
    }

    #ketquatim ul li a
    {
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    #ketquatim ul .price-search
    {
        width: 80px;
    }

    #ketquatim ul
    {
        max-height: 260px;
        -webkit-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
        overflow-y: scroll;
    }

    .mobile-humburger
    {
        position: relative;
    }

    .humburger
    {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 20px;
        height: 14px;
        cursor: pointer;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 99999;
    }

    .humburger:before, .humburger:after, .humburger span
    {
        content: '';
        position: absolute;
        left: 0;
        height: 2px;
        width: 20px;
        border-radius: 1px;
        background: #111;
        transition: all .4s;
    }

    .humburger span
    {
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    .humburger:before
    {
        top: 0;
    }

    .humburger:after
    {
        bottom: 0;
    }

    .header-mobile.show-mobile .humburger:before
    {
        top: 50%;
        margin-top: -1px;
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header-mobile.show-mobile .humburger span
    {
        display: none;
    }

    .header-mobile.show-mobile .humburger:after
    {
        bottom: 50%;
        margin-bottom: -1px;
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .mobile-navigation
    {
        vertical-align: middle;
        position: fixed;
        top: 0;
        left: -150%;
        z-index: 1000100;
        background: rgba(0, 0, 0, .6);
        width: 100%;
        height: 100%;
    }

    .show-mobile .mobile-navigation
    {
        left: 0;
    }

    .mobile-navigation > ul
    {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;
        width: 80%;
        height: 100vh;
        overflow-y: scroll;
        max-width: 400px;
        background: #fff;
        border-bottom: none;
        box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.51);
        transition: all .5s ease-out;
        margin-left: -100%;
    }

    .header-mobile.show-mobile .mobile-navigation > ul
    {
        margin-left: 0;
        transition: all .5s ease-out;
    }

    .mobile-navigation > ul > li
    {
        position: static;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        transition: all .3s;
        width: 100%;
    }

    .mobile-navigation > ul > li:not('.li-style')
    {
        background: #f9f8f8;
    }

    .mobile-navigation > ul > li.navigation-child,
    .mobile-navigation > ul > li > ul > li.navigation-subchild,
    .mobile-navigation > ul > li > ul > li > ul > li.navigation-subchild-item
    {
        position: static;
        display: block;
    }

    .mobile-navigation > ul > li > a
    {
        padding: 10px 15px;
        color: rgb(51, 51, 51);
        font-weight: 600;
        font-size: .85rem;
        text-transform: uppercase;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        transition: .3s all ease;
        border-left: 2px solid transparent;
        border-bottom: 1px solid #f1f1f1;
    }

    .mobile-navigation > ul > li.li-style.li-social > a
    {
        width: unset;
        padding-right: 0;
        border-bottom: 0;
    }

    .mobile-navigation > ul > li.li-style.li-social > a > img
    {
        margin-right: 5px !important;
        width: 30px !important;
        opacity: 1;
    }

    .mobile-navigation > ul > li.li-style > a
    {
        display: block;
        font-weight: 600 !important;
        color: #222 !important;
        text-transform: initial !important;
        font-size: .90rem !important;
    }

    .mobile-navigation > ul > li > div
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        transition: .3s all ease;
        border-bottom: 1px solid #f1f1f1;
        border-left: 2px solid transparent;
    }

    .mobile-navigation > ul > li > div > a
    {
        padding: 10px 15px;
        color: rgb(51, 51, 51);
        font-weight: 600;
        font-size: .85rem;
        text-transform: uppercase;
        display: block;
        text-decoration: none;
        width: calc(100% - 50px);
    }

    .mobile-navigation > ul > li > div > span
    {
        display: flex;
        width: 50px;
        align-items: center;
        justify-content: center;
        padding-left: 10px;
    }

    .mobile-navigation > ul > li:focus > div,
    .mobile-navigation > ul > li.active-submenu > div
    {
        color: var(--main-color);
        background: #F1F1F7;
        border-left: 2px solid var(--main-color);
    }

    .mobile-navigation > ul > li:focus > div > a,
    .mobile-navigation > ul > li.active-submenu > div > a
    {
        color: var(--main-color)
    }

    .mobile-navigation > ul > li > ul
    {
        padding-left: 0;
        position: relative;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background-color: #f1f9f9;
    }

    .mobile-navigation > ul > li > ul > li > a
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        transition: .3s all ease;
        border-left: 2px solid transparent;
        color: rgb(51, 51, 51);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px dotted #d9d9d9;
        text-transform: capitalize;
        font-size: .85rem;
        position: relative;
        padding: 10px 15px;
    }

    .mobile-navigation > ul > li > ul > li > div
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        transition: .3s all ease;
        border-left: 2px solid transparent;
        border-bottom: 1px dotted #d9d9d9;
    }

    .mobile-navigation > ul > li > ul > li > div > a
    {
        display: block;
        color: rgb(51, 51, 51);
        font-weight: 600;
        text-decoration: none;
        text-transform: capitalize;
        font-size: .85rem;
        position: relative;
        padding: 10px 15px;
        width: calc(100% - 40px);
    }

    .mobile-navigation > ul > li > ul > li > div > span
    {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
    }

    .mobile-navigation > ul > li > ul > li > ul
    {
        background-color: #f9f9f1 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .mobile-navigation > ul > li > ul > li > ul > li > a
    {
        padding: 10px 17px;
        width: 100%;
        color: #181818;
        font-weight: 600;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        justify-content: space-between;
        text-transform: capitalize;
        font-size: .8rem;
        position: relative;
        border-bottom: 1px dotted #d9d9d9;
    }

    .mobile-navigation > ul > li > ul > li > ul > li > div
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        transition: .3s all ease;
        border-left: 2px solid transparent;
        border-bottom: 1px dotted #d9d9d9;
    }

    .mobile-navigation > ul > li > ul > li > ul > li > div > a
    {
        padding: 10px 15px;
        width: calc(100% - 40px);
        color: #181818;
        font-weight: 600;
        display: block;
        font-size: .8rem;
        position: relative;
    }

    .mobile-navigation > ul > li > ul > li > ul > li > div > span
    {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
    }

    .mobile-navigation > ul > li > ul > li > ul > li > ul
    {
        background-color: #fff !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .mobile-navigation > ul > li > ul > li > ul > li > ul > li > a
    {
        padding: 10px 15px;
        width: 100%;
        color: #181818;
        font-weight: 600;
        display: block;
        font-size: .75rem;
        position: relative;
    }

    .header-text
    {
        text-align: center;
        font-size: 0.7rem;
        text-align: center;
        font-weight: 600;
        padding: .5rem 0;
        border-bottom: 1px solid #d1d1d1;
        background: #F5F5F5;
    }

    .mobileFixed
    {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
    }

    .mobileFixed .header-mobile-bottom,
    .mobileFixed .header-text
    {
        display: none;
    }
}

/* End Header, Language, Search ... */

/* Modal Login  Register */
#modal_dk_dn
{
    padding-right: 0 !important;
}

.modal-backdrop.show
{
    opacity: .7;
}

#modal_dk_dn .modal-header .close
{
    padding: 0 !important;
    margin: 0 !important;
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    border-radius: 100%;
    background: rgba(0, 0, 0, .9);
    color: #fff;
    position: absolute;
    right: 10px;
    top: -25px;
}

#modal_dk_dn .modal-dialog
{
    margin: 3.75rem auto
}

#modal_dk_dn .modal-header
{
    padding: 0;
}

#modal_dk_dn .modal-content
{
    border-radius: 0;
    border: 0 !important;
}

#modal_dk_dn .nav-tabs
{
    width: 100%;
    border-bottom: 0;
}

#modal_dk_dn .nav-tabs li
{
    width: 50%;
    margin-bottom: 0;
    text-align: center;
    border-left: 1px solid #d9d9d9;
}

#modal_dk_dn .nav-tabs li a
{
    border: 0;
    border-radius: 0;
    font-size: 1.1rem;
    padding: 15px 0;
    background-color: #f1f6f6;
}

#modal_dk_dn .nav-tabs li a.active
{
    background-color: #fff;
    color: #222;
    font-weight: 600;
}

#modal_dk_dn .nav-tabs li:first-child
{
    border-left: 0;
}

#modal_dk_dn .modal-body
{
    padding: 15px 50px;
}

#modal_dk_dn label
{
    font-weight: 600;
    color: #444;
}

#modal_dk_dn input.form-control
{
    border-radius: 0;
    border: 1px solid #d1d1d1;
    outline: none !important;
    box-shadow: none !important;
    font-size: .9rem;
}

#modal_dk_dn input.form-control:focus
{
    border-color: #0a90eb;
}

.btn_style_dn
{
    display: block;
    border-radius: 0;
    border-color: transparent;
    text-align: center;
    font-size: .9rem;
    width: 100%;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 20px;
    max-width: 40%;
    margin: 50px auto 0;
}

.btn_style_dn img
{
    width: 20px;
    margin-left: 10px;
}

@media screen and (max-width: 600px)
{
    .btn_style_dn
    {
        max-width: 70%;
    }
}

.tab-content > .active
{
    opacity: 1 !important;
}

/* End Modal Login Register */

/* Start Pagination & Breadcumb */

.pagination
{
    display: inline-flex;
    align-items: flex-end;
}

.pagination li a.page-link
{
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 2px;
    background: #fff;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid #d1d1d1;
    color: #000;
    padding: 0;
    margin-right: 5px;
    position: relative;
    transition: all 0.3s ease 0s;
}

.pagination li:first-child a.page-link
{
    border-radius: 0 2px 2px 0;
}

.pagination li:last-child a.page-link
{
    border-radius: 2px 0 0 2px;
}

.pagination li a.page-link:hover, .pagination .pageactive a.page-link, .pagination .pageactive a.page-link:hover
{
    background: var(--main-color);
    color: #fff;
}

.c_pagination li a
{
    outline: none;
    color: #000;
    box-shadow: none !important;
    font-weight: 600;
    background: #fff;
    margin: 3px;;
}

.c_pagination li.pageactive a
{
    background: #f1f1f1;
}

.ol-breadcrumb .breadcrumb
{
    padding-left: 0;
    padding-right: 0;
}

.ol-breadcrumb .breadcrumb li, .ol-breadcrumb .breadcrumb a
{
    font-size: .9rem;
}

/* End Pagination & Breadcrumb */

/* Danh mục bài viết - chi tiết bài viết - sidebar bài viết & sidebar sản phẩm*/

.module_blog
{
    background: #fff;
    padding-bottom: 90px;
}

.blog-detail
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.7rem;
}

.blog-date, .blog-views
{
    font-size: .82rem;
    font-weight: 600;
    color: var(--main-2-color);
}

.watchmore
{
    font-weight: 600;
    /*color: #fff;*/
    font-size: .95rem;
    padding: 10px 15px;
    overflow: hidden;
    /*background: var(--main-2-color);*/
    position: relative;
    z-index: 1;
}

.watchmore:hover, .showall:hover
{
    color: #fff;
}

.watchmore:before, .showall:before
{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-2-color);
    transition: all 0.25s;
    z-index: -2;
}

.watchmore:after, .showall:after
{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(249,172,0,0.56);
    transition: all 0.25s;
    z-index: -1;
}

.watchmore:hover:after, .showall:hover:after
{
    width: 100%;

}


@media screen and (min-width: 576px)
{

}

@media screen and (max-width: 768px)
{
    .blog-meta
    {
        margin-top: 10px;
        justify-content: center;
    }
}

.single__main
{
    padding: 100px 20px 80px 150px;
    border-left: 1px solid #d1d1d1;
    position: relative;
    margin-bottom: 30px;
}

.single__main:before
{
    position: absolute;
    content: "";
    top: 72px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--hover-color);
}

.single__main:after
{
    position: absolute;
    content: "";
    top: 100px;
    left: -2px;
    width: 4px;
    height: 85px;
    background: var(--hover-color);
}

.single-cate
{
    position: absolute;
    top: 60px;
    left: 40px;
}

.single-cate a
{
    font-size: .9rem;
    font-style: italic;
    text-transform: uppercase;
}

.single-meta-date
{
    position: absolute;
    top: 100px;
    left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-day
{
    font-size: 2.2rem;
    line-height: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.single-month
{
    font-size: 1rem;
    line-height: 1.3rem;
    color: #9fa4aa;
}

.single-year
{
    font-size: 1rem;
    line-height: 1.3rem;
    color: var(--main-2-color);
}

.single-meta > div:not(:first-child)
{
    padding-left: 5px;
    border-left: 1px solid #d1d1d1;
    padding-right: 5px;
}

.single__main .single-meta
{
    margin-bottom: .4rem;
}


.single__main h1
{
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.single__main .content p, .w-product-left-content p
{
    font-family: 'Sarabun' !important;
}

.single__main .content img, .w-product-left-content img
{
    max-width: 100% !important;
}

@media screen and (max-width: 767px)
{
    .single__main
    {
        padding: 180px 20px 30px;
    }

    .single__main:before
    {
        top: 43px;
    }

    .single__main:after
    {
        top: 70px;
    }

    .single-cate
    {
        top: 30px;
    }

    .single-meta-date
    {
        top: 70px;
    }

    .single__main h1
    {
        font-size: 1.5rem;
    }
}

.product__sidebar
{
    background: #fff;
    border-radius: 0;
    padding: 10px;
}

.product__sidebar .sidebar__box,
.single__sidebar .sidebar__box
{
    border-radius: 0;
    border: 0;
    background: transparent;
    margin-bottom: 1rem;
}

.product__sidebar .sidebar__box:not(:first-child)
{
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d1d1d1;
}

.sidebar__checked .scrollNCC
{
    max-height: 205px;
    overflow-y: auto;
}

.sidebar__checked .scrollNCC::-webkit-scrollbar
{
    width: 5px;
}

/* Track */
.sidebar__checked .scrollNCC::-webkit-scrollbar-track
{
    background: #f1f1f1;
}

/* Handle */
.sidebar__checked .scrollNCC::-webkit-scrollbar-thumb
{
    background: #888;
}

/* Handle on hover */
.sidebar__checked .scrollNCC::-webkit-scrollbar-thumb:hover
{
    background: #555;
}

.sidebar__checked label
{
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: .9rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sidebar__checked input
{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark
{
    position: absolute;
    top: 0;
    left: 13px;
    height: 18px;
    width: 18px;
    background-color: #f1f1f1;
}

.sidebar__checked:after
{
    content: "";
    position: absolute;
    display: none;
}

.sidebar__checked .checkmark:after
{
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: none;
    content: "";
    position: absolute;
}

.sidebar__checked li.active label .checkmark,
.sidebar__checked input:checked ~ .checkmark
{
    background-color: #2196F3;
}

.sidebar__checked li.active label .checkmark:after,
.sidebar__checked input:checked ~ .checkmark:after
{
    display: block;
}

.product__sidebar .sidebar__title,
.single__sidebar .sidebar__title
{
    position: relative;
    background: #fff;
    font-size: .95rem;
    text-align: left;
    text-transform: uppercase;
}

.wrapper_single
{
    background: #fff;
    padding-bottom: 50px !important;
}

.sidebar__box
{
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 30px;
}

.sidebar__title
{
    padding: 10px 15px;
    font-weight: 600;
    font-size: 1rem;
}

.sidebar__box ul
{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.sidebar__box ul.list_category li
{
    position: relative;
    transition: .4s all;
}

.sidebar__box ul.list_category li:last-child
{
    border-bottom: 0;
}

.sidebar__box ul.list_category > li > a
{
    line-height: 35px;
    font-weight: 400;
    position: relative;
    font-size: .95rem;
    padding: 0 15px;
    display: block;
    transition: .3s all ease-in;
}

.sidebar__box ul.list_category > li:hover > a
{
    background: #f8f9f9;
}

.sidebar__box ul.list_category li button
{
    background: transparent;
    position: absolute;
    box-shadow: none !important;
    outline: none !important;
    border: 0;
    top: 0px;
    right: 0px;
    display: flex;
    height: 35px;
    width: 37px;
    align-items: center;
    justify-content: center;
}

.sidebar__box ul.list_category li button span
{
    top: 15px;
    right: 10px;
    background: #444;
    width: 14px;
    height: 2px;
    position: absolute;
    content: "";
}

.sidebar__box ul.list_category li button span:after
{
    position: absolute;
    content: "";
    display: inline-block;
    height: 14px;
    width: 2px;
    top: -6px;
    right: 6px;
    background: #444;
    opacity: 1;
    visibility: visible;
    transition: .3s all ease;
}

.sidebar__box ul.list_category > li > ul
{
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: .3s all ease;
}

.sidebar__box ul.list_category > li > ul > li > a
{
    line-height: 35px;
    font-weight: 400;
    background: #fff;
    position: relative;
    font-size: .85rem;
    padding: 0 15px 0 30px;
    display: block;
    border-bottom: 2px solid #ffff;
    transition: .3s all ease-in;
}

.sidebar__box ul.list_category > li.open button span:after
{
    opacity: 0;
    visibility: hidden;
}


.sidebar__product
{
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.sidebar__product .sidebar__p_image
{
    width: 25%;
    position: relative;
}

.sidebar__product .sidebar__p_image a
{
    display: flex;
    transition: .3s all cubic-bezier(0, 0.42, 1, 1.49);
    font-size: 16px;
    height: 35px;
    border-radius: 4px;
    width: 35px;
    color: #333;
    background: #eaeaea;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    visibility: hidden;
}

.sidebar__product:hover .sidebar__p_image a
{
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.sidebar__product .sidebar__p_title
{
    width: 75%;
    padding-left: 15px;
}

.sidebar__product .sidebar__p_title .sidebar__p_name
{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: .90rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
    transition: .3s all ease-in;
}

.sidebar__product:hover .sidebar__p_title .sidebar__p_name
{
    color: var(--main-color)
}

.sidebar__product .sidebar__p_title .sidebar__p_price
{
    margin-top: .5rem;
    color: var(--label-color);
    font-size: .9rem;
}

.sidebar__product .sidebar__p_title .sidebar__p_price span
{
    color: var(--color-border);
    text-decoration: line-through;
    font-size: .75rem;
}

.sidebar__bproduct ul
{
    padding: 15px;
    border: 1px solid #d1d1d1;
}

.sidebar__bproduct ul li div.sidebar__product
{
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 1rem;
}

.sidebar__bproduct ul li:last-child div.sidebar__product
{
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

/* End danh mục bài viết - chi tiết bài viết - sidebar bài viết & sidebar sản phẩm*/

/* Danh mục sản phẩm & filter */

.wrapper__category
{
    background: #fff;
}

.wrapper__category .breadcrumb
{
    margin: 15px 0 15px;
}

.filter
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.filter-body
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.filter-body > div
{
    margin: 0 10px;
}

.filter-body > div:first-child
{
    margin-left: 0;
}

.filter-body .dropdown
{
    position: relative;
}

.filter-body .dropdown button
{
    font-size: .85rem;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    background: #fff;
    outline: none !important;
    box-shadow: none !important;
}

.filter-body .dropdown-menu
{
    min-width: 200px;
    border-radius: 0;
    border: 1px solid #d9d9d9;
    padding: 0;
}

.filter-body .dropdown-menu li
{
    border-bottom: 1px solid #d9d9d9;
}

.filter-body .dropdown-menu li:last-child
{
    border-bottom: 0;
}

.filter-body .dropdown-menu li a
{
    padding: 5px 10px;
    display: block;
    font-size: .9rem;
    transition: .4s all ease-in-out;
}

.filter-body .dropdown-menu li:hover a
{
    color: var(--main-color);
}

@media screen and (max-width: 767px)
{
    .filter
    {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .filter-body
    {
        flex-wrap: wrap;
        justify-content: start;
    }

    .filter-body > div
    {
        margin-right: .7rem !important;
        margin-left: 0 !important;
        margin-bottom: .7rem;
    }
}

/* End danh mục sản phẩm & filter */

/* Start label giảm giá */

.discount
{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f84258;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 0 15px;
    line-height: 30px;
    min-height: 0;
    min-width: 0;
    z-index: 100;
    cursor: default;
    border-radius: 30px;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, .2);
    border: 2px solid #fff;
    white-space: nowrap;
}

.discount:before
{
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    margin-left: 0px;
    width: 0;
    height: 0;
    box-sizing: border-box;
    border: 5px solid #000;
    border-color: transparent transparent #f84258 #f84258 !important;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    z-index: 10;
}

.discount:after
{
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    margin-left: -3px;
    width: 0;
    height: 0;
    box-sizing: border-box;
    border: 5px solid #000;
    border-color: transparent transparent #fff #fff;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    box-shadow: -5px 4px 5px -2px rgba(0, 0, 0, .15);
    z-index: 5;
}

/* End label giảm giá */
.dangload
{
    position: fixed;
    background-color: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    z-index: 10000;
    top: 0px;
    left: 0px;
    display: none;
}

.dangload .boxdangload
{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: #f9f9f9;
    text-align: center;
    border-radius: 5px;
    width: 252px;
    margin: auto;
    position: absolute;
    top: 45%;
}

.load .loading-bar
{
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 1px;
    background-color: #dc6082;
    animation: loading-bar-animation .9s ease-in-out infinite;
}

.load .loading-bar:nth-child(2)
{
    animation-delay: .13s;
}

.load .loading-bar:nth-child(3)
{
    animation-delay: .26s;
}

.load .loading-bar:nth-child(4)
{
    animation-delay: .39s;
}

@-webkit-keyframes loading-bar-animation
{
    0%, 50%
    {
        -webkit-transform: scale(1)
    }
    25%
    {
        -webkit-transform: scale(1, 2.2)
    }
}

/* Page Account */
.wrapper__account
{
    margin: 30px 0;
    padding-bottom: 40px;
}

.wrapper__main
{
    padding: 15px;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #d9d9d9;
}

.account__title
{
    padding: 15px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #181818
}

.table__invoice a, .table__invoice form
{
    display: inline-block;
}

@media screen and (max-width: 767px)
{
    .account__invoice
    {
        margin-top: 30px;
        border-top: 1px solid #d9d9d9;
    }
}

/* End page Account */

/* Button fixed */

.cart-fixed
{
    position: fixed;
    bottom: 145px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    display: none;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: var(--label-color);
    z-index: 22;
}

.cart-fixed:hover
{
    background-color: var(--main-2-color);
}

#return-to-top:hover
{
    background: var(--hover-color);
    color: #fff;
    border-color: var(--hover-color);
}


.cart-fixed a
{
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.cart-fixed i
{
    position: relative;
    left: -4px;
}

.cart-fixed span
{
    position: absolute;
    top: 6px;
    right: 5px;
    font-size: 13px;
    line-height: 14px;
    padding: 1px 5px 3px;
    font-weight: 600;
    color: var(--main-color);
    background-color: #fff;
    border-radius: 10px;
}

#return-to-top
{
    position: fixed;
    bottom: 90px;
    right: 15px;
    border: 1px solid #2A3E43;
    background: transparent;
    width: 40px;
    height: 40px;
    z-index: 9999;
    text-decoration: none;
    border-radius: 4px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top i
{
    margin: 0;
    position: relative;
    left: 50%;
    top: 40%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    vertical-align: middle;
}


#phone-contact
{
    display: none;
}

.call, .zalo
{
    position: fixed;
    bottom: 35px;
    left: 10px;
    z-index: 99900;
}

.zalo
{
    bottom: 85px;
}

.call a, .zalo a
{
    display: block;
}

.zalo img
{
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.50);
    border-radius: 5px;
}

.number-zalo
{
    position: fixed;
    bottom: 87px;
    left: 51px;
    padding: 8px 18px;
    background: rgba(0, 143, 229);
    color: white;
    border-radius: 0px 40px 40px 0px;
    font-size: 1rem;
    z-index: -1;
}

.call > a
{
    display: block;
    border-radius: 100%;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.50);
}

.boom
{
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f9ac00;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(249,172,0,0.56);
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
}

.boom i
{
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    font-size: 23px;
    color: white;
}

.number-phone
{
    position: fixed;
    bottom: 41px;
    left: 50px;
    padding: 7px 18px;
    background: #f9ac00;
    box-shadow: 0 0 10px rgba(249,172,0,0.56);
    color: white;
    border-radius: 0px 40px 40px 0px;
    font-size: 1rem;
    z-index: -1;
}


@media screen and (max-width: 767px)
{
    .number-phone
    {
        display: none;
    }
}

/* End button fixed */

/* Banner - Menu Category */
.cate-title
{
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}

.cate-title:before
{
    position: absolute;
    content: "";
    top: 110%;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--main-2-color);
}

.cate-menu
{
    padding-left: 0 !important;
    padding-right: 30px !important;
    border-right: 1px solid #d6d6d6;
}

.cate-menu .cate-mega
{
    /*background: #fff;*/
}

.cate-menu .megamenu
{
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    position: relative;
}

.cate-menu .megamenu > li
{
    position: static;
}

.cate-menu .megamenu li a
{
    padding: 12px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.cate-menu .megamenu > li a span
{
    margin-left: 10px;
    padding: 0 5px 2px;
    font-size: .83rem;
    line-height: 1rem;
    color: #fff;
    background: var(--main-color);
}

.cate-menu .megamenu > li
{
    border-bottom: 1px dashed #b5bdc7;
}

.cate-menu .megamenu li a
{
    color: #767778;
}

.cate-menu .megamenu > li:last-of-type
{
    border-bottom: 0;
}


.cate-menu .megamenu > li > a span img
{
    margin-left: 0;
    margin-right: 5px;
    margin-top: -4.5px;
    width: 14px;
    vertical-align: middle;
}

.cate-menu .megamenu > li > a:hover
{

    color: var(--main-2-color);
}

.megamenu-child
{
    position: relative;
    width: auto;
    transition: .3s all;
    height: 100%;
}

.megamenu-child > ul
{
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    max-height: 100%;
    overflow-y: auto;
    border-top: 1px dashed #b5bdc7;

    /* Code mới*/
    margin-bottom: 10px;
    flex-direction: column;
    align-content: baseline;
}

.megamenu-child > ul > li
{
    width: 100%;
}

.megamenu-child > ul > li a:before
{
    position: absolute;
    content: "";
    top: calc(50% + 3px);
    left: 10px;
    width: 5px;
    height: 5px;
    background: #767778;
    border-radius: 0;
}

.cate-menu .megamenu > li > .megamenu-child > ul > li a
{
    position: relative;
    padding: 10px 15px 0 25px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    transition: .3s all ease-in-out;
}

.cate-menu .megamenu > li > .megamenu-child > ul > li > a:hover,
.cate-menu .megamenu > li > .megamenu-child > ul > li > ul > li > a:hover
{
    color: var(--main-2-color)
}

.cate-menu .megamenu > li > .megamenu-child > ul > li > ul
{
    padding-left: 15px;
}


.megamenu-child > ul > li > ul > li > a:before
{
    background: #767778;
    border-radius: 50%;
}

.head-banner
{
    height: 430px;
    flex: 1;
    width: 75%;
    padding: 1px 15px 1px 15px;
}

.banner
{

    position: relative;
}

.head-banner > .row, .head-banner .col-md-8, .head-banner .col-md-4, #banner-slide, #banner-slide div
{
    height: 100%;
}

.banner .owl-item
{
    overflow: hidden;
}

.slide-banner-item:before
{
    position: absolute;
    content: "";
    z-index: 2;
    top: -25%;
    left: -20%;
    width: 47%;
    height: 150%;
    background: var(--main-2-color);
    transform: rotate(-12deg);
}

.slide-banner-item:after
{
    position: absolute;
    content: "";
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220,220,220,0.2);
}

.banner-text
{
    position: absolute;
    z-index: 2;
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px;
    left: 100px;
    width: 370px;
}

.banner-title, .banner-content
{
    height: auto !important;
}

.banner-title
{
    font-size: 2rem;
    line-height: 2.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.banner-content
{
    font-size: 1.2rem;
    line-height: 1.7rem;
}

#banner-slide
{
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
}

#banner-slide div a
{
    height: 100%;
    background-size: cover;
    background-position: center center;
}

#banner-slide .owl-dots
{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    height: unset;
}

#banner-slide .owl-dots button
{
    outline: none !important;
    box-shadow: none !important;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: var(--main-color);
    transition: .3s all ease-in-out;
    margin: 0 5px;
}

#banner-slide .owl-dots button.active
{
    width: 30px;
    border-radius: 10px;
    background: var(--main-2-color)
}

#banner-slide .owl-nav
{
    height: auto;
    position: absolute;
    top: 45%;
    z-index: 1;
    transform: translateY(-50%);
    width: 100%;
}

#banner-slide .owl-nav button
{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .4);
    color: #d9d9d9;
    font-size: 2.5rem;
    outline: none;
    box-shadow: none !important;
    position: absolute;
    height: 50px;
    width: 50px;
    transition: .3s all ease;
    left: -25px;
    transform: rotate(45deg);
}

#banner-slide .owl-nav button:hover
{
    background: rgba(0, 0, 0, 1);
    color: #fff;
}

#banner-slide .owl-nav button span
{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-top: -22px;
    box-shadow: none !important;
    outline: none;
    transform: rotate(135deg);
    font-size: 20px;
}

#banner-slide .owl-nav button.owl-next span
{
    margin-left: -22px;
    margin-top: 20px;
}

#banner-slide .owl-nav button.owl-next
{
    right: -25px;
    left: unset;
}

@media screen and (min-width: 991px)
{

    .col-20
    {
        max-width: 20%;
    }

    .head-main .container
    {
        padding-left: 0;
        padding-right: 0;
    }

    .head-main .container .row
    {
        margin: 0;
    }

    .head-main > .container > .row
    {
        margin-left: 0px;
        margin-right: 0px;
    }

    .head-main .row .col-12
    {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media screen and (max-width: 767px)
{
    .cate-menu
    {
        padding: 0 15px !important;
        border: 0;
    }

    .head-main
    {
        padding: 0;
    }

    .head-main .container, .head-main [class*="col-"]
    {
        padding-left: 0;
        padding-right: 0;
    }

    .head-main .row
    {
        margin-left: 0;
        margin-right: 0;
    }

    .head-banner
    {
        padding-left: 0;
        width: 100%;
        height: 200px;
    }

    .slide-banner-item:before
    {

        width: 50%;
        transform: rotate(-15deg);
    }

    .banner-text
    {

        padding-bottom: 30px;
        left: 40px;
        width: 40%;
    }

    .banner-title
    {
        font-size: 1.2rem;
        line-height: unset;
    }

    .banner-content
    {
        display: none;
    }

    #banner-slide div a
    {
        padding-top: 40%;
    }


    .head-banner > .row,
    .head-banner .col-md-8,
    .head-banner .col-md-4,
    #banner-slide, #banner-slide div
    {
        height: 100%;
    }

    #banner-slide .owl-nav
    {
        top: 35%;
    }

    #banner-slide .owl-nav button
    {
        height: 45px;
        width: 45px;
    }

    #banner-slide .owl-nav button span
    {
        font-size: 15px;
    }
}

/* End Banner - Menu Category  */

@media screen and (min-width: 991px)
{
    .head-banner [class*="col-"]
    {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media screen and (max-width: 767px)
{
    .wrapper__category .container, .wrapper__category [class*="col-"]
    {
        padding-left: 7px;
        padding-right: 7px;
    }

    .wrapper__category .row
    {
        margin-right: -2px;
        margin-left: -2px;
    }
}

.iziToast-wrapper
{
    z-index: 11111111111111111111111;
}

.modal-backdrop
{
    z-index: 9998;
}

.modal
{
    z-index: 999999;
    background: rgba(0, 0, 0, .6);
}

@media (min-width: 1200px)
{

    .section-category .container,
    .section-blog .container,
    .section-supplier .container,
    .wrapper-background .container,
    .category-main .container,
    .section-product .container, .section-aboutus .container, .wrapper__category .container
    {
        max-width: 1170px;
    }
}

section
{
    padding: 50px 0;
    background-color: #fff;
}

.section-aboutus
{
    background-color: var(--bg-color);
}

.section-policies
{
    background-color: var(--bg-color);
}

.category-main
{
    background-color: #f5f5f5;
}

.section-policies
{
    padding-bottom: 70px;
}

/* Stat heading */
.section-heading
{
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.section-heading:after
{
    position: absolute;
    width: 120px;
    height: 20px;
    content: "";
    background-image: url('/public/upload/banner/decor.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.section-heading h3 a, .section-heading h3
{
    /*background: #fff;*/
    font-size: 2rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    color: var(--main-color);
    line-height: 1.35;
    font-weight: 600;
}

.section-heading h3
{
    font-size: 1.5rem;
}

.heading--title
{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.heading--title .title
{
    display: inline-block;
    padding: 10px 30px;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #f5f5f5;
}

.section-supplier .heading--title .title, .section-blog .heading--title .title, .wrapper_single .heading--title .title
{
    background: #fff;
}

.wrapper-product .heading--title .title
{
    font-size: 1.7rem;
    background: #fff;
}

.heading--title:after
{
    position: absolute;
    left: 0;
    border-top: 1px solid var(--main-2-color);
    border-bottom: 1px solid var(--main-2-color);
    height: 4px;
    width: 100%;
    content: "";
    top: 50%;
    z-index: -1;
}


@media screen and (max-width: 767px)
{
    section
    {
        padding: 30px 0;
    }

    .heading--title .title
    {
        font-size: 1.3rem;
        padding: 10px 15px;
    }

    .section-heading
    {
        margin-bottom: 40px;
    }

    .section-heading:after
    {
        height: 15px;
        background-size: contain;
    }

    .section-heading h3 a
    {
        display: block;
        position: relative;
        left: 0;
        font-size: 1.5rem;
    }

    .section-heading h3
    {
        font-size: 1.4rem;
    }
}

/* End Heading */
/* Best Seller - Slide Swiper */
.main--inner .swiper-button-next, .main--inner .swiper-button-prev
{
    top: 25px;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev
{
    right: 0;
}

.main--inner .swiper-button-prev, .main--inner .swiper-container-rtl .swiper-button-next
{
    left: auto;
    right: 27px;
}

.main--inner .navigation-swiper > div
{
    background: var(--dark-color);
    width: 20px;
    height: 30px;
    transition: .3s all;
    outline: none;
}

.main--inner .navigation-swiper > div:after
{
    font-size: 14px;
    color: #f1f1f1;
}

.list--item
{
    padding: 10px;
    border: 1px solid #d9d9d9;
    box-shadow: 0 0 1px rgba(0, 0, 0, .2);
}

.p-box-item
{
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

#slideBestSeller .swiper-wrapper .swiper-slide:not(:nth-child(5)):not(:nth-child(6))
{
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 15px;
}

.p-box-item .p-box-avatar
{
    width: 25%;
    position: relative;
}

.p-box-item .p-box-avatar a
{
    display: flex;
    transition: .3s all cubic-bezier(0, 0.42, 1, 1.49);
    font-size: 16px;
    height: 35px;
    border-radius: 4px;
    width: 35px;
    color: #333;
    background: #eaeaea;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    visibility: hidden;
}

.p-box-item:hover .p-box-avatar a
{
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.p-box-item .p-box-avatar a:hover
{
    color: #fff;
    background: var(--hover-color)
}

.p-box-item .p-box-avatar img
{
    width: 100%;
}

.p-box-item .p-box-info
{
    width: 75%;
    padding-left: 15px;
}

.p-box-item .p-box-name
{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: .90rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
    transition: .3s all ease-in;
}

.p-box-item:hover .p-box-name
{
    color: var(--main-color)
}

.p-box-item .p-box-price
{
    margin-top: .5rem;
    color: var(--label-color);
    font-size: .9rem;
}

.p-box-item .p-box-price span
{
    color: var(--color-border);
    text-decoration: line-through;
    font-size: .75rem;
}

.wrapper-main .col_w_25,
.wrapper-main .col_w_75
{
    padding-left: 15px;
    padding-right: 15px;
}

.wrapper-main > .container > .row
{
    margin-left: -15px;
    margin-right: -15px;
}

@media screen and (max-width: 767px)
{
    .wrapper-main .col_w_25, .wrapper-main .col_w_75
    {
        width: 100%;
    }
}

/* End Best Seller */
/* Start quảng cáo */
.adv--image
{
    border-radius: 4px;
    position: relative;
}

.adv--image:before
{
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    bottom: 10px;
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    right: 50%;
    opacity: 0;
    z-index: 11;
    pointer-events: none;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.adv--image:after
{
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    right: 10px;
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    bottom: 50%;
    opacity: 0;
    z-index: 11;
    pointer-events: none;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.adv--image p:before
{
    background: #444;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
}

.adv--item:hover .adv--image p:before
{
    opacity: .35;
}

.adv--item:hover .adv--image:before
{
    left: 10px;
    right: 10px;
    opacity: 1;
}

.adv--item:hover .adv--image:after
{
    top: 10px;
    bottom: 10px;
    opacity: 1;
}

.adv--image img
{
    width: 100%;
    transition: .3s ease-in all;
}

.adv--item:hover .adv--image img
{
    transform: scale(1.1);
}

.adv--content
{
    position: absolute;
    left: 20px;
    text-align: left;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3333;
}

.adv-text01
{
    color: #fff;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3333;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.adv-text02
{
    color: #fff;
    font-size: 1rem;
    line-height: 1.333;
    margin-bottom: 1.3rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.adv-textlink
{
    margin-bottom: 0;
}

.adv-textlink a
{
    color: #fff;
    font-size: .75rem;
    margin: 0;
    line-height: 1;
    font-weight: 600;
    pointer-events: visible;
    text-transform: uppercase;
    border-bottom: 1px solid;
}

.adv-textlink a:hover
{
    color: var(--main-2-color)
}

@media screen and (min-width: 991px)
{
    .main--adv > .row,
    .tab--module > .row
    {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media screen and (max-width: 768px)
{
    .wrapper-background .col-md-3:nth-of-type(3),
    .wrapper-background .col-md-3:last-of-type
    {
        margin-bottom: 0 !important;
    }
}

.product-item--avatar
{
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
}

.product-item--inner
{
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    background: #fff;
}

.wrapper__category .product-item--inner
{
    background-color: #f3f4f6;
}

.product-item--info
{
    padding: 15px;
    position: relative;
    height: 115px;
}

.product-item--info .product-item--name
{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
    transition: .3s all ease-in;
    height: 40px;
}

.product-item--inner:hover .product-item--info .product-item--name
{
    color: var(--main-color)
}

.product-item--info .product-item--price
{
    margin: 15px 0 0;
    font-weight: 600;
    text-align: center;
    color: var(--label-color);
    font-size: 1rem;
}

.product-item--info .product-item--price span
{
    color: var(--color-border);
    text-decoration: line-through;
    font-size: .75rem;
}

.product-item--info .product-item--price
{
    display: flex;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px dashed #c5c5c5;
}

.showall
{
    margin: 10px auto 0;
    font-weight: 600;
    font-size: 1rem;
    height: 37px;
    line-height: 1.3;
    min-width: 100px;
    position: relative;
    z-index: 1;
    padding: 8px 20px;
    box-shadow: none;
    background: var(--main-2-color);
    /*color: #fff;*/
    cursor: pointer;
    outline: none;
    transition: .3s all;
}

.showall:hover
{
    /*transform: translateY(-5px);*/
}

.badge-amount
{
    top: 15px;
    left: -80px;
    color: #fff;
    display: flex;
    align-items: center;
    position: absolute;
    text-align: center;
    text-decoration: none;
    letter-spacing: .06em;
    background-color: #A00;
    padding: 0.5em 5em 0.4em 5em;
    text-shadow: 0 0 0.75em #444;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
    font: 500 16px/1.2em Arial, Sans-Serif;
    -webkit-text-shadow: 0 0 0.75em #444;
    -webkit-box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
    -webkit-transform: rotate(-45deg) scale(0.75, 1);
    z-index: 10;
}

.badge-amount.badge-amount-english
{
    left: -41%;
    top: 20px;
}

.badge-amount.badge-amount-english-tab
{
    left: -43%;
    top: 20px;
}

.badge-amount.badge-amount-english-cate
{
    left: -48%;
    top: 20px;
}

.badge-amount:before
{
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: -0.3em -5em;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    border: 2px rgba(255, 255, 255, 0.7) dashed;
}

.badge-sale
{
    background: var(--main-color);
    height: 40px;
    width: 40px;
    border-radius: 100%;
    right: 5px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    text-shadow: none;
    text-transform: uppercase;
    top: 5px;
    font-size: .75rem;
    z-index: 3;
    color: #fff;
}

.badge-gift
{
    background: #2a3746;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    right: 5px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    text-shadow: none;
    text-transform: uppercase;
    top: 5px;
    font-size: 1rem;
    z-index: 3;
    color: #fff;
}

.badge-gift.position-gift
{
    top: 50px;
}

.col-category .category-title
{
    position: relative;
    background: #fff;
    color: #000;
    font-size: 1.15rem;
    text-align: left;
    text-transform: uppercase;
    padding: 10px 15px;
    font-weight: 600;
}

.col-category ul li a
{
    line-height: 35px;
    font-weight: 400;
    color: #2f2f2f;
    position: relative;
    padding: 0 15px;
    display: block;
    transition: .3s all ease-in;
}

.col-category ul li:hover a
{
    background: #f8f9f9;
    color: #000;
}

@media screen and (min-width: 768px)
{

    .wrapper__category, .wrapper_single
    {
        padding-bottom: 90px;
    }

    .m-col
    {
        padding-left: 30px !important;
        padding-right: 0 !important;
    }

    .product-item--buy a
    {
        margin-top: 1rem;
        display: block;
        width: 100%;
        padding: 5px;
        font-size: .9rem;
        text-align: center;
        color: #fff;
        background: var(--main-color);
        transition: .3s all ease;
    }

    .product-item--buy a:hover
    {
        background: var(--hover-color)
    }


    .product-item--inner:hover .product-item--avatar .product-item--action
    {
        border-width: 10px;
        opacity: 1;
    }

    .product-item--avatar .product-item--action
    {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        border: 0 solid #fbfbfb;
        left: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        z-index: 2;
        transition: all 0.35s;
    }

    .product-item--avatar .product-item--action .action
    {
        position: relative;
        z-index: 1;
        top: 25px;
        opacity: 0;
        font-weight: 600;
        background-color: white;
        padding: 7px 15px;
        overflow: hidden;
        transition: all 0.25s;
        transition-delay: .15s;
    }

    .product-item--avatar .product-item--action .action:hover
    {
        color: #fff;
        transition: all 0.25s;
    }

    .product-item--inner:hover .product-item--avatar .product-item--action .action
    {
        top: 0;
        opacity: 1;
    }

    .product-item--avatar .product-item--action .action:before
    {
        position: absolute;
        content: "";
        z-index: -1;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        opacity: 0;
        transform: translateX(-50%);
        background: var(--main-color);
        transition: all 0.25s;

    }

    .product-item--avatar .product-item--action .action:hover:before
    {
        width: 100%;
        opacity: 1;
    }

    .product-item--avatar .product-item--action ul li:hover a span
    {
        background: var(--main-2-color);
        color: #fff;
    }

    .product-item--avatar .product-item--action ul li:hover a p
    {
        opacity: 1;
        visibility: visible;
        left: 35px;
    }

}

@media screen and (max-width: 768px)
{
    .product-item--info
    {
        padding: 10px;
    }

    .col-category .category-title,
    .col-category ul li a
    {
        padding-left: 0;
    }
}

.loading-content
{
    position: absolute;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px)
{


    .product-item--action
    {
        display: none;
    }
}

/* Slide nhà cung cấp */
.section-supplier .heading--title
{
    margin-bottom: .5rem;
}

.section-supplier .title
{
    background-color: #fff;
}

.section-supplier .swiper-container
{
    padding: 15px;
}

.section-supplier .supplier-item
{
    height: 150px;
    padding: 2px;
}

.supplier-item
{
    height: 200px
}

.supplier-item a
{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #ECF0F1;
    transition: .25s all;
}

.supplier-item:hover a
{
    border-color: transparent;
}

.supplier-item a:before
{
    position: absolute;
    content: "";
    top: 5px;
    left: -5px;
    opacity: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px solid var(--hover-color);
    transition: .25s all;
}

.supplier-item:hover a:before
{
    top: -5px;
    left: 5px;
    opacity: 1;
}

.supplier-item a:after
{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    opacity: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px solid var(--hover-color);
    transition: .25s all;
}

.supplier-item:hover a:after
{

    opacity: 1;
}

.supplier-item a img
{
    height: 100%;
    max-width: 150px;
    display: block;
    margin: 0 auto
}

.fancybox-bg
{
    background: #fff;
}

.fancybox-is-open .fancybox-bg
{
    opacity: 1;
}

#supplier-slider .swiper-button-next, #supplier-slider .swiper-button-prev, .pr-slider .owl-nav button
{
    top: 50%;
}

#supplier-slider .swiper-button-next, .pr-slider .owl-next
{
    right: -20px;
}

#supplier-slider .swiper-button-prev, .pr-slider .owl-prev
{
    left: -20px;
}

#supplier-slider .swiper-container-rtl .swiper-button-prev
{
    right: 15px;
}

#supplier-slider .swiper-container-rtl .swiper-button-next
{
    left: auto;
    right: 40px;
}

#supplier-slider .navigation-swiper > div, .pr-slider .owl-nav button
{
    background: var(--dark-color);
    width: 35px;
    height: 35px;
    transition: .3s all;
    outline: none;
}

.swiper-button-prev:hover, .swiper-button-next:hover:after, .pr-slider .owl-prev:hover, .pr-slider .owl-next:hover i
{
    transform: rotate(45deg);
}

.swiper-button-next:hover, .swiper-button-prev:hover:after, .pr-slider .owl-next:hover, .pr-slider .owl-prev:hover i
{
    transform: rotate(-45deg);
}

#supplier-slider .navigation-swiper > div:after
{
    font-size: 14px;
    color: #f1f1f1;
    transition: .3s all;
}

@media screen and (max-width: 767px)
{
    .section-supplier .swiper-container
    {
        padding: 20px;
    }

    #supplier-slider .navigation-swiper > div, .pr-slider .owl-nav button
    {
        width: 30px;
        height: 30px;
    }

    #supplier-slider .swiper-button-next
    {
        right: 10px;
    }

    #supplier-slider .swiper-button-prev
    {
        left: 10px;
    }

    .pr-slider .owl-nav button
    {
        top: 45%;
    }

    .pr-slider .owl-next
    {
        right: 5px;
    }

    .pr-slider .owl-prev
    {
        left: 5px;
    }
}

/* Start Blog*/
.blog-item
{
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.13);
    background-color: #fff;
    padding: 15px;
    overflow: hidden;
    height: 100%;
}

.module-blog
{
    padding: 70px 0;
    background: #F5F5F9;
}

.blog-image
{
    position: relative;
    overflow: hidden;
}

.blog-image img
{
    transition: .3s ease-in-out all;
    width: 100%;
    vertical-align: middle;
}

.blog-content
{
    position: relative;
    /*padding: 15px;*/
}

.blog-content a h4
{
    margin-top: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    line-height: 1.4;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: ease-in-out .3s all;
    height: 48px;
}

.blog-content a .blog-meta ul
{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.blog-content a .blog-meta ul li
{
    padding-right: 30px;
    color: #444;
    font-size: .9rem;
    position: relative;
}

.blog-content a .blog-meta ul li i
{
    margin-right: 5px;
}

.blog-content a .blog-meta ul li:not(:first-child):before
{
    position: absolute;
    content: "";
    left: -20px;
    height: 6px;
    width: 6px;
    background: #444;
    border-radius: 100%;
    top: 48%;
    transform: translateY(-50%);
}

.blog-content a .blog-desc
{
    line-height: 1.4;
    font-size: .95rem;
    height: 63px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    transition: .4s all ease-in-out;
}

.blog-item:hover .blog-image img
{
    transform: scale(1.05);
}

.blog-item .blog-content a h4:hover
{
    color: var(--main-2-color);
}

.section-blog .heading--title
{
    margin-bottom: 20px;
}

@media screen and (max-width: 767px)
{
    .blog-item
    {
        margin: 0 10px;
    }

    .blog-content
    {
        position: relative;
        bottom: unset;
        left: unset;
        background-color: #fff;
    }

    .blog-content a h4
    {
        color: #333;
    }

    .blog-content a .blog-meta ul li
    {
        color: #656565;
    }

    .blog-content a .blog-meta ul li:last-child
    {
        padding-right: 0;
    }

    .blog-content a .blog-desc
    {
        display: none;
    }
}

.aboutus
{
    display: flex;
}

.aboutus .aboutus-img
{
    width: 50%;
    padding-right: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.aboutus .aboutus-img img
{
    width: 90%;
}

.aboutus .aboutus-img .decor img
{

    position: absolute;
    content: "";
    top: 0px;
    left: 20px;
    width: calc(100% - 40px);
    height: 100%;
    z-index: -1;
    opacity: .5;
}

.aboutus .aboutus-content
{
    width: 50%;
    margin: 0 70px 0 20px;
    padding-left: 40px;
    border-left: 5px solid var(--main-2-color);
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutus .aboutus-content h3
{
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.aboutus .aboutus-content h3 span
{
    display: block;
    margin-top: 7px;
    font-size: 1.2rem;
    text-transform: initial;
}

@media screen and (max-width: 767px)
{
    .aboutus
    {
        flex-direction: column;
    }

    .aboutus .aboutus-content
    {
        width: 100%;
        margin: 0;
        padding-left: 15px;
        border-left-width: 3px;
    }

    .aboutus .aboutus-img
    {
        width: 100%;
        margin-top: 30px;
        padding: 20px 5px 0 10px;
    }

    .aboutus .aboutus-img .decor img
    {

        left: 30px;
        height: calc(100% - 30px);
    }
}

/* Start page contact */
.section-contact
{
    padding: 70px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.section-contact:before
{
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.sec-contact-title h2
{
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 20px 50px;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.sec-contact-title h2:before
{
    position: absolute;
    content: "";
    bottom: 0;
    left: 50px;
    width: 50%;
    height: 7px;
    background: var(--hover-color);

}

.sec-contact-right
{
    color: #f1f1f1;
}

.sec-contact-subtitle h4
{
    margin-bottom: .5rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
}

.sec-contact-right ul li b
{
    color: #fff;
}

.sec-contact-right ul li
{
    margin-bottom: .4rem;
}

.btn-style-send
{
    outline: none !important;
    background-color: var(--main-color);
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    line-height: 1.42;
    margin: 0;
    padding: 10px 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-transform: capitalize;
    letter-spacing: 1px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.btn-style-send:after
{
    background: #fff none repeat scroll 0 0;
    content: "";
    width: 100%;
    left: 0;
    opacity: 0.2;
    position: absolute;
    top: 0;
    height: 0;
    -webkit-transition: 300ms ease-in-out;
    -moz-transition: 300ms ease-in-out;
    -ms-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.btn-style-send:hover:after
{
    height: 100%;
}

.page-contact
{
    padding: 70px 0 100px;
    background: #f2f4dc;
}

.contact-map
{
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d9d9d9
}

.contact-map iframe
{
    vertical-align: middle;
}

.contact-main
{
    display: flex;
    align-items: center;
}

.contact-main .contact-left
{
    width: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

.contact-left .contact-inner
{
    background: #fff;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 3px rgba(0, 0, 0, .6);
    border-radius: 4px;
    overflow: hidden;
}


.contact-left .contact-inner iframe
{
    vertical-align: middle;
}

.contact--content
{
    margin-bottom: 2rem;
}

.contact--content .contact--title
{
    position: relative;
    margin-bottom: 4rem;
    color: var(--main-color)
}

.contact--content .contact--title:after,
.contact--content .contact--title:before
{
    position: absolute;
    content: "";
    left: 0;
    height: 3px;
    background: var(--hover-color);
}

.contact--content .contact--title:before
{
    bottom: -8px;
    width: 200px;
}

.contact--content .contact--title:after
{
    bottom: -16px;
    width: 90px;
}

.contact--content .contact--title h4
{
    font-size: 1.6rem;
    color: var(--main-color);
    font-weight: 600;
    text-transform: uppercase;
}

.contact--content .contact--desc
{
    font-size: .9rem;
    color: #f1f1f1;
}


.contact-left .contact-inner .contact-list ul li
{
    margin-bottom: .8rem;
    font-size: 1rem;
    color: #f9f9f9;
    display: flex;
    align-items: flex-start;
}

.contact-left .contact-inner .contact-list ul li span.box-icon
{
    width: 35px;
    height: 35px;
    margin-right: 15px;
    border: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #fff;
}

.contact-left .contact-inner .contact-list ul li span.box-text
{
    width: calc(100% - 50px);
    margin-top: -3px;
    font-size: .95rem;
}

.contact-left .contact-inner .contact-list ul li span.box-text p
{
    margin-bottom: 0rem;
}

.contact-left .contact-inner .contact-list ul li span.box-text p:first-child
{
    font-weight: 600;
}

.contact-main .contact-right
{
    width: 70%;
    margin-left: -20%;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 1;
    padding: 70px 30px 70px 25%;
}

.contact-main .contact-right .form-group
{
    margin-bottom: 1.5rem;
}

.contact-main .contact-right .form-group input,
.contact-main .contact-right .form-group textarea
{
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #d9d9d9;
    font-size: .95rem;
    color: #333;
    padding-left: 25px;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
}

.contact-main .contact-right .form-group i
{
    position: absolute;
    top: 10px;
    left: 0px;
}

.contact-main .contact-right .form-group input:-webkit-autofill,
.contact-main .contact-right .form-group input:-webkit-autofill:hover,
.contact-main .contact-right .form-group input:-webkit-autofill:focus,
.contact-main .contact-right .form-groupinput:-webkit-autofill:active
{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

@media screen and (max-width: 767px)
{
    .page-contact
    {
        padding: 30px 0;
    }

    .section-contact
    {
        padding: 30px 0;
    }

    .sec-contact-title h2
    {
        padding: 15px 0;
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    .sec-contact-title h2:before
    {
        left: 0;
    }

    .contact-main
    {
        flex-wrap: wrap;
    }

    .contact-main .contact-left
    {
        width: 100%;
        order: 2;
    }

    .contact-left .contact-inner
    {
        padding: 0;
        border-radius: 0;
        height: 300px;
    }

    .contact-main .contact-right
    {
        width: 100%;
        margin-left: 0;
        padding: 30px 15px;
        order: 1;
        margin-bottom: 20px;
    }

    .sec-contact-subtitle ul li
    {
        font-size: .9rem;
    }

}

/* End page contact */

.row.row-5
{
    margin-left: -5px;
    margin-right: -5px;
}

.row.row-5 > [class*=col]
{
    padding-left: 5px;
    padding-right: 5px;
}

.row.row-10
{
    margin-left: -10px;
    margin-right: -10px;
}

.row.row-10 > [class*=col]
{
    padding-left: 10px;
    padding-right: 10px;
}

@media screen and (min-width: 991px)
{
    .row.row-20
    {
        margin-left: -20px;
        margin-right: -20px;
    }

    .row.row-20 > [class*=col]
    {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.btn-cart
{
    outline: none !important;
    background-color: #2a3746;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: .8rem;
    line-height: 1.42;
    margin: 0;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-transform: capitalize;
    letter-spacing: 1px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -khtml-border-radius: 25px;
    border-radius: 25px;
}

.btn-cart:after
{
    background: #fff none repeat scroll 0 0;
    content: "";
    width: 100%;
    left: 0;
    opacity: 0.2;
    position: absolute;
    top: 0;
    height: 0;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -khtml-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: 300ms ease-in-out;
    -moz-transition: 300ms ease-in-out;
    -ms-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.btn-cart:hover:after
{
    height: 100%;
}

.btn-cart:hover
{
    background-color: #405063;
}

.btn-cart:disabled
{
    cursor: not-allowed;
}

.btn-search
{
    outline: none !important;
    background-color: #0a90eb;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: .7rem;
    line-height: 1.42;
    margin: 0;
    padding: 5px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-transform: capitalize;
    letter-spacing: 1px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.btn-search:after
{
    background: #fff none repeat scroll 0 0;
    content: "";
    width: 100%;
    left: 0;
    opacity: 0.2;
    position: absolute;
    top: 0;
    height: 0;
    -webkit-transition: 300ms ease-in-out;
    -moz-transition: 300ms ease-in-out;
    -ms-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

.btn-search:hover:after
{
    height: 100%;
}

.btn-search:hover
{
    background-color: #0979c5;
    color: #fff;
}

#modalSoSanh .modal-content
{
    border-radius: 0;
}

#modalSoSanh .modal-content .modal-body
{
    background: #f5f5f5;
}

#modalSoSanh .modal-header .close
{
    position: absolute;
    margin: 0;
    padding: 0;
    color: #fff;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 1rem;
}

#modalSoSanh .modal-header
{
    background: var(--main-color);
    color: #fff;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 0;
}

#modalSoSanh .modal-header h4
{
    line-height: unset;
    font-size: inherit;
}

#modalSoSanh .row.col5
{
    margin-left: -5px;
    margin-right: -5px;
}

.row.col5 > [class*="col-"]
{
    padding-left: 5px;
    padding-right: 5px;
}

#modalSoSanh #hinh_sp,
#modalSoSanh #hinh_sanphamsosanh
{
    padding: 15px;
    border: 1px solid #d9d9d9;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#modalSoSanh .compare-heading
{
    padding: 10px 5px;
    background: #f8f7f9;
    margin: 1rem 0;
}

#modalSoSanh .compare-heading h5
{
    display: block;
    margin-bottom: 0;
    font-size: .95rem;
    font-weight: 600;
    color: #111;
}

#modalSoSanh .compare-item
{
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #d1d1d1;
    font-size: .85rem;
}

#modalSoSanh .compare-item:last-child
{
    border-bottom: 0;
    margin-bottom: 0;
}

#modalSoSanh #ten_sanphamsosanh a span
{
    display: inline-block;
    margin-left: 10px;
    font-size: .8rem;
    color: #0d95e8;
}

#modalSoSanh b
{
    text-transform: uppercase;
}

#modalSoSanh .text-badge-red
{
    color: #ff0000;
    font-weight: 600;
}

#modalSoSanh #cart-sp,
#modalSoSanh #cart-sanphamsosanh
{
    text-align: center;
}

#modalSoSanh #cart-sp > button,
#modalSoSanh #cart-sanphamsosanh > button
{
    padding: 0;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    font-size: 01rem;
    font-weight: 400;
}

/* ENd product*/

.trademark-info
{
    position: relative;
    min-height: 350px;
}

.trademark-info .trademark-main
{
    -webkit-background-size: 70%;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.trademark-info .trademark-main:after
{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .4);
}

.trademark-info .trademark-main .trademark-inner
{
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 80%;
    margin: 0 auto;
}

.trademark-info .trademark-main .trademark-inner h2
{
    font-size: 2.4rem;
    color: #fff;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    text-align: center;
}

.trademark-info .trademark-main .trademark-inner p
{
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
}

/* Start category main */

#category_slider .owl-stage
{
    display: flex;
}

#category_slider .category-slide-inner
{
    height: 100%;
}

#category_slider .category-slide-inner .category-slide-item
{
    text-decoration: none;
    color: rgba(0, 0, 0, .8);
    text-align: center;
    background-color: #fff;
    display: block;
    font-size: .9rem;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 15px;
    -webkit-transition: box-shadow .1s cubic-bezier(.4, 0, .6, 1), -webkit-transform .1s cubic-bezier(.4, 0, .6, 1);
    transition: box-shadow .1s cubic-bezier(.4, 0, .6, 1), -webkit-transform .1s cubic-bezier(.4, 0, .6, 1);
    transition: transform .1s cubic-bezier(.4, 0, .6, 1), box-shadow .1s cubic-bezier(.4, 0, .6, 1);
    transition: transform .1s cubic-bezier(.4, 0, .6, 1), box-shadow .1s cubic-bezier(.4, 0, .6, 1), -webkit-transform .1s cubic-bezier(.4, 0, .6, 1);
}

#category_slider .category-slide-inner .category-slide-item:hover
{
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 1;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
}

#category_slider .category-slide-inner .category-slide-item:last-child
{
    border-bottom: 0;
    margin-bottom: 0;
}

#category_slider .category-slide-inner .category-slide-item:before
{
    content: "";
    display: block;
    height: 200px;
}

.category-slide-wrapper
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: center center;
    transition: 0.3s all;
}

.category-slide-item:hover .category-slide-wrapper
{
    transform: scale(1.1);
}

.category-slide-image
{
    width: 75px;
    height: 75px;
    margin: 15px auto;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 100%;
    background: #f5f5f5;
    overflow: hidden;
}

.category-slide-image img
{
    max-width: 80%;
    display: block;
    margin: 0 auto;
    vertical-align: middle;
}

.category-slide-name
{
    font-size: 1.2rem;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    background: rgba(255, 255, 255, 0.9);
    min-height: 65px;
    width: 70%;
    margin: 0 auto;
    padding: 45px 10px;
    border-radius: 7px;
    font-weight: 600;
    transition: 0.4s all;
}

.category-slide-item:hover .category-slide-name
{

    padding: 40px 20px;
    top: auto;
    transform: translate(-50%, 0);
    width: 100%;
    border-radius: 0;
    bottom: 0;
}

.category-slide-name span
{
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    text-transform: initial;
    color: var(--main-2-color);
}

.category-slide-name span:before
{
    position: absolute;
    content: "";
    top: 50%;
    right: 120%;
    width: 30px;
    height: 1px;
    background: var(--main-2-color);
}

.category-slide-name span:after
{
    position: absolute;
    content: "";
    top: 50%;
    left: 120%;
    width: 30px;
    height: 1px;
    background: var(--main-2-color);
}

#category_slider .owl-nav button
{

    outline: none !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    height: 30px;
    width: 30px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#category_slider .owl-prev
{
    left: -50px;
}

#category_slider .owl-next
{
    right: -50px;
}

#category_slider .owl-nav button:hover
{
    color: var(--hover-color);
}

#category_slider.owl-carousel .owl-stage-outer
{
    padding: 10px;
}

@media screen and (max-width: 768px)
{
    .category-slide-name
    {
        height: 7rem;
    }

    #category_slider.owl-carousel .owl-stage-outer
    {
        padding: 0;
    }

    #category_slider .owl-prev
    {
        left: 0;
    }

    #category_slider .owl-next
    {
        right: 0;
    }
}


/* End category main */

.sidebar-item
{
    padding: 15px;
    margin-bottom: 30px;
}

.sidebar-title
{
    margin-bottom: 15px;
    padding-bottom: 7.5px;
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    position: relative;
    border-bottom: 1px solid #d9d9d9;
}

.sidebar-title:before
{
    position: absolute;
    content: "";
    width: 100px;
    height: 5px;
    bottom: -1px;
    left: 0;
    background: var(--main-color);
}

.sidebar-list ul li a
{
    display: flex;
    align-items: flex-start;
}

.sidebar-list ul li:not(:last-child) a
{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dotted #d1d1d1;
}

.sidebar-list ul li a .sidebar-list-image
{
    width: 35%;
}

.sidebar-list ul li a .sidebar-list-content
{
    width: 65%;
    padding-left: 15px;
}

.sidebar-list-title h6
{
    font-size: .95rem;
    line-height: 1.2;
    margin-bottom: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #333;
    transition: .3s all;
}

.sidebar-list-day
{
    font-size: .8rem;
    color: #666;
}

.sidebar-list ul li a:hover h6
{
    color: var(--main-color)
}

@media screen and (max-width: 575px)
{
    .sidebar-item
    {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Giỏ hàng */
.page-checkout
{
    padding-bottom: 70px;
}

.checkout-inner
{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
    overflow: hidden;
    border-radius: 3px;
    height: 3.4375rem;
    font-size: .875rem;
    background: #fff;
    text-transform: capitalize;
    margin-bottom: 1rem;
    color: #888;
    padding: 0 20px;
}

.checkout-header
{
    display: flex;
    align-items: center;
}

.checkout--product
{
    color: rgb(0, 0, 0);
    width: 41.27949%;
}

.checkout--unitprice
{
    width: 15.88022%;
    text-align: center;
}

.checkout--quantity
{
    width: 17.4265%;
    text-align: center;
}

.checkout--totalprice
{
    width: 13.43557%;
    text-align: center;
}

.checkout--actions
{
    width: 12.70417%;
    text-align: center;
}

.checkout-main
{
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
    border-radius: .125rem;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1rem;
}

.checkout-main .checkout-item
{
    margin: 1rem 0;
}

.checkout-main .checkout-item .checkout-item-content
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: rgba(0, 0, 0, .8);
    padding: 0 1.25rem .9375rem;
    margin-top: .9375rem;
    padding-bottom: 1.25rem;
    border: 0
}

.checkout-main .checkout-item .checkout-item-content .checkout-item--product
{
    width: 41.27949%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.checkout-main .checkout-item .checkout-item-content .checkout-item--title
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: .3125rem .625rem 0 1.25rem;
    font-size: .875rem;
    line-height: 1.4rem;
    overflow: hidden;
}


.checkout-main .checkout-item .checkout-item-content .checkout-item--product a .checkout-item--thumb
{
    background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    width: 5rem;
    height: 5rem;
}

.checkout-main .checkout-item .checkout-item-content .checkout-item--unitprice
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15.88022%;
    font-size: .85rem;
}

.checkout-main .checkout-item .checkout-item-content .checkout-item--unitprice .unitprice-old
{
    color: #999;
    text-decoration: line-through;
    padding-left: 8px;
}

.checkout-main .checkout-item .checkout-item-content .checkout-item--quantity
{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 17.4265%;
}

.quantity-content
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quantity-content .button-changeQuantity
{
    outline: none;
    cursor: pointer;
    border: none;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: background-color .1s cubic-bezier(.4, 0, .6, 1);
    transition: background-color .1s cubic-bezier(.4, 0, .6, 1);
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 2px;
    background: transparent;
    color: rgba(0, 0, 0, .6);
    width: 32px;
    height: 32px;
}

.quantity-content .button-changeQuantity:first-of-type
{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.quantity-content .button-changeQuantity:last-of-type
{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.quantity-content .input-changeQuantity
{
    outline: none;
    cursor: pointer;
    border: none;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: background-color .1s cubic-bezier(.4, 0, .6, 1);
    transition: background-color .1s cubic-bezier(.4, 0, .6, 1);
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 2px;
    background: transparent;
    color: rgba(0, 0, 0, .8);
    width: 32px;
    height: 32px;
    width: 70px;
    height: 32px;
    border-left: none;
    border-right: none;
    font-size: 16px;
    font-weight: 400;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    cursor: text;
    border-radius: 0;
}

.quantity-content .button-changeQuantity:disabled,
.quantity-content .input-changeQuantity:disabled
{
    background: #f5f6f6;
    cursor: not-allowed;
}

.checkout-main .checkout-item .checkout-item-content .checkout-item--totalprice
{
    width: 13.43557%;
    text-align: center;
    color: #ee4d2d;
}

.checkout-main .checkout-item .checkout-item-content .checkout-item--actions
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 12.70417%;
    text-transform: capitalize;
}

.checkout-main .checkout-item .checkout-item-content .checkout-item--actions button
{
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.checkout-main .checkout-item .checkout-item-content .checkout-item--actions button:hover
{
    color: red;
}

.checkout-footer
{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
    overflow: hidden;
    border-radius: 3px;
    font-size: .875rem;
    background: #fff;
    text-transform: capitalize;
    margin-bottom: 1rem;
    color: #888;
    padding: 15px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.checkout-footer .checkout-next a
{
    outline: none;
    cursor: pointer;
    border: none;
    line-height: 1;
    letter-spacing: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    background: var(--label-color);
    color: #fff;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .09);
    padding: 13px 36px;
    margin: 0 0px 0 15px;
    text-transform: capitalize;
    font-weight: 400;
    height: 2.5rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: .875rem;
    border-radius: 2px;
    width: 13.125rem;
}

.checkout-footer .checkout-next a:hover
{
    background: #f05d40;
}

.checkout-footer .checkout-back a
{
    outline: none;
    cursor: pointer;
    border: none;
    line-height: 1;
    letter-spacing: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    background: #6c757d;
    color: #fff;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .09);
    padding: 13px 18px;
    margin: 0;
    text-transform: capitalize;
    font-weight: 400;
    height: 2.5rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: .875rem;
    border-radius: 2px;
    max-width: 50%;
}

.checkout-footer .checkout-back a:hover
{
    background: #848f99;
}

.checkout-footer .checkout-back,
.checkout-footer .checkout-next
{
    width: 20%;
}

.checkout-footer .checkout-total
{
    width: 60%;
}

.checkout-footer .checkout-total
{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.checkout-footer .checkout-total p
{
    margin-bottom: 0;
    color: #111;
    font-size: 1rem;
    padding-right: 10px;
}

.checkout-footer .checkout-total #totalCheckout
{
    font-size: 1.6rem;
    color: #ee4d2d;
}

.checkout-empty-main
{
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
    border-radius: .125rem;
    overflow: hidden;
    background: #fff;
    padding: 30px;
    text-align: center;
}

.checkout-empty-main .checkout-empty-icon
{
    width: 140px;
    height: 140px;
    display: block;
    margin: 1.5rem auto;
    border: 2px solid #888;
    font-size: 3.5rem;
    color: #888;
    text-align: center;
    line-height: 140px;
    border-radius: 100%;
}

.checkout-empty-main .checkout-empty-title
{
    font-size: 1.4rem;
    color: #000;
    max-width: 60%;
    margin: 0 auto .6rem;
}

.checkout-empty-main .checkout-empty-desc
{
    font-size: 1rem;
    color: #000;
    max-width: 60%;
    margin: 0 auto .4rem;
}

.checkout-empty-actions
{
    margin: 2rem auto;
}

.checkout-empty-actions a
{
    outline: none;
    cursor: pointer;
    border: none;
    line-height: 1;
    letter-spacing: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    background: #ee4d2d;
    color: #fff;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .09);
    padding: 13px 36px;
    margin: 0 auto;
    text-transform: capitalize;
    font-weight: 400;
    height: 2.5rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: .875rem;
    border-radius: 2px;
    width: 13.125rem;
}

.checkout-empty-actions a:hover
{
    background: #f05d40;
}

.checkout-empty-main .checkout-empty-desc a
{
    color: #0d95e8;
}

@media screen and (max-width: 768px)
{
    .checkout-empty-main .checkout-empty-icon
    {
        width: 100px;
        height: 100px;
        font-size: 3rem;
        line-height: 6rem;
    }

    .checkout-empty-main .checkout-empty-title, .checkout-empty-main .checkout-empty-desc
    {
        max-width: 100%;
    }

    .checkout-header
    {
        display: none;
    }

    .checkout-item-content
    {
        position: relative;
    }

    .checkout-main .checkout-item .checkout-item-content
    {
        padding: 0 1rem 1.5rem;
        flex-wrap: wrap;
    }

    .checkout-main .checkout-item .checkout-item-content .checkout-item--product
    {
        width: 100%;
    }

    .checkout-main .checkout-item .checkout-item-content .checkout-item--unitprice
    {
        width: 100%;
        justify-content: flex-end;
        margin-bottom: .5rem;
    }

    .checkout-main .checkout-item .checkout-item-content .checkout-item--quantity
    {
        width: 50%;
    }


    .checkout-main .checkout-item .checkout-item-content .checkout-item--totalprice
    {
        width: 50%;
        text-align: right;
    }

    .checkout-item--position
    {
        position: absolute;
        top: -5px;
        right: 5px;
    }

    .checkout-item--position button
    {
        height: 20px;
        width: 20px;
        border-radius: 100%;
        border: 1px solid #d1d1d1;
        outline: none !important;
        box-shadow: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .7rem;
        background: #fff;
    }

    .checkout-main .checkout-item .checkout-item-content .checkout-item--title a
    {
        font-size: .875rem;
        line-height: 1.3rem;
    }

    .checkout-footer
    {
        padding: 15px 10px;
        flex-direction: column;
        justify-content: center;
    }

    .checkout-footer .checkout-back
    {
        display: none;
    }

    .checkout-footer .checkout-back, .checkout-footer .checkout-next,
    .checkout-footer .checkout-total
    {
        width: 100%;
    }

    .checkout-footer .checkout-total
    {
        display: block;
        text-align: center;
    }

    .checkout-footer .checkout-next a
    {
        margin: 0 auto;
    }
}

.wrapper-product
{
    background: #fff;
    padding-bottom: 64px !important;
}

.w-product-top
{
    border-radius: .125rem;
    overflow: hidden;
    margin-bottom: 2rem;
    padding: 30px;
}

.w-product-top .product-avatar
{
    padding: 15px;
}

.w-product-top .product-avatar img
{
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.w-product-top .product-thumb-item
{
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    overflow: hidden;
    padding: 5px
}

.w-product-top .product-thumb-slider .owl-nav [class*=owl]
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .8);
    height: 30px;
    width: 15px;
    font-size: 1rem;
    color: #fff;
    transition: .3s all ease;
}

.w-product-top .product-thumb-slider .owl-nav [class*=owl]:hover
{
    background: rgba(0, 0, 0, 1);
}

.w-product-top .product-thumb-slider .owl-nav .owl-next
{
    right: 0;
}

.w-product-desc
{
    padding-top: 1rem;
    margin-top: 1rem;
}

.w-product-desc .product-desc-title
{
    border-bottom: 1px solid #d1d1d1;
    font-weight: 600;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 15px;
}


.w-product-breadcrumb
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background: url('/public/upload/banner/breadcrumb.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
}


.w-product-breadcrumb:before
{
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 252, 252, 0.3);

}


.w-product-breadcrumb .breadcrumb
{
    margin: 0;
    padding: 0 70px;
    border-radius: 0;
    width: 100%;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
}

.w-product-breadcrumb h3
{
    width: 100%;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
}

.w-product-breadcrumb a
{
    color: #686c74;
    font-size: 1.05rem;
}

.w-product-breadcrumb .breadcrumb-item + .breadcrumb-item::before
{
    content: "/";
    font-weight: 400;
    padding-left: .5rem;
    padding-right: .3rem;
}

.w-product-top .w-product-info .w-product-name
{
    margin: 1rem 0;
}

.w-product-top .w-product-info .w-product-name h1
{
    margin-bottom: 0rem;
    color: #353535;
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.4;
}

.w-product-top .w-product-info .w-product-price
{
    display: flex;
    align-items: center;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.w-product-top .w-product-info .w-product-price .price-icon,
.w-product-top .w-product-info .w-product-price .price-new
{
    color: var(--label-color);
    padding-right: 4px;
}

.w-product-top .w-product-info .w-product-price .price-icon i
{
    font-size: .95rem;
}

.w-product-top .w-product-info .w-product-price .price-new
{
    font-weight: 600;
    font-size: 1.1rem;
    padding-right: 10px;
}

.w-product-top .w-product-info .w-product-price .price-old
{
    font-size: .9rem;
    text-decoration: line-through;
    padding-right: 30px;
    color: #788;
}

.w-product-top .w-product-info .w-product-price .price-product
{
    font-weight: 600;
}

.w-product-top .w-product-info .w-product-price .discount-text
{
    background: #FE2C2B;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    border: 4px;
    padding: 3px 9px;
    font-size: .8rem;
}

.w-product-top .w-product-info .w-product-social
{
    margin: 1rem 0;
}

.w-product-top .w-product-info .w-product-supplier
{
    margin: 1rem 0;
    font-size: .95rem;
}

.w-product-top .w-product-info .w-product-supplier a
{
    color: #007bff;
    transition: .3s all ease;
}

.w-product-top .w-product-info .w-product-supplier a:hover
{
    color: #006ad9;
}

.w-product-top .w-product-info .w-product-gift .gift-content
{
    position: relative;
    display: inline-block;
    background-color: rgba(20, 53, 195, 0.08);
    width: 100%;
    max-width: max-content;
    margin-top: 0.5rem;
    border-width: 1px;
    border-style: solid;
    border-color: var(--main-color);
    border-image: initial;
    padding: 0.5rem 2.3rem .5rem 1.25rem;
    overflow: hidden;
    border-radius: 0.5rem;
}

.w-product-top .w-product-info .w-product-gift .gift-content .gift-icon
{
    position: absolute;
    top: -1px;
    right: -1px;
    width: 0px;
    height: 0px;
    border-style: solid;
    color: #fff;
    border-width: 0px 45px 45px 0px;
    border-color: transparent var(--main-color) transparent transparent;
}

.w-product-top .w-product-info .w-product-gift .gift-icon i
{
    position: absolute;
    top: 5px;
    right: -37px;
}

.w-product-top .w-product-info .w-product-category
{
    margin: 1rem 0;
    display: flex;
    align-items: center;
}

.w-product-top .w-product-info .w-product-category-item > span
{
    width: 100px;
    font-size: 1rem;
    color: #444;
}

.w-product-top .w-product-info .w-product-category .selectgroup
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.w-product-top .w-product-info .w-product-category .selectgroup-item
{
    margin-bottom: 0;
    position: relative;
}

.w-product-top .w-product-info .w-product-category .selectgroup-item span
{
    border: 1px solid #ddd;
    background: #fff;
    margin-right: 5px;
    font-size: .9rem;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 5px;
}

.w-product-top .w-product-info .w-product-category .selectgroup-item input
{
    position: absolute;
    width: 0;
    height: 0;
}

.w-product-top .w-product-info .w-product-category .selectgroup-item input:checked ~ span
{
    background: #f1f1f1;
    border-color: #FE2C2B
}

.w-product-top .w-product-info .w-product-quantity
{
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
}

.w-product-top .w-product-info .w-product-quantity span
{
    /*min-width: 100px;*/
    /*font-size: 1rem;*/
    /*color: #444;*/
}

.w-product-top .w-product-info .w-product-quantity .quantity-content .button-changeQuantity
{
    height: 36px;
    width: 36px;
}

.w-product-top .w-product-info .w-product-quantity .quantity-content .input-changeQuantity
{
    width: 90px;
    height: 36px;
}

.w-product-top .w-product-info .w-product-actions
{
    display: flex;
    align-items: center;
}

.w-product-top .w-product-info .w-product-actions button
{
    padding: 10px;
    text-align: center;
    transition: .3s all ease;
    border-radius: 0;
    overflow: hidden;
    font-size: 1rem;
    outline: none !important;
    cursor: pointer;
}

.w-product-top .w-product-info .w-product-actions button.btn-add-cart
{
    width: 55%;
    border: 0;
    color: #fff;
    background: var(--main-color);
    margin-right: 2%;
}

.w-product-top .w-product-info .w-product-actions button.btn-add-cart:hover
{
    background: #e9e9e9;
    color: var(--main-color);
}

.w-product-top .w-product-info .w-product-actions button.btn-add-cart-muangay
{
    width: 41%;
    border: 0;
    color: #fff;
    background: var(--label-color);
    margin-left: 2%;
}

.w-product-top .w-product-info .w-product-actions button.btn-add-cart-muangay:hover
{
    background: #feeaeb;
    color: var(--main-color);
}

.w-product-desc
{
    padding: 15px;
    border: 1px solid #d1d1d1;
    margin: 1.5rem 0;
}


@media screen and (max-width: 768px)
{
    .w-product-breadcrumb .breadcrumb
    {
        padding: 0 20px;
    }

    .w-product-top .w-product-info .w-product-category .selectgroup-item
    {
        margin-bottom: 5px;
    }

    .w-product-top .w-product-info .w-product-desc
    {
        padding: 10px;
    }
}

.w-product-desc p
{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    font-size: .9rem;
}

.w-product-desc p:last-of-type
{
    margin-bottom: 0;
}

.w-product-desc p:before
{
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f2f7";
    color: var(--main-2-color);
    top: 0;
    left: 0;
}

.w-product-desc ul li p span.lightfont
{
    color: var(--main-color);
    font-weight: 600;
}

.w-product-top .w-product-info .w-product-advisory .form-group
{
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    margin-top: 1rem;
    position: relative;
    background-color: #fff;
    border: 1px solid #d1d1d1;
    padding: 3px;
}

.w-product-top .w-product-info .w-product-advisory .form-group i
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: #444;
}

.w-product-top .w-product-info .w-product-advisory .form-group .form-control
{
    padding-left: 30px;
    border: 0;
    outline: none !important;
    box-shadow: none !important;
    padding-top: 0;
    padding-bottom: 0;
}

.w-product-top .w-product-info .w-product-advisory .form-group button
{
    display: block;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border: 1px solid var(--main-2-color);
    background: var(--main-2-color);
    outline: none !important;
    box-shadow: none !important;
    min-width: fit-content;
    padding: 0px 30px;
    cursor: pointer;
    transition: .3s all;
}

.w-product-top .w-product-info .w-product-advisory .form-group button:hover
{
    background: #fff;
    color: var(--main-2-color);
}

.w-product-compare
{
    border: 2px solid var(--main-color);
}

.w-product-compare .compare-title
{
    padding: 5px 5px;
    font-weight: 600;
    display: block;
    /*text-align: center;*/
    color: #fff;
    background: var(--main-color);
    font-size: .95rem;
    text-transform: uppercase;
}

.compare-content
{
    min-height: 800px;
}

.alert-empty
{
    padding: 50px 30px 80px;
    text-align: center;
}

.alert-icon
{
    width: 80px;
    height: 80px;
    display: block;
    margin: 1.5rem auto;
    border: 2px solid #888;
    font-size: 2rem;
    color: #888;
    text-align: center;
    line-height: 80px;
    border-radius: 100%;
}

.alert-title
{
    font-size: 1.1rem;
    color: #000;
    margin: 0 auto 1rem;
}

.alert-desc
{
    font-size: .9rem;
    color: #000;
}

.content-zoomout
{
    overflow: hidden;
}

.w-product-desc-action a
{
    text-decoration: underline !important;
    font-size: .8rem;
}

.w-product-desc-action a i
{
    margin-left: 4px;
}

.w-product-middle
{
    border-radius: .125rem;
    overflow: hidden;
    background: #fff;
    padding: 30px;
}

.w-product-middle-title
{
    position: relative;
    display: inline-block;
    padding: 10px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.w-product-middle table td,
.w-product-middle table th
{
    border-top: 0 !important;
}

.w-product-middle .table-striped tbody tr:nth-of-type(odd)
{
    background-color: rgba(0, 0, 0, .02);
}

.w-product-middle table td:first-of-type
{
    min-width: 120px;
    color: #555;
    font-weight: 600;
    font-size: .9rem;
}

.w-product-left-content
{
    padding: 0 10px;
}

.w-product-left-content-content
{
    color: #444;
}

.w-product-related,
.w-product-viewed
{
    border-radius: .125rem;
    overflow: hidden;
    background: #fff;
    margin-bottom: 2rem;
    padding: 30px;
}

.w-product-viewed
{
    margin-bottom: 0;
}

.w-product-related .heading--title,
.w-product-viewed .heading--title
{
    margin-bottom: 15px;
}


@media screen and (max-width: 768px)
{

    .w-product-breadcrumb h3
    {
        font-size: 1.3rem;
    }

    .w-product-breadcrumb a
    {
        font-size: 1rem;
    }

    .w-product-top, .w-product-middle, .w-product-related, .w-product-viewed
    {
        padding: 0;
    }

    .w-product-top .w-product-info .w-product-advisory .form-group .form-control
    {
        font-size: .85rem;
    }

    .w-product-top .w-product-info .w-product-advisory .form-group button
    {
        font-size: .85rem;
        padding: 0 10px;
    }

    .w-product-top .w-product-info .w-product-quantity
    {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .w-product-top .w-product-info .w-product-quantity span
    {
        /*width: 30%;*/
        /*min-width: unset;*/
    }

    .quantity-content
    {
        width: 70%;
        margin: 0 auto;
    }

    .w-product-top .w-product-info .w-product-actions button.btn-add-cart,
    .w-product-top .w-product-info .w-product-actions button.btn-add-cart-muangay
    {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: .8rem;
    }

    .w-product-top .w-product-info .w-product-actions
    {
        flex-wrap: wrap;
        margin: 30px auto 0;
        width: 100%;
    }

    .w-product-top .w-product-info .w-product-desc ul li
    {
        font-size: .9rem;
    }

    .w-product-left-content-content
    {
        font-size: .85rem;
    }

    .w-product-middle-title
    {
        font-size: 1rem;
        margin-bottom: .8rem;
    }

    .w-product-related .heading--title:after,
    .w-product-viewed .heading--title:after
    {
        display: none;
    }
}

.compare-content ul li
{
    margin-bottom: 1rem;
    padding: 5px;
}

.main-footer
{
    background: #1714f5;
    color: #fff;
    position: relative;
    z-index: 2;
}

.main-footer:before
{
    position: absolute;
    content: "";
    top: -36px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/public/upload/banner/bg-footer-top.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.footer-list-contact:before
{
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    background-image: url(/public/upload/banner/footer-cover.png);
}


.footer-list-contact:after
{
    position: absolute;
    /*content: "";*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /*background: rgba(255, 71, 0, .23);*/
    /*background: rgba(196, 28, 0, .45);*/
}

.footer-list-icons .col-md-4 .list-icon-item
{
    margin: 0 20px;
    height: 100%;
}

.list-icon-inner
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    height: 100%;
    position: relative;
    background: #fff;
    border: 1px solid transparent;
    transition: .3s all;
    border-radius: 10px;
    box-shadow: 0 0 10px #b8b8b8;
}

.list-icon-inner:hover
{
    border-color: var(--main-2-color);
}

.list-icon-icon
{
    position: relative;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .35);
    border-radius: 100%;
    background: #fff;
    margin-top: -50px;
}

.list-icon-icon-decor
{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--main-2-color);
    border-right: 2px solid var(--main-2-color);
    border-bottom: 2px solid var(--main-2-color);
    border-left: none;
    border-radius: 100%;
    animation: infinite-spin 1.5s infinite linear paused;
}

.list-icon-icon-decor:before
{
    position: absolute;
    /*content: "";*/
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: var(--hover-color);
}

.list-icon-item:hover .list-icon-icon-decor
{
    animation: infinite-spin 1.5s infinite linear;
}

@keyframes infinite-spin
{
    0%
    {
        transform: rotate(-45deg);
    }
    100%
    {
        transform: rotate(315deg);
    }
}


.list-icon-icon img
{
    max-width: 40px;
    display: block;
    margin: 0 auto;
    vertical-align: middle;
}

.list-icon-content
{
    width: calc(100% - 80px);
    text-align: center;
    margin-top: 25px;
}

.list-icon-content .list-icon-title
{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .6rem;
    transition: .3s all;
}

.list-icon-item:hover .list-icon-content .list-icon-title
{
    color: var(--main-2-color);
}

.list-icon-content .list-icon-desc
{
    line-height: 1.5;
    font-size: .9rem;
}

@media screen and (max-width: 767px)
{
    .footer-list-icons .col-md-4:not(:last-of-type)
    {
        margin-bottom: 40px;
    }
}


.footer-list-contact
{
    padding: 50px 0 10px;
}

.list-contact-item .list-contact-title
{
    margin-bottom: .8rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2.2rem;
}

.list-contact-item .list-contact-list ul li
{
    margin-bottom: .8rem;
    font-size: 1.5rem;
}

.list-contact-item .list-contact-list ul li a
{
    font-size: 1.5rem;
}

.list-contact-item .list-contact-list ul li span
{
    /*color: #000000;*/
    font-weight: 600;
    transition: .2s all;
}

.list-contact-item .list-contact-list ul li:hover span
{
    color: var(--main-2-color);
}

.list-contact-social
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.list-contact-social .list-contact-social-item
{
    margin-right: 10px;
}

.list-contact-item ul li ul
{
    display: flex;
}

.list-contact-item ul li ul li .social-inner
{
    position: relative;
    overflow: hidden;
    z-index: 12;
    border-radius: 100%;
    width: 50px;
    transform: rotate(-15deg);
}

.list-contact-item ul li ul li .social-inner a
{
   width: 41px;
    display: block;
    position: relative;
    border-radius: 100%;
    color: #fff;
    -webkit-transition: .1s all linear;
    -moz-transition: .1s all linear;
    -o-transition: .1s all linear;
    transition: .1s all linear;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    height: 40px;
    background-image: none;
    z-index: 11;
    transform: rotate(15deg);
}

.list-contact-item ul li ul li.social-fb .social-inner a
{
    background-color: #3C5694;
}

.list-contact-item ul li ul li.social-zalo .social-inner a
{
    background-color: #0FA3DA;
}

.list-contact-item ul li ul li.social-zalo .social-inner a img
{
    width: 1.5rem;
    position: relative;
    left: 6px;
    top: 2px;
}

.list-contact-item ul li ul li.social-pinterest .social-inner a
{
    background-color: #cc2127;
}

.list-contact-item ul li ul li.social-twitter .social-inner a
{
    background-color: #55acee;
}

.list-contact-item ul li ul li.social-youtube .social-inner a
{
    background-color: #ff0000;
}

.footer-shop
{
    padding: 30px 0 10px;
}

.footer-shop-item h4
{
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .7rem;
}

.footer-shop-item p
{
    font-size: .85rem;
    line-height: 1.5;
}

.footer-shop-item img
{
    width: 100%;
    max-width: 140px;
}

.footer-copyright
{
    padding: .5rem 0;
    color: #fff;
    font-size: 1rem;
}

.footer-copyright a
{
    font-weight: 600;
    font-size: 1.05rem;
    color: #00d5ff;
}

.access-analytics
{
    display: flex;
    justify-content: flex-end;
}

.analytics-detail
{
    border-right: 1px solid #7c8a92;
    padding: 0 5px;
}

.analytics-detail:last-of-type
{
    padding-right: 0;
    border: 0;
}

.access-analytics i
{
    color: #fff;
    margin-right: 2px;
}

.access-analytics img
{
    width: .85rem;
    height: .85rem;
    margin-top: -2px;
    margin-right: 2px;
    margin-left: -3px;
}


@media screen and (max-width: 768px)
{
    .main-footer:before
    {
        top: -9px;
    }

    .footer-list-contact:before
    {
        top: unset;
        bottom: 0;
        right: -40%;
        width: 140%;
        height: 70%;
        background-position: bottom right;
    }

    .list-icon-item
    {
        margin-bottom: 1rem;
    }

    .list-icon-icon
    {
        height: 60px;
        width: 60px;
    }

    .list-icon-icon img
    {
        max-width: 30px;
    }

    .list-icon-content
    {
        width: calc(100% - 60px);
        padding-left: 1rem;
    }

    .list-icon-content .list-icon-title
    {
        font-size: 1rem;
        margin-bottom: .2rem;
    }

    .footer-list-contact
    {
        padding-top: 30px;
    }

    .list-contact-item .list-contact-title
    {
        font-size: 1.3rem;
        margin-bottom: .4rem;
    }

    .list-contact-item
    {
        margin-bottom: 1rem;
    }

    .list-contact-item .list-contact-list ul li
    {
        margin-bottom: .3rem;
        font-size: 16px;
    }
    .list-contact-item .list-contact-list ul li span{
        font-size: 16px;
        display: block;
    }

    .footer-shop-item img
    {
        max-width: 140px;
        display: block;
        margin: 15px auto 0;
    }

    .footer-payment
    {
        margin-bottom: 1rem;
    }

    .footer-payment img
    {
        max-width: 100%
    }

    .footer-left
    {
        text-align: center;
        margin-top: 10px;
    }

    .list-contact-item .list-contact-list ul li a
    {
        font-size: .85rem;
    }
    .footer-copyright{
        font-size: .9rem;
    }
    .footer-copyright a{
        font-size: .93rem;
    }
}

.subcribe-footer
{
    background-image: url('/public/upload/banner/contact.jpg');
    background-size: cover;
    background-position: center center;
    padding-bottom: 90px;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.subcribe-footer:before
{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.6);
}

.subcribe-footer-main
{
    padding: 0 50px;
    width: 50%;
    margin: 0 auto;

}

.subcribe-inner
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.subcribe-inner .subcribe-icon
{
    width: 50px;
    font-size: 2.5rem;
    color: var(--main-2-color);
}

.subcribe-inner .subcribe-text
{
    width: calc(100% - 20px);
    padding-left: 15px;
    text-align: center;
    color: #fff;
}

.subcribe-inner .subcribe-text h5
{
    font-weight: 600;
    font-size: 1.7rem;
    text-transform: uppercase;
    margin-bottom: .2rem;
}

.subcribe-inner .subcribe-text p
{
    margin-bottom: 0;
    color: #D1D1D1;
    font-size: 1rem;
}

#formSubcribe .form-inner
{
    position: relative;
    margin-bottom: 0;
    width: 100%;
    overflow: hidden;
    /*border-radius: 40px;*/
}

#formSubcribe .form-inner > i
{
    position: absolute;
    top: 23px;
    left: 20px;
    transform: translateY(-50%);
    color: #7b7b7b;
}

#formSubcribe .form-inner .form-control
{
    background: #fff;
    border: 2px solid #ffff;
    color: #7b7b7b;
    height: 44px;
    line-height: 44px;
    margin: 0;
    max-width: 100%;
    outline: none;
    font-size: .9rem;
    padding: 0 170px 0 40px;
    text-align: left;
    white-space: nowrap;
    width: 100%;
    border-radius: 0;
}

#formSubcribe .form-inner #btnSendSub
{
    /*background: var(--main-color);*/
    border: 1px solid var(--main-2-color);
    box-shadow: none;
    background: var(--main-2-color);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    height: 40px;
    line-height: 40px;
    outline: none;
    padding: 0;
    position: absolute;
    right: 2px;
    text-align: center;
    top: 50%;
    width: 150px;
    z-index: 9;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    /*border-radius: 40px;*/
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#formSubcribe .form-inner #btnSendSub:hover
{
    background-color: #fff;
    color: var(--main-2-color);
}

@media screen and (max-width: 600px)
{
    .subcribe-footer
    {
        padding: 30px 0;
    }

    .subcribe-footer-main
    {
        padding: 1rem;
        width: 100%;
    }

    .subcribe-inner
    {
        display: block;
        margin-bottom: .5rem;
    }

    .subcribe-inner .subcribe-icon
    {
        width: 100%;
        text-align: center;
        font-size: 2rem;
    }

    .subcribe-inner .subcribe-text h5
    {
        font-size: 1.3rem;
    }

    .subcribe-inner .subcribe-text
    {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }

    #formSubcribe .form-inner
    {
        overflow: visible;
    }
    #formSubcribe .form-inner .form-control{
        padding: 0 40px;
    }

    #formSubcribe .form-inner #btnSendSub
    {

        position: static;
        display: block;
        margin-top: 28px;
        margin-right: 0;
        margin-left: auto;
    }
}

.page-payment
{
    padding-bottom: 90px !important;
}

.payment-inner
{
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
    border-radius: .125rem;
    overflow: hidden;
    background: #fff;
    padding: 15px;
}

.payment-item .payment-title p
{
    color: #444;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-item .form-group
{
    margin-bottom: 1rem;
}

.payment-item .form-group input
{
    outline: none !important;
    box-shadow: none !important;
    color: #333;
    height: 40px;
    line-height: 40px;
    font-size: .9rem;
    border-radius: 4px;
}

.payment-item .form-group input::placeholder
{
    color: #a1a1a1
}

.payment-item .form-group input:focus
{
    border-color: #0d95e8;
}

.payment-item .form-group textarea
{
    outline: none !important;
    box-shadow: none !important;
    color: #333;
    font-size: .9rem;
}

.payment-item .form-group textarea:focus
{
    border-color: #0d95e8;
}

.payment-transport
{
    padding: 0 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 2rem;
}

.payment-transport label
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.label-checked
{
    position: relative;
    padding-left: 30px;
}

.label-checked:before
{
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: var(--main-2-color);
    height: 20px;
    width: 20px;
    border-radius: 100%;
}

.label-checked:after
{
    left: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: #fff;
    height: 4px;
    width: 4px;
    border-radius: 100%;
}

.payment-thanhtoan
{
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-bottom: 2rem;
}


.payment-thanhtoan label
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-thanhtoan label
{
    padding: 15px
}

.payment-thanhtoan-bottom
{
    padding: 30px 15px;
    background: #f5f5f5;
}

.list-product-payment ul
{
    padding: 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: scroll;
}

/* width */
.list-product-payment ul::-webkit-scrollbar
{
    width: 5px;
}

/* Track */
.list-product-payment ul::-webkit-scrollbar-track
{
    background: #f1f1f1;
}

/* Handle */
.list-product-payment ul::-webkit-scrollbar-thumb
{
    background: #888;
    border-radius: 10px;
}

/* Handle on hover */
.list-product-payment ul::-webkit-scrollbar-thumb:hover
{
    background: #555;
}

.list-product-payment ul li
{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: .8rem;
    padding: 10px;
}

.list-product-payment .product-payment-image
{
    width: 20%;
    position: relative;
}

.list-product-payment .product-payment-image img
{
    width: 100%;
}

.list-product-payment .product-payment-amout
{
    position: absolute;
    top: 0;
    right: -10px;
    min-width: 20px;
    height: 20px;
    background: var(--main-color);
    color: #fff;
    font-size: .7rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-product-payment .product-payment-content
{
    width: 80%;
    padding-left: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list-product-payment .product-payment-content .product-payment-info
{
    width: 65%;
    padding-right: 10px;
}

.list-product-payment .product-payment-content .product-payment-info h3
{
    font-size: .85rem;
    color: #000;
    line-height: 1.4;
}

.list-product-payment .product-payment-content .product-payment-price
{
    width: 35%;
    text-align: right;
    font-size: .85rem;
    color: #888
}

.payment-list
{
    margin-bottom: 1.5rem;
}

.payment-codediscount-button .form-group
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-codediscount-button .form-group input
{
    width: 67%;
}

.payment-codediscount-button .form-group .nhapmagiamgia
{
    width: 33%;
    padding-left: 10px;
}

.payment-codediscount-button .form-group .nhapmagiamgia button
{
    width: 100%;
    height: 40px;
    line-height: 40px;
    transition: .3s all ease;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px;
    border: 0;
    color: #fff;
    background: #007bff;
    font-size: .9rem;
}

.payment-codediscount-button .form-group .nhapmagiamgia button:hover
{
    background: #0068d7;
    cursor: pointer;
}

.payment-codediscount input
{
    position: absolute;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.payment-codediscount span
{
    padding-left: 30px !important;
    position: relative;
    display: block;
}

.payment-codediscount span:before
{
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: #fff;
    border: 1px solid #888;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    transition: .3s all ease;
}

.payment-codediscount span:after
{
    left: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: #888;
    height: 10px;
    width: 10px;
    border-radius: 100%;
}

.payment-codediscount input:checked + span:before
{
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: #0d47a1;
    height: 20px;
    width: 20px;
    border: 0;
    border-radius: 100%;
}

.payment-codediscount input:checked + span:after
{
    left: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: #fff;
    height: 4px;
    width: 4px;
    border-radius: 100%;
}

.payment-total-top
{
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #d1d1d1;
}

.payment-total-top .total-flex
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .95rem;
}

.payment-total-top .total-flex p
{
    margin-bottom: .7rem;
}

.payment-total-top .total-flex p:last-of-type
{
    color: #555;
    font-size: 1rem;
}

.payment-total-bottom
{
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d1d1d1;
}

.payment-total-bottom .total-flex,
.payment-total-bottom .total-button
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-total-bottom .total-flex p
{
    margin-bottom: .7rem;
    font-size: 1.2rem;
}

.payment-total-bottom .total-flex p:last-of-type
{
    color: var(--label-color);
}

.payment-total-bottom .total-button
{
    margin-top: 1rem;
}

.payment-total-bottom .btn-payment
{
    height: 40px;
    line-height: 40px;
    transition: .3s all ease;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px;
    border: 0;
    color: #fff;
    background: var(--hover-color);
    font-size: .9rem;
    padding: 0 30px;
}

.payment-total-bottom .btn-payment:hover
{
    background: var(--main-color);
    cursor: pointer;
}

.payment-total-bottom a
{
    font-size: .85rem;
    text-decoration: underline !important;
    color: #0068d7;
}

.button-mobile button
{
    height: 40px;
    line-height: 40px;
    transition: .3s all ease;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px;
    border: 0;
    color: #fff;
    background: var(--hover-color);
    font-size: .9rem;
    width: 100%;
}

.button-mobile .btn-payment:hover
{
    background: var(--main-color);
    cursor: pointer;
}

.button-mobile a
{
    color: #222;
    display: inline-block;
    margin: .8rem auto;
    width: 100%;
    text-align: center;
    font-size: .8rem;
}

@media screen and (max-width: 768px)
{
    .payment-item .payment-title p
    {
        font-size: .95rem;
    }

    .list-product-payment ul li
    {
        padding: 0;
        flex-wrap: wrap;
    }

    .list-product-payment .product-payment-content
    {
        flex-wrap: wrap;
    }

    .list-product-payment .product-payment-content .product-payment-info,
    .list-product-payment .product-payment-content .product-payment-price
    {
        width: 100%;
    }

    .payment-total-bottom .total-flex p
    {
        font-size: .95rem;
    }

    .payment-total-top .total-flex
    {
        font-size: .9rem;
    }
}

.account__form div.form-group
{
    position: relative;
}

.account__form div.form-group label img
{
    height: 18px;
    width: 18px;
    opacity: .5;
    transition: .4s all ease-in-out;
}

.account__form div.form-group input, .account__form div.form-group textarea
{
    border: 0;
    box-shadow: none;
    outline: none;
    background: transparent;
    border-radius: 0;
    padding-right: 0;
    border-bottom: 1px solid #d9d9d9;
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: .9rem;
    padding-left: 35px;
    transition: .4s all;
    position: relative;
}

.account__form div.form-group label
{
    position: absolute;
    top: 3px;
    left: 5px;
}

.pr-slider .owl-nav button
{
    outline: none !important;
    box-shadow: 0 0 2px rgba(0, 0, 0, .4);
    position: absolute;
    color: #fff !important;;
    background: var(--dark-color) !important;
    height: 30px;
    width: 30px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.pr-slider .owl-nav button i
{
    transition: .3s all;
}

.md-btn-danger
{
    font-size: .8rem;
    border-radius: 4px;
    padding: 5px;
    background: #D12D12;
    color: #fff;
    border: 0;
    transition: .3s all ease-out;
    outline: none !important;
    box-shadow: none !important;
}

.md-btn-danger:hover
{
    background: #AF260F
}

.buttonhome
{
    outline: none;
    cursor: pointer;
    border: none;
    line-height: 1;
    letter-spacing: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    background: #ee4d2d;
    color: #fff;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .09);
    padding: 13px 36px;
    margin: 0 auto;
    text-transform: capitalize;
    font-weight: 400;
    height: 2.5rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: .875rem;
    border-radius: 2px;
    width: 13.125rem;
    margin-top: .6rem;
}

.buttonhome:hover
{
    color: #fff;
    background: #f05d40;
}

.alert1
{
    background: #6c757d;
    color: #fff;
}

.alert2
{
    background: #ffc107;
    color: #fff;
}

.alert3
{
    background: #007bff;
    color: #fff;
}

.alert4
{
    background: #28a745;
    color: #fff;
}

.alert5
{
    background: #ee4d2d;
    color: #fff;
}
