.top {
    background-color: var(--main-color);
}

.logo {
    width: 139px;
    height: 60px;
}

.search {
    margin-top: 8px;
}

    .search input[type=text] {
        border-radius: 5px;
        height: 44px;
        font-size: 14px;
        color: var(--black-color);
        border-color: var(--main-color);
        border-width: 2px;
    }

    .search ::placeholder {
        color: var(--gray-first-color);
    }

    .search .search-button {
        border-radius: 5px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        height: 44px;
        padding: 0 20px;
    }

.search-button img {
    width: 16px;
}

.search-content {
    display: none;
    top: 40px;
    z-index: 999;
    width: 100%;
    left: 1px;
    background-color: var(--white-color);
    position: absolute;
    border: 2px solid var(--main-color);
    max-height: 300px;
    overflow: scroll;
    overflow-x: hidden;
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px;
}

.search-list li {
    list-style: none;
}

    .search-list li a {
        display: block;
        padding: 6px 12px;
        font-size: 14px;
        text-decoration: none;
        color: var(--black-color);
    }

        .search-list li a:hover {
            background-color: var(--gray-second-color);
        }

.search-background {
    background-color: var(--gray-second-color);
}

.header-action {
    font-size: 0;
    text-align: right;
    margin-top: 18px;
}

    .header-action button {
        border: none !important;
        padding: 0 !important;
        margin-right: 30px;
    }

        .header-action button:last-child {
            margin-right: 0;
        }

        .header-action button img {
            height: 24px;
        }
.header-action a {
    border: none !important;
    padding: 0 !important;
    margin-right: 30px;
}

.header-action a:last-child {
    margin-right: 0;
}

.header-action a img {
    height: 24px;
}

.cart-quantity {
    box-sizing: content-box;
    background-color: var(--green-first-color);
    min-width: 18px;
    padding-right: 1px;
    padding-top: 5px;
    height: 14px;
    line-height: 10px;
    border-radius: 50%;
    position: absolute;
    color: var(--white-color);
    font-size: 10px;
    right: -15px;
    top: -5px;
}

.top-information {
    text-align: right;
    font-size: 12px;
    padding: 15px 0;
    color: var(--white-color);
}

    .top-information span {
        display: inline-block;
        margin-right: 20px;
        position: relative;
    }

        .top-information span:first-child {
            padding-left: 20px;
        }

            .top-information span:first-child:before {
                top: 2px;
                left: 0;
                width: 10px;
                height: 15px;
                content: '';
                display: block;
                position: absolute;
                background-repeat: no-repeat;
                background-size: contain;
                background-image: url('../img/icon/pin.svg');
            }

        .top-information span:nth-child(2) {
            padding-left: 29px;
        }

            .top-information span:nth-child(2):before {
                top: 2px;
                left: 0;
                width: 19px;
                height: 15px;
                content: '';
                display: block;
                position: absolute;
                background-repeat: no-repeat;
                background-size: contain;
                background-image: url('../img/icon/mail.svg');
            }

        .top-information span:last-child {
            padding-left: 25px;
            margin-right: 0;
        }

            .top-information span:last-child:before {
                top: 2px;
                left: 0;
                width: 15px;
                height: 15px;
                content: '';
                display: block;
                position: absolute;
                background-repeat: no-repeat;
                background-size: contain;
                background-image: url('../img/icon/phone.svg');
            }

.menu-line {
    background-color: var(--gray-second-color);
}

.category {
    width: 100%;
    background-color: var(--main-color);
    padding: 20px 0;
    color: var(--white-color) !important;
    padding-left: 48px;
    text-align: left;
    font-weight: 400;
    position: relative;
    border-radius: 0;
}

    .category:before {
        width: 18px;
        height: 14px;
        content: '';
        display: block;
        position: absolute;
        left: 20px;
        top: 25px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('../img/icon/menu.svg');
    }

.menu {
    line-height: 66px;
}

    .menu ul li {
        float: left;
        margin-left: 40px;
        display: block;
    }

        .menu ul li:first-child {
            margin-left: 0;
        }

            .menu ul li:first-child a {
                color: var(--main-color);
            }

        .menu ul li a {
            color: var(--black-color);
            text-decoration: none;
        }

            .menu ul li a:hover {
                text-decoration: underline;
            }

.category-portable-close {
    color: var(--white-color);
    margin-bottom: 10px;
    text-align: right;
    cursor: pointer;
}

.category-portable {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: scroll;
    overflow-x: hidden;
    padding: 20px;
    display: none;
}

.category-absolute {
    position: absolute;
    padding: 0;
    left: 12px;
    width: 269px;
    z-index: 999;
    border: 2px solid var(--main-color);
}

.category-list {
    background-color: var(--gray-second-color);
}

    .category-list li a {
        position: relative;
        display: block;
        border-bottom: 1px solid var(--gray-fourth-color);
        padding: 10px 0 10px 31px;
        color: var(--gray-third-color);
        text-decoration: none;
        font-size: 14px;
    }

        .category-list li a:hover {
            background-color: var(--white-color);
        }

    .category-list li:last-child a {
        border-bottom: none;
    }

    .category-list li a:before {
        width: 11px;
        height: 11px;
        content: '';
        display: block;
        position: absolute;
        left: 10px;
        top: 14px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('../img/icon/rectangle.svg');
    }

.footer {
    padding: 40px 0;
}

.social {
    text-align: center;
    margin-top: 30px;
}

    .social a {
        text-decoration: none;
        font-size: 0;
        padding: 10px;
    }

        .social a img {
            height: 16px;
        }

.footer-menu {
    margin-top: 10px;
    border-bottom: 1px solid var(--gray-fourth-color);
    padding-bottom: 20px;
    width: fit-content;
    margin-left: auto;
}

    .footer-menu ul {
        gap: 60px;
        align-items: center;
        display: flex;
    }

        .footer-menu ul li a {
            color: var(--gray-fifth-color);
            text-decoration: none;
            font-size: 14px;
            gap: 0;
        }

            .footer-menu ul li a:hover {
                text-decoration: underline;
            }

.footer-information {
    text-align: right;
    font-size: 12px;
    margin-top: 20px;
    color: var(--gray-fifth-color);
}

    .footer-information span {
        display: inline-block;
        margin-right: 20px;
        position: relative;
    }

        .footer-information span:first-child {
            padding-left: 20px;
        }

        .footer-information span:last-child {
            margin-right: 0;
        }

        .footer-information span:first-child:before {
            top: 2px;
            left: 0;
            width: 10px;
            height: 15px;
            content: '';
            display: block;
            position: absolute;
            background-repeat: no-repeat;
            background-size: contain;
            background-image: url('../img/icon/pin-gray.svg');
        }

        .footer-information span:nth-child(2) {
            padding-left: 29px;
        }

            .footer-information span:nth-child(2):before {
                top: 2px;
                left: 0;
                width: 19px;
                height: 15px;
                content: '';
                display: block;
                position: absolute;
                background-repeat: no-repeat;
                background-size: contain;
                background-image: url('../img/icon/mail-gray.svg');
            }

        .footer-information span:last-child {
            padding-left: 25px;
        }

            .footer-information span:last-child:before {
                top: 2px;
                left: 0;
                width: 15px;
                height: 15px;
                content: '';
                display: block;
                position: absolute;
                background-repeat: no-repeat;
                background-size: contain;
                background-image: url('../img/icon/phone-gray.svg');
            }

.main-tab {
    padding: 100px 0;
    margin-top: 80px;
    background-color: var(--gray-second-color);
}

.main-tab-head-capsule {
    display: flex;
    width: fit-content;
    margin: 0 auto 46px auto;
}

.main-tab-head-item {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-sixth-color);
    margin-right: 40px;
    cursor: pointer;
}

    .main-tab-head-item.active {
        color: var(--main-color);
        cursor: default;
    }

    .main-tab-head-item:last-child {
        margin-right: 0;
    }

.main-tab-content-item .owl-dots {
    margin-top: 120px !important;
}

.main-tab-content-item .owl-dot span {
    width: 24px !important;
    height: 24px !important;
    background: none !important;
    background-size: contain !important;
    background-image: url('../img/icon/dot.svg') !important;
}

.main-tab-content-item .owl-dot.active span {
    background-image: url('../img/icon/dot-yellow.svg') !important;
}

.detail {
    margin-top: 20px;
}

.detail-pin {
    border: 2px solid var(--yellow-first-color);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

    .detail-pin.active {
        border-color: var(--main-color);
        cursor: default;
    }

    .detail-pin img {
        width: 100%;
    }

.detail-image {
    border: 2px solid var(--yellow-first-color);
    border-radius: 10px;
    padding: 10px 10px;
}

    .detail-image img {
        width: 100%;
    }

.detail-image-slider-carousel {
    padding: 20px;
    border: 2px solid var(--yellow-first-color);
}

.detail-image-slider .owl-dots {
    margin-top: 20px !important;
}

.detail-image-slider .owl-dot span {
    width: 20px !important;
    height: 20px !important;
    background: none !important;
    background-size: contain !important;
    background-image: url('../img/icon/dot.svg') !important;
}

.detail-image-slider .owl-dot.active span {
    background-image: url('../img/icon/dot-yellow.svg') !important;
}

.detail-content {
    background-color: var(--gray-second-color);
    padding: 10px;
    border-radius: 10px;
}

.detail-content-category h3 a {
    text-decoration: none;
    color: var(--main-color);
    font-size: 14px;
}

    .detail-content-category h3 a:hover {
        text-decoration: underline;
    }

.detail-content-name {
    margin-top: 5px;
}

    .detail-content-name h2 {
        color: var(--gray-fifth-color);
        font-size: 24px;
        font-weight: 500;
    }

.detail-content-item {
    display: flex;
    margin-top: 10px;
}

.detail-content-item-text {
    margin-left: 10px;
    margin-top: 13px;
}

    .detail-content-item-text span {
        font-weight: 500;
        display: inline-block;
        margin-right: 5px;
    }

.detail-colour-palette {
    display: flex;
    margin-top: 20px;
}

    .detail-colour-palette div {
        margin-left: 10px;
    }

        .detail-colour-palette div:first-child {
            margin-left: 0;
        }

.colour-palette-item {
    cursor: pointer;
}

    .colour-palette-item:focus {
        outline: 1px solid var(--gray-first-color);
        outline-offset: 5px;
        cursor: default;
    }

.colour-palette-item-text {
    color: var(--gray-fifth-color);
    font-size: 14px;
}

.detail-process {
    border-radius: 10px;
    border: 2px solid var(--gray-fourth-color);
    margin-top: 31px;
    padding: 20px 0;
    background-color: var(--white-color);
    display: flex;
}

.detail-process-price {
    font-size: 32px;
    margin-left: 20px;
    margin-top: 1px;
}

.detail-process-quantity {
    display: flex;
    margin-left: 20px;
    margin-top: 11px;
}

.detail-process button {
    font-size: 18px;
    padding: 0 10px;
}

.detail-process-add {
    margin-left: 20px;
}

.detail-process-quantity input {
    border: 0;
    outline: 0;
    font-size: 18px;
    text-align: center;
    width: 50px;
    padding-top:6px;
}

.detail-similiar-product {
    margin-top: 40px;
}

.detail-similiar-product-content h4 {
    font-size: 24px;
}

.detail-similiar-product-content .owl-dots {
    margin-top: 20px !important;
}

.detail-similiar-product-content .owl-dot span {
    width: 24px !important;
    height: 24px !important;
    background: none !important;
    background-size: contain !important;
    background-image: url('../img/icon/dot.svg') !important;
}

.detail-similiar-product-content .owl-dot.active span {
    background-image: url('../img/icon/dot-yellow.svg') !important;
}

.main-slider {
    margin-top: 24px;
}

    .main-slider .owl-dots {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
    }

    .main-slider .owl-carousel .owl-stage {
        display: flex;
    }

    .main-slider .owl-carousel .owl-item {
        height: 423px;
    }

        .main-slider .owl-carousel .owl-item img {
            height: 100%;
        }

    .main-slider .owl-dot span {
        background: var(--yellow-second-color) !important;
    }

    .main-slider .owl-dot.active span {
        width: 30px;
        background: var(--main-color) !important;
    }

.home-two a img {
    width: 100%;
    border-radius: 10px;
}

.counter-product-row {
    border-radius: 10px;
}

.counter-product .owl-carousel .owl-item img {
    display: initial !important;
    width: auto !important;
}

.counter-product-row {
    background-color: var(--blue-first-color);
    padding: 60px 40px;
}

.counter-product-name {
    font-size: 36px;
    color: var(--gray-third-color);
    font-weight: 500;
}

.counter-product-description {
    font-size: 18px;
    color: var(--gray-first-color);
}

.counter-product-price {
    width: fit-content;
    color: var(--white-color);
    font-size: 32px;
    border-radius: 10px;
    background-color: var(--blue-second-color);
    outline: 2px dashed var(--blue-second-color);
    outline-offset: 5px;
    padding: 0 10px;
    margin-left: auto;
    margin-bottom: 7px;
}

    .counter-product-price span {
        font-size: 56px;
        font-weight: bold;
        border-radius: 10px;
    }

.counter-product-old-price {
    margin-top: 40px;
    margin-left: auto;
    width: fit-content;
    color: var(--gray-third-color);
    font-size: 18px;
    position: relative;
}

    .counter-product-old-price:after {
        position: absolute;
        display: block;
        width: 100%;
        border-bottom: 3px solid var(--gray-third-color);
        content: '';
        top: 25px;
        background-color: red;
    }

    .counter-product-old-price span {
        font-size: 32px;
        font-weight: bold;
        border-radius: 10px;
    }

.counter-product-image {
    text-align: right;
}

    .counter-product-image img {
        height: 240px;
    }

.counter-product-count-down {
    display: flex;
    margin-top: 20px;
    margin-left: -22px;
}

    .counter-product-count-down div {
        width: 70px;
        text-align: center;
    }

        .counter-product-count-down div span:first-child {
            display: block;
            font-size: 32px;
            color: var(--gray-third-color);
        }

        .counter-product-count-down div span:last-child {
            display: block;
            font-size: 14px;
            color: var(--gray-first-color);
        }

.counter-product .owl-dots {
    margin-top: 20px !important;
}

.counter-product .owl-dot span {
    width: 24px !important;
    height: 24px !important;
    background: none !important;
    background-size: contain !important;
    background-image: url('../img/icon/dot.svg') !important;
}

.counter-product .owl-dot.active span {
    background-image: url('../img/icon/dot-yellow.svg') !important;
}

.home-group a img {
    width: 100%;
    border-radius: 10px;
}

.list-title h2 {
    font-size: 16px;
}

.filter-box-shortcut {
    position: fixed;
    background-color: var(--main-color);
    top: 225px;
    right: 0;
    width: 120px;
    height: 40px;
    color: var(--white-color);
    padding: 7px 0 0 40px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

    .filter-box-shortcut:after {
        top: 10px;
        left: 10px;
        width: 20px;
        height: 20px;
        content: '';
        display: block;
        position: absolute;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('../img/icon/filter.svg');
    }

.filter-box {
    background-color: var(--gray-second-color);
    border-radius: 10px;
    border: 1px solid var(--gray-fourth-color);
    padding: 0 20px 20px 20px;
}

.filter-box-element.closed .filter-box-content {
    display: none;
}

.filter-box-content {
    max-height: 200px;
    overflow: scroll;
    overflow-x: hidden;
    margin-top: 20px;
    padding-right: 20px;
}

.filter-box-title {
    font-weight: 500;
    margin-top: 20px;
    position: relative;
    cursor: pointer;
    user-select: none;
}

    .filter-box-title:before {
        top: 7px;
        right: 0;
        width: 16px;
        height: 10px;
        content: '';
        display: block;
        position: absolute;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('../img/icon/up.svg');
    }

.filter-box-element.closed .filter-box-title:before {
    background-image: url('../img/icon/down.svg');
    top: 8px;
}

.filter-box-content ul li {
    position: relative;
}

    .filter-box-content ul li a {
        font-size: 14px;
        color: var(--black-color);
        text-decoration: none;
        display: inline-block;
        width: calc(100% - 47px);
    }

        .filter-box-content ul li a:hover {
            text-decoration: underline;
        }

    .filter-box-content ul li span {
        position: absolute;
        right: 0;
        top: 0;
    }

.filter-box-close {
    display: none;
    color: var(--white-color);
    margin-bottom: 10px;
    text-align: right;
    cursor: pointer;
}

.pages {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.pages-item {
    margin-right: 10px;
    margin-top: 20px;
}

.pages-item a {
    min-width: 30px;
    border: 1px solid var(--gray-fourth-color);
    padding: 5px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    color: var(--black-color);
    display: block;
}

.pages-item:last-child {
    margin-right: 0;
}

.pages-item a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
}

.pages-item a.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
    cursor: default;
}

.cart-item {
    background-color: var(--gray-second-color);
    padding: 10px 10px;
    margin-top: 10px;
}

.cart-item-address {
    margin-top: 10px;
    border-bottom: 1px solid var(--gray-fourth-color);
    padding-bottom: 10px;
}

    .cart-item-address:last-child, .cart-title-address {
        border-bottom: 0;
    }

        .cart-title-address.cart-item-address {
            margin-top: 0;
        }

.cart-title-address {
    padding: 0 20px 20px 20px;
}

.cart-title {
    background-color: transparent;
}

.cart-item-product {
    float: left;
    width: 280px;
    height: 50px;
}

.cart-item-image {
    float: left;
    width: 50px;
}

    .cart-item-image a img {
        width: 100%;
    }

.cart-item-name {
    text-align: left;
    margin-left: 10px;
    float: right;
    width: calc(100% - 60px);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    margin-top: 15px;
    float: left;
}

    .cart-item-name a {
        color: var(--black-color);
        text-decoration: none;
    }

        .cart-item-name a:hover {
            text-decoration: underline;
        }

.cart-item-price {
    width: 90px;
    margin-left: 10px;
    font-size: 14px;
    margin-top: 15px;
    float: left;
    height: 35px;
}

.cart-item-quantity {
    margin-top: 8px;
    width: 90px;
    margin-left: 10px;
    font-size: 14px;
    float: left;
    height: 42px;
}

.cart-item-address-quantity {
    margin-top: 15px;
    width: 70px;
    /*margin-left: 20px;*/
    font-size: 14px;
    float: left;
    height: 42px;
    text-align: center;
}

.cart-item-quantity input {
    width: 30px;
    border: 1px solid var(--gray-fourth-color);
    border-left: none;
    border-right: none;
    height: 34px;
    text-align: center;
}

    .cart-item-quantity input:focus {
        outline: 0;
    }

.cart-item-quantity-minus, .cart-item-quantity-plus {
    user-select: none;
    width: calc(calc(100% - 40px) / 2);
    text-align: center;
    cursor: pointer;
    height: 34px;
    padding-top: 5px;
    background-color: var(--white-color);
}

.cart-item-quantity-minus {
    border: 1px solid var(--gray-fourth-color);
    border-right: none;
}

.cart-item-quantity-plus {
    border: 1px solid var(--gray-fourth-color);
    border-left: none;
}

.cart-item-total {
    width: 110px;
    margin-top: 15px;
    margin-left: 20px;
    font-size: 14px;
    float: left;
    height: 35px;
}

.cart-item-process {
    display: flex;
    margin-top: 17px;
    width: 16px;
    float: left;
    height: 33px;
}

.cart-item-delete {
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icon/delete.svg');
    cursor: pointer;
}

.cart-item-refresh {
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icon/refresh.svg');
    cursor: pointer;
    margin-right: 5px;
}

.cart-title.cart-item {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 10px;
}

.cart-title .cart-item-product, .cart-title .cart-item-price, .cart-title .cart-item-quantity, .cart-title .cart-item-total, .cart-title .cart-item-process {
    margin-top: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-first-color);
    height: auto;
}

.cart-title-address .cart-item-product, .cart-title-address .cart-item-price, .cart-title-address .cart-item-quantity, .cart-title-address .cart-item-total, .cart-title-address .cart-item-process {
    margin-top: 0;
    font-size: 14px;
    font-weight: 500;
    height: auto;
    text-align: center;
    color: var(--gray-first-color);
}

.cart-item-address .cart-item-product, .cart-item-address .cart-item-price, .cart-item-address .cart-item-quantity, .cart-item-address .cart-item-total, .cart-item-address .cart-item-process {
    text-align: center;
}

.cart-item-address-wrapper {
    padding: 10px 20px;
    border: 1px solid var(--gray-fourth-color);
}

/*.cart-item-address .cart-item-product {
    width: 400px;
}*/

.cart-summary-title {
    font-size: 14px;
    font-weight: 500;
}

.cart-summary-content {
    background-color: var(--gray-second-color);
    border: 1px solid var(--main-color);
    padding: 20px;
    margin-top: 20px;
}

.cart-summary-content-centered {
    width: 94%;
    margin-left: 3%;
}

.cart-summary-item {
    margin-top: 20px;
    color: var(--gray-fifth-color);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-fourth-color);
}

    .cart-summary-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .cart-summary-item .title {
        font-weight: 500;
        display: inline-block;
        width: 110px;
        color: var(--black-color);
    }

    .cart-summary-item .total {
        font-weight: 500;
        font-size: 24px;
        color: var(--black-color);
    }

.btn-cart-approve {
    font-size: 20px;
    width: 100%;
    padding-left: 30px;
    position: relative;
}

    .btn-cart-approve:before {
        width: 20px;
        height: 20px;
        position: absolute;
        content: '';
        display: inline-block;
        background-repeat: no-repeat;
        background-size: contain;
        margin-left: -30px;
        top: 11px;
        background-image: url('../img/icon/check.svg');
    }

.cart-update {
    text-align: right;
}

.checkout-title {
    font-size: 20px;
    font-weight: 500;
}

.cart-item-address-summary {
    color: var(--gray-fifth-color);
    font-size: 14px;
    margin-top: 10px;
}

    .cart-item-address-summary.first {
        margin-top: 20px;
    }

    .cart-item-address-summary .left {
        float: right;
        width: 150px;
        text-align: right;
    }

    .cart-item-address-summary .right {
        float: right;
        width: 120px;
        text-align: right;
        font-weight: 500;
    }

        .cart-item-address-summary .right.yellow {
            color: var(--main-color);
        }

.address-general-total {
    margin: 20px 21px 0 0;
    text-align: right;
    font-weight: 500;
    font-size: 24px;
    color: var(--main-color);
}

.address {
    /*margin-top: 41px;*/
    border: 1px solid var(--gray-fourth-color);
    padding: 0 20px 20px 20px;
}

.address-item {
    position: relative;
    width: 80%;
    margin-left: 10%;
}

    .address-item.edit {
        color: var(--blue-second-color);
        cursor: pointer;
        font-weight: 500;
    }
        .address-item.edit a{
            color: var(--blue-second-color);
            cursor: pointer;
            font-weight: 500;
            text-decoration: none;
        }

        .address-item.edit:hover {
            text-decoration: underline;
        }

    .address-item:before {
        content: '';
        display: block;
        position: absolute;
        background-size: contain;
    }

.address-item {
    padding-left: 40px;
    color: var(--gray-fifth-color);
    margin-top: 20px;
}

    .address-item:first-child:before {
        top: 2px;
        left: 0;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-image: url('../img/icon/user-black.svg');
    }

    .address-item:nth-child(2):before {
        top: 2px;
        left: 3px;
        width: 14px;
        height: 20px;
        background-repeat: no-repeat;
        background-image: url('../img/icon/pin-black.svg');
    }

    .address-item:nth-child(3):before {
        top: 2px;
        left: 4px;
        width: 12px;
        height: 20px;
        background-repeat: no-repeat;
        background-image: url('../img/icon/phone-black.svg');
    }

    .address-item:nth-child(4):before {
        top: 0;
        left: 4px;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-image: url('../img/icon/edit.svg');
    }

.address-new {
    margin-top: 20px;
    position: relative;
    padding-left: 30px;
    font-size: 20px;
    font-weight: 400;
    color: var(--blue-second-color);
    cursor: pointer;
}

    .address-new:hover {
        text-decoration: underline;
    }

    .address-new:before {
        top: 5px;
        left: 0;
        width: 20px;
        height: 20px;
        content: '';
        display: block;
        position: absolute;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('../img/icon/plus.svg');
    }

.pay-tab {
    display: flex;
}

.pay-tab-item {
    padding: 2px 15px;
    cursor: pointer;
    font-size: 14px;
}

    .pay-tab-item:last-child {
        margin-left: 15px;
    }

    .pay-tab-item.active {
        background-color: var(--main-color);
        color: var(--white-color);
        border-radius: 5px;
        cursor: default;
    }

.pay-tab-content {
    background-color: var(--gray-second-color);
    margin-top: 20px;
    padding: 20px;
}

.pay-tab-hide {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--gray-second-color);
    opacity: .9;
    border-radius: 10px;
    z-index: 998;
}

    .pay-tab-hide.active {
        display: none;
    }

.pay-tab-content-title {
    font-size: 24px;
    color: var(--gray-fifth-color);
    border-bottom: 1px solid var(--gray-fifth-color);
}

.credit-card {
    padding-bottom: 10px;
}

    .credit-card input[type=text] {
        border-radius: 5px;
        height: 44px;
        font-size: 14px;
        color: var(--black-color);
        border-color: var(--gray-fourth-color);
        border-width: 1px;
    }

    .credit-card ::placeholder {
        color: var(--gray-first-color);
    }

.credit-cart-title {
    margin: 20px 0 5px 0;
    color: var(--gray-fifth-color);
}

.eft {
    margin-top: 10px;
    padding-bottom: 10px;
}

.eft-item {
    display: flex;
    align-items: center;
    background-color: var(--white-color);
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    border: 2px solid var(--gray-fourth-color);
    color: var(--fifth-second-color);
    font-size: 12px;
    cursor: pointer;
}

.eft-item:focus {
    border: 2px solid var(--blue-second-color);
    cursor: default;
}

.eft-item-image {
    width: 90px;
    height: 19px;
}

.eft-item-iban {
    width: calc(100% - 220px);
}

.eft-item-branch {
    width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eft-item-image img {
    height: 100%;
}

.eft-item-branch, .eft-item-iban {
    margin-left: 20px;
}

.checkout-order-okay {
    background-color: var(--green-third-color);
    border: 1px solid var(--green-second-color);
    border-radius: 10px;
    padding: 20px;
}

.checkout-order-okay-title {
    position: relative;
    color: var(--green-second-color);
    font-weight: 500;
    padding-left: 44px;
}

    .checkout-order-okay-title:before {
        width: 24px;
        height: 24px;
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('../img/icon/check-light-green.svg');
    }

.checkout-order-okay-headline {
    font-size: 14px;
}

.checkout-order-okay-box {
    border-radius: 10px;
    border: 1px solid var(--gray-first-color);
    background-color: var(--green-fourth-color);
    width: 100%;
    padding-top: 20px;
    height: 120px;
}

.checkout-order-okay-box-2 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    background-color: var(--green-fourth-color);
    border-radius: 10px;
    border: 1px solid var(--gray-first-color);
    padding: 20px 0;
}

.checkout-order-okay-box-3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    background-color: var(--green-fourth-color);
    border-radius: 10px;
    border: 1px solid var(--gray-first-color);
    padding: 20px 0 17px 0;
}

.checkout-order-okay-box-title {
    color: var(--green-second-color);
    font-size: 14px;
    margin-left: 20px;
    margin-right: 20px;
}

.checkout-order-okay-box-title-2 {
    color: var(--green-second-color);
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
}

.checkout-order-okay-box-number {
    margin: 5px 20px 0 20px;
    font-size: 24px;
    font-weight: 500;
}

.checkout-order-okay-box-address {
    font-size: 12px;
    font-weight: 500;
    margin: 5px 20px 0 20px;
}

.checkout-order-okay-box-total {
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    padding: 0 5px;
}

.checkout-order-okay-box-pay {
    padding: 0 16px 0 16px;
}

.checkout-order-okay-box-pay-image {
    width: 60px;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid var(--gray-first-color);
    float: left;
}

    .checkout-order-okay-box-pay-image img {
        width: 100%;
    }

.checkout-order-okay-box-pay-information {
    float: left;
    margin-left: 20px;
}

.checkout-order-okay-box-pay-information-number {
    font-weight: 500;
}

.checkout-order-okay-box-pay-information-bank {
    font-size: 12px;
    margin-top: -1px;
}

.new-address-box-close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.new-address-box {
    background-color: var(--white-color);
    width: 50%;
    height: 100%;
    overflow: scroll;
    overflow-x: hidden;
    z-index: 999;
    position: absolute;
    top: 0;
    right: 0;
    padding: 50px;
    display: none;
}

    .new-address-box input[type=text] {
        border-radius: 0;
        height: 44px;
        font-size: 14px;
        color: var(--black-color);
        border-color: var(--gray-fourth-color);
        background-color: var(--gray-fourth-color);
        border-width: 1px;
    }

    .new-address-box .form-select {
        border-color: var(--gray-fourth-color);
    }

    .new-address-box ::placeholder {
        color: var(--gray-first-color);
    }

.new-address-box-title {
    color: var(--gray-fifth-color);
    margin-bottom: 5px;
}

.new-address-box .form-check-input {
    border-color: var(--gray-fourth-color);
}

.new-address-box .form-check-label {
    color: var(--gray-fifth-color);
    user-select: none;
}

.user-menu {
    background-color: var(--gray-second-color);
    border-radius: 5px;
    border: 1px solid var(--gray-eighth-color);
    padding-bottom: 20px;
}

.user-menu-person {
    padding: 20px 20px 15px 20px;
}

.user-menu-person-avatar {
    width: 40px;
    height: 40px;
    padding-top: 10px;
    border-radius: 50%;
    background-color: var(--white-color);
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    float: left;
}

.user-menu-person-name {
    font-weight: 500;
    font-size: 18px;
    color: var(--gray-ninth-color);
    margin-top: 7px;
    width: calc(100% - 56px);
    float: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-menu ul li a {
    color: var(--gray-ninth-color);
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    position: relative;
    padding-left: 60px;
}

    .user-menu ul li a.active {
        background-color: var(--main-color);
        color: var(--white-color);
        cursor: pointer;
    }

.user-menu ul li:first-child a:before {
    top: 18px;
    left: 20px;
    width: 20px;
    height: 16px;
    content: '';
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icon/truck.svg');
}

.user-menu ul li:first-child a.active:before, .user-menu ul li:first-child a:hover:before {
    background-image: url('../img/icon/truck-white.svg');
}

.user-menu ul li:nth-child(2) a:before {
    top: 18px;
    left: 20px;
    width: 16px;
    height: 16px;
    content: '';
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icon/user-fill.svg');
}

.user-menu ul li:nth-child(2) a.active:before, .user-menu ul li:nth-child(2) a:hover:before {
    background-image: url('../img/icon/user-fill-white.svg');
}

.user-menu ul li:nth-child(3) a:before {
    top: 18px;
    left: 23px;
    width: 12px;
    height: 16px;
    content: '';
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icon/location-fill.svg');
}

.user-menu ul li:nth-child(3) a.active:before, .user-menu ul li:nth-child(3) a:hover:before {
    background-image: url('../img/icon/location-fill-white.svg');
}

.user-menu ul li:nth-child(4) a:before {
    top: 18px;
    left: 23px;
    width: 16px;
    height: 16px;
    content: '';
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icon/location-fill.svg');
}

.user-menu ul li:nth-child(4) a.active:before, .user-menu ul li:nth-child(4) a:hover:before {
    background-image: url('../img/icon/location-fill-white.svg');
}

.user-menu ul li:nth-child(5) a:before {
    top: 18px;
    left: 20px;
    width: 16px;
    height: 16px;
    content: '';
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icon/lock.svg');
}

.user-menu ul li:nth-child(5) a.active:before, .user-menu ul li:nth-child(5) a:hover:before {
    background-image: url('../img/icon/lock-white.svg');
}

.user-menu ul li:nth-child(6) a:before {
    top: 18px;
    left: 20px;
    width: 16px;
    height: 16px;
    content: '';
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icon/cancel.svg');
}

.user-menu ul li:nth-child(6) a.active:before, .user-menu ul li:nth-child(6) a:hover:before {
    background-image: url('../img/icon/cancel-white.svg');
}

.user-menu ul li a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

.user-content-hello {
    font-weight: 500;
}

.user-content {
    background-color: var(--gray-second-color);
    border-radius: 5px;
    border: 1px solid var(--gray-eighth-color);
    padding: 20px 32px;
}

.user-content-description {
    color: var(--gray-first-color);
    margin-top: 20px;
}

.user-order-item {
    background-color: var(--white-color);
    border: 1px solid var(--gray-fourth-color);
    border-radius: 5px;
    padding: 12px 12px;
    margin-top: 20px;
}

    .user-order-item.delivered {
        background-color: #e6fbe8;
    }

    .user-order-item:first-child {
        margin-top: 0;
    }

.user-order-item-image {
    width: 66px;
    padding: 5px;
    background-color: var(--white-color);
}

    .user-order-item-image img {
        width: 56px;
    }

.user-order-item-no-date {
    margin-top: 13px;
    font-size: 12px;
    color: var(--gray-fifth-color);
}

    .user-order-item-no-date div {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .user-order-item-no-date div:last-child {
            margin-top: 5px;
        }

    .user-order-item-no-date span {
        font-weight: 500;
    }

.user-order-item-preparing {
    position: relative;
    color: var(--gray-fifth-color);
    font-size: 14px;
    margin-top: 23px;
    font-weight: 500;
    padding-left: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .user-order-item-preparing:before {
        width: 20px;
        height: 20px;
        position: absolute;
        content: '';
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        top: 0;
        left: 0;
        background-image: url('../img/icon/check-square.svg');
    }

.user-order-item-delivered {
    position: relative;
    color: var(--green-second-color);
    font-size: 14px;
    margin-top: 23px;
    font-weight: 500;
    padding-left: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .user-order-item-delivered:before {
        width: 20px;
        height: 20px;
        position: absolute;
        content: '';
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        top: 0;
        left: 0;
        background-image: url('../img/icon/check-light-green.svg');
    }

.user-order-item-shipping {
    position: relative;
    color: var(--gray-fifth-color);
    font-size: 14px;
    margin-top: 23px;
    font-weight: 500;
    padding-left: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .user-order-item-shipping:before {
        width: 25px;
        height: 20px;
        position: absolute;
        content: '';
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        top: 0;
        left: 0;
        background-image: url('../img/icon/truck-yellow.svg');
    }

.user-order-item-price {
    color: var(--gray-ninth-color);
    font-weight: 500;
    margin-top: 22px;
}

.user-order-item-link {
    margin-top: 23px;
}

    .user-order-item-link a {
        font-size: 14px;
        color: var(--gray-fifth-color);
        font-weight: 500;
        text-decoration: none;
    }

        .user-order-item-link a:hover {
            color: var(--blue-second-color);
        }

.user-order-detail .cart-item-address {
    padding: 10px 20px;
    background-color: var(--white-color);
    border-bottom: 0;
    border-radius: 5px;
}

.user-order-detail .cart-title-address {
    background-color: var(--gray--second-color) !important;
}

.user-order-detail-process-item {
    background-color: var(--gray-first-color);
    font-size: 14px;
    color: var(--gray-second-color);
    text-align: center;
    padding: 7px;
    border-radius: 10px;
    position: relative;
}

    .user-order-detail-process-item.active {
        background-color: var(--green-second-color);
        padding-left: 31px;
    }

        .user-order-detail-process-item.active:before {
            top: 7px;
            width: 21px;
            height: 21px;
            content: '';
            margin-left: -31px;
            display: inline-block;
            position: absolute;
            background-repeat: no-repeat;
            background-size: contain;
            background-image: url('../img/icon/check-white.svg');
        }

.user-order-detail-information-box {
    background-color: var(--white-color);
    border-radius: 5px;
    border: 1px solid var(--gray-fourth-color);
    padding: 20px;
    height: 100%;
}

.user-order-detail-information-title {
    color: var(--main-color);
    font-size: 12px;
    font-weight: 500;
}

.user-order-detail-information-content {
    font-size: 12px;
}

    .user-order-detail-information-content span {
        font-weight: 700;
    }

.user-order-detail-information .row {
    overflow: hidden;
}

.user-order-detail-information [class*="col-"] {
    margin-bottom: -99999px;
    padding-bottom: 99999px;
}

.user-information input[type=text] {
    border-radius: 5px;
    height: 44px;
    font-size: 14px;
    color: var(--black-color);
    border-color: var(--gray-fourth-color);
    border-width: 1px;
}

.user-information .form-select {
    border-color: var(--gray-fourth-color);
}

.user-information ::placeholder {
    color: var(--gray-first-color);
}

.user-information-title {
    color: var(--gray-first-color);
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

.user-information .form-check-label {
    color: var(--gray-first-color);
    font-size: 12px;
    margin-top: 3px;
}

.address-box {
    margin-top: 20px;
    border: 1px solid var(--gray-fourth-color);
    border-radius: 10px;
    height: 180px;
    background-color: var(--white-color);
}

.address-box-add {
    margin-top: 20px;
    border: 1px solid var(--gray-fourth-color);
    background-color: var(--white-color);
    border-radius: 10px;
    height: 180px;
    width: 100%;
    display: table;
    cursor: pointer;
}

    .address-box-add .text {
        display: table-cell;
        vertical-align: middle;
        font-size: 12px;
        font-weight: 600;
        color: var(--main-color);
    }

        .address-box-add .text .plus {
            width: 120px;
            margin: 0 auto;
            padding-left: 28px;
            position: relative;
        }

            .address-box-add .text .plus:before {
                width: 18px;
                height: 18px;
                left: 0;
                content: '';
                display: block;
                position: absolute;
                background-repeat: no-repeat;
                background-size: contain;
                background-image: url('../img/icon/plus-yellow.svg');
            }

.address-box-title {
    font-size: 12px;
    color: var(--main-color);
    font-weight: 600;
    margin-top: 10px;
    padding: 0 10px;
}

.address-box-content {
    margin-top: 10px;
    padding: 0 10px;
    font-size: 12px;
    color: var(--gray-fifth-color);
}

.address-box-process {
    padding: 10px 10px 0 10px;
}

.static-title h4 {
    font-size: 24px;
}

.text-error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.pm-title {
    text-align: left;
    padding-left: 10px !important;
}

.bg-gray {
    background-color: var(--gray-second-color);
    width: 100%;
    height: 100%;
    padding-top: 100px;
}

.log-left {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 40px;
    padding-bottom: 10px;
}

    .log-left input[type=text], .log-left input[type=password] {
        border-radius: 0;
        height: 44px;
        font-size: 14px;
        color: var(--black-color);
        border-color: var(--gray-fourth-color);
        background-color: var(--gray-fourth-color);
        border-width: 1px;
    }

    .log-left ::placeholder {
        color: var(--gray-first-color);
    }

.log-logo {
    text-align: center;
}

.log-right {
    padding: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-image: url('../img/illustrator.jpg');
    background-size: cover;
}

.log-link a {
    font-size: 14px;
    color: var(--main-color);
    text-decoration: none;
}

.log-link a:hover {
    text-decoration: underline;
}

.log-info {
    color: var(--gray-first-color);
    font-size: 12px;
}

@media only screen and (max-width: 1399px) {
    .footer-menu ul {
        gap: 40px;
    }

    .category-absolute {
        width: 261px;
    }

    .detail-process {
        margin-top: 17px;
    }

    .cart-item-product {
        width: 299px;
    }

    .cart-item-address .cart-item-product {
        width: 394px;
    }
}

@media only screen and (max-width: 1199px) {
    .category-content {
        display: none;
    }

    .footer-menu ul {
        gap: 20px;
    }

    .footer-information {
        text-align: center;
    }

    .main-slider .owl-carousel .owl-item {
        height: auto;
    }

        .main-slider .owl-carousel .owl-item img {
            height: auto;
            border-radius: 8px;
        }

    .cart-item, .cart-title {
        padding: 10px 20px;
    }

    .cart-item-product {
        width: 218px;
    }

    .cart-item-name {
        margin-top: 12px;
        line-height: 14px;
        -webkit-line-clamp: 2;
    }

    .cart-summary-item .value {
        display: block;
    }

    .cart-title-address {
        padding: 0 0 20px 0;
    }

        .cart-title-address .cart-item-product, .cart-title-address .cart-item-price, .cart-title-address .cart-item-quantity, .cart-title-address .cart-item-total, .cart-title-address .cart-item-process {
            text-align: left;
        }

    .cart-item-address .cart-item-product, .cart-item-address .cart-item-price, .cart-item-address .cart-item-quantity, .cart-item-address .cart-item-total, .cart-item-address .cart-item-process {
        text-align: left;
    }

    .cart-item-address-quantity {
        text-align: left;
        width: 403px;
        margin-left: 70px;
        margin-top: 20px;
        height: auto;
    }

    .cart-item-address .cart-item-price {
        margin-top: 12px;
        height: 38px;
    }

    .cart-item-address .cart-item-product {
        width: 473px;
    }

    .cart-item-address .cart-item-total {
        margin-top: 20px;
        height: auto;
    }

    .new-address-box {
        width: 90%;
    }

    .category-absolute {
        width: 211px;
    }

    .bg-gray {
        padding:20px 20px 0 20px;
    }

    .log-left {
        border-radius: 10px;
        background:red;
    }
}

@media only screen and (max-width: 991px) {
    .top-information {
        text-align: center;
    }

    .menu ul li {
        margin-left: 20px;
    }

    .footer-menu {
        margin-top: 0;
    }

        .footer-menu ul li {
            text-align: center;
        }

    .footer-information span:first-child {
        margin-right: 0;
    }

    .counter-product-price {
        margin-right: auto;
    }

    .counter-product-old-price {
        margin-top: -60px;
        margin-right: auto;
    }

    .filter-box-wrapper {
        display: none;
        position: fixed;
        width: 100%;
        left: 0;
        top: 20px;
        z-index: 999;
    }

    .cart-item-product {
        width: 216px;
    }

    .cart-item-total {
        margin-left: 70px;
        margin-top: 20px;
    }

    .cart-item-process {
        margin-top: 22px;
    }

    .cart-item-total {
        height: auto;
    }

    .cart-item-process {
        height: auto;
    }

    .cart-title.cart-item {
        padding-left: 0;
        padding-right: 0;
    }

        .cart-title.cart-item .cart-item-product {
            height: auto;
        }

    .cart-item-address-quantity {
        width: 30px;
        margin-left: 20px;
    }

    .cart-item-address .cart-item-price {
        margin-left: 70px;
        margin-top: 20px;
        height: auto;
    }

    .cart-item-address .cart-item-product {
        width: 100%;
    }

    .cart-item-address .cart-item-total {
        margin-left: 20px;
    }

    .eft-item-iban {
        width: calc(100% - 110px);
    }

    .eft-item-branch {
        display: none;
    }

    .user-content {
        margin-top: 20px;
    }

    .user-order-item-no-date {
        margin-top: 0;
    }

    .user-order-item-preparing, .user-order-item-delivered, .user-order-item-shipping {
        margin-top: 10px;
    }

    .user-order-item-price {
        margin-top: -18px;
    }

    .user-order-item-link {
        margin-top: -19px;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-category {
        margin-top: 10px;
        float: left;
        background-color: var(--main-color);
        width: 50px;
        padding: 15px 0;
        border-radius: 5px;
        display: block;
        border: none;
    }

        .mobile-category img {
            width: 18px;
            height: 14px;
        }

    .search {
        float: right;
        width: calc(100% - 60px);
        margin-top: 10px;
    }

    .menu-line {
        background-color: initial;
    }

    .menu-col {
        overflow: scroll !important;
        overflow-y: hidden !important;
        padding-left: 0;
    }

    .menu {
        width: max-content;
    }

        .menu ul li {
            line-height: 44px;
        }

    .category-list {
        border-radius: 10px;
    }

        .category-list li:first-child a {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .category-list li:last-child a {
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

    .footer-menu {
        margin-top: 20px;
    }

    .main-tab {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .main-tab-head-capsule {
        margin-bottom: 0;
    }

    .main-tab-head-item {
        margin-right: 0;
        width: 30%;
        margin-right: 5%;
        word-spacing: 9999999px;
    }

    .main-tab-content-item .owl-dots {
        margin-top: 30px !important;
    }

    .main-tab-content-item .owl-dot span {
        width: 20px !important;
        height: 20px !important;
    }

    .detail {
        margin-top: 0;
    }

    .detail-image {
        padding: 20px;
    }

    .detail-process {
        display: block;
    }

    .detail-process-price {
        margin: 0 auto;
        width: fit-content;
    }

    .detail-process-quantity {
        margin: 20px auto 0 auto;
        width: fit-content;
    }

    .detail-process-add {
        margin: 20px auto 0 auto;
        width: fit-content;
    }

    .detail-similiar-product-content .owl-dot span {
        width: 20px !important;
        height: 20px !important;
    }

    .main-slider .owl-dots {
        position: relative;
        margin-top: 20px !important;
    }

    .home-two:last-child {
        margin-top: 10px;
    }

    .counter-product-row {
        padding: 20px;
    }

    .counter-product-name {
        text-align: center;
        margin-top: 10px;
        font-size: 24px;
    }

    .counter-product-description {
        text-align: center;
        font-size: 14px;
    }

    .counter-product-image {
        text-align: center;
    }

        .counter-product-image img {
            height: 160px;
        }

    .counter-product-old-price {
        margin-top: 10px;
    }

    .counter-product-count-down {
        margin: 10px auto 0 auto;
        width: fit-content;
    }

    .counter-product-buy {
        text-align: center;
    }

    .counter-product-count-down div {
        width: 60px;
    }

    .counter-product-price {
        font-size: 24px;
    }

        .counter-product-price span {
            font-size: 48px;
        }

    .counter-product .owl-dot span {
        width: 20px !important;
        height: 20px !important;
    }

    .cart-item-product {
        width: 276px;
    }

    .cart-update {
        margin-bottom: 20px;
    }

    .address {
        margin-top: 0;
    }

    .cart-title-address {
        margin-top: 20px;
    }

    .checkout-order-okay-box-pay {
        padding: 0;
    }

    .checkout-order-okay-box-pay-image {
        margin-top: 20px;
    }

    .checkout-order-okay-box-pay-information {
        margin-top: 20px;
    }

    .user-order-item-image {
        width: 46px;
    }

        .user-order-item-image img {
            width: 36px;
        }

    .user-order-item-preparing, .user-order-item-delivered, .user-order-item-shipping {
        margin-top: 20px;
    }

    .user-order-item-price {
        margin-top: 20px;
    }

    .user-order-item-link {
        margin-top: 20px;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

@media only screen and (max-width: 575px) {
    .footer-menu {
        margin: 20px auto 0 auto;
    }

        .footer-menu ul {
            display: initial;
        }

            .footer-menu ul li {
                margin-top: 5px;
            }

                .footer-menu ul li:first-child {
                    margin-top: 0;
                }

    .cart-item-product {
        width: 100%;
    }

    .cart-item-price {
        margin-left: 0 !important;
        width: 100%;
        padding: 5px;
        height: auto;
        margin-top: 20px;
        border-bottom: 1px solid var(--main-color);
    }

    .cart-item-quantity {
        margin-left: 0;
        margin-top: 20px;
        height: auto;
    }

    .cart-item-total {
        margin-left: 10px;
        margin-top: 27px;
        height: auto;
    }

    .cart-item-process {
        margin-left: 10px;
        margin-top: 29px;
        height: auto;
    }

    .cart-item-address {
        background-color: var(--gray-second-color);
        border-bottom: 0;
        padding: 10px 20px;
    }

    .cart-title-address.cart-item-address {
        background-color: var(--white-color);
        padding: 0 0 20px 0;
    }

    .cart-item-address-quantity {
        margin-left: 0;
    }

    .cart-item-address .cart-item-total {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 409px) {
    .footer-information {
        width: 70%;
        margin-left: 15%;
    }

        .footer-information span {
            text-align: left;
            display: block;
            margin-top: 10px;
            margin-right: 0;
        }

            .footer-information span:first-child {
                margin-top: 0;
            }

            .footer-information span:first-child {
                padding-left: 29px;
            }

                .footer-information span:first-child:before {
                    top: 3px;
                    width: 19px;
                    height: 29px;
                }

            .footer-information span:last-child {
                padding-left: 29px;
            }

                .footer-information span:last-child:before {
                    top: 0;
                    width: 19px;
                    height: 19px;
                }

    .checkout-order-okay-box-pay-image {
        float: none;
    }

    .checkout-order-okay-box-pay-information {
        margin-left: 0;
    }
}

.added-to-cart {
    display: none;
    top: 20px;
    right: 20px;
    position: fixed;
    color: var(--white-color);
    border-radius: 6px;
    font-size: 12px;
    padding: 10px 10px 10px 40px;
    z-index: 1004;
    background-color: #3F9F65;
}

.added-to-cart:before {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    content: '';
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icon/white-cart.svg');
}
.checkout-my-order a {
    background-color: var(--green-second-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
}
.container-min-height{
    min-height: 400px;
}
.help-block{
    font-size: 13px;
    color: red;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
