.checkout-page .checkout-form-section .phone-field .custom-select .select2 .selection .select2-selection .select2-selection__rendered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.checkout-page .checkout-form-section .phone-field .custom-select .select2 .selection .select2-selection .select2-selection__arrow {
    width: auto;
}
.checkout-page .checkout-form-section .phone-field .custom-select .select2 .selection .select2-selection .select2-selection__arrow::before {
    content: "\ea4e";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    border: unset;
    width: auto;
    height: auto;
    color: #777;
    font-size: 17px;
}
.checkout-page .checkout-form-section .delivery-option,
.checkout-page .checkout-form-section .payment-option {
    height: 100%;
    padding: calc(17px + 9 * (100vw - 320px) / 1600);
    background-color: #fff;
    height: 100%;
    border-radius: 0;
}
.checkout-page .checkout-form-section .delivery-option .custom-form-check,
.checkout-page .checkout-form-section .payment-option .custom-form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}
.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input {
    width: calc(15px + 0.00125 * (100vw - 320px));
    height: calc(15px + 0.00125 * (100vw - 320px));
    margin: 0;
    float: unset;
    margin-top: 4px;
    background-color: unset;
    position: relative;
    -webkit-filter: unset;
    filter: unset;
    border: unset;
}
.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input::before,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
}
.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input::after,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    width: 11px;
    height: 11px;
    background-color: var(--theme-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 100%;
}
.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input:checked,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input:checked {
    background-color: transparent;
    border-color: transparent;
}
.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input:checked::before,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input:checked::before {
    border-color: var(--theme-color);
}
.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input:checked::after,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input:checked::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input:checked ~ label,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input:checked ~ label {
    color: #222;
}
.checkout-page .checkout-form-section .delivery-option .custom-form-check label,
.checkout-page .checkout-form-section .payment-option .custom-form-check label {
    cursor: pointer;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    padding-left: 12px;
    font-weight: 500;
    margin-bottom: 0;
}
.checkout-page .checkout-form-section .checkbox-main-box {
    border-radius: 0;
    padding: calc(14px + 15 * (100vw - 320px) / 1600);
    background-color: #f8f8f8;
    border: 1px solid #eee;
    position: relative;
}
.checkout-page .future-option {
    padding: calc(17px + 9 * (100vw - 320px) / 1600);
    position: relative;
    border-radius: 10px;
    z-index: 0;
}
.checkout-page .future-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 1;
    z-index: -1;
}
.checkout-page .future-option .delivery-items h4 {
    margin-bottom: 16px;
    color: #222;
    font-weight: 500;
}
.checkout-page .future-option ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 7px;
}
@media (max-width: 1399px) {
    .checkout-page .future-option ul {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 991px) {
    .checkout-page .future-option ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .checkout-page .future-option ul {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .checkout-page .future-option ul {
        grid-template-columns: 1fr;
    }
}
.checkout-page .future-option ul li.active a {
    color: #fff;
    background-color: var(--theme-color);
}
.checkout-page .future-option ul li a {
    background-color: #fff;
    display: block;
    text-align: center;
    color: #000;
    padding: 12px 8px;
    border: 1px solid var(--theme-color);
    border-radius: 0;
    font-weight: 500;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li {
    position: relative;
    width: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li:last-child .checkout-box::before {
    content: none;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box {
    padding: calc(14px + (29 - 14) * ((100vw - 320px) / (1920 - 320)));
    background-color: #f8f8f8;
    border-radius: 0;
    border: 1px solid #eee;
    position: relative;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .payment-method ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .payment-method ul li {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid transparent;
    background-color: #fff;
    padding: 15px 40px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .payment-method ul li i {
    font-size: 28px;
    color: #898989;
    line-height: 1;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .payment-method ul li h5 {
    color: #898989;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .payment-method ul li.active {
    border-color: var(--theme-color);
    color: var(--theme-color);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .payment-method ul li.active i {
    color: var(--theme-color);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .form-select {
    background-color: #fff;
    border-color: #eee;
    line-height: 1.8;
}
@media (max-width: 576px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box {
        margin-left: 0;
    }
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-title {
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
    padding-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-title h4 {
    font-weight: 600;
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    letter-spacing: unset;
    text-transform: unset;
    margin: 0;
    line-height: 1.3;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-title button {
    padding: 0;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-color);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box {
    gap: 10px;
    border-radius: 0;
    padding: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320)));
    background-color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .label {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--theme-color);
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.8px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .label label {
    margin-bottom: 0;
    line-height: 1.7;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-input {
    width: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    height: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    margin-top: 2px;
    float: unset;
    margin-left: 0;
    background-color: unset;
    position: relative;
    -webkit-filter: unset;
    filter: unset;
    margin: 0;
    border: unset;
    margin-top: 3px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-input::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-input::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    width: 11px;
    height: 11px;
    background-color: var(--theme-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-input:checked {
    background-color: transparent;
    border-color: transparent;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-input:checked::before {
    border-color: var(--theme-color);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-input:checked::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--theme-color);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-label {
    display: grid;
    gap: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
    cursor: pointer;
    font-size: calc(15px + 0.00125 * (100vw - 320px));
    font-weight: 500;
    margin-bottom: 0;
    width: calc(100% - (15px + 0.00125 * (100vw - 320px)));
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-label > span {
    display: block;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-label .address {
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 400;
    color: #222;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-label .address span {
    margin-right: 4px;
    font-weight: 500;
    color: #222;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-label .name {
    font-weight: 600;
    margin: 0;
    text-transform: none;
    letter-spacing: unset;
    line-height: 1.3;
    font-size: 18px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .delivery-address-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
    margin-left: 10px;
    width: calc(85% + (75 - 85) * ((100vw - 320px) / (1920 - 320)));
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .delivery-address-detail li {
    display: block;
    width: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .delivery-address-detail h4 {
    font-weight: 600;
    margin: 0;
    text-transform: none;
    letter-spacing: unset;
    line-height: 1.3;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .delivery-address-detail p,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .delivery-address-detail h6 {
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 400;
    color: #222;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .delivery-address-detail p span,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .delivery-address-detail h6 span {
    margin-right: 4px;
    font-weight: 500;
    color: #222;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .add-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px;
    height: 100%;
    text-align: center;
    cursor: pointer;
    background-color: #fff;
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option {
    padding: calc(17px + (26 - 17) * ((100vw - 320px) / (1920 - 320)));
    background-color: #fff;
    border-radius: 0;
    height: 100%;
}
@media (max-width: 1460px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .select-option,
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .select-option {
        margin-top: 6px;
    }
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .date-box,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .date-box {
    position: relative;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .date-box i,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .date-box i {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    right: 17px;
    font-size: 18px;
    color: #4a5568;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}
@media (max-width: 767px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category,
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category,
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category,
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category {
        display: block;
    }
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category .form-check,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category .form-check,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category .form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input {
    width: calc(15px + 2 * (100vw - 320px) / 1600);
    height: calc(15px + 2 * (100vw - 320px) / 1600);
    margin: 2px 0 0 0;
    float: unset;
    background-color: unset;
    -webkit-filter: unset;
    filter: unset;
    position: relative;
    margin-top: 5px;
    border: unset;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    width: 11px;
    height: 11px;
    background-color: var(--theme-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input:checked,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input:checked,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input:checked,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input:checked {
    background-color: transparent;
    border-color: transparent;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input:checked::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input:checked::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input:checked::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input:checked::before {
    border-color: var(--theme-color);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input:checked::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input:checked::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input:checked::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input:checked::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input:focus,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input:focus,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input:focus,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--theme-color);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .custom-form-check,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .custom-form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    min-height: auto;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .custom-form-check .form-check-label,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .custom-form-check .form-check-label {
    cursor: pointer;
    font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    padding-left: 12px;
    font-weight: 500;
    margin-bottom: 0;
    width: calc(100% - calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320))));
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-date,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-date {
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    border: 1px solid #eee;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #4a5568;
    width: 100%;
    padding: calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320))) calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-date input,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-date input {
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    border: none;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #4a5568;
    width: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-time,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-toggle,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-toggle {
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    border: 1px solid #eee;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #4a5568;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-toggle i,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-toggle i {
    -webkit-text-stroke: 1px #4a5568;
    color: transparent;
    font-size: 18px;
    margin-right: 10px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-toggle::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-toggle::after {
    content: none;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-toggle::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-toggle::before {
    content: "\f107";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-menu,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-menu {
    border: 1px solid transparent;
    -webkit-box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-menu li a:active,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-menu li a:active {
    color: #000;
    text-decoration: none;
    background-color: #eee;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-menu li + li,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-menu li + li {
    margin-top: 5px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box {
    display: none;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box.show {
    display: block;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option {
    padding: calc(17px + (26 - 17) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 10px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option .delivery-items {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option .delivery-items h4 {
    margin-bottom: 16px;
    color: #222;
    font-weight: 500;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option .delivery-items ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: -8px;
    gap: 0;
}
@media (max-width: 460px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option .delivery-items ul {
        margin-inline: 0;
    }
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option .delivery-items ul li {
    width: 25%;
    padding: 8px;
}
@media (max-width: 1500px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option .delivery-items ul li {
        width: 33.33%;
    }
}
@media (max-width: 1400px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option .delivery-items ul li {
        width: 50%;
    }
}
@media (max-width: 460px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option .delivery-items ul li {
        width: 100%;
        padding-inline: 0;
    }
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option .delivery-items ul li a {
    background-color: #f8f8f8;
    display: block;
    text-align: center;
    color: #222;
    padding: 12px 8px;
    border: none;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .future-box .future-option .delivery-items ul li.active a {
    background-color: var(--theme-color);
    color: #fff;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-button {
    padding: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-method .custom-form-check label {
    font-weight: 500;
    font-size: 17px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .credit-card-box .credit-detail {
    position: relative;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .credit-info label {
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option {
    padding: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 0;
    position: relative;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .form-check .form-check-input {
    margin-top: 0;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .form-check label {
    font-weight: 500;
    font-size: 18px;
    padding-left: 10px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option img {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    right: 20px;
    width: 60px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item {
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: block;
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 0;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button {
    color: #4a5568;
    position: relative;
    padding: 0;
    background-color: #f8f8f8;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button::after {
    content: none;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    content: "\f107";
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #222;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::before {
    top: 20%;
    -webkit-transform: rotate(-180deg) translateY(-50%);
    transform: rotate(-180deg) translateY(-50%);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button .form-check .form-check-label {
    font-weight: 500;
    color: #222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
    padding: 16px 20px;
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button .form-check .form-check-label {
        margin-top: 5px;
    }
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button .form-check .form-check-label .form-check-input {
    margin-right: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body {
    padding-top: 0;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body .cod-review {
    margin: 0;
    line-height: 1.5;
    color: #4a5568;
    font-size: 16px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body .cod-review a:hover {
    color: var(--theme-color);
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body .custom-form-check {
    margin-bottom: calc(5px + (8 - 5) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body .custom-form-check label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body .custom-form-check input {
    margin-right: 10px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-select {
    position: absolute;
    left: 1px;
    height: 49px;
    bottom: 1px;
    border-radius: 0;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-select .select2-container {
    height: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-select .selection {
    height: 100%;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-select .selection .select2-selection {
    height: 100% !important;
    min-width: unset;
    background-color: transparent !important;
    width: 110px !important;
    border: unset !important;
    border-right: 1px solid #efefef !important;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .custom-select .selection .select2-selection .select2-selection__rendered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent !important;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .phone-field input,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .form-input-box input {
    border: 1px solid #efefef;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .phone-field .form-label,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .form-input-box .form-label {
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    color: #222;
    margin-bottom: 4px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .account-checkbox {
    min-height: unset;
    padding: 0;
    margin: 0;
    gap: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .account-checkbox .checkbox_animated {
    float: unset;
    margin: 0;
    width: 23px;
    height: 23px;
    border: unset;
    background: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .account-checkbox .checkbox_animated:after {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    right: unset;
    width: 23px;
    height: 23px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .account-checkbox .checkbox_animated:before {
    left: 7px;
    top: 7px;
    width: 10px;
    height: 6px;
}
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .account-checkbox .form-check-label {
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.checkout-section-2 .checkout-right-box {
    position: sticky;
    top: 20px;
    left: 0;
}
.checkout-section-2 .checkout-right-box .checkout-details {
    position: relative;
    background-color: #f8f8f8;
    border: 1px solid #eeeeee;
    border-radius: 0;
    padding: calc(18px + 0.00125 * (100vw - 320px)) calc(15px + 5 * (100vw - 320px) / 1600);
    inset: unset;
}
.checkout-section-2 .checkout-right-box .checkout-details + .checkout-details {
    margin-top: 20px;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box {
    margin: 0;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .title-box {
    position: relative;
    color: #444;
    font-weight: 600;
    font-size: 22px;
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
    padding-bottom: 8px;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .title-box h4 {
    font-size: calc(18px + 0.00125 * (100vw - 320px));
    font-weight: 600;
    letter-spacing: unset;
    color: #222;
    line-height: 1.3;
    margin: 0;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .title-box p {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    line-height: 1.5;
    font-weight: 500;
    margin: 4px 0 0;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .qty {
    margin: 0;
    border: none;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .qty li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 11px;
    font-size: 15px;
    color: #444;
    line-height: 20px;
    margin-bottom: 18px;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .qty li .cart-image {
    width: 60px;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .qty li .cart-content {
    width: calc(100% - 71px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .qty li .cart-content h4 {
    line-height: 1.3;
    font-weight: 500;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    margin-bottom: 4px;
    letter-spacing: unset;
    text-transform: unset;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .qty li .cart-content h5 {
    font-weight: 500;
    margin: 0;
    font-size: calc(16px + 1 * (100vw - 320px) / 1600);
    line-height: 1.3;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .qty li .cart-content span {
    font-size: calc(18px + 0.00125 * (100vw - 320px));
    text-align: right;
    line-height: 1.3;
    font-weight: 600;
    width: auto;
}
.checkout-section-2 .checkout-right-box .checkout-details .order-box .qty li:last-child {
    margin-bottom: 0;
}
.order-box {
    position: relative;
    margin-bottom: 50px;
}
.order-box .box-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
.order-box .box-loader .loader-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    inset: unset;
    background-color: #f8f8f8;
}
.order-box .title-box {
    position: relative;
    padding-bottom: 25px;
    color: #444;
    font-weight: 600;
    font-size: 22px;
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
}
.order-box .title-box i {
    font-weight: 400;
}
.order-box .title-box span {
    position: relative;
    text-align: right;
    line-height: 1.2em;
}
.order-box .qty {
    position: relative;
}
.order-box .qty li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 11px;
    font-size: 15px;
    color: #444;
    line-height: 20px;
    margin-bottom: 18px;
}
.order-box .qty li .cart-image {
    width: 60px;
}
.order-box .qty li:last-child {
    margin: 0;
}
.order-box .qty li .cart-content {
    width: calc(100% - 60px - 11px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
}
.order-box .qty li .cart-content h4 {
    line-height: 1.3;
    font-weight: 500;
    font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 4px;
    letter-spacing: unset;
    text-transform: unset;
}
.order-box .qty li .cart-content h5 {
    font-weight: 500;
    margin: 0;
    font-size: calc(16px + (17 - 16) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.3;
}
.order-box .qty li span {
    font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
    text-align: right;
    line-height: 1.3;
    color: #222;
    font-weight: 600;
}
.order-box .sub-total {
    position: relative;
}
.order-box .sub-total li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 9px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    line-height: 1.3;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}
.order-box .sub-total li + li {
    margin-top: 14px;
}
.order-box .sub-total li.border-cls {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
}
.order-box .sub-total li.border-cls .form-check-label {
    font-size: 14px;
    font-weight: 500;
}
.order-box .sub-total li .count {
    text-align: right;
    position: relative;
    font-size: 17px;
    line-height: 20px;
    color: var(--theme-color);
    font-weight: 500;
}
.order-box .sub-total li h4 {
    font-size: 16px;
    font-weight: 600;
    color: #777;
    line-height: 1.3;
    letter-spacing: unset;
    margin: 0;
}
.order-box .sub-total li h4 + h4 {
    text-align: left;
}
.order-box .sub-total li .txt-primary {
    color: var(--theme-color);
}
.order-box .sub-total li .check-it {
    margin-left: 14px;
    margin-right: 0;
    width: 20px;
    height: 20px;
    border: unset;
    position: relative;
}
.order-box .sub-total li .check-it::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
    left: 4px;
    top: 5px;
    z-index: 1;
    border: 2px solid var(--theme-color);
    border-top-style: none;
    border-right-style: none;
}
.order-box .sub-total li .check-it::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 2px solid #ececec;
    cursor: pointer;
}
.order-box .sub-total li .check-it:checked::before {
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
}
.order-box .sub-total .shopping-option label {
    position: relative;
    font-size: 16px;
    line-height: 32px;
    padding-left: 10px;
    color: #6f6f6f;
}
.order-box .sub-total .shipping {
    width: 35%;
    float: right;
}
.order-box .total {
    position: relative;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid #eee;
}
.order-box .total li {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    font-size: 18px;
}
.order-box .total li + li {
    margin-top: 8px;
}
.order-box .total li .count {
    position: relative;
    font-size: 18px;
    text-align: right;
    line-height: 1.3;
    color: var(--theme-color);
    font-weight: 600;
}
.order-box .total li:last-child {
    font-size: calc(19px + (21 - 19) * ((100vw - 320px) / (1920 - 320)));
}
.order-box .total li:last-child .count {
    font-size: calc(19px + (21 - 19) * ((100vw - 320px) / (1920 - 320)));
}
.payment-box {
    position: relative;
}
.payment-box .upper-box {
    position: relative;
}
.payment-box .payment-options {
    position: relative;
    margin-top: 20px;
    margin-bottom: 30px;
}
.payment-box .payment-options li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}
.payment-box .payment-options li .radio-option {
    position: relative;
}
.payment-box .payment-options li .radio-option label {
    position: relative;
    padding-left: 30px;
    text-transform: capitalize;
    color: #6f6f6f;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
}
.payment-box .payment-options li .radio-option input[type="radio"] {
    position: absolute;
    left: 0;
    top: 5px;
}
.payment-box .payment-options li .radio-option label .small-text {
    position: relative;
    display: none;
    font-size: 15px;
    line-height: 25px;
    font-weight: 300;
    color: #666666;
    margin-top: 10px;
}
.payment-box .payment-options li .radio-option label img {
    position: relative;
    display: block;
    max-width: 100%;
    margin-left: -30px;
    margin-top: 5px;
}
.dashboard-left .block-title h2 {
    font-size: 24px;
    padding-bottom: 20px;
}
.dashboard-left .block-content {
    padding: 10px 0;
    background-color: #f8f8f8;
}
.dashboard-left .block-content ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.5rem 1rem;
    border-right: 2px solid transparent;
}
.dashboard-left .block-content ul li.active {
    color: var(--theme-color);
    border-right: 2px solid var(--theme-color);
}
.dashboard-left .block-content ul li.active a {
    color: var(--theme-color);
}
.dashboard-left .block-content ul li:before {
    display: inline-block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-top: 3px;
}
.dashboard-left .block-content ul li a {
    color: black;
}
.dashboard-left .block-content ul li:hover {
    color: var(--theme-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.dashboard-left .block-content ul li:hover a {
    color: var(--theme-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.padding-cls {
    padding-left: 50px;
    padding-right: 50px;
}
.dashboard-right p {
    color: #5f5f5f;
    line-height: 20px;
}
.dashboard-right .dashboard {
    border: 1px solid #ddd;
    padding: 30px;
}
.dashboard-right .dashboard .page-title h2 {
    font-size: 22px;
    margin-bottom: 15px;
}
.dashboard-right .dashboard .welcome-msg p {
    margin-bottom: 0;
}
.dashboard .box-head h2 {
    font-size: 22px;
    margin: 20px 0 0;
    text-transform: capitalize;
    color: #333;
}
.dashboard .box a {
    color: var(--theme-color);
}
.dashboard .box h6 {
    margin-bottom: 0;
}
.dashboard .box .box-title {
    border-bottom: 1px solid #ddd;
    display: inline-block;
    margin-bottom: 5px;
    padding: 12px 0;
    position: relative;
    width: 100%;
}
.dashboard .box .box-title h3 {
    font-size: 16px;
    margin: 0;
    text-transform: capitalize;
    color: #333;
}
.dashboard .box .box-title > a {
    position: absolute;
    right: 0;
    top: 12px;
    color: var(--theme-color);
}
.dashboard .box address {
    margin-bottom: 0;
}
.box-content h6 {
    font-size: 14px;
    line-height: 25px !important;
    margin-bottom: 0;
}
.box-content a {
    color: var(--theme-color);
}
.account-sidebar {
    display: none;
    cursor: pointer;
    background-color: var(--theme-color);
    color: #fff;
    width: 30%;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 5px;
}
.account-sidebar a {
    color: #fff;
}
.custom-badge {
    padding: 6px 10px;
    font-size: 12px;
}
.user-dashboard-section .box {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.7;
}
.user-dashboard-section .welcome-msg {
    margin-bottom: 20px;
}
.user-dashboard-section .welcome-msg h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}
.user-dashboard-section .welcome-msg p {
    line-height: 25px;
    letter-spacing: 0.05em;
    font-size: 16px;
}
.user-dashboard-section .box-head h4 {
    font-size: 18px;
    margin: 34px 0 14px;
    text-transform: capitalize;
    color: #333;
    font-weight: 600;
}
.user-dashboard-section .box a {
    color: var(--theme-color);
}
.user-dashboard-section .box h6 {
    margin-bottom: 0;
}
.user-dashboard-section .box .box-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
    padding: 12px;
    position: relative;
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 8px;
}
.user-dashboard-section .box .box-title h3 {
    font-size: 16px;
    margin: 0;
    text-transform: capitalize;
    color: #333;
}
.user-dashboard-section .box .box-title > a {
    margin-left: auto;
    color: var(--theme-color);
}
.user-dashboard-section .box address {
    margin-bottom: 0;
}
.user-dashboard-section .faq-content .tab-pane .card-body {
    padding: calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320)));
}
.user-dashboard-section .show-btn {
    background-color: var(--theme-color);
    border-radius: 0;
    padding: calc(7px + 3 * (100vw - 320px) / 1600) calc(12px + 7 * (100vw - 320px) / 1600);
    text-transform: unset;
    font-weight: 600;
    color: #fff;
    margin-bottom: calc(18px + 0.005 * (100vw - 320px));
}
.user-dashboard-section .show-btn:active {
    background-color: var(--theme-color);
    color: #fff;
}
.user-dashboard-section .edit-link {
    color: var(--theme-color);
    margin-left: 10px;
    text-transform: capitalize;
}
.user-dashboard-section .address-book-section .select-box .address-box {
    padding: 15px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.user-dashboard-section .address-book-section .select-box .address-box .top h6 {
    text-transform: capitalize;
    color: #222;
    font-weight: 600;
    font-size: 14px;
}
.user-dashboard-section .address-book-section .select-box .address-box .top h6 span {
    float: right;
    background-color: var(--theme-color);
    color: #fff;
    padding: 2px 15px;
    font-size: 80%;
    border-radius: 3px;
    line-height: 2.2;
}
.user-dashboard-section .address-book-section .select-box .address-box .middle {
    margin-top: 15px;
}
.user-dashboard-section .address-book-section .select-box .address-box .middle .address p {
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}
.user-dashboard-section .address-book-section .select-box .address-box .middle .number {
    margin-top: 15px;
}
.user-dashboard-section .address-book-section .select-box .address-box .middle .number p {
    color: rgba(0, 0, 0, 0.7);
    text-transform: capitalize;
}
.user-dashboard-section .address-book-section .select-box .address-box .card-number {
    margin-top: 15px;
}
.user-dashboard-section .address-book-section .select-box .address-box .card-number h6,
.user-dashboard-section .address-book-section .select-box .address-box .card-number h5 {
    margin-bottom: 0;
}
.user-dashboard-section .address-book-section .select-box .address-box .name-validity {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.user-dashboard-section .address-book-section .select-box .address-box .name-validity h6 {
    text-transform: capitalize;
}
.user-dashboard-section .address-book-section .select-box .address-box .name-validity h5,
.user-dashboard-section .address-book-section .select-box .address-box .name-validity h6 {
    margin-bottom: 0;
}
.user-dashboard-section .address-book-section .select-box .address-box .name-validity .right {
    margin-left: auto;
}
.user-dashboard-section .address-book-section .select-box .address-box .bank-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.user-dashboard-section .address-book-section .select-box .address-box .bank-logo img {
    height: 22px;
}
.user-dashboard-section .address-book-section .select-box .address-box .bank-logo .network-logo {
    margin-left: auto;
    width: 50px;
    height: auto;
}
.user-dashboard-section .address-book-section .select-box .address-box .bottom {
    border-top: 1px solid #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    padding-top: 14px;
    margin-top: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.user-dashboard-section .address-book-section .select-box .address-box .bottom .bottom_btn {
    width: 47.5%;
    text-transform: capitalize;
    font-weight: 600;
    padding: 8px 4px;
    border-radius: 5px;
    background-color: #f8f8f8;
    color: #222;
}
.user-dashboard-section .address-book-section .select-box.active .address-box {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.success-text {
    text-align: center;
}
.success-text .star {
    position: absolute;
    -webkit-animation: grow 3s infinite;
    animation: grow 3s infinite;
    fill: var(--theme-color);
    opacity: 0;
}
.success-text .star:nth-child(1) {
    width: 12px;
    height: 12px;
    left: 12px;
    top: 16px;
}
.success-text .star:nth-child(2) {
    width: 18px;
    height: 18px;
    left: 168px;
    top: 84px;
}
.success-text .star:nth-child(3) {
    width: 10px;
    height: 10px;
    left: 32px;
    top: 162px;
}
.success-text .star:nth-child(4) {
    width: 20px;
    height: 20px;
    left: 82px;
    top: -12px;
}
.success-text .star:nth-child(5) {
    width: 14px;
    height: 14px;
    left: 125px;
    top: 162px;
}
.success-text .star:nth-child(6) {
    width: 10px;
    height: 10px;
    left: 16px;
    top: 16px;
}
.success-text .star:nth-child(1) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.success-text .star:nth-child(2) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
.success-text .star:nth-child(3) {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
}
.success-text .star:nth-child(4) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}
.success-text .star:nth-child(5) {
    -webkit-animation-delay: 7.5s;
    animation-delay: 7.5s;
}
.success-text .star:nth-child(6) {
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
}
.success-text .checkmark {
    position: relative;
    padding: 30px;
    -webkit-animation: checkmark 5m cubic-bezier(0.42, 0, 0.275, 1.155) both;
    animation: checkmark 5m cubic-bezier(0.42, 0, 0.275, 1.155) both;
    display: inline-block;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    margin: -20px;
}
.success-text .checkmark__check {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    fill: #fff;
}
.success-text .checkmark__background {
    fill: var(--theme-color);
    -webkit-animation: rotate 35s linear both infinite;
    animation: rotate 35s linear both infinite;
}
.success-text i {
    font-size: 50px;
    color: #4ead4e;
}
.success-text h2 {
    margin-top: 10px;
    margin-bottom: 15px;
}
.success-text p {
    font-size: 18px;
    margin-bottom: 6px;
    text-transform: capitalize;
}
.success-text.order-fail i {
    color: var(--theme-color);
}
.order-success-sec {
    background-color: #f9f9f9;
    padding: 25px;
    border: 1px solid #eee;
}
.order-success-sec h4 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 19px;
    border-bottom: 1px solid rgba(34, 38, 42, 0.12);
    padding-bottom: 8px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.order-success-sec .order-detail li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: capitalize;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 3px;
    color: #777;
}
.order-success-sec .payment-mode p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}
.delivery-sec {
    margin-bottom: -5px;
    padding: 0;
    margin-top: 20px;
    background-color: transparent;
}
.delivery-sec h3 {
    color: #000000;
    text-transform: capitalize;
    font-size: 18px;
    margin-bottom: 0;
}
.delivery-sec h3 span {
    font-weight: 700;
    margin-left: 5px;
}
.delivery-sec a {
    font-size: 16px;
    color: var(--theme-color);
    text-transform: capitalize;
    margin-top: 5px;
    display: block;
    font-weight: 600;
}
.product-order .product-order-table {
    border: 1px solid #eee;
}
.product-order .product-order-table thead tr th {
    font-size: 18px;
    color: #222;
    background-color: #f8f8f8;
    font-weight: 600;
    padding: 14px;
    text-align: center;
    text-transform: capitalize;
}
.product-order .product-order-table thead tr th:first-child {
    min-width: 106px;
}
.product-order .product-order-table tbody tr td {
    max-width: 220px;
    min-width: 160px;
    padding: 15px;
    color: #232323;
    border-bottom: 1px solid #eeeeee;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    background-color: transparent;
}
.product-order .product-order-table tbody tr td:first-child {
    min-width: 106px;
}
.product-order .product-order-table tbody tr td img {
    height: 78px;
}
.product-order .product-order-table tfoot tr:first-child td {
    padding-top: 15px;
}
.product-order .product-order-table tfoot tr:last-child td {
    border-top: 1px solid #eee;
    font-size: 19px;
    font-weight: 600;
    color: #232323;
}
.product-order .product-order-table tfoot tr td {
    padding: 8px 15px;
    border-bottom: 1px solid #eeeeee;
    font-weight: 500;
    vertical-align: middle;
    text-align: left;
    text-transform: capitalize;
    font-size: 16px;
    color: #777;
    border: none;
}
.product-order .product-order-table tfoot tr td:nth-child(2) {
    color: #232323;
    text-align: right;
    font-weight: 600;
}
.compare-section .compare-part {
    position: relative;
}
.compare-section .compare-part .close-btn {
    background-color: transparent;
    border: none;
    font-size: 25px;
    position: absolute;
    top: 0;
    right: 0;
}
.compare-section .compare-part .img-section {
    padding: 25px 15px 15px;
    text-align: center;
}
.compare-section .compare-part .img-section img,
.compare-section .compare-part .img-section .bg-size {
    width: 50%;
    margin: 0 auto;
}
.compare-section .compare-part .img-section a h5 {
    margin-bottom: 5px;
    text-transform: capitalize;
    margin-top: 10px;
    font-weight: 600;
    color: black;
}
.compare-section .compare-part .img-section h5 {
    margin-bottom: 0;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.7);
}
.compare-section .compare-part .detail-part .title-detail {
    background-color: #f7f8fa;
    text-align: center;
    padding: 8px 0;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
}
.compare-section .compare-part .detail-part .title-detail h5 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
}
.compare-section .compare-part .detail-part .inner-detail {
    padding: 15px;
    text-align: center;
}
.compare-section .compare-part .detail-part .inner-detail p {
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}
.compare-section .compare-part .btn-part {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #ddd;
}
.compare-section .compare-part .btn-part .btn-solid,
.compare-section .compare-part .btn-part .btn-outline {
    padding: 5px 10px;
}
.compare-section .slick-slide > div {
    border: 1px solid #ddd;
    border-left: none;
}
.compare-section .slick-slide:first-child {
    border-left: 1px solid #ddd;
}
.compare-padding {
    padding-bottom: 50px;
}
.compare-padding h2 {
    margin-bottom: 20px;
}
.compare-padding .compare-table {
    border: 1px solid #eeeeee;
    border-radius: 8px;
}
.compare-padding .compare-table tr:first-child td {
    padding: 25px 15px 15px;
}
.compare-padding .compare-table tr:last-child {
    background-color: transparent;
}
.compare-padding .compare-table tr:nth-child(even) {
    background-color: #f8f8f8;
}
.compare-padding .compare-table tr td {
    border-right: 1px solid #eeeeee;
    text-align: center;
    position: relative;
    padding: 8px;
    min-width: 200px;
}
.compare-padding .compare-table tr td.title-detail {
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}
.compare-padding .compare-table tr td.inner-detail,
.compare-padding .compare-table tr td.btn-part {
    padding: 15px;
    margin-bottom: 0;
    line-height: 1.4;
    letter-spacing: unset;
    font-weight: 500;
    font-size: 16px;
    color: #777;
}
.compare-padding .compare-table tr td .compare-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
}
.compare-padding .compare-table tr td .compare-rating .rating-list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
}
.compare-padding .compare-table tr td .compare-rating .rating-list i {
    color: #ffbc37;
}
.compare-padding .compare-table tr td .compare-rating span {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: #777;
}
.compare-padding .compare-table tr td .btn {
    padding: 5px 10px;
}
.compare-padding .compare-table tr td .close-btn {
    background-color: #f8f8f8;
    font-size: 18px;
    position: absolute;
    line-height: 1;
    top: 7px;
    color: #424242;
    font-weight: 400;
    right: 7px;
    border-radius: 0;
    border: 1px solid #eeeeee;
    width: 28px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.compare-padding .compare-table tr td .img-section img {
    height: 190px;
    margin: 0 auto;
}
.compare-padding .compare-table tr td .img-section a {
    display: block;
    text-transform: capitalize;
    margin-top: 10px;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
    font-size: 16px;
}
.compare-lable {
    position: absolute;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    top: 20px;
    left: 16px;
    letter-spacing: 0.1em;
    z-index: 1;
}
.compare-page .table-wrapper {
    padding-bottom: 0;
}
.compare-page .table-wrapper .table {
    border: 1px solid #eee;
    text-transform: capitalize;
    color: #222;
}
.compare-page .table-wrapper .table .product-name {
    width: 15%;
}
.compare-page .table-wrapper .table .featured-image {
    width: 185px;
}
.compare-page .table-wrapper .table td {
    border-top: none;
}
.compare-page .table-wrapper .table thead .th-compare td {
    font-size: 14px;
    font-weight: 700;
    background: #f8f8f8;
    border-right: 1px solid #eee;
    border-bottom-color: #eee;
}
.compare-page .table-wrapper .table thead .th-compare th {
    text-align: left;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}
.compare-page .table-wrapper .table thead .th-compare th .remove-compare {
    float: left;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
}
.compare-page .table-wrapper .table tbody tr th {
    background: #f8f8f8;
}
.compare-page .table-wrapper .table tbody tr td {
    border-right: 1px solid #eee;
    position: relative;
}
.compare-page .table-wrapper .table tbody tr th,
.compare-page .table-wrapper .table tbody tr td {
    padding: 15px;
    vertical-align: top;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
}
.compare-page .table-wrapper .table tbody tr .grid-link__title {
    font-size: 15px;
}
.compare-page .table-wrapper .table tbody tr .product_price {
    margin: 15px 0;
}
.compare-page .table-wrapper .table tbody tr .product_price span.money {
    padding-left: 5px;
}
.compare-page .table-wrapper .table tbody tr p {
    color: #222;
    font-size: 13px;
    line-height: 20px;
    margin: 0;
}
.compare-page .table-wrapper .table tbody tr .add-to-cart,
.compare-page .table-wrapper .table tbody tr .select-option-cls {
    padding: 6px 10px;
}
.typography_section .typography-box {
    margin-bottom: 30px;
}
.typography_section .typography-box p {
    line-height: 22px;
}
.typography_section .typography-box .headings {
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 20px;
    background-color: rgba(247, 247, 247, 0.5);
    padding: 8px 12px;
}
.typography_section .typography-box .headings h3 {
    text-transform: capitalize;
    color: #2d2d2d;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
}
.typography_section .typography-box .headings span {
    color: #777;
}
.typography_section .typography-box .headings span code {
    color: #777;
}
.typography_section .typography-box .typo-content.heading_content h1,
.typography_section .typography-box .typo-content.heading_content h2,
.typography_section .typography-box .typo-content.heading_content h3,
.typography_section .typography-box .typo-content.heading_content h4,
.typography_section .typography-box .typo-content.heading_content h5,
.typography_section .typography-box .typo-content.heading_content h6 {
    font-weight: 400;
    color: black;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}
.typography_section .typography-box .typo-content .sub-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    margin-bottom: 8px;
    font-size: 18px;
    color: #222;
    text-transform: capitalize;
}
.typography_section .typography-box .typo-content.product-pagination {
    border: none;
    margin: 0;
}
.typography_section .typography-box .typo-content.product-pagination .pagination .page-item a {
    padding: 10px 14px;
}
.typography_section .typography-box .typo-content.input_button input {
    margin-bottom: 10px;
}
.typography_section .typography-box .typo-content.input_button label {
    font-size: 16px;
    text-transform: capitalize;
    padding-left: 5px;
}
.typography_section .typography-box .typo-content.loader-typo {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.typography_section .typography-box .typo-content.loader-typo .pre-loader {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--theme-color);
    border-radius: 50%;
}
.typography_section .typography-box .typo-content.loader-typo .pre-loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    border: 0 solid #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: loading 1000ms ease-out forwards infinite;
    animation: loading 1000ms ease-out forwards infinite;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.typography_section .typography-box .typo-content .footer-social {
    margin-top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.typography_section .typography-box:last-child {
    margin-bottom: 0;
}
.typography_section code {
    background-color: #f7f7f7;
    padding: 3px;
    margin: 0 3px;
    border-radius: 2px;
}
.profile-section {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 15px;
}
.profile-section .profile-detail .profile-name {
    font-weight: 700;
}
.profile-section .profile-detail p {
    margin-bottom: 8px;
}
.vendor-cover .bg-size {
    height: 350px;
}
.vendor-profile .profile-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    background-color: #f8f8f8;
    border: 1px solid #eeeeee;
    border-radius: 0;
}
.vendor-profile .profile-left .profile-image {
    text-align: center;
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.vendor-profile .profile-left .profile-image img {
    width: 60%;
    display: block;
    background-color: #fff;
    height: 45%;
    margin: 0 auto 16px;
    padding: 14px;
    border-radius: 0;
}
.vendor-profile .profile-left .profile-image h3 {
    font-weight: 600;
    margin-bottom: 0;
    color: #222;
    letter-spacing: unset;
    line-height: 1.3;
}
.vendor-profile .profile-left .profile-image h6 {
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: unset;
    text-transform: unset;
    font-weight: 500;
}
.vendor-profile .profile-left .profile-detail {
    border-left: 1px solid rgba(34, 38, 42, 0.12);
    padding-left: 20px;
    margin-left: 20px;
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.vendor-profile .profile-left .profile-detail h6 {
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: 0.05em;
    text-transform: capitalize;
}
.vendor-profile .profile-left .profile-detail p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}
.vendor-profile .profile-left .profile-detail p + p {
    margin-top: 10px;
}
.vendor-profile .profile-left .vendor-contact {
    border-left: 1px solid rgba(34, 38, 42, 0.12);
    padding-left: 20px;
    margin-left: 20px;
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.vendor-profile .profile-left .vendor-contact .footer-social {
    margin-top: 0;
    margin-bottom: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.vendor-profile .profile-left .vendor-contact .footer-social i {
    color: #989898;
}
.vendor-profile .profile-left .vendor-contact .footer-social li {
    padding: 0 5px;
}
.vendor-profile .profile-left .vendor-contact h6 {
    text-transform: capitalize;
    color: #222;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}
.vendor-profile .profile-left .vendor-contact .vendor-details-box {
    margin-top: 12px;
    padding-top: 9px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid rgba(34, 38, 42, 0.12);
}
.vendor-profile .profile-left .vendor-contact .vendor-details {
    display: grid;
    gap: 7px;
}
.vendor-profile .profile-left .vendor-contact .vendor-details li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.vendor-profile .profile-left .vendor-contact .vendor-details li i {
    font-size: 20px;
    line-height: 1;
    color: #777;
}
.vendor-profile .profile-left .vendor-contact .vendor-details li a {
    text-transform: none;
}
.vendor-profile .profile-left .vendor-contact .vendor-details li h5,
.vendor-profile .profile-left .vendor-contact .vendor-details li a {
    margin: 0;
    font-weight: 500;
    line-height: 1;
    color: #464646;
}
.vendor-profile .profile-left .vendor-contact a {
    text-transform: capitalize;
}
.vendor-profile .profile-left + .profile-left {
    margin-top: 40px;
}
.vendor-profile .page-link {
    border-color: #efefef;
    background-color: #f9f9f9;
}
.vendor-profile .page-link:hover {
    background-color: #f1f1f1;
}
.become-vendor {
    background-color: #f7f7f7;
    overflow: hidden;
}
.become-vendor h4 {
    margin-bottom: 40px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.3;
}
.become-vendor .step-bg {
    position: relative;
}
.become-vendor .step-bg:before {
    content: "";
    position: absolute;
    left: -0;
    right: -0;
    height: 100%;
    display: block;
    background: url("../images/vendor/step-arrow.png") no-repeat center center;
}
.become-vendor .step-bg .row {
    margin-left: -50px;
    margin-right: -50px;
}
.become-vendor .step-bg .row > div {
    padding-left: 50px;
    padding-right: 50px;
}
.become-vendor .step-bg .row > div:nth-child(1),
.become-vendor .step-bg .row > div:nth-child(3) {
    margin-bottom: 30px;
}
.become-vendor .step-bg .row > div:nth-child(2) {
    margin-top: 30px;
}
.become-vendor .step-bg h4 {
    margin-bottom: 10px;
}
.become-vendor .step-bg .step-box {
    position: relative;
    padding: 26px 23px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
    text-align: center;
    border-radius: 0;
    border: 1px solid #eeeeee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.become-vendor .step-bg .step-box .steps {
    position: relative;
    width: 80px;
    height: 80px;
    background: #f8f8f8;
    margin: 0 auto 25px;
    color: var(--theme-color);
    text-align: center;
    font-weight: 500;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: calc(28px + 0.0075 * (100vw - 320px));
}
.become-vendor .step-bg .step-box p {
    line-height: 1.5;
    margin-bottom: 0;
}
.start-selling h4 {
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 22px;
    font-weight: 600;
}
.start-selling p {
    line-height: 1.7;
    letter-spacing: unset;
    margin-bottom: 0;
    font-weight: 400;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
}
.start-selling .btn {
    margin-top: 20px;
}
.vendor-dashboard .dashboard-box {
    padding: 20px 10px;
    background-color: #f9f9f9;
}
.vendor-dashboard .dashboard-box .date-picker-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.vendor-dashboard .dashboard-box .date-picker-box .input-group {
    width: 50%;
    padding: 0 10px;
}
.dashboard-section .dashboard-sidebar {
    position: sticky;
    top: 30px;
    z-index: 1;
    padding: 30px 0 15px 0;
    background-color: #f8f8f8;
}
.dashboard-section .dashboard-sidebar .profile-top {
    padding: 0 16px;
    margin-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image {
    position: relative;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image img {
    width: 130px;
    margin: 0 auto;
    display: block;
    border-radius: 100%;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image .profile-edit {
    position: absolute;
    bottom: 0;
    right: 30%;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image .profile-edit svg {
    stroke: var(--theme-color);
}
.dashboard-section .dashboard-sidebar .profile-top .profile-detail h5 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: unset;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-detail h6 {
    color: #777;
    font-weight: 400;
    margin-bottom: 3px;
}
.dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
}
.dashboard-section .counter-section .counter-box {
    background-color: #f8f8f8;
    padding: 30px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-left: 3px solid var(--theme-color);
    border-radius: 8px;
}
.dashboard-section .counter-section .counter-box img {
    height: 50px;
    margin-right: 20px;
}
.dashboard-section .counter-section .counter-box h3 {
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 4px;
    font-size: 20px;
}
.dashboard-section .counter-section .counter-box h5 {
    margin-bottom: 0;
    text-transform: capitalize;
}
.dashboard-section .faq-content .card {
    border: none;
    background-color: #f8f8f8;
    margin-top: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.dashboard-section .dashboard-table h3 {
    text-transform: capitalize;
    font-size: 17px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}
.dashboard-section .dashboard-table img {
    width: 50px;
}
.dashboard-section .dashboard-table .table thead th {
    border-top: none;
}
.dashboard-section .dashboard-table .table th,
.dashboard-section .dashboard-table .table td {
    vertical-align: middle;
    text-transform: capitalize;
    text-align: center;
}
.dashboard-section .top-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.dashboard-section .top-sec h3 {
    text-transform: capitalize;
    color: #000;
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
    font-weight: 600;
}
.dashboard-section .top-sec .btn {
    margin-left: auto;
    text-transform: capitalize;
    padding: calc(5px + (7 - 5) * ((100vw - 320px) / (1920 - 320))) calc(7px + (14 - 7) * ((100vw - 320px) / (1920 - 320)));
}
.dashboard-section .dashboard-box .dashboard-title {
    margin-bottom: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dashboard-section .dashboard-box .dashboard-title h4 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
}
.dashboard-section .dashboard-box .dashboard-title span {
    margin-left: 30px;
    padding: 2px 16px;
    border-radius: 2px;
    text-transform: capitalize;
    color: var(--theme-color);
    cursor: pointer;
}
.dashboard-section .dashboard-box .setting-list {
    display: grid;
    gap: 7px;
}
.dashboard-section .dashboard-box .setting-list .form-check {
    margin: 0;
    padding: 0;
    min-height: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.dashboard-section .dashboard-box .setting-list .form-check .form-check-label {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: unset;
}
.dashboard-section .apexcharts-toolbar {
    z-index: 1;
}
.faq-tab .nav-tabs {
    display: block;
    border-bottom: none;
    background-color: #fff;
    padding: 10px 0;
}
.faq-tab .nav-tabs .nav-item {
    display: block;
    margin-bottom: 0;
}
.faq-tab .nav-tabs .nav-item .nav-link {
    text-transform: capitalize;
    color: #000;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
    background-color: #f8f8f8;
    cursor: pointer;
}
.faq-tab .nav-tabs .nav-item .nav-link.active {
    border: none;
    border-right: 2px solid var(--theme-color);
    border-radius: 0;
    color: var(--theme-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.faq-tab .nav-tabs .nav-item .nav-link:hover {
    border: none;
    border-right: 2px solid var(--theme-color);
    color: var(--theme-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.tracking-page .title-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.tracking-page .title-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
}
.tracking-page .title-header .btn {
    background-color: var(--theme-color);
    color: #fff;
    text-transform: none;
    font-weight: 600;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    line-height: 1.3;
    padding: 8px 20px;
    border-radius: 0;
}
.tracking-page .tacking-table {
    border: 1px solid #eeeeee;
    border-radius: 0;
    margin: 0;
}
.tracking-page .tacking-table tr:last-child td {
    border-bottom: unset;
}
.tracking-page .tacking-table tr th {
    font-weight: 600;
    padding: 14px;
    text-align: center;
    vertical-align: middle;
    color: #232323;
    border-bottom: 1px solid #eeeeee;
    max-width: 220px;
    min-width: 160px;
    font-size: 18px;
    background-color: #f8f8f8;
}
.tracking-page .tacking-table tr td {
    max-width: 220px;
    min-width: 160px;
    padding: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320)));
    color: #232323;
    border-bottom: 1px solid #eeeeee;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
}
.tracking-page .tacking-table tr td h6 {
    color: #222;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    font-size: 16px;
}
.tracking-page .tacking-table tr .product-image img {
    width: 70px;
}
.tracking-page .summary-details .details-box {
    padding: calc(15px + 7 * (100vw - 320px) / 1600) calc(15px + 7 * (100vw - 320px) / 1600);
    border-radius: 0;
    border: 1px solid #eeeeee;
    background-color: #f8f8f8;
}
.tracking-page .summary-details .order-title {
    font-size: calc(18px + 0.00125 * (100vw - 320px));
    padding-bottom: 11px;
    margin-bottom: 16px;
    letter-spacing: unset;
    font-weight: 600;
    color: #222;
    border-bottom: 1px solid #dee2e6;
}
.tracking-page .summary-details .customer-detail label {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 6px;
}
.tracking-page .summary-details .customer-detail h4 {
    margin: 0;
    font-size: 15px;
    letter-spacing: unset;
    font-weight: 500;
    text-transform: unset;
    line-height: 1.3;
    color: #777;
}
.tracking-page .summary-details .tracking-total {
    display: grid;
    gap: 6px;
}
.tracking-page .summary-details .tracking-total li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}
.tracking-page .summary-details .tracking-total li:last-child {
    padding-top: 8px;
    margin-top: 2px;
    border-top: 1px solid #dee2e6;
    font-weight: 600;
    font-size: 18px;
}
.blog-page .no-sidebar .blog-box .blog-image {
    height: calc(150px + (280 - 150) * ((100vw - 320px) / (1920 - 320)));
}
.blog-page .blog-sidebar h6 {
    margin-bottom: 0;
    line-height: 20px;
    color: #333;
    font-weight: 700;
}
.blog-page .blog-sidebar p {
    line-height: 20px;
    margin-bottom: 0;
    color: #555;
}
.blog-page .blog-sidebar h4 {
    color: #222;
    text-transform: unset;
    font-weight: 600;
    margin-bottom: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.3;
    letter-spacing: unset;
    font-size: calc(17px + (21 - 17) * ((100vw - 320px) / (1920 - 320)));
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}
.blog-page .blog-sidebar .theme-card + .theme-card {
    margin-top: calc(24px + (45 - 24) * ((100vw - 320px) / (1920 - 320)));
}
.blog-page .blog-sidebar .theme-card .recent-blog li + li {
    margin-top: calc(21px + (30 - 21) * ((100vw - 320px) / (1920 - 320)));
}
.blog-page .blog-sidebar .theme-card .recent-blog li .media img {
    width: 100px;
    margin-right: 10px;
}
.blog-page .blog-sidebar .theme-card .recent-blog li .media .media-body a h5 {
    font-weight: 600;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    padding-bottom: 0;
}
.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    gap: 10px;
    border: unset;
    padding-bottom: 0;
    border-radius: 0;
}
.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-image {
    width: calc(90px + (100 - 90) * ((100vw - 320px) / (1920 - 320)));
    height: auto;
    margin: 0;
}
.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
}
.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-content {
    width: calc(100% - calc(90px + (100 - 90) * ((100vw - 320px) / (1920 - 320))) - 10px);
}
.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-content a h5 {
    padding-bottom: 0;
    text-transform: unset;
    margin: 0;
    line-height: 1.4;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-content h6 {
    line-height: 1.4;
    color: #777;
    font-weight: 500;
    margin-bottom: calc(2px + (5 - 2) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
}
.blog-page .blog-sidebar .theme-card .tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 9px 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.blog-page .blog-sidebar .theme-card .tags li {
    padding: 6px calc(9px + (13 - 9) * ((100vw - 320px) / (1920 - 320)));
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    border: 1px solid #eee;
}
.blog-page .blog-sidebar .theme-card .tags li a {
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
    color: #777;
    text-transform: unset;
    font-weight: 500;
}
.blog-page .blog-sidebar .theme-card .tags li:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.blog-page .blog-sidebar .theme-card .tags li:hover a {
    color: #fff;
}
.blog-page .blog-sidebar .theme-card .popular-blog li .blog-date {
    background-color: var(--theme-color);
    height: 70px;
    width: 70px;
    margin: 0 15px 0 0;
    padding: 15px;
}
.blog-page .blog-sidebar .theme-card .popular-blog li .blog-date span {
    display: block;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}
.blog-page .blog-sidebar .theme-card .popular-blog li + li {
    margin-top: 30px;
}
.blog-page .blog-sidebar .theme-card .popular-blog li p {
    margin-top: 10px;
}
.blog-page .blog-media {
    margin-bottom: 30px;
}
.blog-page .blog-media:last-child {
    margin-bottom: 0;
}
.blog-page .blog-media .blog-right {
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.blog-page .blog-media .blog-right h6 {
    color: var(--theme-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.blog-page .blog-media .blog-right h4 {
    color: #333;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}
.blog-page .blog-media .blog-right p {
    line-height: 1.8;
    margin-bottom: 0;
    letter-spacing: 0.04em;
}
.blog-page .blog-media .blog-right ul {
    color: #777;
    margin-bottom: 15px;
}
.blog-page .blog-media .blog-right ul li {
    font-size: 14px;
    line-height: 1.5;
}
.blog-page .blog-media .blog-right ul li + li {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #ddd;
}
.blog-page .blog-media .blog-right ul li i {
    padding-right: 3px;
}
.blog-page .blog-box {
    overflow: hidden;
    position: relative;
}
.blog-page .blog-box:hover .blog-image img {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    overflow: hidden;
}
.blog-page .blog-box:hover .blog-detail label {
    color: #fff;
}
.blog-page .blog-box:hover .blog-detail label::before {
    opacity: 1;
}
.blog-page .blog-box .blog-box-image {
    overflow: hidden;
    border-radius: 0;
}
.blog-page .blog-box .blog-box-image a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.blog-page .blog-box .blog-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 0;
    height: calc(140px + (180 - 140) * ((100vw - 320px) / (1920 - 320)));
}
.blog-page .blog-box .blog-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: opacity 0.5s, -webkit-transform 1.25s cubic-bezier(0, 0, 0.44, 1.18);
    transition: opacity 0.5s, -webkit-transform 1.25s cubic-bezier(0, 0, 0.44, 1.18);
    transition: opacity 0.5s, transform 1.25s cubic-bezier(0, 0, 0.44, 1.18);
    transition: opacity 0.5s, transform 1.25s cubic-bezier(0, 0, 0.44, 1.18), -webkit-transform 1.25s cubic-bezier(0, 0, 0.44, 1.18);
}
.blog-page .blog-box .blog-image label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 0;
    border: none;
    padding: 8px 10px;
    font-size: 12px;
    letter-spacing: 0.9px;
    -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
.blog-page .blog-box .blog-contain {
    padding: 0;
}
.blog-page .blog-box .blog-contain .blog-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-block: calc(6px + (12 - 6) * ((100vw - 320px) / (1920 - 320))) calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-page .blog-box .blog-contain .blog-label > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    color: #222;
}
.blog-page .blog-box .blog-contain .blog-label > span + span {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #eee;
}
.blog-page .blog-box .blog-contain a {
    color: #222;
}
.blog-page .blog-box .blog-contain a h3 {
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    letter-spacing: unset;
    margin: 0;
    color: #222;
}
.blog-page .blog-box .blog-contain p {
    display: none;
}
.blog-page .blog-box .blog-contain .blog-button {
    border: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 0;
    font-weight: 500;
    color: var(--theme-color);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
}
.blog-page .blog-box .blog-contain .blog-button i {
    margin-left: 6px;
    font-size: 20px;
    line-height: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -3px;
}
.blog-page .blog-label-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--theme-color);
    z-index: 1;
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
}
.blog-page .blog-featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--theme-color);
    z-index: 1;
    padding: 8px 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    font-weight: 600;
}
.blog-page .blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    border-radius: 0;
    padding: 0;
}
@media (max-width: 575px) {
    .blog-page .blog-list {
        display: block;
    }
}
.blog-page .blog-list .blog-image {
    margin: 0;
    border-radius: 0;
    height: calc(240px + (280 - 240) * ((100vw - 575px) / (1920 - 575)));
    width: calc(230px + (340 - 230) * ((100vw - 575px) / (1920 - 575)));
}
@media (max-width: 575px) {
    .blog-page .blog-list .blog-image {
        width: 100%;
    }
}
.blog-page .blog-list .blog-contain {
    width: calc(100% - calc(230px + (340 - 230) * ((100vw - 575px) / (1920 - 575))) - 15px);
    padding: 0 20px 0 0;
}
@media (max-width: 575px) {
    .blog-page .blog-list .blog-contain {
        width: 100%;
        padding: 0;
        padding-top: calc(12px + (20 - 12) * ((100vw - 320px) / (576 - 320)));
    }
}
.blog-page .blog-list .blog-contain a h3 {
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    letter-spacing: unset;
    margin: 0;
    color: #222;
}
.blog-page .blog-list .blog-contain p {
    line-height: 1.6;
    color: #777;
    margin-bottom: 0;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    margin-top: calc(11px + (15 - 11) * ((100vw - 320px) / (1920 - 320)));
}
.blog-page .blog-list .blog-contain .blog-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-block: 4px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 380px) {
    .blog-page .blog-list .blog-contain .blog-label {
        display: block;
    }
}
.blog-page .blog-list .blog-contain .blog-label > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    color: #777;
}
.blog-page .blog-list .blog-contain .blog-label > span + span {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #eee;
}
@media (max-width: 380px) {
    .blog-page .blog-list .blog-contain .blog-label > span + span {
        margin-left: unset;
        padding-left: unset;
        border-left: unset;
        margin-top: 4px;
    }
}
.blog-page .blog-list .blog-contain .blog-button {
    border: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 0;
    font-weight: 500;
    padding: 8px calc(11px + (16 - 11) * ((100vw - 320px) / (1920 - 320)));
    background-color: var(--theme-color);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin-top: calc(9px + (14 - 9) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
    color: #fff;
}
.blog-page .blog-list .blog-contain .blog-button i {
    margin-left: 10px;
    font-size: 20px;
    line-height: 1;
    display: none;
}
.blog-page .blog-list .blog-contain .blog-button:hover {
    color: #fff;
}
.blog-page .blog-list .blog-contain .blog-button:hover::after {
    opacity: 1;
}
.blog-page .blog-detail {
    padding: calc(11px + (20 - 11) * ((100vw - 320px) / (1920 - 320)));
    margin-top: 0;
}
.blog-page .blog-detail h2 {
    font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.4;
}
.blog-page .blog-detail label {
    font-size: 12px;
    padding: 7px 11px;
    border-radius: 50px;
    color: var(--theme-color);
    margin-bottom: calc(4px + (12 - 4) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    overflow: hidden;
    z-index: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.blog-page .blog-detail label::before {
    top: 0;
    left: 0;
    background-color: var(--theme-color);
    opacity: 0.1;
    z-index: -1;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.blog-page .blog-detail a {
    display: block;
}
.blog-page .blog-detail h3 {
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 600;
}
.blog-page .blog-detail h5 {
    font-size: 15px;
    margin-top: 10px;
    font-weight: 500;
}
.blog-page .blog-detail .blog-list {
    margin-top: 15px;
    gap: calc(14px + (22 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.blog-page .blog-detail .blog-list span {
    margin-bottom: -5px;
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
}
.blog-page .blog-detail .blog-list .blog-social-icon {
    position: relative;
}
.blog-page .blog-detail .blog-list .blog-social-icon .icon {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.blog-page .blog-detail .blog-list .blog-social-icon .icon li {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.blog-page .blog-detail .blog-list .blog-social-icon .icon li .fab {
    font-size: 14px;
}
.blog-page .blog-detail .blog-list .blog-social-icon:hover .icon {
    opacity: 1;
}
.blog-sidebar .theme-card {
    position: relative;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    padding: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 0;
}
.blog-sidebar .theme-card .categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320)));
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -4px;
}
.blog-sidebar .theme-card .categories li {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 0;
    width: 100%;
    padding-left: 0;
    padding-top: 0;
}
.blog-sidebar .theme-card .categories li a {
    display: block;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    color: #222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 8px;
}
.blog-sidebar .theme-card .categories li a h5 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    text-transform: none;
    line-height: 1.3;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.blog-detail-page .blog-detail-contain p {
    color: #777;
    line-height: 1.6;
    margin: 0;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.blog-detail-page .blog-detail-contain p + p {
    margin-top: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.blog-detail-page .blog-detail p:last-child {
    margin-bottom: 0;
}
.blog-detail-page .blog-detail img {
    margin-bottom: 28px;
    width: 100%;
}
.blog-detail-page .blog-detail h3 {
    color: #222;
    font-weight: 700;
    margin-bottom: calc(9px + 4 * (100vw - 320px) / 1600);
    letter-spacing: unset;
    font-size: calc(20px + (38 - 20) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.3;
}
.blog-detail-page .blog-detail .post-social {
    color: #777;
    padding-bottom: 21px;
}
.blog-detail-page .blog-detail .post-social li {
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    color: #777;
}
.blog-detail-page .blog-detail .post-social li + li {
    padding-left: 11px;
    margin-left: 11px;
    border-left: 1px solid #eee;
}
.dashboard-section .dashboard-sidebar {
    position: sticky;
    top: 20px;
    z-index: 1;
    padding: 30px 0 15px 0;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 0;
}
@media (max-width: 991px) {
    .dashboard-section .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: -350px;
        width: calc(300px + (320 - 300) * ((100vw - 320px) / (992 - 320)));
        height: 100vh;
        overflow: hidden auto;
        padding-top: 0;
        border: unset;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        border-radius: 0;
        z-index: 11;
        background-color: #fff;
    }
    .dashboard-section .dashboard-sidebar.open {
        left: 0;
    }
}
.dashboard-section .dashboard-sidebar .back-btn {
    display: none;
}
@media (max-width: 991px) {
    .dashboard-section .dashboard-sidebar .back-btn {
        padding: 15px 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border: unset;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 5px;
        border-bottom: 1px solid #eee;
        width: 100%;
        position: sticky;
        top: 0;
        left: 0;
        background-color: #fff;
        z-index: 2;
    }
    .dashboard-section .dashboard-sidebar .back-btn i {
        font-size: 20px;
        line-height: 1;
    }
    .dashboard-section .dashboard-sidebar .back-btn span {
        font-weight: 500;
        font-size: 16px;
    }
}
.dashboard-section .dashboard-sidebar .profile-top {
    padding: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 13px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
@media (max-width: 991px) {
    .dashboard-section .dashboard-sidebar .profile-top {
        margin-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (991 - 320)));
        background-color: #f8f8f8;
        padding: 15px;
    }
}
.dashboard-section .dashboard-sidebar .profile-top .profile-top-box {
    width: 56px;
    height: 56px;
    position: relative;
}
.dashboard-section .dashboard-sidebar .profile-top .user-icon-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #777;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}
.dashboard-section .dashboard-sidebar .profile-top .user-icon-2.close-icon {
    top: 0;
}
.dashboard-section .dashboard-sidebar .profile-top .user-icon-2 input[type="file"] {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    cursor: pointer;
}
.dashboard-section .dashboard-sidebar .profile-top .user-icon-2 i {
    line-height: 1;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image {
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 0;
    overflow: hidden;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image.vendor-image {
    width: 80px;
    height: 80px;
    background-color: #fff;
    padding: 8px;
    border: 1px solid #eee;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image.vendor-image img {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background-color: transparent;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image.vendor-image ~ .profile-detail {
    width: calc(100% - 80px - 13px);
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image:hover .user-icon {
    opacity: 1;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: opacity 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.631);
    border: 1px solid rgba(207, 207, 207, 0.4);
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    font-size: 24px;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon input[type="file"] {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    cursor: pointer;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon i {
    line-height: 1;
}
@media (max-width: 991) {
    .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon {
        opacity: 1;
        height: auto;
        border-radius: 0;
        inset: unset;
        bottom: 0;
        -webkit-transform: unset;
        transform: unset;
        font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
        padding-block: 5px;
        border: unset;
        background-color: rgba(34, 34, 34, 0.8);
    }
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-round {
    height: 56px;
    width: 56px;
    -o-object-fit: contain;
    object-fit: contain;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-round h4 {
    font-size: 34px;
    margin: 0;
    font-weight: 600;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-color: #f9f9f9;
    -webkit-box-shadow: 2px 3px 8px rgba(34, 34, 34, 0.32);
    box-shadow: 2px 3px 8px rgba(34, 34, 34, 0.32);
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image .cover-icon {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 55%;
    z-index: 1;
    background-color: #fff;
    border-radius: 100%;
    color: #777;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image .cover-icon i {
    position: relative;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-image .cover-icon i input {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    width: 35px;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-detail {
    width: calc(100% - 56px - 13px);
}
.dashboard-section .dashboard-sidebar .profile-top .profile-detail h5 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0;
}
.dashboard-section .dashboard-sidebar .profile-top .profile-detail h6 {
    color: #777;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 400;
    margin-bottom: 0;
}
.dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    background-color: #f8f8f8;
}
.dashboard-section .counter-section {
    padding: calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 0;
}
.dashboard-section .counter-section .counter-box {
    background-color: #fff;
    padding: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-left: 3px solid var(--theme-color);
    border-radius: 0;
}
.dashboard-section .counter-section .counter-box img {
    height: 50px;
    margin-right: 20px;
}
.dashboard-section .counter-section .counter-box h3 {
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 4px;
    font-size: 20px;
    letter-spacing: unset;
}
.dashboard-section .counter-section .counter-box h5 {
    margin-bottom: 0;
    font-weight: 500;
    color: #777;
    line-height: 1.3;
}
.dashboard-section .counter-section .box-account .box .box-content {
    padding-left: 22px;
    display: grid;
    gap: 8px;
}
.dashboard-section .counter-section .box-account .box .box-content li {
    display: list-item;
    list-style: disc;
}
.dashboard-section .counter-section .box-account .box .box-content li::marker {
    color: #777;
    font-size: 13px;
    line-height: 1;
}
.dashboard-section .faq-content .card {
    border: 1px solid #eee;
    background-color: #f8f8f8;
    border-radius: 0;
}
.dashboard-section .faq-content .show-btn {
    background-color: var(--theme-color);
    border-radius: 0;
    padding: calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320))) calc(12px + (19 - 12) * ((100vw - 320px) / (1920 - 320)));
    text-transform: unset;
    font-weight: 600;
    color: #fff;
    margin-bottom: calc(18px + (26 - 18) * ((100vw - 320px) / (1920 - 320)));
    display: none;
}
@media (max-width: 991px) {
    .dashboard-section .faq-content .show-btn {
        display: block;
    }
}
.dashboard-section .faq-content .dashboard-table {
    border: unset;
    background-color: transparent;
}
.dashboard-section .faq-content .dashboard-table .card-body {
    padding: 0;
}
.dashboard-section .faq-content .download-table {
    border: 1px solid #eee;
    margin-top: 20px;
}
.dashboard-section .faq-content .download-table .user-download-table .dropdown .dropdown-toggle {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    padding: 12px 18px;
    font-weight: 500;
}
.dashboard-section .faq-content .download-table .user-download-table .dropdown .dropdown-toggle::after {
    content: "\ea4e";
    font-family: "remixicon" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    vertical-align: unset;
    border: unset;
    font-size: 18px;
    line-height: 1;
    font-weight: normal;
}
.dashboard-section .faq-content .download-table .user-download-table thead tr th {
    background-color: #f8f8f8;
    text-align: center;
    padding: 14px 10px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}
.dashboard-section .faq-content .download-table .user-download-table tbody td {
    text-align: center;
    vertical-align: middle;
    padding: 14px 10px;
    border-color: #eee;
}
.dashboard-section .faq-content .download-table .user-download-table tbody tr:last-child td {
    border-bottom: unset;
}
.dashboard-section .faq-content .download-table .user-download-table tbody .table-name {
    width: 55%;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}
.dashboard-section .faq-content .download-table .user-download-table tbody .table-image {
    width: auto;
    height: 100px;
}
.dashboard-section .faq-content .download-detail {
    padding: 12px calc(15px + 7 * (100vw - 320px) / 1600);
    border: 1px solid #eee;
    background-color: #f8f8f8;
    border-radius: 0;
}
.dashboard-section .faq-content .download-detail .download-form {
    gap: 13px;
}
.dashboard-section .faq-content .download-detail .download-form .form-control {
    padding: calc(10px + 2 * (100vw - 320px) / 1600) calc(13px + 6 * (100vw - 320px) / 1600);
    font-weight: 500;
    border-radius: 0 !important;
    border: 1px solid #eee;
    font-size: calc(14px + 0 * (100vw - 320px) / 1600);
}
.dashboard-section .faq-content .download-detail .download-form button {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 0 !important;
    letter-spacing: unset;
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #fff;
}
.dashboard-section .faq-content .download-detail .download-form button:hover {
    background-color: #fff;
    color: var(--theme-color);
}
.dashboard-section .wallet-table .table-responsive {
    border: 1px solid #eee;
    border-radius: 0;
}
.dashboard-section .wallet-table .order-table {
    border: unset;
    margin: 0;
}
.dashboard-section .wallet-table .order-table thead th {
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
}
.dashboard-section .wallet-table .order-table th,
.dashboard-section .wallet-table .order-table td {
    max-width: 220px;
    min-width: 160px;
    padding: 15px;
    color: #232323;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    background-color: transparent;
}
.dashboard-section .wallet-table .order-table th h6,
.dashboard-section .wallet-table .order-table td h6 {
    color: #222;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    font-size: 16px;
}
.dashboard-section .wallet-table .order-table th.image-box,
.dashboard-section .wallet-table .order-table td.image-box {
    padding: 10px;
}
.dashboard-section .wallet-table .order-table th.image-box img,
.dashboard-section .wallet-table .order-table td.image-box img {
    height: 70px;
    width: auto;
}
.dashboard-section .wallet-table .order-table tr:last-child td {
    border-bottom: unset;
}
.dashboard-section .wallet-table .order-table tr a {
    color: #222;
}
.dashboard-section .wallet-table .order-table .product-image {
    text-align: center !important;
}
.dashboard-section .wallet-table .order-table .product-image img {
    width: 70px;
}
.dashboard-section .wallet-table .order-table .product-image h6 {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}
.dashboard-section .wallet-table .order-table .product-image a {
    color: #222;
}
.dashboard-section .product-table tr th:first-child,
.dashboard-section .product-table tr td:first-child {
    text-align: center;
}
.dashboard-section .title-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
}
.dashboard-section .title-header h5 i {
    color: #222;
}
.dashboard-section .title-header .right-option a {
    width: 100%;
    background-color: var(--theme-color);
    color: #fff;
    text-transform: none;
    font-weight: 600;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.3;
    padding: 8px 20px;
    border-radius: 0;
}
.dashboard-section .title-header .right-option a:hover {
    border: 1px solid var(--theme-color);
    background-color: #fff;
    color: var(--theme-color);
}
.dashboard-section .title-header .right-option a i {
    font-weight: 500;
}
.dashboard-section .dashboard-table h3 {
    text-transform: capitalize;
    font-size: 17px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}
.dashboard-section .dashboard-table .product-pagination {
    margin-top: 24px;
}
.dashboard-section .dashboard-table .product-pagination .theme-pagination-block {
    padding: 0;
    background-color: transparent;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.dashboard-section .top-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: calc(13px + (22 - 13) * ((100vw - 320px) / (1920 - 320)));
}
.dashboard-section .top-sec-2 {
    border-top: 1px solid #eee;
    margin-top: 34px;
    padding-top: 29px;
}
.dashboard-section .top-sec h3 {
    text-transform: capitalize;
    color: #222;
    font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
    font-weight: 600;
}
.dashboard-section .top-sec .btn {
    margin-left: auto;
    text-transform: capitalize;
    padding: calc(5px + (7 - 5) * ((100vw - 320px) / (1920 - 320))) calc(7px + (14 - 7) * ((100vw - 320px) / (1920 - 320)));
}
.dashboard-section .themeform-auth .form-label {
    font-weight: 500;
    color: #777;
    margin: 0;
}
.dashboard-section .themeform-auth .form-control {
    height: auto;
    padding: calc(10px + 2 * (100vw - 320px) / 1600) calc(13px + 6 * (100vw - 320px) / 1600);
    font-weight: 500;
    border-radius: 0;
    border: 1px solid #eee;
    font-size: calc(14px + 0 * (100vw - 320px) / 1600);
}
.dashboard-section .dashboard-box {
    padding: 0;
    background-color: #f8f8f8;
    border: 1px solid #eee;
}
.dashboard-section .dashboard-box .dashboard-title {
    margin-bottom: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eee;
}
.dashboard-section .dashboard-box .dashboard-title h4 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 22px;
}
.dashboard-section .dashboard-box .dashboard-title span {
    margin-left: auto;
    padding: 0;
    text-transform: capitalize;
    color: var(--theme-color);
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
}
.dashboard-section .dashboard-box .dashboard-detail {
    padding: 0 16px 16px;
}
.dashboard-section .dashboard-box .dashboard-detail ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}
.dashboard-section .dashboard-box .dashboard-detail ul li.details h5 {
    font-size: 16px;
    color: #222;
    font-weight: 500;
    letter-spacing: unset;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}
.dashboard-section .dashboard-box .dashboard-detail ul li.details h5 span {
    width: 200px;
    display: block;
    color: #777;
    font-weight: 400;
    margin: 0;
}
.dashboard-section .dashboard-box .dashboard-detail ul li.details h6 {
    text-transform: capitalize;
    margin-bottom: 0;
}
.dashboard-section .dashboard-box .dashboard-detail ul li.details span {
    margin-left: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 2px;
    text-transform: capitalize;
    color: var(--theme-color);
    cursor: pointer;
}
.dashboard-section .dashboard-box .dashboard-detail ul li.details .left {
    width: 150px;
    margin-right: 15px;
}
.dashboard-section .dashboard-box .dashboard-detail ul li.details .left h6 {
    color: #4e4e4e;
}
.dashboard-section .dashboard-box .dashboard-detail ul li.details .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dashboard-section .dashboard-box .dashboard-detail ul li.details .right h6 {
    font-weight: 500;
}
.dashboard-section .dashboard-box .dashboard-detail ul li:last-child {
    margin-bottom: 0;
}
.dashboard-section .dashboard-box .dashboard-detail .account-setting h5 {
    margin-bottom: 15px;
    text-transform: capitalize;
}
.dashboard-section .dashboard-box .dashboard-detail .account-setting .row > div .form-check {
    margin-bottom: 5px;
    padding-left: 0;
    color: #606060;
}
.dashboard-section .dashboard-box .dashboard-detail .account-setting .row > div .form-check:last-child {
    margin-bottom: 0;
}
.dashboard-section .dashboard-box .dashboard-detail .account-setting .btn {
    margin-top: 0;
}
.dashboard-section .dashboard-box .dashboard-detail .account-setting + .account-setting {
    margin-top: 20px;
}
.dashboard-section .radio_animated {
    position: relative;
    margin: 0;
    -webkit-filter: unset;
    filter: unset;
    cursor: pointer;
    border: none;
    width: 1.25rem;
    height: 1.25rem;
}
.dashboard-section .radio_animated:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    z-index: 1;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--theme-color);
    border-radius: 50%;
}
.dashboard-section .radio_animated:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 100%;
    border: 1px solid #eee;
}
.dashboard-section .radio_animated:checked::after {
    border-color: var(--theme-color);
}
.dashboard-section .radio_animated:checked:before {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.dashboard-section .radio_animated ~ .form-check-label {
    margin: 0;
}
.dashboard-section .apexcharts-toolbar {
    z-index: 1;
}
.user-dashboard-section .box {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.7;
}
.user-dashboard-section h6 {
    margin-bottom: 0;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    line-height: 1.3;
}
.user-dashboard-section .welcome-msg {
    margin-bottom: 20px;
}
.user-dashboard-section .welcome-msg h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}
.user-dashboard-section .welcome-msg p {
    line-height: 1.6;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    letter-spacing: unset;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.user-dashboard-section .box-head h4 {
    font-size: 18px;
    margin: 34px 0 14px;
    text-transform: capitalize;
    color: #333;
    font-weight: 600;
}
.user-dashboard-section .box a {
    color: var(--theme-color);
}
.user-dashboard-section .box h6 {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}
.user-dashboard-section .box .box-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
    padding: 12px;
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
}
.user-dashboard-section .box .box-title h3 {
    font-size: 16px;
    margin: 0;
    text-transform: capitalize;
    color: #333;
    line-height: 1.3;
    font-weight: 500;
}
.user-dashboard-section .box .box-title > a {
    margin-left: auto;
    color: var(--theme-color);
}
.user-dashboard-section .box address {
    margin-bottom: 0;
}
.user-dashboard-section .faq-content {
    height: 100%;
}
.user-dashboard-section .faq-content .box-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.user-dashboard-section .faq-content .box-loader .loader-wrapper {
    position: relative;
    width: 100%;
    z-index: 4;
    height: 100%;
    inset: unset;
    background-color: #f8f8f8;
    border: 1px solid #eee;
}
.user-dashboard-section .tab-pane .card-body {
    padding: calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320))) calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 0;
}
.user-dashboard-section .tab-pane .card-body .order-title {
    font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
    padding-bottom: 11px;
    margin-bottom: 16px;
    letter-spacing: unset;
    font-weight: 600;
    color: #222;
    border-bottom: 1px solid #dee2e6;
}
.user-dashboard-section .tab-pane .card-body .customer-detail ul li label {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 6px;
}
.user-dashboard-section .tab-pane .card-body .customer-detail ul li h4 {
    margin: 0;
    font-size: 15px;
    letter-spacing: unset;
    font-weight: 500;
    text-transform: unset;
    line-height: 1.3;
    color: #777;
}
.user-dashboard-section .tab-pane .card-body .tracking-total ul {
    display: grid;
    gap: 6px;
}
.user-dashboard-section .tab-pane .card-body .tracking-total ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}
.user-dashboard-section .tab-pane .card-body .tracking-total ul li:nth-child(3) {
    font-weight: 600;
}
.user-dashboard-section .tab-pane .card-body .tracking-total ul li:last-child {
    padding-top: 8px;
    margin-top: 2px;
    border-top: 1px solid #dee2e6;
    font-weight: 600;
    font-size: 18px;
}
.user-dashboard-section .tab-pane .card-body .wallet-point-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
}
.user-dashboard-section .tab-pane .card-body .wallet-point-box .total-image {
    width: 69px;
    height: 69px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0;
    padding: 10px;
}
.user-dashboard-section .tab-pane .card-body .wallet-point-box .total-image img {
    width: 100%;
    height: 100%;
}
.user-dashboard-section .tab-pane .card-body .wallet-point-box .total-detail {
    width: calc(100% - 69px - 13px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.user-dashboard-section .tab-pane .card-body .wallet-point-box .total-detail .point-ratio {
    background-color: #fff;
    padding: 15px 18px;
    border-radius: 0;
}
.user-dashboard-section .tab-pane .card-body .wallet-point-box .total-detail .point-ratio .counter {
    text-transform: none;
    letter-spacing: unset;
    font-size: 18px;
    margin: 0;
    color: #232323;
    font-weight: 600;
}
.user-dashboard-section .tab-pane .card-body .wallet-point-box .total-detail .total-box h5 {
    margin: 0;
    font-weight: 500;
    color: #777;
}
.user-dashboard-section .tab-pane .card-body .wallet-point-box .total-detail .total-box h3 {
    margin: 0;
    margin-top: 3px;
    font-size: 19px;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 600;
    color: #232323;
}
.user-dashboard-section .wallet-point-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
    padding: calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320)));
    border: 1px solid #eeeeee;
    background-color: #f8f8f8;
    border-radius: 0;
}
.user-dashboard-section .wallet-point-box .total-image {
    width: 69px;
    height: 69px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0;
    padding: 10px;
}
.user-dashboard-section .wallet-point-box .total-image img {
    width: 100%;
    height: 100%;
}
.user-dashboard-section .wallet-point-box .total-detail {
    width: calc(100% - 69px - 13px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.user-dashboard-section .wallet-point-box .total-detail .point-ratio {
    background-color: #fff;
    padding: 15px 18px;
    border-radius: 0;
}
.user-dashboard-section .wallet-point-box .total-detail .point-ratio .counter {
    text-transform: none;
    letter-spacing: unset;
    font-size: 18px;
    margin: 0;
    color: #232323;
    font-weight: 600;
}
.user-dashboard-section .wallet-point-box .total-detail .total-box h5 {
    margin: 0;
    font-weight: 500;
    color: #777;
}
.user-dashboard-section .wallet-point-box .total-detail .total-box h3 {
    margin: 0;
    margin-top: 3px;
    font-size: 19px;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 600;
    color: #232323;
}
.user-dashboard-section .edit-link {
    color: var(--theme-color);
    margin-left: 10px;
    text-transform: capitalize;
}
.user-dashboard-section .address-book-section .select-box .address-box {
    padding: 15px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.user-dashboard-section .address-book-section .select-box .address-box .top h6 {
    text-transform: capitalize;
    color: #222;
    font-weight: 600;
    font-size: 14px;
}
.user-dashboard-section .address-book-section .select-box .address-box .top h6 span {
    float: right;
    background-color: var(--theme-color);
    color: #fff;
    padding: 2px 15px;
    font-size: 80%;
    border-radius: 0;
}
.user-dashboard-section .address-book-section .select-box .address-box .middle {
    margin-top: 15px;
}
.user-dashboard-section .address-book-section .select-box .address-box .middle .address p {
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}
.user-dashboard-section .address-book-section .select-box .address-box .middle .number {
    margin-top: 15px;
}
.user-dashboard-section .address-book-section .select-box .address-box .middle .number p {
    color: rgba(0, 0, 0, 0.7);
    text-transform: capitalize;
}
.user-dashboard-section .address-book-section .select-box .address-box .card-number {
    margin-top: 15px;
}
.user-dashboard-section .address-book-section .select-box .address-box .card-number h6,
.user-dashboard-section .address-book-section .select-box .address-box .card-number h5 {
    margin-bottom: 0;
}
.user-dashboard-section .address-book-section .select-box .address-box .name-validity {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.user-dashboard-section .address-book-section .select-box .address-box .name-validity h6 {
    text-transform: capitalize;
}
.user-dashboard-section .address-book-section .select-box .address-box .name-validity h5,
.user-dashboard-section .address-book-section .select-box .address-box .name-validity h6 {
    margin-bottom: 0;
}
.user-dashboard-section .address-book-section .select-box .address-box .name-validity .right {
    margin-left: auto;
}
.user-dashboard-section .address-book-section .select-box .address-box .bank-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.user-dashboard-section .address-book-section .select-box .address-box .bank-logo img {
    height: 22px;
}
.user-dashboard-section .address-book-section .select-box .address-box .bank-logo .network-logo {
    margin-left: auto;
    width: 50px;
    height: auto;
}
.user-dashboard-section .address-book-section .select-box .address-box .address p {
    font-size: 14px;
    font-weight: 500;
    color: #777;
}
.user-dashboard-section .address-book-section .select-box .address-box .bottom {
    border-top: 1px solid #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    padding-top: 14px;
    margin-top: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.user-dashboard-section .address-book-section .select-box .address-box .bottom .bottom_btn {
    width: 47.5%;
    text-transform: capitalize;
    font-weight: 600;
    padding: 8px 4px;
    border-radius: 0;
    background-color: #f8f8f8;
    color: #222;
}
.user-dashboard-section .address-book-section .select-box.active .address-box {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.user-dashboard-section.dashboard-section .dashboard-table .table thead th {
    font-size: 18px;
    background-color: #f8f8f8;
}
.user-dashboard-section .order-table thead tr th {
    background-color: transparent;
}
.faq-tab .nav-tabs {
    display: block;
    border-bottom: none;
    background-color: #fff;
    padding: 10px 0;
}
.faq-tab .nav-tabs .nav-item {
    display: block;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .faq-tab .nav-tabs .nav-item {
        width: 100%;
    }
}
.faq-tab .nav-tabs .nav-item .nav-link {
    text-transform: capitalize;
    color: #232323;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    border: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-radius: 0;
    width: 100%;
    background-color: #f8f8f8;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: 500;
}
@media (max-width: 991px) {
    .faq-tab .nav-tabs .nav-item .nav-link {
        background-color: #fff;
        padding-block: calc(6px + (8 - 6) * ((100vw - 320px) / (1920 - 320)));
    }
}
.faq-tab .nav-tabs .nav-item .nav-link i {
    width: calc(36px + (40 - 36) * ((100vw - 320px) / (1920 - 320)));
    height: calc(36px + (40 - 36) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
    font-size: calc(16px + (19 - 16) * ((100vw - 320px) / (1920 - 320)));
}
@media (max-width: 991px) {
    .faq-tab .nav-tabs .nav-item .nav-link i {
        background-color: #f8f8f8;
    }
}
.faq-tab .nav-tabs .nav-item .nav-link.active {
    border: none;
    border-radius: 0;
    color: var(--theme-color);
}
.faq-tab .nav-tabs .nav-item .nav-link.active i {
    background-color: var(--theme-color);
    color: #fff;
}
.faq-tab .nav-tabs .nav-item .nav-link:hover {
    border: none;
    color: var(--theme-color);
}
.faq-tab .nav-tabs .nav-item .nav-link:hover i {
    border: 1px solid var(--theme-color);
}
.faq-tab .nav-tabs .logout-cls {
    border-top: 1px solid #eee;
    margin-top: 6px;
    padding-top: 14px;
    padding-inline: 19px;
}
.faq-tab .nav-tabs .logout-cls .loagout-btn {
    width: 100%;
    background-color: var(--theme-color);
    color: #fff;
    text-transform: none;
    font-weight: 500;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.3;
    padding: calc(9px + (11 - 9) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 0;
}
.card {
    border: 1px solid #eee;
    background-color: #f8f8f8;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.card .card-body {
    padding: calc(15px + (12 - 15) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 0;
}
.card .card-body .notification-list {
    display: grid;
    gap: 13px;
}
.card .card-body .notification-list li {
    display: block;
    border-radius: 0;
    border: 1px solid #eee;
    background-color: #fff;
    padding: calc(13px + (20 - 13) * ((100vw - 320px) / (1920 - 320))) calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
    padding-left: calc(33px + (46 - 33) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
}
.card .card-body .notification-list li::after {
    content: "";
    position: absolute;
    left: calc(18px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));
    top: 31px;
    width: 5px;
    height: 5px;
    background-color: #8e8e8e;
    border-radius: 100%;
}
.card .card-body .notification-list li.unread {
    position: relative;
    background-color: transparent;
    z-index: 0;
    border: 1px solid var(--theme-color);
}
.card .card-body .notification-list li.unread::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: 0.09;
    z-index: -1;
}
.card .card-body .notification-list li.unread h4 {
    color: var(--theme-color);
    font-weight: 600;
}
.card .card-body .notification-list li.unread h5 {
    color: #222;
}
.card .card-body .notification-list li.unread::after {
    background-color: var(--theme-color);
}
.card .card-body .notification-list h4 {
    font-weight: 500;
    color: #222;
    letter-spacing: unset;
    text-transform: none;
    line-height: 1.5;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
}
.card .card-body .notification-list h5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #777;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.3;
}
.video-cls {
    width: 100%;
    margin-bottom: -7px;
}
.element-page .product-element .card {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.element-page .card {
    -webkit-box-shadow: 0 0 8px #e1e1e1 !important;
    box-shadow: 0 0 8px #e1e1e1 !important;
}
.title-padding .card .card-body {
    padding: 20px;
}
.coupon-box {
    position: relative;
    padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
    background: #f8f8f8;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
}
.coupon-box .coupon-name {
    display: block;
}
.coupon-box .coupon-name h5 {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
    margin: 0;
    line-height: 1.4;
}
.coupon-box .coupon-content {
    margin-top: calc(3px + (8 - 3) * ((100vw - 320px) / (1920 - 320)));
}
.coupon-box .coupon-content p {
    color: #777;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-weight: 500;
    -webkit-box-orient: vertical;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: calc(6px + (11 - 6) * ((100vw - 320px) / (1920 - 320)));
}
.coupon-box .coupon-content .coupon-apply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)));
    border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
.coupon-box .coupon-content .coupon-apply h6 {
    font-weight: 600;
    color: #232323;
    line-height: 1.3;
    margin: 0;
    font-size: 15px;
}
.coupon-box .coupon-content .coupon-apply .copy-btn {
    border: unset;
    color: var(--theme-color);
    padding: 0;
}
.sticky-details {
    position: sticky;
    top: 0px;
    left: 0;
}
@media (max-width: 991px) {
    .product-page-details {
        margin-top: 15px;
    }
}
.product-page-details .main-title {
    text-transform: capitalize;
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.4;
}
@media (max-width: 767px) {
    .product-page-details .main-title {
        text-align: center;
    }
}
.product-page-details .product-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-top: 10px;
}
@media (max-width: 767px) {
    .product-page-details .product-rating {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.product-page-details .product-rating .divider {
    color: #ddd;
}
.product-page-details .product-rating .rating-list {
    color: #ffbc37;
}
.product-page-details .product-rating .rating-list i {
    font-size: 18px;
}
.product-page-details .product-rating a {
    color: var(--theme-color);
    text-decoration: underline;
}
@media (max-width: 767px) {
    .product-page-details .price-text {
        text-align: center;
    }
}
.product-page-details .price-text h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-block: 15px 4px;
    color: var(--theme-color);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320)));
}
@media (max-width: 767px) {
    .product-page-details .price-text h3 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.product-page-details .price-text h3 .discounted-price {
    font-weight: 500;
    padding: 5px calc(12px + 0.0025 * (100vw - 320px));
    border-radius: 0;
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 0;
    margin-left: 12px;
    font-size: 16px;
    position: relative;
}
.product-page-details .price-text h3 .discounted-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: 0.11;
}
.product-page-details .price-text h3 .discounted-price del {
    font-size: 18px;
}
.product-page-details .price-text span {
    color: #aaa;
    display: block;
}
.product-page-details .size-delivery-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    border-block: 1px dashed #eee;
    padding-block: 12px;
    margin-block: 14px 20px;
    gap: calc(8px + (15 - 8) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
@media (max-width: 767px) {
    .product-page-details .size-delivery-info {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.product-page-details .size-delivery-info a {
    color: #7d7d7d;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product-page-details .size-delivery-info a span {
    position: relative;
    width: 1px;
    height: 26px;
    background-color: #eee;
    display: block;
    border-radius: 100%;
}
.product-page-details .size-delivery-info a i {
    margin-right: 10px;
}
.product-page-details .product-offer li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    font-size: 14px;
}
.product-page-details .product-offer li:last-child h5 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.product-page-details .product-offer li buy-button img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}
.product-page-details .product-offer li h5 {
    font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (1920 - 320)));
}
.product-page-details .product-offer.delivery-details {
    display: grid;
    gap: 10px;
}
.product-page-details .product-offer.delivery-details li {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #626262;
}
.product-page-details .product-offer.delivery-details li i {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #626262;
}
.product-page-details .description-text {
    color: #7d7d7d;
    line-height: 1.5;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    margin-top: 12px;
}
.product-page-details .progress {
    background-color: #f6f6f6;
    height: 10px;
    border-radius: 14px;
}
.product-page-details .progress .progress-bar {
    background-image: -webkit-gradient(linear, right top, left top, from(#438600), to(#8fd747));
    background-image: linear-gradient(to left, #438600, #8fd747);
}
.product-page-details .left-progressbar {
    margin-top: 13px;
}
.product-page-details .left-progressbar h6 {
    color: #7d7d7d;
}
.product-page-details .buy-box {
    margin-top: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
@media (max-width: 767px) {
    .product-page-details .buy-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.product-page-details .buy-box a {
    color: #4c4c4c;
}
.product-page-details .bordered-box {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dashed #ddd;
}
.product-page-details .dashed-border-box {
    padding: 22px 28px;
    border: 1px dashed #ddd;
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 34px;
}
.product-page-details .dashed-border-box h4 {
    margin-top: -30px;
    background-color: #fff;
    padding-inline: 8px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.product-page-details .dashed-border-box .payment-img {
    width: 300px;
}
.product-page-details .shipping-info {
    display: grid;
    line-height: 1.5;
    color: #5f5f5f;
    font-size: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding-left: 20px;
    margin-bottom: -7px;
}
@media (max-width: 425px) {
    .product-page-details .shipping-info {
        display: grid;
        grid-template-columns: 1fr;
    }
}
.product-page-details .shipping-info li {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    display: list-item;
    color: #7d7d7d;
}
.product-page-details .qty-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.product-page-details .qty-section .qty-box .input-group {
    background-color: #fafafa;
    padding: 6px 6px;
    overflow: hidden;
    border: 1px solid #eee;
}
.product-page-details .qty-section .qty-box .input-group input {
    background-color: #fafafa;
    border: none;
    padding: 6px 5px;
    width: calc(40px + (90 - 30) * ((100vw - 320px) / (1920 - 320)));
}
.product-page-details .qty-section .qty-box .input-group button {
    padding: 5px calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
    background-color: #fff !important;
    -webkit-box-shadow: 0 0 8px #e8e8e8;
    box-shadow: 0 0 8px #e8e8e8;
    border: none;
}
.product-page-details .variation-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
@media (max-width: 767px) {
    .product-page-details .variation-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.product-page-details .variation-box .sub-title {
    margin-bottom: 0;
}
.product-page-details .wishlist-btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.product-page-details .wishlist-btn-group button {
    padding: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #eee;
    background-color: #fafafa;
    -webkit-transition: none;
    transition: none;
    font-size: 16px;
    line-height: 1;
    color: #6a6a6a;
}
.product-page-details .image-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.product-page-details .image-box li {
    border: 1px solid #eee;
    padding: 3px;
}
.product-page-details .image-box li img {
    width: 65px;
    cursor: pointer;
    height: 65px;
    padding: 0;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}
.product-page-details .image-box li.active {
    border: 1px solid var(--theme-color);
}
.product-page-details .sub-title {
    font-weight: 600;
    margin-bottom: calc(8px + (15 - 8) * ((100vw - 320px) / (1920 - 320)));
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.01em;
}
.product-page-details .quantity-variant {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background-color: #fafafa;
    padding: 6px 6px;
    overflow: hidden;
    border: 1px solid #eee;
}
.product-page-details .quantity-variant li {
    padding: 6px 10px;
    background-color: #fafafa;
}
.product-page-details .quantity-variant li button {
    border: none;
    font-size: 14px;
    font-weight: 500;
    background-color: #fafafa;
}
.product-page-details .quantity-variant li.active {
    background-color: #fff;
    border: 1px solid var(--theme-color);
}
.product-page-details .quantity-variant li.active button {
    color: var(--theme-color);
    background-color: #fff;
}
.product-page-details .quantity-variant.round li span {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: block;
    cursor: pointer;
}
.product-page-details .quantity-variant.circle li {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
}
.product-page-details .quantity-variant.radio .digital-size {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product-page-details .quantity-variant.radio .digital-size .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    min-height: unset;
    margin-bottom: 0;
    padding: 0;
}
.product-page-details .quantity-variant.radio .digital-size .form-check .form-check-input {
    width: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
    height: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
    margin: 0px;
    background-color: #fff;
    border: 1px solid #eee;
    -webkit-filter: unset;
    filter: unset;
    border-radius: 100%;
}
.product-page-details .quantity-variant.radio .digital-size .form-check .form-check-input:focus {
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.product-page-details .quantity-variant.radio .digital-size .form-check .form-check-input:checked {
    position: relative;
    background-color: #fff;
    border-color: var(--theme-color);
    float: unset;
}
.product-page-details .quantity-variant.radio .digital-size .form-check .form-check-input:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--theme-color);
    border-radius: 100%;
}
.product-page-details .quantity-variant.radio .digital-size .form-check .form-check-label {
    font-size: calc(13px + (18 - 13) * ((100vw - 320px) / (1920 - 320)));
}
.product-page-details .quantity-variant.select-dropdown.form-select {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 150px !important;
}
.product-page-details .product-buttons {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .product-page-details .product-buttons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .product-page-details .product-buttons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.product-page-details .product-buttons .btn {
    padding: calc(10px + (13 - 10) * ((100vw - 320px) / (1920 - 320))) calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.product-page-details .product-buttons .btn.btn-sm {
    padding: 13px 18px;
}
.product-page-details .product-buttons .btn.buy-button:hover {
    color: #222;
    background-color: #fff;
    border: 1px solid --theme-color;
}
.product-page-details .product-buttons .btn.disabled {
    color: #fff;
}
.product-page-details .product-buttons .btn.disabled .ring-animation {
    -webkit-animation: none;
    animation: none;
}
.product-page-details .product-buttons .btn-animation i {
    font-size: 15px;
}
.product-page-details .trending-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.product-page-details .trending-text img {
    width: 30px;
}
.product-page-details .trending-text h5 {
    margin-bottom: 0;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.4;
}
@media (max-width: 767px) {
    .product-page-details .trending-text {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.product-page-details .top-title-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product-page-details.detail-box {
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f8f8;
}
.product-page-details.detail-box .progress {
    background-color: #fff;
}
.product-page-details.detail-box .quantity-variant {
    background-color: white !important;
}
.product-page-details.detail-box .quantity-variant li {
    background-color: white !important;
}
.product-page-details.detail-box .quantity-variant li button {
    background-color: #fff;
}
.product-page-details.detail-box .quantity-variant li.active {
    background-color: #f8f8f8 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.product-page-details.detail-box .quantity-variant li.active button {
    background-color: #f8f8f8 !important;
}
.product-page-details.detail-box .qty-section .qty-box .input-group {
    background-color: #fff;
}
.product-page-details.detail-box .qty-section .qty-box .input-group input {
    background-color: #fff;
}
.product-page-details.detail-box .qty-section .qty-box .input-group button {
    background-color: #f8f8f8 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.product-page-details .product-accordion .accordion-item {
    border: none;
    background-color: transparent;
}
.product-page-details .product-accordion .accordion-item + .accordion-item {
    margin-top: 15px;
}
.product-page-details .product-accordion .accordion-item .accordion-header {
    margin-bottom: 0;
}
.product-page-details .product-accordion .accordion-item .accordion-header .accordion-button {
    z-index: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    line-height: 1.3;
    color: #232323;
    text-align: center;
    padding: 12px 18px;
    text-decoration: unset;
    text-transform: capitalize;
    border: 1px solid #eee;
    font-weight: 500;
    background-color: #f8f8f8;
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    margin: 0;
    border-radius: 0;
}
.product-page-details .product-accordion .accordion-item .accordion-header .accordion-button::after {
    content: "\ea4e";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    width: unset;
    height: unset;
    background: unset;
    font-size: 22px;
    line-height: 1;
}
.product-page-details .product-accordion .accordion-item .accordion-body {
    padding: 15px 0 0;
}
.product-page-details .product-accordion .accordion-item .accordion-body p {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    color: #7d7d7d;
}
.product-page-details .product-accordion .accordion-item .accordion-body .bordered-box .delivery-details {
    display: grid;
    gap: 10px;
}
.product-page-details .product-accordion .accordion-item .accordion-body .bordered-box .delivery-details li {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #626262;
}
.product-page-details.product-form-box {
    position: sticky;
    top: 20px;
    left: 0;
    text-align: center;
    border: 1px solid #eee;
    padding: 20px;
}
.product-page-details.product-form-box .product-description .qty-box {
    margin-bottom: 5px;
}
.product-page-details.product-form-box .product-description .qty-box .input-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}
.product-page-details.product-form-box .product-buttons {
    margin-bottom: 0;
}
.product-page-details.product-form-box .timer {
    margin-bottom: 10px;
    text-align: left;
}
.product_image_4 {
    position: sticky;
    top: 120px;
    left: 0;
}
.product_image_4 > div:nth-last-child(-n + 2) {
    margin-top: 25px;
}
.secondary-color {
    background-color: grey !important;
}
.blue-color {
    background-color: blue !important;
}
.purple-color {
    background-color: purple !important;
}
.image-grid {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    gap: 10px;
    margin-top: 30px;
}
.image-grid > div:first-child {
    grid-row: 1 / 3;
}
.image-grid > div:first-child img {
    height: 100%;
}
.product-label {
    background-color: #fdf2ec;
    position: absolute;
    top: 15px;
    z-index: 1;
    left: 15px;
    padding: 5px 12px;
    color: var(--theme-color);
    font-weight: 500;
    font-size: 15px;
}
.sticky-top-custom {
    position: sticky !important;
    top: 30px;
    z-index: 1;
}
.disabled {
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    opacity: 0.6 !important;
    pointer-events: none;
}
.disabled:after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    left: 0;
    background-color: #ff7272;
    width: 100%;
    height: 1px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
}
.disabled:before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    left: 0;
    background-color: #ff7272;
    width: 100%;
    height: 1px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
}
.clock {
    border: 2px solid #212529;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    background-color: #fff;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.clock:before {
    border-radius: 3px;
    content: "";
    position: absolute;
    -webkit-transform-origin: 1px 1px;
    transform-origin: 1px 1px;
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
    top: 7px;
    left: 7px;
    margin: 0 0 0 0;
    height: 2px;
    width: 8px;
    background: #212529;
    -webkit-animation-name: clock;
    animation-name: clock;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: backward;
    animation-direction: backward;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.clock:after {
    border-radius: 3px;
    content: "";
    position: absolute;
    -webkit-transform-origin: 1px 1px;
    transform-origin: 1px 1px;
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
    top: 7px;
    left: 7px;
    margin: 0 0 0 0;
    height: 2px;
    width: 5.26316px;
    background: #212529;
    -webkit-animation-name: clock;
    animation-name: clock;
    -webkit-animation-duration: 24s;
    animation-duration: 24s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: backward;
    animation-direction: backward;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.product-slider-image {
    background-color: #f8f8f8;
    border: 1px solid #eee;
}
@-webkit-keyframes clock {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes clock {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.color-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}
.color-panel.coverflow ul li {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    border: 2px solid #fff;
}
.color-panel.coverflow ul li + li {
    margin-left: -13px;
}
.color-panel.color-lg ul {
    gap: 7px;
}
.color-panel.color-lg li {
    width: 20px;
    height: 20px;
}
.color-panel ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}
.color-panel ul li {
    width: 15px;
    height: 15px;
    border-radius: 100%;
}
.color-panel span {
    font-size: 13px;
}
@-webkit-keyframes animName {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes animName {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.general-variant {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.general-variant.color li {
    border-radius: 100%;
    width: 22px;
    height: 22px;
}
.general-variant.image li {
    width: 45px;
    height: 45px;
    background-color: #f8f8f8;
}
.general-variant.image li button {
    width: 100%;
    height: 100%;
}
.general-variant.image li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.general-variant.rectangle li {
    width: auto;
    height: auto;
    padding: 6px 8px;
    font-size: 12px;
}
.general-variant.rectangle li button {
    font-weight: 500;
}
.general-variant.thumbnail {
    position: absolute;
    bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 10px;
    gap: 10px;
    margin: 0;
}
.general-variant.thumbnail li {
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid #fff;
}
.general-variant.thumbnail li button,
.general-variant.thumbnail li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.general-variant.thumbnail li.active {
    border-color: var(--theme-color);
}
.general-variant li {
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.general-variant li button {
    outline: none;
    border: none;
    background: transparent;
    padding: 0;
}
@keyframes marquee-discount {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}
.tab-product,
.product-full-tab {
    padding-top: 30px;
}
.tab-product .nav-material.nav-tabs,
.product-full-tab .nav-material.nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320)));
    gap: calc(8px + (18 - 8) * ((100vw - 320px) / (1920 - 320)));
    overflow: auto;
    background-color: #f8f8f8;
    border: 1px solid #eee;
}
.tab-product .nav-material.nav-tabs.tab-style .nav-link,
.product-full-tab .nav-material.nav-tabs.tab-style .nav-link {
    padding: 8px 10px;
}
.tab-product .nav-material.nav-tabs .nav-item .nav-link,
.product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
    color: #222;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-align: center;
    padding: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320))) calc(10px + (25 - 10) * ((100vw - 320px) / (1920 - 320)));
    background-color: #fff;
    text-transform: capitalize;
    border: 1px solid #eee;
    font-weight: 500;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 0;
}
.tab-product .nav-material.nav-tabs .nav-link.active,
.product-full-tab .nav-material.nav-tabs .nav-link.active {
    color: white;
    background-color: var(--theme-color);
    font-weight: 600;
    border: 1px solid var(--theme-color);
}
.tab-product .nav-material.nav-tabs .nav-link.active ~ .material-border,
.product-full-tab .nav-material.nav-tabs .nav-link.active ~ .material-border {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
}
.tab-product .theme-form label,
.product-full-tab .theme-form label {
    font-weight: 500;
    color: #222;
}
.tab-product .theme-form input,
.product-full-tab .theme-form input {
    border-color: #ddd;
    font-size: 15px;
    padding: 15px 25px;
    margin-bottom: 15px;
    height: inherit;
    text-align: left;
}
.tab-product .theme-form .btn-solid,
.tab-product .theme-form .btn-outline,
.product-full-tab .theme-form .btn-solid,
.product-full-tab .theme-form .btn-outline {
    margin: 0 auto;
}
.tab-product .theme-form textarea,
.product-full-tab .theme-form textarea {
    border-color: #ddd;
    font-size: 15px;
    padding: 17px 25px;
    margin-bottom: 15px;
    height: inherit;
}
.tab-product .tab-content.nav-material,
.product-full-tab .tab-content.nav-material {
    padding: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    border: 1px solid #eee;
    border-top: none;
}
.tab-product .tab-content.nav-material p,
.product-full-tab .tab-content.nav-material p {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.tab-product .tab-content.nav-material.vertical-tab,
.product-full-tab .tab-content.nav-material.vertical-tab {
    margin-top: 15px;
}
.tab-product .product-tab-description .part,
.product-full-tab .product-tab-description .part {
    margin-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.tab-product .product-tab-description .part p + p,
.product-full-tab .product-tab-description .part p + p {
    margin-top: 4px;
}
.tab-product .product-tab-description .part .inner-title,
.product-full-tab .product-tab-description .part .inner-title {
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
}
.tab-product .product-tab-description .part:last-child,
.product-full-tab .product-tab-description .part:last-child {
    margin-bottom: 0;
}
.tab-product .title,
.product-full-tab .title {
    padding-right: 45px;
    color: var(--theme-color);
    padding-bottom: 20px;
}
.tab-product .theme-slider .slick-arrow,
.product-full-tab .theme-slider .slick-arrow {
    top: -45px;
    height: auto;
}
.tab-product .theme-slider .slick-arrow :before,
.product-full-tab .theme-slider .slick-arrow :before {
    color: #000;
    font-size: 18px;
}
.tab-product .product-box,
.product-full-tab .product-box {
    position: relative;
    margin: 5px;
}
.tab-product .product-box:hover,
.product-full-tab .product-box:hover {
    -webkit-box-shadow: 0 0 12px 0 #ddd;
    box-shadow: 0 0 12px 0 #ddd;
}
.tab-product .product-box:hover .lbl-1,
.product-full-tab .product-box:hover .lbl-1 {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tab-product .product-box:hover .lbl-2,
.product-full-tab .product-box:hover .lbl-2 {
    opacity: 1;
    -webkit-animation: flipInY 1000ms ease-in-out;
    animation: flipInY 1000ms ease-in-out;
}
.tab-product .product-box:hover .color-variant li,
.product-full-tab .product-box:hover .color-variant li {
    opacity: 1 !important;
    -webkit-animation: fadeInUp 500ms ease-in-out;
    animation: fadeInUp 500ms ease-in-out;
}
.tab-product .product-box .img-block,
.product-full-tab .product-box .img-block {
    min-height: unset;
}
.tab-product .product-box .cart-info,
.product-full-tab .product-box .cart-info {
    position: absolute;
    padding: 10px 0;
    top: 25%;
    right: 15px;
    width: 40px;
    margin-right: 0;
}
.tab-product .product-box .cart-info i,
.product-full-tab .product-box .cart-info i {
    padding-right: 0;
}
.tab-product .product-box .cart-info a,
.tab-product .product-box .cart-info button,
.product-full-tab .product-box .cart-info a,
.product-full-tab .product-box .cart-info button {
    color: #333;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
    height: 35px;
    width: 35px;
    margin: 7px 0;
    border-radius: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0;
    -webkit-box-shadow: 0 0 12px 0 #ddd;
    box-shadow: 0 0 12px 0 #ddd;
}
.tab-product .product-box .cart-info a :hover,
.tab-product .product-box .cart-info button :hover,
.product-full-tab .product-box .cart-info a :hover,
.product-full-tab .product-box .cart-info button :hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--theme-color);
}
.tab-product .product-box .lbl-1,
.product-full-tab .product-box .lbl-1 {
    background-color: var(--theme-color);
    padding: 2px 20px 2px 10px;
    display: inline-block;
    text-align: center;
    color: #fff;
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
}
.tab-product .product-box .lbl-1:before,
.product-full-tab .product-box .lbl-1:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 12px solid var(--theme-color);
    border-bottom: 13px solid var(--theme-color);
    border-right: 7px solid #fff;
}
.tab-product .product-box .lbl-2,
.product-full-tab .product-box .lbl-2 {
    font-size: 14px;
    top: 15px;
    position: absolute;
    right: 10px;
    color: #333333;
    font-weight: 600;
    text-transform: capitalize;
    opacity: 0;
}
.tab-product .product-box a,
.product-full-tab .product-box a {
    color: #0072bb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}
.tab-product .product-box .color-variant,
.product-full-tab .product-box .color-variant {
    position: absolute;
    top: -35px;
    width: 100%;
}
.tab-product .product-box .slick-slide img,
.product-full-tab .product-box .slick-slide img {
    display: block;
}
.tab-product .product-box .product-details,
.product-full-tab .product-box .product-details {
    position: relative;
}
.tab-product .product-box .product-details .color-variant,
.product-full-tab .product-box .product-details .color-variant {
    position: absolute;
    top: -35px;
    width: 100%;
}
.tab-product .product-box .product-details .color-variant li,
.product-full-tab .product-box .product-details .color-variant li {
    opacity: 0;
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 100%;
    margin: 0 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.tab-product .product-box .product-details h6,
.product-full-tab .product-box .product-details h6 {
    color: #333333;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.tab-product .product-box .product-details .price,
.product-full-tab .product-box .product-details .price {
    padding-bottom: 10px;
    font-size: 16px;
    color: var(--theme-color);
}
.question-answer li {
    display: block;
    margin-bottom: 25px;
    padding-bottom: 19px;
    border-bottom: 1px solid #eee;
}
.question-answer li .question-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}
.question-answer li .question-box h5 {
    border: 1px solid #eee;
    background-color: #f8f8f8;
    text-transform: capitalize;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    width: auto;
    height: 30px;
    font-weight: 600;
    padding-inline: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
}
.question-answer li .question-box .link-dislike-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
    margin-left: auto;
}
.question-answer li .question-box .link-dislike-box li {
    margin: 0;
    padding: 0;
    border: unset;
}
.question-answer li .question-box .link-dislike-box li a span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    color: rgba(74, 85, 104, 0.671);
}
.question-answer li .question-box .link-dislike-box li a span i {
    font-size: 16px;
}
.question-answer li .answer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}
.question-answer li .answer-box h5 {
    border: 1px solid transparent;
    background-color: var(--theme-color);
    color: #fff;
    text-transform: capitalize;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    width: auto;
    font-weight: 600;
    padding-inline: 7px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 3px;
}
.question-answer li .answer-box p {
    margin: 0;
    width: calc(100% - 15px - 30px);
    line-height: 1.5;
    color: #4a5568;
    letter-spacing: 0.6px;
}
.question-answer li h6 {
    margin: 0;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    letter-spacing: 0.02px;
    color: #222;
    line-height: 1.5;
}
.question-answer li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.question-answer li .report-text {
    text-align: right;
    font-size: 13px;
    color: rgba(74, 85, 104, 0.6);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 7px;
}
.question-answer li .report-text i {
    font-size: 15px;
}
.post-question-box {
    margin-bottom: 32px;
}
.post-question-box h4 {
    color: #222;
    font-weight: 500;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.4;
}
.post-question-box h4 a {
    width: auto;
    display: inline-block;
    font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    border: none;
    border-radius: 0;
    background-color: #f8f8f8;
    color: #222;
    padding: calc(9px + (12 - 9) * ((100vw - 320px) / (1920 - 320))) calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
}
.question-answer-modal h3 {
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.2;
    margin: 0;
    color: #222;
}
.question-answer-modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--theme-color);
    opacity: 1;
    background-image: none;
    border-radius: 0;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    color: #fff;
    margin: 0;
    padding: 3px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.question-answer-modal .product-wrapper {
    background-color: #f8f8f8;
    padding: 12px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 11px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}
.question-answer-modal .product-wrapper .product-image {
    width: 80px;
    height: 80px;
    background-color: #fff;
}
.question-answer-modal .product-wrapper .product-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.question-answer-modal .product-wrapper .product-content .name {
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.4;
}
.question-answer-modal .product-wrapper .product-content .price-number {
    margin-block: 3px 0;
    font-size: 16px;
    font-weight: 500;
}
.product-review-form .product-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 17px 23px;
    gap: 14px;
    margin-bottom: 15px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
}
.product-review-form .product-wrapper .product-image {
    width: 80px;
    border-radius: 0;
    overflow: hidden;
    background-color: #fff;
}
.product-review-form .product-wrapper .product-content .name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.1;
}
.product-review-form .product-wrapper .product-content .product-review-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}
.product-review-form .product-wrapper .product-content .product-review-rating label {
    color: #777;
    font-weight: 400;
}
.product-review-form .product-wrapper .product-content .product-review-rating .price-number {
    color: #777;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
    margin: 5px 0 0;
    line-height: 1.3;
}
.product-review-form .product-wrapper .product-content .product-review-rating .rating-number {
    line-height: 1;
    margin-left: 8px;
    color: rgba(27, 27, 27, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
}
.product-review-form .product-wrapper .product-content .product-review-rating .rating-number i {
    margin-top: -1px;
}
.product-review-form .product-wrapper .product-content .product-review-rating .product-rating .rating li {
    line-height: 1;
}
.product-review-form .product-wrapper .product-content .product-review-rating .product-rating span i {
    font-size: 20px;
    color: #ffa200;
}
.product-review-form .product-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.product-review-form .product-rating .price-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 0;
    color: #777;
}
.product-review-form .product-rating span i {
    font-size: 20px;
    color: #ffa200;
}
.product-review-form .review-box + .review-box {
    margin-top: 21px;
}
.product-review-form .review-box .product-review-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
}
.product-review-form .review-box .product-review-rating .product-rating .rating li {
    line-height: 1;
}
.product-review-form .review-box .product-review-rating .product-rating .rating li i {
    font-size: 16px;
}
.review-title-2 {
    border-top: 1px solid #eee;
    margin-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    padding-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.review-title-2 h4 {
    font-weight: 600;
    text-transform: none;
    letter-spacing: unset;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 4px;
}
.review-title-2 p {
    letter-spacing: unset;
    font-weight: 400;
    line-height: 1.4;
}
.review-title-2 button {
    text-transform: capitalize;
    padding: calc(11px + 2 * (100vw - 320px) / 1600) calc(11px + 12 * (100vw - 320px) / 1600);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    background-color: var(--theme-color);
    color: #fff;
    margin-top: 17px;
    border-radius: 0;
    border: 1px solid transparent;
}
.review-title-2 button:hover,
.review-title-2 button:first-child:active {
    border-color: var(--theme-color);
    color: var(--theme-color);
    background-color: transparent;
}
.review-people {
    border-left: 1px solid #eee;
    padding-left: 23px;
    max-height: 400px;
    height: 100%;
    overflow: auto;
}
@media (max-width: 1199px) {
    .review-people {
        padding-left: unset;
        padding-top: 23px;
        border-left: unset;
        border-top: 1px solid #eee;
        margin-top: 23px;
    }
}
.review-people::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, 0.14);
}
.review-people::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f5;
    border-radius: 50px;
}
.review-people::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, 0.3);
}
@media (max-width: 991px) {
    .review-people {
        border: none;
        padding: 0;
        margin-top: 25px;
    }
}
.review-people .review-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 17px;
}
.review-people .review-list li {
    display: block;
    width: 100%;
}
.review-people .review-list li .people-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    width: 100%;
    padding: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320))) calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320)));
    background-color: #f8f8f8;
    border: 1px solid #eee;
}
@media (max-width: 480px) {
    .review-people .review-list li .people-box {
        display: block;
    }
}
.review-people .review-list li .people-box:hover .reply a {
    opacity: 1;
}
.review-people .review-list li .people-box .people-image img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
    .review-people .review-list li .people-box .people-image img {
        border-radius: 8px;
    }
}
.review-people .review-list li .people-box .people-text .user-round {
    width: 70px;
    height: 70px;
    -o-object-fit: contain;
    object-fit: contain;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 34px;
    border-radius: 0;
    margin: 0 auto;
}
.review-people .review-list li .people-box .people-text .user-round h4 {
    font-size: 41px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 0;
}
.review-people .review-list li .people-box .name-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #ececec;
    border-radius: 10px;
    color: #4a5568;
}
.review-people .review-list li .people-box .name-user h3 {
    font-size: 37px;
    font-weight: 600;
}
.review-people .review-list li .people-box .people-comment {
    width: calc(100% - 70px - 15px);
}
.review-people .review-list li .people-box .people-comment .people-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}
@media (max-width: 400px) {
    .review-people .review-list li .people-box .people-comment .people-name {
        display: block;
    }
}
.review-people .review-list li .people-box .people-comment .people-name .name {
    white-space: nowrap;
    display: block;
    font-weight: 600;
    font-size: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
    color: #232323;
}
.review-people .review-list li .people-box .people-comment .people-name .name:hover {
    color: #232323;
}
.review-people .review-list li .people-box .people-comment .people-name h6 {
    margin: 0;
    font-size: calc(13px + (15 - 13) * ((100vw - 320px) / (1920 - 320)));
    margin-right: auto;
}
.review-people .review-list li .people-box .people-comment .people-name .date-time {
    width: 100%;
    margin-top: 4px;
}
.review-people .review-list li .people-box .people-comment .people-name .date-time h6 {
    font-size: 13px;
    color: #777;
    margin-block: 4px 6px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.review-people .review-list li .people-box .people-comment .people-name .product-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 400px) {
    .review-people .review-list li .people-box .people-comment .people-name .product-rating {
        margin-top: 3px;
    }
}
.review-people .review-list li .people-box .people-comment .name {
    white-space: nowrap;
    display: block;
    font-weight: 600;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #656565;
}
.review-people .review-list li .people-box .people-comment .name:hover {
    color: var(--theme-color);
}
@media (max-width: 480px) {
    .review-people .review-list li .people-box .people-comment {
        padding: 0;
        width: 100%;
        margin-top: 16px;
    }
}
.review-people .review-list li .people-box .people-comment .date-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}
.review-people .review-list li .people-box .people-comment .date-time h6 {
    font-size: 13px;
    color: #777;
    margin: 0;
}
.review-people .review-list li .people-box .people-comment .product-rating .star-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    width: unset;
}
.review-people .review-list li .people-box .people-comment .product-rating .star-rating .ri-star-fill {
    color: #ffa200;
}
.review-people .review-list li .people-box .people-comment .product-rating .star-rating .ri-star-line {
    color: #ffa200;
}
.review-people .review-list li .people-box .reply {
    margin-top: 6px;
    line-height: 1.6;
    color: #4a5568;
    position: relative;
}
.review-people .review-list li .people-box .reply p {
    margin: 0;
    line-height: 1.6;
    letter-spacing: unset;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
}
@media (max-width: 480px) {
    .review-people .review-list li .people-box .reply p {
        width: 100%;
    }
}
@media (max-width: 400px) {
    .review-people .review-list li .people-box .reply p {
        margin-top: 7px;
    }
}
.single-product-tables {
    margin-top: 10px;
    display: block;
}
.single-product-tables table {
    width: 30%;
}
.single-product-tables table tr {
    height: 35px;
    color: #6d6d6d;
    font-size: 16px;
    letter-spacing: 0.01em;
}
.single-product-tables table tr td:nth-child(2) {
    font-weight: 500;
    color: black;
}
.single-product-tables.detail-section {
    margin-top: 0;
}
.single-product-tables.detail-section table {
    width: 55%;
}
.product-rating-box .base-rating i {
    font-size: calc(18px + (28 - 18) * ((100vw - 320px) / (1920 - 320)));
    color: #ffb321;
}
.product-rating-box .rating-number {
    font-weight: 700;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
    font-size: calc(32px + 10 * (100vw - 320px) / 1600);
}
.product-rating-box .rating-count {
    font-weight: 400;
    margin: 0;
    margin-top: calc(2px + 4 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: #777;
    text-transform: unset;
    letter-spacing: unset;
}
.product-rating-box .progressbar-list li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.product-rating-box .rating-box .product-rating span {
    font-size: calc(18px + (28 - 18) * ((100vw - 320px) / (1920 - 320)));
}
.product-rating-box .rating-box h4 {
    font-weight: 400;
    margin: 0;
    margin-top: calc(2px + (6 - 2) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #777;
    text-transform: unset;
    letter-spacing: unset;
}
.product-rating-box .product-main-rating {
    margin-bottom: calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.product-rating-box .product-main-rating h3 {
    font-size: 26px;
    font-weight: 600;
    color: #232323;
    letter-spacing: unset;
    margin-bottom: 10px;
}
.product-rating-box .product-main-rating h2 {
    font-weight: 700;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
    font-size: calc(32px + (42 - 32) * ((100vw - 320px) / (1920 - 320)));
}
.product-rating-box .product-main-rating h2 i {
    font-size: calc(19px + (23 - 19) * ((100vw - 320px) / (1920 - 320)));
    font-weight: normal;
    color: #ffb321;
}
.product-rating-box .product-main-rating h5 {
    line-height: 1.4;
    font-weight: 400;
    color: #4a5568;
    font-size: 17px;
}
.product-rating-box .product-rating-list {
    display: grid;
    gap: calc(7px + (12 - 7) * ((100vw - 320px) / (1920 - 320)));
}
.product-rating-box .product-rating-list li:nth-child(4) .rating-product .progress .progress-bar {
    background-color: #ffa53b;
}
.product-rating-box .product-rating-list li:last-child .rating-product .progress .progress-bar {
    background-color: #ff4f4f;
}
.product-rating-box .product-rating-list li .rating-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product-rating-box .product-rating-list li .rating-product h5 {
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    width: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    margin: 0;
}
.product-rating-box .product-rating-list li .rating-product h5 i {
    font-size: 15px;
    font-weight: normal;
}
.product-rating-box .product-rating-list li .rating-product .progress {
    width: calc(100% - 12px - 28px - 15px);
    height: 9px;
    border-radius: 100px;
}
.product-rating-box .product-rating-list li .rating-product .progress .progress-bar {
    border-radius: 100px;
}
.product-rating-box .product-rating-list li .rating-product .total {
    white-space: nowrap;
    color: rgba(74, 85, 104, 0.878);
    font-size: 16px;
    font-weight: 400;
    width: 15px;
    display: block;
}
.details-sidebar-accordion {
    border: 1px solid #eee;
}
.details-sidebar-accordion .accordion-item {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 0;
    border: none;
}
.details-sidebar-accordion .accordion-item .accordion-header {
    border-radius: 0;
}
.details-sidebar-accordion .accordion-item .accordion-header .accordion-button {
    color: #222;
    padding-inline: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    background-color: #f9f9f9;
    border-radius: 0;
}
.details-sidebar-accordion .accordion-item .accordion-header .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}
.details-sidebar-accordion .accordion-item .accordion-header .accordion-button.collapsed {
    padding-bottom: 0;
}
.details-sidebar-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    font-weight: 600;
}
.details-sidebar-accordion .accordion-item .accordion-header .accordion-button::after {
    content: "\ea4e";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    width: auto;
    height: auto;
    font-size: 24px;
    background: unset;
    font-weight: 100;
    line-height: 1;
}
.details-sidebar-accordion .accordion-item .accordion-body {
    padding: 0;
    background-color: #f9f9f9;
    max-height: 160px;
    overflow: hidden auto;
}
.details-sidebar-accordion .accordion-item .accordion-body::-webkit-scrollbar {
    width: 4px;
    height: 5px;
}
.details-sidebar-accordion .accordion-item .accordion-body::-webkit-scrollbar-thumb {
    background: var(--theme-color);
}
.details-sidebar-accordion .accordion-item .accordion-body::-webkit-scrollbar-track {
    background: #eaeaea;
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li {
    width: 100%;
    margin-bottom: 10px;
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: unset;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 0;
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-input {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #fff;
    float: unset;
    margin: 0;
    cursor: pointer;
    position: relative;
    border: unset;
    -webkit-filter: unset;
    filter: unset;
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-input:focus {
    border-color: #dee2e6;
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-input::after {
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    background-color: #fff;
    border: 2px solid #ececec;
    cursor: pointer;
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-input::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
    left: 4px;
    top: 6px;
    z-index: 1;
    border: 2px solid var(--theme-color);
    border-top-style: none;
    border-right-style: none;
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-input:checked::before {
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-input:checked ~ .form-check-label {
    color: var(--theme-color);
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-label {
    margin-bottom: 0;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    line-height: 1;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    color: #777;
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-label .star-rating .ri-star-fill {
    color: #ffa200;
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-label .star-rating .ri-star-line {
    color: #ffa200;
}
.details-sidebar-accordion .accordion-item .accordion-body .collection-listing li:last-child {
    margin-bottom: 0;
}
.details-sidebar-accordion .accordion-item .accordion-body.price-body {
    height: auto;
    padding-bottom: 0;
}
.details-sidebar-accordion.top-filter-accordion .accordion-item .accordion-header .accordion-button {
    background-color: #f9f9f9;
}
.details-sidebar-accordion.top-filter-accordion .accordion-item .accordion-body {
    background-color: #f9f9f9;
}
.theme-card.product-card {
    margin-top: 25px;
}
.theme-card.product-card .card-title {
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.theme-card.product-card .media-list .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.theme-card.product-card .media-list .media:last-child {
    margin-bottom: 0;
}
.theme-card.product-card .media-list .media .product-sm {
    width: 95px;
    height: 95px;
    -o-object-fit: cover;
    object-fit: cover;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    margin: 0;
}
.theme-card.product-card .media-list .media .media-body .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.theme-card.product-card .media-list .media .media-body .rating i {
    font-size: 16px;
    padding: 0;
    color: #ffa200;
}
.theme-card.product-card .media-list .media .media-body a h6 {
    font-weight: 500;
    font-size: 16px;
    color: #777;
}
.theme-card.product-card .media-list .media .media-body h4 {
    font-weight: 600;
    font-size: 18px;
    color: #222;
}
.product-service {
    margin-top: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
}
.product-service .media {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.product-service .media:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.product-service .media svg {
    height: 40px;
    width: 40px;
    fill: var(--theme-color);
}
.product-service .media svg path {
    fill: var(--theme-color);
}
.product-service .media .media-body {
    padding-left: 10px;
}
.product-service .media .media-body h4 {
    margin-bottom: calc(4px + (8 - 4) * ((100vw - 320px) / (1920 - 320)));
    font-size: 16px;
    font-weight: 600;
}
.product-service .media .media-body p {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
    margin-bottom: 0;
    text-transform: capitalize;
}
.product-service .media:last-child {
    padding-bottom: 0;
}
.border-product {
    padding-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    margin-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    border-top: 1px dashed #eee;
}
.border-product .bundle {
    margin-top: 10px;
}
.border-product .bundle .bundle-image-box {
    border-radius: 8px;
    overflow: hidden;
}
.border-product .bundle .bundle-image-box .bundle-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    border: 1px solid #eee;
    padding: 12px 12px;
    background-color: #f8f8f8;
    position: relative;
    text-align: left;
}
.border-product .bundle .bundle-image-box .bundle-box + .bundle-box {
    border-top: 1px solid #eee;
}
.border-product .bundle .bundle-image-box .bundle-box .form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 12px;
    right: 12px;
}
.border-product .bundle .bundle-image-box .bundle-box .form-check .form-check-input {
    float: unset;
    margin: 0;
    -webkit-filter: unset;
    filter: unset;
}
.border-product .bundle .bundle-image-box .bundle-box .bundle-image {
    width: 70px;
    height: 70px;
    background-color: #fff;
}
.border-product .bundle .bundle-image-box .bundle-box .bundle-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.border-product .bundle .bundle-image-box .bundle-box .bundle-content {
    width: calc(100% - 15px - 70px);
}
.border-product .bundle .bundle-image-box .bundle-box .bundle-content h3 {
    font-weight: 500;
    margin: 0;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    letter-spacing: 1.4px;
    margin-top: 9px;
    color: var(--theme-color);
}
.border-product .bundle .bundle-image-box .bundle-box .bundle-content .product-page-details {
    position: unset;
    inset: unset;
}
.border-product .bundle .bundle-image-box .bundle-box .bundle-content select {
    margin-left: 0;
    font-size: 14px;
    font-weight: 500;
    padding-block: 6px;
    color: #777;
    border: none;
    margin-top: calc(6px + (11 - 6) * ((100vw - 320px) / (1920 - 320)));
    text-transform: capitalize;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.border-product .bundle .bundle-image-box .bundle-box .bundle-content h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: unset;
    text-transform: unset;
    margin-bottom: 0;
    white-space: nowrap;
    width: 86%;
    color: #232323;
    overflow: hidden;
    text-overflow: ellipsis;
}
.border-product .bundle .bundle-image-box .bundle-box .bundle-content .content-list {
    display: grid;
    list-style-type: disc;
    padding-left: 1.1rem;
    gap: 4px;
    margin-top: 16px;
}
.border-product .bundle .bundle-image-box .bundle-box .bundle-content .content-list li {
    display: list-item;
    text-decoration: underline;
}
.border-product .bundle .bundle-title {
    margin-top: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.3;
    color: #222;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
}
.border-product .bundle .total-price {
    font-size: calc(20px + (22 - 20) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    color: var(--theme-color);
}
.border-product .bundle .bundle-btn {
    text-transform: capitalize;
    padding: calc(9px + (13 - 9) * ((100vw - 320px) / (1920 - 320))) calc(18px + (23 - 18) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
}
.border-product .bundle .bundle_detail {
    margin-top: 15px;
}
.border-product .bundle .bundle_detail .price_product {
    color: #222;
    padding-left: 3px;
    font-weight: 600;
}
.compare-btn-box {
    position: fixed;
    bottom: 50px;
    right: 90px;
    z-index: 10;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.compare-btn-box.show {
    opacity: 1;
    visibility: visible;
}
.compare-btn-box .compare-btn {
    position: relative;
    inset: unset;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px;
    color: #fff;
    background-color: var(--theme-color);
}
.notification-wrap {
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 101;
    top: -1999px;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
}
.notification-wrap .notification {
    border-radius: 2px;
    background-color: #d1e7dd;
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    position: relative;
}
.notification-wrap .notification h5 {
    font-size: 14px;
    color: #0d462c !important;
    font-weight: 500;
    margin-bottom: 0;
}
.notification-wrap .notification i {
    font-size: 20px;
    font-weight: 500;
    color: #0d462c !important;
}
.notification-wrap .progress-bar {
    height: 5px;
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}
.notification-wrap .progress-bar .progress {
    border-radius: 0%;
    background-color: #0d462ca2;
}
.notification-wrap.show {
    top: 15px;
}
:root {
    --theme-color: #ec8951;
    --bs-table-color: #222;
}
.pl-40 {
    padding-left: 40px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-50 {
    margin-top: 50px;
}
.warning-block {
    background-color: rgba(255, 166, 64, 0.5);
    padding: 20px;
    border-left: 5px solid #ff9f40;
}
.dark-block {
    background-color: rgba(224, 217, 209, 0.3);
    padding: 20px;
    border-left: 5px solid #2f3c4e;
}
ul.list-style {
    margin-bottom: 2rem;
}
ul.list-style li {
    margin-bottom: 0.5rem;
    list-style-type: circle;
}
ul.list-style li:last-child {
    margin-bottom: 0;
}
.card {
    margin-bottom: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 8px #e1e1e1;
    box-shadow: 0 0 8px #e1e1e1;
    border: 0;
    background-color: unset;
}
.card .card-header {
    padding: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320))) calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    border-bottom: 0;
}
.card .card-header h5 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 17px;
}
.card .card-body {
    border: none;
    padding: 0;
}
.border-img {
    border: 1px solid #eee;
}
.page-footer {
    margin: 0;
    display: block;
    padding: 0;
}
.page-footer .page-changes-summary {
    border-top: 2px solid #e8ebf2;
    margin-top: 25px;
    margin-bottom: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 25px;
}
.page-footer .page-changes-summary .contributors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.page-footer .page-changes-summary .contributors .avtar-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.page-footer .page-changes-summary .contributors .avtar-list .page-edit-date i {
    margin-right: 5px;
    color: #898989;
    font-size: 20px;
}
.page-footer .page-changes-summary .contributors .page-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.page-footer .page-changes-summary .contributors .page-rating .page-rating-title {
    margin-right: 15px;
}
.page-footer .page-changes-summary .contributors .page-rating .page-rating-icons span {
    color: #74818d;
    width: 1.4em;
    cursor: pointer;
    height: 1.4em;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #e6ecf1;
    margin: 0px 8px;
    padding: 0px;
    border-radius: 50%;
    -webkit-transition: background-color 250ms ease 0s, color 250ms ease 0s, tranform 250ms ease 0s;
    transition: background-color 250ms ease 0s, color 250ms ease 0s, tranform 250ms ease 0s;
}
.page-footer .page-changes-summary .contributors .page-rating .page-rating-icons span:hover {
    background-color: #a5a5a5;
    color: white;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.page-footer .page-changes-summary .contributors .page-rating .page-rating-icons span:nth-child(2):hover {
    background-color: #ffbc58;
}
.page-footer .page-changes-summary .contributors .page-rating .page-rating-icons span:nth-child(3):hover {
    background-color: #81ba00;
}
.page-footer .avtar-list img {
    width: 30px;
}
.btn-group-element {
    margin-bottom: -15px;
}
.btn-group-element > * {
    margin-bottom: 15px;
}
.m-width {
    max-width: 1550px;
}
.main-title {
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}
.border-shape {
    display: block;
    left: 0;
    margin: 15px auto;
    position: relative;
    right: 0;
    text-align: center;
    top: 0;
    width: 80px;
    height: 4px;
}
.features {
    background-color: white;
    border-radius: 15px;
    border: 1px solid #ddd;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.features .f-block {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.features .f-block:nth-child(6n) {
    border-right: none;
}
.features .f-block:nth-child(19),
.features .f-block:last-child {
    border-bottom: none;
}
.features .f-block:hover img {
    -webkit-box-shadow: 0 0 35px white;
    box-shadow: 0 0 35px white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.features .f-block:focus img {
    background-color: yellow;
}
.features .f-block:last-child {
    border-right: none;
}
.features .f-block img {
    border-radius: 100%;
    width: 80px;
    overflow: hidden;
    -webkit-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}
.features .f-block h6 {
    -webkit-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}
.features .f-block h6 {
    font-weight: 700;
    color: #777;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}
.star-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.star-sec .fa-star {
    color: #f2b827;
    margin-right: 5px;
}
.right-star {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.right-star p {
    margin-bottom: 0;
}
.right-star p span {
    color: #0084b4;
}
.review-sec .review-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.review-sec .card-body p {
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    padding: 0;
}
.review-sec .card-body .media {
    margin-bottom: 20px;
}
.review-sec .btn {
    font-weight: 600;
}
.brand-sec {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}
.brand-sec h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    overflow-wrap: break-word;
    color: #242a31;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10px;
}
.quick-links h5 {
    padding: 15px 20px;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    color: #2a3142;
}
.quick-links li {
    padding-bottom: 5px;
}
.quick-links li a {
    font-size: 14px;
    color: #898989;
    font-weight: 600;
}
.quick-links li a:hover {
    letter-spacing: 1.5px;
    color: var(--theme-color);
}
.main-table-sec h5 {
    color: #242a31;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 24px;
}
.main-table-sec .table-wrapper {
    margin: 0;
    display: block;
    padding: 0;
    overflow: visible;
    position: relative;
}
.main-table-sec .table-wrapper .table-scroll {
    margin: 0;
    display: block;
    padding: 0;
    overflow: auto;
    position: relative;
}
.main-table-sec .table-wrapper .table-scroll table {
    width: 100%;
    position: relative;
    border-collapse: collapse;
    page-break-inside: auto;
    font-size: 15px;
}
.main-table-sec .table-wrapper .table-scroll table tr:first-child {
    border-bottom: 1px solid #e8ebf2;
}
.main-table-sec .table-wrapper .table-scroll table tr:first-child span {
    font-size: 16px;
    font-weight: 600;
    color: #2a3142;
}
.main-table-sec .table-wrapper .table-scroll table tr td {
    width: auto;
    padding: 8px;
    position: relative;
    -ms-flex-item-align: start;
    align-self: start;
    border-top: none;
    -ms-flex-align: start;
    align-items: start;
    border-right: none;
    border-bottom: none;
    -webkit-box-align: start;
    text-align: left;
}
.main-table-sec .table-wrapper .table-scroll table tr td span {
    font-size: 100%;
    font-weight: 500;
    line-height: 1.625;
    margin-right: 5px;
}
.link-primary {
    color: var(--theme-color);
    cursor: pointer;
    text-decoration: none;
    opacity: 0.7;
}
.link-primary:hover {
    color: var(--theme-color);
    opacity: 1;
}
.mode {
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.mode i {
    font-size: 16px;
    font-weight: 600;
    margin-right: 5px;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menu > .nav-item > .nav-link {
    padding: 25px;
    line-height: 1.4;
    font-weight: 600;
    color: #2a3142;
    letter-spacing: 1px;
}
.menu > .nav-item:hover > i {
    color: var(--theme-color);
}
.menu > .nav-item:hover .nav-link {
    color: var(--theme-color);
}
.menu > .nav-item.active > i {
    color: var(--theme-color);
}
.menu > .nav-item.active .nav-link {
    color: var(--theme-color);
}
.menu > .nav-item.active .nav-link:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
    background: #209ff0;
}
.nav_btn {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 25px;
    text-align: center;
    border-radius: 4px;
    border: 2px solid white;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    margin-left: 80px;
    background: white;
    color: var(--theme-color);
}
.nav_btn:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: white;
}
.nav_btn:hover i {
    color: white;
}
.nav_btn.icon-btn {
    border-color: #79ccde;
}
.nav_btn.icon-btn i {
    color: #79ccde;
    padding-right: 10px;
}
.mcsb-inside > .mcsb-container {
    margin-right: 0;
}
.mobile_dropdown_icon {
    display: none;
}
.navbar-brand img + img {
    display: none;
}
.menu_one {
    background: white;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}
.menu_one + div {
    margin-top: 100px;
}
.menu_one + section {
    margin-top: 100px;
}
.menu_one .menu > .nav-item .nav-link {
    position: relative;
    color: #6b707f;
    font-weight: 600;
}
.menu_one .menu > .nav-item:hover > .nav-link {
    color: var(--theme-color);
}
.menu_one .menu > .nav-item.active > .nav-link {
    color: var(--theme-color);
}
.navbar_fixed {
    position: fixed;
}
.navbar_fixed.menu_one {
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    background: white;
    -webkit-transition: all 0.2s, top 0.4s linear;
    transition: all 0.2s, top 0.4s linear;
    margin-top: 0;
}
.navbar_fixed.menu_one .menu > .nav-item {
    padding-bottom: 25px;
    padding-top: 25px;
}
.navbar_fixed.menu_one .menu > .nav-item > .nav-link {
    color: #6b707f;
}
.navbar_fixed.menu_one .menu > .nav-item:hover > .nav-link {
    color: var(--theme-color);
}
.navbar_fixed.menu_one .menu > .nav-item.active > .nav-link {
    color: var(--theme-color);
}
.navbar_fixed.menu_one .nav_btn {
    color: var(--theme-color);
    border: 2px solid #79ccde;
}
.navbar_fixed.menu_one .nav_btn:hover {
    background: var(--theme-color);
    color: white;
    border-color: var(--theme-color);
}
.navbar-toggler {
    padding-right: 0;
    padding-left: 0;
}
.navbar-toggler:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.menu_toggle {
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: block;
}
.overlay_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 19, 50, 0.8);
}
.document-area {
    z-index: 0;
}
.document-area .overlay_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #1d2746;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.document-area .shortcode_title {
    margin-bottom: 40px;
}
.document-area .shortcode_title h1 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 12px;
}
.document-area .shortcode_title h4 {
    margin-bottom: 15px;
}
.document-area .shortcode_title p span {
    font-weight: 500;
}
.document-area .shortcode_title .s_title {
    margin-bottom: 10px;
}
.document-area .shortcode_title + ul {
    margin-top: -0.8rem;
}
.nav-sidebar {
    margin-bottom: 0;
}
.nav-sidebar .nav-item {
    margin-bottom: 5px;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}
.nav-sidebar .nav-item > .nav-link .icon {
    font-size: 20px;
    color: #6b707f;
    float: right;
    position: absolute;
    right: 30px;
    top: -2px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.nav-sidebar .nav-item.active .icon {
    color: var(--theme-color);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.nav-sidebar + .nav-sidebar {
    border-top: 1px solid #e5e9eb;
    padding-top: 20px;
}
.documentation_info .anchorjs-link {
    font-size: 22px !important;
}
.mCSB_scrollTools {
    width: 0;
}
.mobile_menu {
    width: 300px;
    position: fixed;
    height: 100vh;
    max-height: 100vh !important;
    top: 0;
    background: white;
    right: -300px;
    z-index: 1050;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.mobile_menu .left-sidebar {
    padding-left: 20px;
}
.mobile_menu .left-sidebar:before {
    display: none;
}
.mobile_menu .close_nav {
    padding-top: 20px;
    padding-left: 30px;
    font-size: 28px;
}
.mobile_menu.open {
    right: 0;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 230px;
}
.row.doc-container {
    padding-top: 100px;
}
.fontsize-controllers .btn-group {
    border: 1px solid #dfe2e4;
    background-color: white;
    -webkit-box-shadow: 0 1px 0 0 rgba(3, 13, 37, 0.2), inset 0 -8px 14px 0 rgba(3, 13, 37, 0.1);
    box-shadow: 0 1px 0 0 rgba(3, 13, 37, 0.2), inset 0 -8px 14px 0 rgba(3, 13, 37, 0.1);
    border-radius: 4px;
}
.fontsize-controllers .btn-group .btn {
    font-size: 16px;
    font-weight: 400;
    color: #1d2746;
    line-height: 1.2;
    border: 0;
}
.fontsize-controllers .btn-group .btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #eff0f1;
}
.shortcode_text .shortcode_title p {
    margin-bottom: 20px;
}
.shortcode_text ul li {
    margin-bottom: 6px;
}
.shortcode_text ul li a {
    color: #6b707f;
}
.shortcode_text ul li a:hover {
    color: var(--theme-color);
}
.toggle_body {
    border: 1px solid #e8ecee;
    padding: 25px 30px;
    border-top: 0;
    border-radius: 4px;
    line-height: 1.7;
}
.toggle-code {
    padding-bottom: 60px;
}
.toggle_btn {
    display: block;
    font-weight: 500;
    color: #1d2746;
    background: #f0f2f5;
    text-align: left;
    border-radius: 4px;
    position: relative;
    font-size: 18px;
    padding: 15px 30px;
}
.toggle_btn:before {
    content: "C";
    position: absolute;
    font-size: 18px;
    font-family: ElegantIcons;
    right: 30px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    color: var(--theme-color);
}
.toggle_btn:focus {
    color: #1d2746;
}
.toggle_btn.collapsed:before {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    color: #1d2746;
}
.toggle_body {
    border: 1px solid #e8ecee;
    padding: 25px 30px;
    border-top: 0;
    border-radius: 4px;
}
.doc_accordion {
    border: 0;
    margin-bottom: 5px;
}
.doc_accordion .card-header {
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 0;
}
.doc_accordion .card-header button {
    padding: 12px 30px;
    border-radius: 4px;
    text-align: left;
    width: 100%;
    font-size: 16px;
    color: #1d2746;
    font-weight: 500;
    background: #f0f2f5;
    text-decoration: none;
    position: relative;
}
.doc_accordion .card-header button i {
    position: absolute;
    right: 30px;
    color: var(--theme-color);
    font-size: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.doc_accordion .card-header button i + i {
    display: block;
}
.doc_accordion .card-header button.collapsed i {
    display: block;
    color: #6b707f;
}
.doc_accordion .card-header button.collapsed i + i {
    display: none;
}
.modal-open {
    padding-right: 0 !important;
}
.btn_bg {
    padding: 15px 78px;
}
.icon_btn {
    border: 2px solid #79ccde;
    margin-left: 0;
    background: #f8fdfe;
}
.icon_btn i {
    padding-right: 7px;
}
.icon_btn:hover {
    border-color: var(--theme-color);
}
.arrow_btn_medium {
    padding: 13px 28px;
}
.arrow_btn_big {
    padding: 18px 44px;
    font-size: 18px;
}
.arrow_btn_big i {
    font-size: 28px;
    padding-left: 12px;
}
.border_bottom {
    width: 100%;
    height: 1px;
    background: #e8f0f1;
}
.getting-started-sec .alert-box {
    position: relative;
    padding: 30px;
    border-radius: 16px;
}
.getting-started-sec .alert-box.alert-primary {
    color: var(--theme-color);
    background-color: rgba(var(--theme-color), 0.15);
    border: none;
}
.getting-started-sec .alert-box .fa-exclamation-circle {
    color: var(--theme-color);
    margin-right: 15px;
    font-size: 25px;
}
.getting-started-sec .alert-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625;
}
.gulp-section .card-body ul {
    padding-left: 40px;
}
.gulp-section .card-body ul li {
    list-style: disc;
    margin-bottom: 10px;
}
.gulp-section .card-body .list-none {
    padding-left: 25px;
}
.gulp-section .card-body .list-none li {
    list-style: none;
}
.new-arrival-sec.card .card-body .arrival-content-main {
    padding: 30px;
    margin-bottom: 20px;
}
.new-arrival-sec.card .card-body .arrival-content-main .arrival-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.new-arrival-sec.card .card-body .arrival-content-main .arrival-content i {
    font-size: 25px;
    color: #9c9999;
}
.new-arrival-sec.card .card-body .arrival-content-main .arrival-content h5 {
    color: #9c9999;
    margin-left: 15px;
    margin-bottom: 0;
}
.new-arrival-sec.card .card-body .arrival-content-main:hover {
    background-color: rgba(var(--theme-color), 0.1);
    border: 1px solid var(--theme-color);
    border-radius: 25px;
}
.new-arrival-sec.card .card-body .arrival-content-main:hover h5,
.new-arrival-sec.card .card-body .arrival-content-main:hover i {
    color: var(--theme-color);
}
.custom-scrollbar.page-sidebar {
    position: fixed;
}
.page-right-sidebar.page-sidebar {
    -webkit-box-shadow: 0 0 21px 0 rgba(89, 102, 122, 0.1);
    box-shadow: 0 0 21px 0 rgba(89, 102, 122, 0.1);
    width: 255px;
    position: fixed;
    background: white;
    height: calc(100vh);
    z-index: 9;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #000;
    top: 0;
    padding-top: 150px;
}
.nav-link {
    color: #2a3142;
    position: relative;
}
.nav-link.active {
    color: var(--theme-color);
}
.change-log-content {
    padding-top: 15px;
}
.change-log-content .change-log-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    text-align: right;
}
.change-log-content .change-log-date h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}
.change-log-content .change-log-date p {
    font-size: 14px;
    margin-bottom: 0;
    color: #6b707f;
}
.change-log-content .log-version-info {
    margin-right: 15px;
    position: relative;
    height: 100%;
}
.change-log-content .log-version-info .log-version {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: var(--theme-color);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    height: 26px;
    line-height: 27px;
    border-radius: 3px;
    color: white;
    min-width: 50px;
    max-width: 60px;
    display: block;
    margin: 0 auto;
}
.change-log-content .log-version-info .log-line {
    height: 105%;
    width: 2px;
    background: #e2e5ee;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}
.right-log-content {
    padding-bottom: 50px;
}
.right-log-content p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
}
.right-log-content span {
    font-weight: 500;
    font-size: 12px;
    padding: 0 10px;
    text-transform: uppercase;
    min-width: 130px;
    display: inline-block;
    text-align: center;
    line-height: 23px;
    margin-right: 20px;
    height: 22px;
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    letter-spacing: 0.8px;
    border-radius: 20px;
}
.right-log-content span.log-improve {
    border: 1px solid #13c9ca;
    color: #13c9ca;
}
.right-log-content span.log-new {
    border: 1px solid #81ba00;
    color: #81ba00;
}
.right-log-content span.log-update {
    border: 1px solid #ffbc58;
    color: #ffbc58;
}
.right-log-content span.log-fixed {
    border: 1px solid #00a8ff;
    color: #00a8ff;
}
.right-log-content .log-download-links {
    border-top: 1px dotted rgba(51, 51, 51, 0.2);
}
.right-log-content .log-btn {
    font-size: 14px;
    color: #777c8a;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    opacity: 0.6;
}
.right-log-content .log-btn i {
    margin-right: 10px;
}
.right-log-content .log-btn + .log-btn {
    margin-left: 28px;
}
.custom-container {
    padding-left: 80px;
    padding-right: 80px;
}
.left-sidebar .sticky-sidebar {
    position: sticky !important;
    z-index: 1;
    overflow-y: auto;
    top: 60px;
}
.left-sidebar h2 {
    margin-bottom: 25px;
}
.left-sidebar::-webkit-scrollbar {
    width: 0px;
}
.content.component-col {
    padding-right: 12px;
}
.document-main {
    padding-top: 100px;
}
.right-sidebar {
    width: 300px;
    position: fixed;
    top: 75px;
    padding-top: 30px;
    right: 80px;
}
.nav-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.nav-sidebar > .nav-item .title {
    margin-bottom: 0;
    margin-top: 3px;
    position: relative;
    padding: 11px 20px;
    background-color: #f6f6f6;
    font-weight: 600;
    letter-spacing: 1.3px;
    color: #868686;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.nav-sidebar > .nav-item img {
    width: 20px;
    margin-right: 10px;
}
.nav-sidebar > .nav-item .icon {
    top: 15px;
    right: 20px;
    position: absolute;
    color: #a7a7a7;
    font-size: 14px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    cursor: pointer;
}
.nav-sidebar > .nav-item .icon i {
    display: inline-block;
}
.nav-sidebar > .nav-item .icon i + i {
    display: none;
}
.nav-sidebar .nav-item .title.active .icon i {
    display: none;
}
.nav-sidebar .nav-item .title.active .icon i + i {
    display: inline-block;
}
.parent-title {
    margin-top: 30px;
    padding: 15px 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    font-weight: 700;
    color: #606060;
}
.dropdown-nav {
    padding: 15px 30px;
    list-style: none;
}
.dropdown-nav li a {
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    color: #898989;
    padding: 0;
}
.direct .nav-link {
    padding: 15px 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    background-color: #f8f8f8;
    font-weight: 700;
    color: #606060;
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 0;
}
.direct .nav-link.active {
    color: var(--theme-color);
    border-left: 3px solid var(--theme-color);
}
.img-border {
    padding: 5px;
    border: 2px dashed black;
    width: 100%;
}
.appDesc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}
.main-title {
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}
hr.style-element {
    margin: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320))) 0;
    background-color: #eee;
    border-color: #eee;
    opacity: 1;
}
.code-section {
    border: 1px solid #eee;
    border-radius: 0;
}
.code-section .nav-tabs {
    border-bottom: 1px solid #eee;
    padding: 10px;
}
.code-section .nav-tabs .nav-link {
    cursor: pointer;
}
.code-section .nav-tabs .nav-link.active {
    border-radius: 0;
    color: #333;
    background-color: #ddd;
    font-weight: 600;
}
.code-section pre[class*="language-"] {
    margin: 0;
}
.code-section .code-box-copy pre[class*="language-"] {
    border: 0;
    border-radius: 0;
    background: #f8f8f8;
    max-height: 450px;
    overflow: auto;
}
.code-section .code-box-copy__btn {
    opacity: 1;
    position: absolute;
    top: -49px;
    right: 11px;
    width: auto;
    height: 38px;
    background-color: #333333;
    border: 1px solid #eee;
    color: #fff;
    border-radius: 0;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    padding: 0 12px;
    font-weight: 600;
}
.code-section .code-box-copy__btn i {
    margin-right: 10px;
    font-weight: normal;
}
.code-box-copy {
    display: block !important;
}
.setting-sidebar {
    z-index: 9;
    padding: calc(9px + (12 - 9) * ((100vw - 320px) / (1920 - 320))) calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320)));
    color: #fff;
    border: none;
}
.setting-sidebar i {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}
.scroll-setting-box ::-webkit-scrollbar {
    width: 4px;
    height: 7px;
}
.scroll-setting-box ::-webkit-scrollbar-track {
    background: #ddd;
}
.scroll-setting-box ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 0;
}
.scroll-setting-box ::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.setting_box_body {
    position: relative;
    background-color: #fff;
    z-index: 10;
    height: calc(100vh - 67px);
}
.scroll-setting-box ::-webkit-scrollbar {
    width: 4px;
    height: 7px;
}
.scroll-setting-box ::-webkit-scrollbar-track {
    background: #ddd;
}
.scroll-setting-box ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 0;
}
.scroll-setting-box ::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.setting-box {
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    width: 450px;
    right: -670px;
    background-color: #fff;
    top: 0;
    z-index: 10;
    -webkit-box-shadow: 0 15px 5px 0 rgba(77, 77, 77, 0.28);
    box-shadow: 0 15px 5px 0 rgba(77, 77, 77, 0.28);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.setting-box .form-switch {
    padding: 0;
    margin: 0;
    min-height: unset;
}
.setting-box .form-switch .form-check-input {
    height: 22px;
    width: 44px;
    cursor: pointer;
    border: 1px solid #eee;
    -webkit-filter: unset;
    filter: unset;
    margin: 0;
    position: relative;
    background-color: transparent;
    background-image: unset;
}
.setting-box .form-switch .form-check-input:focus {
    background-image: unset;
    border-color: #dee2e6;
}
.setting-box .form-switch .form-check-input:checked {
    background-color: var(--theme-color);
}
.setting-box .form-switch .form-check-input:checked::before {
    left: unset;
    right: 3px;
    background-color: #fff;
}
.setting-box .form-switch .form-check-input::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 3px;
    background-color: #bfbfbf;
    border-radius: 100%;
    width: 15px;
    height: 15px;
}
.setting-box.open-setting {
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.setting-box.open-setting .overlay {
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.setting-box .setting-inner-title a {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    color: #222;
    line-height: 24px;
}
.setting-box .setting-body {
    padding: 0 calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
}
.setting-box .accordion-item {
    border-radius: 0;
    border: none;
    background-color: transparent;
}
.setting-box .accordion-body {
    padding: 0;
}
.setting-box .accordion-button {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px dashed #eee;
    text-align: unset;
    font-weight: 500;
    padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 0;
    color: #222;
}
.setting-box .accordion-button::after {
    width: unset;
    height: unset;
    content: "\ea4e";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    background: unset;
    font-size: 23px;
    font-weight: 400;
    margin: 0;
    color: #777;
}
.setting-box .accordion-button .setting-description-text {
    display: grid;
    gap: 5px;
}
.setting-box .accordion-button .setting-description-text .setting-title-content {
    font-weight: 500;
    font-size: 16px;
    color: #222;
}
.setting-box .accordion-button .setting-description-text .setting-content {
    font-weight: 400;
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
    color: #777777;
}
.setting-box .setting-section {
    border-bottom: 1px dashed #eee;
    font-weight: 500;
    padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.setting-box .setting-inner-title h5,
.setting-box .setting-inner-title p {
    margin-bottom: 0;
}
.setting-box .setting-inner-title p {
    font-weight: 400;
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
}
.setting-box .setting-inner-title h5 {
    font-weight: 500;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.setting-box .setting-title {
    border-bottom: 1px solid #efefef;
    margin-bottom: 0;
    padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320))) calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #f8f8f8;
    position: sticky;
    top: 0;
    z-index: 11;
}
.setting-box .setting-title .close-icon {
    width: 26px;
    height: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #eee;
    font-size: 12px;
    cursor: pointer;
}
.setting-box .setting-title .close-icon i {
    color: #222;
}
.setting-box .setting-title h4 {
    font-weight: 600;
}
.setting-box .setting-title h3 {
    line-height: 31px;
    margin-top: 10px;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 0;
    color: #a3a3a3;
}
.setting-box .setting-title h3 span {
    font-family: "Yellowtail", cursive;
    color: #f54c3b;
    text-transform: uppercase;
}
.setting-box .setting-title h4 {
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
}
.setting-box .setting-title.active .according-menu:before {
    content: "\f068";
    position: absolute;
    right: 2px;
    top: 2px;
}
.setting-box .setting-title .according-menu:before {
    content: "\f067";
    position: absolute;
    right: 2px;
    top: 2px;
}
.setting-box .setting-contant {
    margin: 20px 0;
    height: 340px;
    overflow: hidden auto;
    padding-right: 10px;
}
.setting-box .setting-contant::-webkit-scrollbar-thumb {
    background: var(--theme-color);
}
.setting-box .setting-contant::-webkit-scrollbar-track {
    background: #eaeaea;
}
.setting-box .setting-contant .setting_buttons .setting_btn {
    background-color: var(--theme-color);
    color: #fff;
    width: 100%;
}
.setting-box .setting-contant .setting_buttons li:first-child {
    width: 49%;
}
.setting-box .setting-contant .setting_buttons li.active {
    -webkit-box-shadow: 0px 0px 5px 0px #929292;
    box-shadow: 0px 0px 5px 0px #929292;
}
.setting-box .setting-contant .setting_buttons li:last-child {
    margin-left: 10px;
    width: 46%;
}
.setting-box .setting-contant .color-box li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.setting-box .setting-contant .color-box li span {
    text-transform: capitalize;
    margin-bottom: 2px;
    font-size: 15px;
}
.setting-box .setting-contant .color-box li input {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 34px;
    height: 34px;
    background-color: transparent;
    margin-right: 5px;
}
.setting-box .setting-contant .color-box li input:focus {
    outline: none;
}
.setting-box .setting-contant .color-box li + li {
    margin-top: 5px;
}
.setting-box .buy_btn {
    padding: 20px;
}
.setting-box .buy_btn a {
    background-color: #f3f3f3;
    color: #3c3c3c;
    padding: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.setting-box .buy_btn a i {
    margin-right: 5px;
    font-size: 18px;
}
.setting-box .buy_btn a img {
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
}
.setting-box .overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.theme-settings {
    width: auto;
    position: fixed;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
    padding: 0;
    margin: 0;
    color: #fff;
    text-transform: uppercase !important;
    background-color: #333333;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    gap: 5px;
    font-weight: 500;
    cursor: pointer;
}
.theme-settings ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
    margin-left: auto;
    cursor: pointer;
    font-weight: 600;
    padding: 12px 12px;
    margin: 0;
    color: #fff;
}
.theme-settings ul li:last-child {
    margin-bottom: 0;
}
.theme-settings ul li.demo-li {
    width: 50px;
    height: 40px;
}
.theme-settings ul li .backend-btn {
    font-size: 13px;
}
.theme-settings ul li .backend-btn a {
    color: #222;
}
.theme-settings ul li.input-picker {
    background: none;
    overflow: hidden;
}
.theme-settings ul li.input-picker img {
    display: none;
}
.theme-settings ul li.input-picker input {
    height: 100%;
    opacity: 1;
    padding: 0;
    border: none;
}
.theme-settings ul li.input-picker input::-webkit-color-swatch {
    border: none;
}
.sale {
    position: fixed;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
.sale a {
    top: 50%;
    right: -20px;
    width: 230px;
    height: 36px;
    line-height: 36px;
    letter-spacing: 5px;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transform: translate(50%, -50%) rotate(-90deg);
    transform: translate(50%, -50%) rotate(-90deg);
    text-align: center;
    background-color: var(--theme-color);
    margin-bottom: 0;
    cursor: pointer;
}
.demo-section .title-text h3 {
    color: var(--theme-color);
    margin-bottom: 24px;
    display: inline-block;
    padding-bottom: 5px;
    font-size: 40px;
    position: relative;
}
.demo-section .title-text h3 i {
    font-size: 22px;
    position: absolute;
    top: 0;
    right: -20px;
}
.demo-section .demo-effects h4 {
    text-transform: capitalize;
}
.demo-section .demo-effects .set-position {
    display: block;
}
.demo-section .demo-effects > div {
    text-decoration: none;
    color: black;
}
.demo-section .demo-effects > div .layout-container {
    height: 100%;
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-size: cover;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    border: 1px solid #eee;
}
.demo-section .demo-effects > div .layout-container.active {
    border-color: var(--theme-color);
}
.demo-section .demo-effects > div .layout-container.active ~ a h4 {
    color: var(--theme-color);
    font-weight: 600;
}
.demo-section .demo-effects > div .layout-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}
.demo-section .demo-effects > div .demo-text span {
    font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (1920 - 320)));
    margin-top: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
    color: #222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 500;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    line-height: 1;
}
.demo-section .demo-effects > div .demo-text span span {
    background-color: var(--theme-color);
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    width: 40px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    margin-left: 6px;
}
.demo-section .demo-effects > div .demo-text .demo-btn {
    margin-top: 10px;
}
.demo-section .demo-effects > div .demo-text .demo-btn .btn {
    border: 1px solid #ddd;
    background-color: #fff;
    width: 90px;
    color: var(--theme-color);
    padding: 5px 10px;
    border-radius: 30px;
}
.demo-section .demo-effects > div .demo-text .demo-btn .btn:hover {
    background-color: var(--theme-color);
    color: #fff;
}
.demo-section .demo-effects:last-child {
    margin-bottom: 0;
}
.demo-section .demo-effects.effect-2 .layout-container {
    background-size: cover;
    background-repeat: no-repeat;
}
.demo-section .demo-effects.effect-2:hover .layout-container {
    background-position: top !important;
}
.demo-section .demo-effects.effect-3 .layout-container {
    background-size: cover;
    background-repeat: no-repeat;
}
.demo-section .demo-effects.effect-3:hover .layout-container {
    background-position: top !important;
}
.dark-demo .dark-light-btn {
    display: none;
}
@media (min-width: 1630px) {
    body.christmas .container {
        max-width: 1600px;
    }
}
@media (max-width: 1630px) {
    body.christmas .home-slider .slider-details {
        width: 400px;
        height: 400px;
    }
}
@media (min-width: 1430px) {
    .container {
        max-width: 1400px;
    }
}
@media (min-width: 1630px) {
    .container-lg {
        max-width: 1610px;
    }
}
@media (max-width: 1630px) {
    .gradient-category .gradient-border {
        height: 180px;
    }
}
@media (max-width: 1600px) {
    .theme-tab .tab-content .product-tab .tab-box .product-box2 img {
        height: 180px;
    }
}
@media (max-width: 1430px) {
    header.left-header .top-header {
        padding-left: 0;
    }
    header.left-header .top-header .header-contact {
        display: none;
    }
    header.left-header .sidenav {
        left: -300px;
    }
    header.left-header .sidenav.open-side {
        left: 0;
    }
    header.left-header .sidenav .sidebar-back {
        display: block;
        color: black;
        border-bottom: 1px dashed #ddd;
    }
    header.left-header .sidenav .brand-logo {
        display: none;
    }
    header.left-header .sidenav .left-sidebar_center {
        padding: 0 0 25px 25px;
    }
    header.left-header .main-menu .menu-left .navbar {
        display: block;
    }
    header.left-header .main-menu .menu-left .mobile-logo {
        display: block;
        border: none;
    }
    header.left-header .search-overlay {
        padding-left: 0;
    }
    .header-options span {
        font-size: 14px;
    }
    .blog-section .review-box .review-content p {
        margin-bottom: 35px;
    }
    .left-sidebar_space {
        padding-left: 0;
    }
    .service-w-bg .service-block .media {
        padding: 13px;
        height: 100%;
    }
    .service-w-bg .service-block h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .service-w-bg .service-block svg {
        width: 50px;
        height: 50px;
    }
    .banner-slider .height-banner {
        height: unset;
    }
    .box-product .theme-card .offer-slider .media .media-body .rating i {
        padding-right: 0;
    }
    .box-product .full-box .theme-card .offer-slider .product-box2 .media .media-body h4 {
        font-size: 16px;
    }
    .pet-parallax .pet-decor {
        left: 60px;
        bottom: -125px;
    }
    .pet-parallax .pet-decor img {
        width: 240px;
    }
    .tools_slider .home-slider .slider-contain {
        margin-left: 80px;
    }
    .tools_slider .home-slider .home .tools-parts img,
    .tools_slider .home-slider .home .tools-parts1 img {
        width: 250px;
    }
    .tools_slider .home-slider .home .tools-parts {
        right: 0;
    }
    .tools_slider .home-slider .home .tools-parts1 {
        right: 10%;
    }
    .tools_slider .home-slider .home #tools-move2 {
        right: 7%;
    }
    .bakery-card.theme-card .offer-slider img {
        height: 120px;
    }
    .bakery-card .offer-slider .media .lable {
        padding: 8px 4px;
        left: 90px;
        top: 6px;
    }
    .cycle-box-row > div {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .banner-style-1 .custom-height {
        height: 374px;
    }
    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
        height: 210px;
    }
    .banner-style-2.absolute-banner .absolute-bg .collection-banner .absolute-img img {
        width: 38%;
    }
    .header-style-5.color-style .form_search {
        width: 500px;
    }
    .header-style-7 .form_search {
        width: 390px;
    }
    .header-style-7 .main-menu .menu-left .navbar {
        padding: 30px 25px 30px 0;
    }
    .home-slider .home-decor .decor.decor-3,
    .center-slider .home-decor .decor.decor-3 {
        right: 4%;
    }
    .banner-offer .collection-banner .contain-banner h2 {
        font-size: 20px;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
        width: 100%;
        border-left: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        text-align: center;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
        width: 20%;
        padding-right: 0 !important;
        border-left: 1px solid #ddd;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li:last-child {
        display: none;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
        border-right: 1px solid #ddd;
        width: 30%;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
        width: 30%;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .collection-view {
        width: 10%;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view {
        width: 25%;
    }
    .cart-section .cart-buttons > div:last-child {
        padding-right: 38px;
    }
    .cart-section tbody tr td {
        min-width: 175px;
    }
    .cart-section tbody tr td .qty-box .input-group .form-control {
        width: 75px;
    }
    .cart-section tfoot tr td {
        padding-right: 41px;
    }
    .product-right .product-icon .product-social li {
        padding-right: 10px;
    }
    .product-form-box .timer {
        padding-left: 17px;
    }
    .product-form-box .timer span {
        width: 55px;
    }
}
@media (max-width: 1430px) and (min-width: 1368px) {
    .banner-timer .timer {
        margin-top: 45px;
    }
}
@media (max-width: 1430px) and (min-width: 1200px) {
    .layout3-menu .main-menu .menu-left .navbar {
        padding: 40px 10px 40px 0;
    }
    .layout3-menu .pixelstrap > a {
        padding-right: 38px;
    }
    .layout3-menu .pixelstrap a {
        font-size: 14px;
    }
    .layout3-menu .pixelstrap > li > a {
        font-size: 12px;
    }
    .portfolio-section.metro-section .product-box .cart-wrap a i {
        padding: 5px;
    }
    .portfolio-section.metro-section .product-box .cart-wrap i {
        font-size: 14px;
    }
    .portfolio-section.metro-section .product-box .cart-wrap button i {
        padding: 5px;
    }
}
@media (max-width: 1400px) {
    .gradient-category .gradient-border {
        height: 140px;
    }
    .theme-card .offer-slider img {
        width: 120px;
        padding: 8px;
    }
}
@media (max-width: 1367px) {
    h2 {
        font-size: 32px;
    }
    .title1 .title-inner1 {
        padding-bottom: 10px;
    }
    .title1 .title-inner1:after {
        height: 2px;
    }
    .title3 .line {
        height: 3px;
    }
    .title3 .line:after,
    .title3 .line:before {
        height: 3px;
    }
    .title3 .title-inner3 {
        margin-bottom: 10px;
    }
    .title4 .title-inner4 {
        padding-bottom: 15px;
    }
    .title1.title5 hr[role="tournament6"] {
        margin: 10px auto 30px auto;
    }
    hr.style1 {
        height: 1px;
        margin-top: 7px;
        margin-bottom: 7px;
    }
    .home-slider .slider-details {
        right: 14%;
    }
    .home-slider:hover .slick-prev,
    .home-slider:hover .slick-next {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
    }
    .shop-sidebar-demo .shop-main .small-slider .home > div {
        background: linear-gradient(272deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.85) 100%);
    }
    .product-box .product-detail .rating i,
    .product-box .product-info .rating i,
    .product-wrap .product-detail .rating i,
    .product-wrap .product-info .rating i {
        padding-right: 0;
    }
    .blog-details h4 {
        margin-top: 20px;
    }
    .blog-details p {
        font-size: 16px;
    }
    .service-block h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .service-w-bg .service-block h4 {
        font-size: 15px;
    }
    .service-w-bg .service-block svg {
        width: 40px;
        height: 40px;
    }
    .banner-timer {
        background-position: right;
    }
    .banner-timer .banner-text h2 {
        font-size: 28px;
    }
    .collection-product-wrapper .product-wrapper-grid .product-five {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: 33.33%;
        position: relative;
        width: 100%;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    }
    .subscribe-form .form-control {
        width: 215px;
    }
    .category-bg .image-block.even:after {
        bottom: 91%;
    }
    .category-bg .contain-block h2 {
        font-size: 30px;
    }
    .category-bg .contain-block.even:after {
        top: 91%;
    }
    .category-bg .contain-block .category-btn {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .category-bg .contain-block:after {
        bottom: 91%;
    }
    .full-banner .banner-contain h2 {
        font-size: 90px;
    }
    .full-banner .banner-contain h3 {
        font-size: 55px;
    }
    .full-banner .banner-contain h4 {
        font-size: 24px;
        padding-top: 8px;
    }
    .full-banner .banner-contain .color {
        padding-top: 0;
    }
    .collection-banner .contain-banner.banner-4 {
        padding-left: 45px;
        padding-right: 45px;
    }
    .collection-banner .contain-banner.banner-4 h2 {
        font-size: 28px;
    }
    .collection-banner .contain-banner h2 {
        font-size: 55px;
        letter-spacing: 0.01em;
    }
    .collection-banner .contain-banner h4 {
        letter-spacing: 0.01em;
    }
    .collection-banner.christmas-banner .contain-banner > div {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 25px 40px;
    }
    .footer-theme2 .contact-details li {
        padding: 0 40px;
    }
    .footer-theme2 .footer-mobile-title {
        display: none !important;
    }
    .footer-theme .sub-title h4 {
        font-size: 16px;
    }
    .footer-theme .sub-title .contact-list li {
        line-height: 20px;
    }
    .footer-theme .sub-title .contact-list i {
        top: 17px;
    }
    .theme-card .offer-slider .media .media-body h4 {
        margin-top: 10px;
    }
    .theme-card .offer-slider .media .media-body a h6 {
        margin-right: 50px;
    }
    .full-box .theme-card .offer-slider .product-box2 .media .media-body a h6 {
        margin-right: 0;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 img {
        height: 120px;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body .color-variant li {
        margin-top: 15px;
    }
    .blog-page .blog-media .blog-right h4 {
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .blog-page .blog-media .blog-right h6 {
        margin-bottom: 5px;
    }
    .blog-page .blog-media .blog-right ul {
        margin-bottom: 10px;
    }
    .blog-page .blog-media .blog-right p {
        line-height: 1.4;
    }
    .pro_sticky_info {
        padding: 10px;
    }
    .is_stuck {
        margin-top: 30px;
    }
    .main-feature .key-feature {
        margin-top: -50px;
    }
    .main-feature .key-feature > div {
        margin-top: 50px;
    }
    .deal-category .deal-content h2 {
        font-size: 25px;
    }
}
@media (max-width: 1199px) {
    .hover-unset {
        position: fixed !important;
    }
    .modern-box {
        padding: 25px 20px;
    }
    .vendor-profile .profile-left .vendor-contact {
        width: 30%;
    }
    .theme-card h5 {
        font-size: 14px;
    }
    .custom-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    .space_sm {
        padding-left: 0;
    }
    .p-0-xl {
        padding: 0;
    }
    .center-slider-bicycle.product-m .slick-slide > div {
        margin: 0;
    }
    .center-slider-bicycle .slick-prev,
    .center-slider-bicycle .slick-next {
        display: none;
    }
    header.header-gym .pixelstrap > li > a {
        color: black !important;
        padding: 10px 15px;
    }
    header.header-gym .pixelstrap > li > a:hover,
    header.header-gym .pixelstrap > li > a:focus,
    header.header-gym .pixelstrap > li > a:active {
        padding: 10px 15px;
    }
    header.left-header.left-header-relative {
        height: 100%;
        z-index: 9;
        height: 0;
    }
    header.left-header.left-header-relative .pixelstrap ul ul {
        background: transparent;
    }
    header.left-header.left-header-relative .pixelstrap a .sub-arrow {
        display: block;
    }
    header.left-header.left-header-relative .pixelstrap > li > a {
        text-align: left;
        padding: 10px 25px;
    }
    header.left-header.left-header-relative .pixelstrap > li > a:hover,
    header.left-header.left-header-relative .pixelstrap > li > a:focus,
    header.left-header.left-header-relative .pixelstrap > li > a.highlighted {
        padding: 10px 25px;
    }
    header.left-header.left-header-relative .sidenav {
        position: fixed;
        left: -300px;
        width: 300px;
        top: 0;
        z-index: 10;
        height: 100vh;
        -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
        box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
    }
    header.left-header.left-header-relative .sidenav nav {
        height: 100%;
    }
    header.left-header.left-header-relative .sidenav .sidebar-overlay {
        z-index: -1;
    }
    header.left-header.left-header-relative .sidenav.open-side {
        left: 0;
    }
    header.left-header.left-header-relative .sidenav .left-sidebar_center {
        padding: 0 0 25px 25px;
    }
    header.left-header.left-header-sm .sidenav {
        left: -300px;
        top: 0;
        width: 300px;
    }
    header.left-header.left-header-sm .sidenav .sidebar-back {
        margin-bottom: 0;
    }
    header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap a .sub-arrow {
        display: block;
    }
    header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap > li > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: left;
        padding: 10px 25px;
        font-size: 14px;
    }
    header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap > li > a img {
        margin-left: 0;
        margin-right: 12px !important;
        width: 38px;
    }
    header.left-header.left-header-sm.open-side .sidenav {
        left: 0;
    }
    header.header-tools .pixelstrap.sm-horizontal li .lable-nav {
        top: -8px;
    }
    header.header-5.overlay-style .pixelstrap > li > a,
    header.header-5.overlay-style .pixelstrap > li > a:hover,
    header.header-5.overlay-style .pixelstrap > li > a:active {
        color: black;
    }
    .main-menu .menu-left .navbar {
        padding: 30px 25px 30px 0;
    }
    .header-style-1 .toggle-nav {
        position: absolute;
        top: -55px;
        padding: 0;
        left: 0;
        z-index: 2;
    }
    .header-style-1 .bg-light-xl {
        background-color: #f8f9fa !important;
    }
    .header-style-1.sticky .toggle-nav {
        top: -49px;
    }
    .header-style-2 .main-nav-center .toggle-nav {
        right: unset;
        left: 0;
    }
    .header-style-2 .main-nav-center .toggle-nav i {
        color: #fff;
        opacity: 1;
    }
    .header-style-2 .main-menu .brand-logo {
        padding-left: 25px;
    }
    .header-style-2 .pixelstrap > li > a {
        color: #222;
    }
    .header-style-2 .pixelstrap > li > a:focus,
    .header-style-2 .pixelstrap > li > a.active {
        color: #222;
    }
    .header-style-5 .bottom-part {
        height: 0;
    }
    .header-style-5 .bottom-part .category-menu .toggle-sidebar {
        padding-bottom: 18px;
    }
    .header-style-5 .bottom-part .pixelstrap > li > a {
        color: #222;
    }
    .header-style-5 .bottom-part .pixelstrap > li > a:hover,
    .header-style-5 .bottom-part .pixelstrap > li > a:focus,
    .header-style-5 .bottom-part .pixelstrap > li > a:active {
        color: #222;
    }
    .header-style-5 .bottom-part.bottom-light {
        padding-top: 0;
        border-top: none;
    }
    .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar {
        position: fixed;
        top: 0;
        height: 100vh;
        width: 300px;
        display: block;
        z-index: 9;
        left: -300px;
    }
    .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
        border: none;
    }
    .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar.open-side {
        left: 0;
    }
    .header-style-5.style-light .bottom-part.bottom-light .main-nav-center .sm > li > a {
        padding-block: 0;
    }
    .header-style-5.border-style .bottom-part.bottom-light {
        border-bottom: none;
    }
    .header-style-5.border-style .main-menu .menu-left .navbar {
        padding: 25px 45px 25px 0;
    }
    .header-style-5.border-style .main-nav-center .toggle-nav {
        right: 130px;
        top: -98px;
    }
    .header-style-5.color-style.style-classic .bottom-part {
        margin-bottom: 0;
        z-index: unset;
    }
    .header-style-5.color-style.style-classic .bottom-part .main-nav-center .sm > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header-style-5.color-style.style-classic .bottom-part .container {
        background-color: transparent;
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-style-7 .main-menu .menu-left .navbar {
        padding: 30px 25px 30px 0;
    }
    .header-style-7 .main-menu .menu-right .icon-nav .delivery-area > div {
        padding: 8px 18px;
    }
    .header-compact .menu-row .delivery-area {
        position: absolute;
        top: -58px;
        left: 200px;
    }
    .header-compact .main-menu .brand-logo {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .header-compact .bottom-part {
        padding-bottom: 0;
    }
    .header-compact .main-menu {
        z-index: unset;
    }
    .header-compact .main-nav-center .toggle-nav {
        top: -91px;
    }
    .category-shop-section .category-mobile-button {
        padding: 10px 30px;
        background-color: var(--theme-color);
        color: #fff;
        border-radius: 5px;
        font-size: 16px;
        margin-bottom: 30px;
    }
    .category-shop-section .category-mobile-button i {
        margin-right: 8px;
    }
    .category-shop-section .sidebar-overlay {
        visibility: hidden;
        opacity: 0;
        background-color: #212331;
        position: fixed;
        z-index: 10;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .category-shop-section .sidebar-overlay.show {
        opacity: 0.8;
        visibility: visible;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
    .category-shop-section .nav {
        position: fixed;
        left: -320px;
        top: 0;
        width: 280px;
        z-index: 10;
        overflow: auto;
        background-color: #fff;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        display: block;
        padding: 0;
    }
    .category-shop-section .nav.show {
        left: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .category-shop-section .nav .sidebar-back {
        border-bottom: 1px solid #ddd;
        margin-bottom: 20px;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .banner-offer .collection-banner .contain-banner.banner-3 h2 {
        font-size: 16px;
    }
    .shop-sidebar-demo .shop-sidebar .pixelstrap.sm-vertical a {
        padding: 12px 23px;
    }
    .shop-sidebar-demo .shop-sidebar .pixelstrap.sm-vertical a img {
        height: 30px;
        width: 30px;
    }
    .left-sidebar-header .main-menu .menu-left .navbar {
        padding: 20px 25px 20px 0;
    }
    .pt-res-0 {
        padding-top: 0 !important;
    }
    .svg-icon-menu .pixelstrap > li > a img {
        width: 30px;
    }
    .service-w-bg .service-block .media {
        padding: 20px;
    }
    .service-w-bg .service-block svg {
        width: 50px;
        height: 50px;
    }
    .service-style-border .service-block svg {
        width: 66px;
        margin-right: 4px;
    }
    .service-style-border .service-block .media-body {
        padding-left: 10px;
    }
    .marketplace-sidebar.sidenav {
        height: 100vh;
        width: 300px;
        position: fixed;
        z-index: 9;
        top: 0;
        left: -300px;
    }
    .marketplace-sidebar.sidenav .sm-vertical {
        background-color: transparent;
        padding: 0;
    }
    .marketplace-sidebar.sidenav.open-side {
        left: 0;
    }
    .marketplace-sidebar.sidenav.fixed-sidebar {
        display: block;
        height: 100vh;
        width: 300px;
        position: fixed;
        z-index: 9;
        top: 0;
        left: -300px;
    }
    .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
        background-color: transparent;
        padding: 0;
        border: none;
    }
    .marketplace-sidebar.sidenav.fixed-sidebar.open-side {
        left: 0;
    }
    .portfolio-padding {
        padding-bottom: 30px;
    }
    .partition1 {
        margin-bottom: -25px;
    }
    .partition1 > div {
        margin-bottom: 25px;
    }
    .title1 h4 {
        padding-bottom: 8px;
    }
    .title1 .title-inner1 {
        padding-bottom: 12px;
        margin-bottom: 25px;
    }
    .title1.title5 hr[role="tournament6"] {
        margin: 12px auto 25px auto;
    }
    .title2 h4 {
        padding-bottom: 8px;
    }
    .title2 .title-inner2 {
        margin-bottom: 25px;
    }
    .title3 h4 {
        padding-bottom: 8px;
    }
    .title3 .title-inner3 {
        margin-bottom: 10px;
    }
    .title3 .line {
        margin-bottom: 25px;
    }
    .title4 .title-inner4 {
        padding-bottom: 15px;
    }
    .title4 .line {
        margin-bottom: 25px;
    }
    .title-borderless {
        margin-bottom: 25px;
    }
    footer.footer-black .below-section {
        padding-top: 105px;
    }
    header.header-6 .mobile-search {
        display: inline-block;
    }
    header.header-7 .main-nav-center .toggle-nav {
        top: -94px;
    }
    header.header-7 .pixelstrap.sm-horizontal > li > a {
        color: black;
    }
    header.header-7 .pixelstrap.sm-horizontal > li > a:hover,
    header.header-7 .pixelstrap.sm-horizontal > li > a:active {
        color: var(--theme-color);
    }
    header.header-tools .toggle-nav {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    header.header-tools .pixelstrap > li > a {
        padding: 10px 15px !important;
    }
    header.header-tools .pixelstrap > li > a:hover,
    header.header-tools .pixelstrap > li > a:active,
    header.header-tools .pixelstrap > li > a:focus,
    header.header-tools .pixelstrap > li > a.highlighted {
        padding: 10px 15px;
    }
    header.header-tools .pixelstrap li .lable-nav {
        top: 5px;
    }
    header.video-header #main-nav {
        position: absolute;
        right: 0;
        top: 3px;
    }
    header.video-header .main-menu .menu-right .icon-nav {
        padding-right: 40px;
    }
    header.header-christmas .pixelstrap > li > a {
        color: black !important;
        padding: 10px 15px;
    }
    header.header-christmas .pixelstrap > li > a:active,
    header.header-christmas .pixelstrap > li > a:focus,
    header.header-christmas .pixelstrap > li > a:hover,
    header.header-christmas .pixelstrap > li > a.highlighted {
        padding: 10px 15px;
    }
    .tools-parallax-product.full-banner {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .tools-parallax-product .tools-description h3 {
        font-size: 17px;
    }
    .form_search {
        display: none;
    }
    .full-banner.custom-space {
        padding: 60px 0;
    }
    .tab-left .theme-tab {
        display: block;
    }
    .tab-left .theme-tab .left-side {
        width: 100%;
    }
    .tab-left .theme-tab .left-side li {
        width: unset;
        border-bottom: none;
        padding: 0 5px;
    }
    .tab-left .theme-tab .left-side li:first-child {
        border-top: none;
    }
    .tab-left .theme-tab .left-side .tab-title {
        margin-right: 0;
        text-align: center;
    }
    .tab-left .theme-tab .tab-content-cls {
        width: 100%;
    }
    .absolute_banner .collection-banner .absolute-contain h3 {
        font-size: 22px;
        margin-bottom: 0;
    }
    .absolute_banner .collection-banner .absolute-contain h4 {
        font-size: 16px;
    }
    .box-product .full-box .row > div:nth-last-child(-n + 2) {
        margin-top: 30px;
    }
    .header-gym .toggle-nav {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .gym-product .part-cls > div:nth-last-child(-n + 2) .product-box {
        margin-top: 30px;
    }
    .gym-product .partition-cls > div:nth-child(-n + 4) {
        margin-bottom: 0;
    }
    .gym-product .partition-cls > div .product-box {
        margin-top: 30px;
    }
    .gym-product .partition-cls > div:nth-child(-n + 2) .product-box {
        margin-top: 0;
    }
    .pet-parallax .pet-decor {
        left: 45px;
        bottom: -105px;
    }
    .pet-parallax .pet-decor img {
        width: 200px;
    }
    .about-text p {
        margin-bottom: 25px;
    }
    .banner-timer .timer {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 30px;
        bottom: 8px;
        margin-top: 0;
        background-color: rgba(255, 255, 255, 0.88);
    }
    .footer-social li {
        padding-right: 38px;
    }
    .footer-theme2 p {
        line-height: 25px;
    }
    .footer-theme2 .subscribe-block {
        padding: 10px 70px;
    }
    .footer-theme2 .footer-mobile-title {
        display: none !important;
    }
    .footer-theme2 .contact-details li {
        line-height: 25px;
        padding: 0 10px;
    }
    .footer-theme2 .footer-link li {
        padding-right: 25px;
    }
    .footer-theme2.section-light .footer-block .subscribe-white {
        padding: 50px;
    }
    .social-white li {
        padding-left: 12px;
        padding-right: 12px;
    }
    .service-block svg,
    .service-block1 svg {
        width: 50px;
        height: 50px;
    }
    .service-block1 svg {
        margin-bottom: 15px;
    }
    .category-border div .category-banner .category-box h2 {
        padding: 13px 27px;
    }
    .collection-banner .contain-banner {
        padding-left: 30px;
        padding-right: 30px;
    }
    .category-bg .image-block.even:after {
        bottom: 87%;
    }
    .category-bg .contain-block.even:after {
        top: 87%;
    }
    .category-bg .contain-block:after {
        bottom: 87%;
    }
    .no-slider .product-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: calc(33.33% - 30px);
        margin: 0 15px 30px;
    }
    .no-slider.five-product .product-box {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: calc(33.33% - 30px);
        margin: 0 15px 30px;
    }
    .no-slider.five-product .product-box:nth-last-child(-n + 5) {
        margin: 0 15px 30px;
    }
    .no-slider.five-product .product-box:nth-last-child(-n + 3) {
        margin: 0 15px 0;
    }
    .no-slider.five-product-row .product-box {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        margin-left: 15px;
        margin-right: 15px;
        max-width: calc(25% - 30px);
    }
    .absolute-product .no-slider .product-box:nth-last-child(-n + 4) {
        margin: 0 15px 30px;
    }
    .absolute-product .no-slider .product-box:nth-last-child(-n + 2) {
        margin: 0 15px 0;
    }
    .theme-tab .tab-title2 {
        font-size: 22px;
    }
    .theme-tab .tab-title2:after {
        top: 17px;
    }
    .theme-tab .tab-content .product-tab .tab-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: calc(50% - 10px);
    }
    .theme-tab .tab-content .product-tab .tab-box:nth-last-child(-n + 2) {
        margin: 0 5px 0;
    }
    .theme-tab .tab-content .product-tab .tab-box:nth-last-child(-n + 4) {
        margin: 0 5px 10px;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 img {
        height: 200px;
    }
    .blog-section .review-box {
        padding: 15px;
    }
    .blog-section .review-box .review-content p {
        margin-top: 0;
    }
    .full-banner .banner-contain h2 {
        font-size: 85px;
    }
    .full-banner .banner-contain h3 {
        font-size: 50px;
    }
    .full-banner .banner-contain h4 {
        font-size: 22px;
        padding-top: 5px;
    }
    .full-banner .santa-img img {
        width: 200px;
    }
    .full-banner.feature-banner .feature-object li,
    .full-banner.feature-banner .feature-object-right li {
        margin-right: 0;
    }
    .instagram .insta-decor {
        display: none;
    }
    .logo-section .logo-decor {
        display: none;
    }
    .blog-section .review-box .santa-img {
        display: none;
    }
    .collection-banner .contain-banner.banner-3 {
        padding-left: 25px;
        padding-right: 25px;
    }
    .collection-banner .contain-banner.banner-3 h2 {
        font-size: 22px;
    }
    .collection-banner .contain-banner.banner-3 h4 {
        font-size: 12px;
    }
    .collection-banner .contain-banner.banner-4 {
        padding-left: 35px;
        padding-right: 35px;
    }
    .collection-banner .contain-banner.banner-4 h2 {
        font-size: 24px;
    }
    .collection-banner .contain-banner.banner-4 h4 {
        font-size: 16px;
    }
    .collection-banner .contain-banner h2 {
        font-size: 40px;
    }
    .home-slider .home {
        height: 70vh;
    }
    .home-slider .slider-contain {
        height: 70vh;
    }
    .home-slider .slider-contain h1 {
        font-size: 50px;
    }
    .home-slider .slider-contain.slider-contain-banner h1 {
        font-size: 34px;
    }
    .home-slider .slider-contain.slider-contain-banner p {
        font-size: 18px;
        line-height: 30px;
    }
    .height-85 .home-slider .home {
        height: 80vh;
    }
    .height-85 .home-slider .slider-contain {
        height: 80vh;
    }
    .background .contain-bg {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .theme-card .offer-slider .media .media-body a h6 {
        margin-right: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .theme-card .offer-slider .media .media-body .rating i {
        padding-right: 3px;
    }
    .theme-card.card-border .offer-slider {
        padding-top: 0;
    }
    .full-box .theme-card .offer-slider img {
        padding: 15px 10px 15px;
    }
    .full-box .theme-card .offer-slider .product-box2 .media img {
        height: 250px;
    }
    .full-box .theme-card .offer-slider .product-box2 .media .media-body {
        padding-right: 5px;
    }
    .full-box .theme-card .offer-slider .product-box2 .media .media-body .color-variant {
        margin-top: 5px;
    }
    .full-box .theme-card .offer-slider .product-box2 .media .media-body .color-variant li {
        margin-top: 5px;
    }
    .product-style-5.product-box .addtocart_btn .add_cart {
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-radius: 8px;
    }
    .product-style-5.product-box .img-wrapper {
        margin-top: 10px;
    }
    .home-slider .slider-details {
        width: 335px !important;
        height: 335px !important;
    }
    .home-slider .slider-details h1 {
        font-size: 50px;
    }
    .home-slider .slider-details h2 {
        font-size: 36px;
    }
    .home-slider .slider-details .btn-white {
        margin-top: 0;
    }
    .home-slider.fullpage .home .slider-contain h1 {
        font-size: 35px;
    }
    .home-slider.fullpage .home .slider-contain p {
        max-width: 450px;
        font-size: 14px;
    }
    .home-slider.fullpage .home .slider-contain .btn-solid {
        padding: 10px 15px;
    }
    .about-section h2 {
        font-size: 22px;
    }
    .about-section .about-text p {
        line-height: 24px;
    }
    .about-section .service .service-block1 svg {
        margin-bottom: 5px;
    }
    .about-section .service .service-block1 h5 {
        line-height: 18px;
    }
    .about-section .small-section {
        padding-top: 20px;
    }
    .padding-bottom-cls {
        padding-bottom: 30px;
    }
    .add_to_cart.top,
    .add_to_cart.bottom {
        left: -300px;
        top: 0;
        height: 100vh;
        width: 300px;
    }
    .add_to_cart.top .cart-inner,
    .add_to_cart.bottom .cart-inner {
        height: 100vh;
        overflow: auto;
    }
    .add_to_cart.top .cart-inner .cart_top,
    .add_to_cart.bottom .cart-inner .cart_top {
        padding: 20px !important;
        margin-bottom: 20px;
    }
    .add_to_cart.top .cart-inner .cart_media,
    .add_to_cart.bottom .cart-inner .cart_media {
        padding: 0 20px !important;
        display: block;
    }
    .add_to_cart.top .cart-inner .cart_media .cart_product,
    .add_to_cart.bottom .cart-inner .cart_media .cart_product {
        padding: 0;
        width: 100%;
        display: block;
        overflow-y: hidden;
    }
    .add_to_cart.top .cart-inner .cart_media .cart_product li,
    .add_to_cart.bottom .cart-inner .cart_media .cart_product li {
        min-width: 100%;
        max-width: 100%;
        margin-right: 0;
        padding-bottom: 10px;
    }
    .add_to_cart.top .cart-inner .cart_media .cart_total,
    .add_to_cart.bottom .cart-inner .cart_media .cart_total {
        padding: 0;
        width: 100%;
    }
    .add_to_cart.top.open-side,
    .add_to_cart.bottom.open-side {
        left: 0;
    }
    .animation-sec .animated-icon .icon-1 {
        width: 110px;
    }
    .animation-sec .animated-icon .icon-2 {
        width: 90px;
    }
    .animation-sec .animated-icon .icon-3 {
        left: 32%;
        width: 60px;
        top: 108px;
    }
    .cycle-box-row > div {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .category-slide .img-category .img-sec {
        width: 85%;
    }
    .p-0-responsive {
        padding-top: 0 !important;
    }
    .single-product-feature {
        background-image: none !important;
    }
    .single-product-feature .upper-sec-feature {
        margin-bottom: 55px;
    }
    .single-product-feature .upper-sec-feature .height-cls-res > div {
        height: 100% !important;
    }
    .single-product-feature .lower-sec-feature {
        margin-bottom: 50px;
    }
    .single-product-feature .home-slider .home {
        height: auto !important;
    }
    .banner-style-1 .custom-height {
        height: 314px;
    }
    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
        height: 170px;
    }
    .button-dark.category-button .btn {
        padding: 13px 10px;
    }
    .button-dark.category-button .btn img {
        width: 24px;
    }
    .center-object-banner .full-banner.feature-banner .center-img {
        text-align: center;
    }
    .center-object-banner .full-banner.feature-banner .center-img img {
        width: 70%;
    }
    .gradient-category .gradient-border {
        height: 190px;
    }
    .cart-section tbody tr td,
    .wishlist-section tbody tr td {
        min-width: 186px;
    }
    .blog-detail-page .comment-section li {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .product-wrapper-grid.list-view .product-box .img-wrapper,
    .product-wrapper-grid.list-view .product-box .img-block {
        width: 50%;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
        width: 100%;
        border-left: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li:last-child {
        display: none;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
        width: 30%;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
        width: 30%;
    }
    .cart-section tbody tr td {
        min-width: 140px;
    }
    .cart-section tbody tr td .qty-box .input-group .form-control {
        width: 52px;
    }
    .cart-section tfoot tr td {
        padding-right: 25px;
    }
    .collection-collapse-block .collection-collapse-block-content .collection-brand-filter .category-list li:first-child {
        margin-top: 15px;
    }
    .collection-filter-block .product-service .media .media-body h4 {
        font-size: 16px;
    }
    .product-right h2 {
        font-size: 20px;
    }
    .testimonial .testimonial-slider .media .media-body {
        padding: 30px;
    }
    .testimonial .testimonial-slider .media .media-body p {
        line-height: 1.5;
    }
    .blog-page .blog-media {
        margin-bottom: 20px;
    }
    .blog-page .blog-media .blog-right {
        display: block;
        margin-top: 15px;
    }
    .blog-page .blog-media .blog-right p {
        line-height: 1.3;
    }
    .tab-product .tab-content.nav-material .single-product-tables table {
        width: 50%;
    }
    .product-description-box .border-product {
        padding-top: 10px;
        padding-bottom: 15px;
    }
    .product-description-box .product-icon .product-social li {
        padding-right: 4px;
    }
    .product-description-box .product-icon .wishlist-btn span {
        padding-left: 4px;
    }
    .single-product-tables.detail-section table {
        width: 75%;
    }
    .product-form-box .border-product {
        padding-top: 10px;
        padding-bottom: 15px;
    }
    .product-form-box .timer {
        padding-left: 17px;
    }
    .product-form-box .timer span {
        width: 55px;
    }
    .product-form-box .product-buttons .btn-solid,
    .product-form-box .product-buttons .btn-outline {
        padding: 7px 13px;
    }
    .product-form-box.product-right .timer {
        padding-left: 20px;
    }
    .product-form-box.product-right .timer span .padding-l {
        padding-left: 14px;
    }
    .product-form-box.product-right .product-buttons .btn-solid {
        padding: 5px 10px;
    }
    .product-accordion .single-product-tables table {
        width: 70%;
    }
    .tab-product .flex-column {
        -webkit-box-orient: unset !important;
        -webkit-box-direction: unset !important;
        -ms-flex-direction: unset !important;
        flex-direction: unset !important;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
    .tab-border {
        padding-top: 0;
    }
    .dashboard-section .counter-section .counter-box {
        padding: 20px;
    }
    .dashboard-section .counter-section .counter-box img {
        height: 40px;
        margin-right: 10px;
    }
    .theme-card .offer-slider img {
        height: 120px;
    }
    .container-fluid.custom-container {
        padding-left: 50px;
        padding-right: 50px;
    }
    .dark-box > div {
        max-width: 25% !important;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 25% !important;
        flex: 0 0 25% !important;
    }
    .dark-box.partition-five > div:nth-child(-n + 4) {
        margin-bottom: 20px;
    }
    .sticky-bottom-cart .selection-section .form-group {
        width: 130px;
    }
    .product-box-timer.timer span {
        width: 60px;
    }
    .product-right .product-buttons .btn-solid,
    .product-right .product-buttons .btn-outline {
        padding: 7px 15px;
    }
    .product-right .timer {
        padding-left: 30px;
    }
    .modern-box {
        padding: 25px 20px;
    }
    .gradient-category .gradient-border {
        height: 120px;
    }
    .loader_skeleton .category-ldr .row .category-block {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .loader_skeleton .product-top-filter .row > div:first-child {
        border-left: 1px solid #f3f3f3;
        border-right: 1px solid #f3f3f3;
        border-bottom: 1px solid #f3f3f3;
    }
    .loader_skeleton .product-top-filter .row > div:last-child {
        border-right: 1px solid #f3f3f3;
    }
    .loader_skeleton .tab-product.vertical-tab ul li {
        display: inline-block;
        width: 16%;
        height: 30px;
        margin-top: 0;
        margin-right: 10px;
    }
}
@media (min-width: 992px) {
    .demo-modal .modal-lg {
        max-width: 1400px;
    }
    .exit-modal .modal-lg {
        max-width: 600px;
    }
}
@media (max-width: 991px) and (min-width: 767px) {
    .partition-f > div + div + div {
        margin-top: 30px;
    }
    .lookbook .lookbook-block .lookbook-dot .dot-showbox {
        width: 80px;
    }
    .lookbook .lookbook-block .lookbook-dot .dot-showbox .dot-info h5 {
        line-height: 15px;
    }
}
@media (max-width: 991px) {
    h2 {
        font-size: 28px;
    }
    .custom-container {
        padding-left: 25px;
        padding-right: 25px;
    }
    .header-style-1 .navbar .nav-link {
        padding-right: 18px;
        padding-left: 0;
        font-size: 14px;
    }
    .header-style-5.color-style.style-classic .main-menu .onhover-div {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .header-style-5.color-style.style-classic .main-menu .menu-left .navbar {
        padding: 25px 45px 25px 0;
    }
    .header-style-5.color-style.style-classic .toggle-nav {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .portfolio-padding {
        padding-bottom: 20px;
    }
    .banner-offer .collection-banner .contain-banner.banner-3 h2 {
        font-size: calc(16px + (34 - 16) * ((100vw - 320px) / (1920 - 320)));
        margin: calc(2px + (10 - 2) * ((100vw - 320px) / (1920 - 320))) 0 !important;
    }
    .banner-offer .collection-banner .contain-banner.banner-3 h4 {
        font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    }
    .banner-offer .collection-banner .contain-banner.banner-3 h6 {
        font-size: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
    }
    .small-section {
        padding: 30px 0;
    }
    .service-w-bg .service-block svg {
        margin-bottom: 0;
    }
    header.header-tools {
        position: relative;
        top: 0;
    }
    header.header-tools .top-header {
        background-color: #333333;
    }
    header.header-tools .top-header .container {
        background-color: transparent;
    }
    header.header-tools .logo-menu-part {
        background-color: #fff;
    }
    header.header-tools .logo-menu-part > .container {
        border-bottom: none;
    }
    header.header-tools.stickycls {
        position: fixed;
        background-color: #fff;
    }
    header.header-christmas {
        position: relative;
        background-color: #e34041;
        margin-bottom: -50px;
    }
    .tools_slider .home-slider .slider-contain {
        margin-top: 0;
    }
    footer.footer-5 .footer-theme2 .subscribe-block {
        border-left: none;
        border-right: none;
    }
    footer.footer-black .below-section {
        padding-top: 95px;
    }
    footer.footer-black.footer-light .subscribe {
        border-right: none;
    }
    footer.footer-classic .upper-footer .small-section {
        padding: 30px 0;
    }
    .absolute_banner .collection-banner .absolute-contain h3 {
        font-size: 16px;
    }
    .absolute_banner .collection-banner .absolute-contain h4 {
        font-size: 14px;
    }
    .tools_product .multiple-slider > div:nth-child(-n + 2) {
        margin-bottom: 0;
    }
    .tools_product .tools-grey {
        margin-top: 30px;
    }
    .tools_product .banner-tools {
        margin-left: 10px;
        margin-right: 10px;
    }
    .tools-service .service-block + .service-block {
        border-left: none;
    }
    .tools-service .service-block svg,
    .tools-service .service-block1 svg {
        margin-bottom: 0;
    }
    .tools-brand .row {
        margin: 0 10px;
        padding: 10px 0;
    }
    .tools_slider .home-slider .slider-contain {
        margin-left: 40px;
    }
    .tools_slider .home-slider .home .tools-parts,
    .tools_slider .home-slider .home .tools-parts1 {
        margin-top: 20px;
    }
    .tools_slider .home-slider .home .tools-parts img,
    .tools_slider .home-slider .home .tools-parts1 img {
        width: 180px;
    }
    .tools_slider .home-slider .home .tools-parts {
        right: 0;
    }
    .tools_slider .home-slider .home .tools-parts1 {
        right: 10%;
    }
    .tools_slider .home-slider .home #tools-move2 {
        right: 7%;
    }
    .tools-parallax-product .tools-description h3 {
        text-align: center;
    }
    .tools-parallax-product .tools-description .tools-form {
        text-align: center;
    }
    .tools-parallax-product .tools-description .tools-form .search-box {
        margin: 20px auto 20px;
    }
    .tools-parallax-product .tools-description .tools-form .btn-find {
        background-size: 1100px;
    }
    .tools-parallax-product .tools-grey {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 30px;
    }
    .tools-parallax-product.full-banner {
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .pet-parallax .pet-decor {
        left: 34px;
        bottom: -86px;
    }
    .pet-parallax .pet-decor img {
        width: 165px;
    }
    .pet-parallax .banner-contain p {
        max-width: 100%;
    }
    .service_slide .service-home {
        position: relative;
    }
    .service_slide .service-home .service-block1 {
        padding: 0;
    }
    .service_slide .partition4 > div + div {
        margin-top: 0;
    }
    .service_slide .partition4 > div + div + div {
        margin-top: 30px;
    }
    .product-full-tab {
        padding-top: 50px !important;
    }
    .blog-section .review-box {
        margin-top: 30px;
    }
    .blog-section .review-box .review-content p {
        margin-bottom: 45px;
    }
    hr.style1 {
        margin-top: 12px;
        margin-bottom: 12px;
    }
    h4 {
        font-size: 16px;
    }
    .gym-banner .collection-banner .contain-banner {
        padding-left: 30px;
        padding-right: 30px;
    }
    .blog-details h4 {
        margin-top: 17px;
        font-size: 13px;
    }
    .blog-details p {
        font-size: 15px;
        line-height: 1.6;
        margin-top: 10px;
    }
    .service-block svg,
    .service-block1 svg {
        margin-bottom: 20px;
        height: auto;
        width: 46px;
    }
    .service-style-border.tools-service .service-block + .service-block + .service-block {
        margin-top: 20px;
    }
    .partition_3 > div + div {
        margin-top: 30px;
    }
    .partition4 > div + div + div {
        margin-top: 30px;
    }
    .banner-timer .banner-text h2 {
        font-size: 20px;
        line-height: 1.5;
    }
    .banner-timer .timer span {
        width: 65px;
    }
    .banner-timer .timer span.padding-l {
        right: -31px;
    }
    .banner-timer .timer p {
        font-size: 14px;
    }
    .about-text p {
        line-height: 24px;
    }
    .category-bg-section .category-border-2 .border-padding:nth-last-child(-n + 2) {
        padding-top: 20px;
    }
    .category-bg.onerow-cat {
        padding: 20px 30px;
    }
    .footer-light .subscribe {
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: none;
        margin-bottom: 5px;
    }
    .footer-light .subscribe p {
        display: none;
    }
    .footer-light .subscribe-form {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }
    .footer-theme .col {
        max-width: 50%;
        -ms-flex-preferred-size: unset;
        flex-basis: unset;
    }
    .footer-theme .footer-logo {
        margin-bottom: 30px;
    }
    .footer-theme .sub-title h4 {
        margin-bottom: 10px;
    }
    .footer-social {
        margin-top: 15px;
    }
    .subscribe-wrapper {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .footer-theme2 .footer-mobile-title {
        display: none !important;
    }
    .footer-theme2 h4 {
        padding-bottom: 10px;
    }
    .footer-theme2 .col {
        -ms-flex-preferred-size: unset;
        flex-basis: unset;
        padding: 20px 0;
    }
    .footer-theme2.section-light .footer-block h4 {
        padding-bottom: 15px;
    }
    .footer-theme2.section-light .footer-block .subscribe-white {
        border: none;
    }
    .footer-theme2 .footer-logo {
        margin-bottom: 20px;
    }
    .footer-theme2 .subscribe-block {
        border: none;
    }
    .social-white li {
        padding-left: 10px;
        padding-right: 10px;
    }
    .category-border div .category-banner .category-box h2 {
        padding: 5px 15px;
        font-size: 30px;
    }
    .category-bg .image-block.even:after {
        bottom: 85%;
    }
    .category-bg .image-block:after {
        width: 35px;
    }
    .category-bg .image-block:hover:after {
        height: 70px;
    }
    .category-bg .contain-block h2 {
        font-size: 20px;
        margin-top: 8px;
    }
    .category-bg .contain-block:after {
        width: 35px;
    }
    .category-bg .contain-block.even:after {
        top: 85%;
    }
    .category-bg .contain-block .category-btn {
        margin-bottom: 15px;
        margin-top: 15px;
        letter-spacing: 0.2em;
        padding: 10px 15px;
    }
    .category-bg .contain-block:after {
        bottom: 85%;
    }
    .category-bg .contain-block:hover:after {
        height: 70px;
    }
    .no-slider .product-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: calc(50% - 30px);
        margin: 0 15px 30px !important;
    }
    .no-slider .product-box:nth-last-child(-n + 2) {
        margin: 0 15px 0 !important;
    }
    .no-slider.five-product .product-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: calc(50% - 30px);
        margin: 0 15px 30px !important;
    }
    .no-slider.five-product .product-box:nth-last-child(-n + 2) {
        margin: 0 15px 0 !important;
    }
    .no-slider.five-product-row .product-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: calc(33.33% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }
    .full-banner {
        padding-top: 180px;
        padding-bottom: 180px;
    }
    .full-banner.parallax-layout {
        padding-top: 180px;
        padding-bottom: 180px;
    }
    .full-banner.feature-banner .feature-object li:nth-child(2),
    .full-banner.feature-banner .feature-object-right li:nth-child(2) {
        padding-right: 0;
        padding-left: 0;
    }
    .full-banner.feature-banner .feature-object li:nth-child(3),
    .full-banner.feature-banner .feature-object-right li:nth-child(3) {
        padding-right: 0;
        padding-left: 0;
    }
    .full-banner.feature-banner .center-img {
        display: none;
    }
    .full-banner.feature-banner .feature-object-right {
        margin-left: 0;
    }
    .full-banner.feature-banner .banner-decor .left-img img,
    .full-banner.feature-banner .banner-decor .right-img img {
        width: 100px;
    }
    .full-banner.feature-banner h2 {
        margin-bottom: 30px;
    }
    .full-banner .banner-contain h2 {
        font-size: 60px;
    }
    .full-banner .banner-contain h3 {
        font-size: 35px;
    }
    .full-banner .banner-contain h4 {
        font-size: 20px;
        padding-top: 5px;
    }
    .full-banner .decor {
        display: none;
    }
    .center-object-banner .full-banner.feature-banner h2 {
        margin-bottom: 30px;
    }
    .collection-banner .contain-banner.banner-3 {
        padding-left: 30px;
        padding-right: 30px;
    }
    .collection-banner .contain-banner.banner-3 h2 {
        font-size: 20px;
    }
    .collection-banner .contain-banner.banner-4 {
        padding-left: 40px;
        padding-right: 40px;
    }
    .collection-banner .contain-banner.banner-4 h2 {
        font-size: 18px;
    }
    .collection-banner .contain-banner.banner-4 h4 {
        font-size: 18px;
    }
    .collection-banner .contain-banner h2 {
        font-size: 25px;
    }
    .collection-collapse-block {
        border: none;
    }
    .collection-collapse-block.open {
        border: none;
    }
    .service_slide .home-slider .slider-contain {
        height: 65vh;
    }
    .margin-add {
        margin-top: 0;
    }
    .home-slider .home {
        height: 65vh;
    }
    .home-slider .slider-contain {
        height: 65vh;
    }
    .home-slider .slider-contain h1 {
        font-size: 36px;
    }
    .home-slider .slider-contain .btn-solid,
    .home-slider .slider-contain .btn-outline {
        margin-top: 17px;
    }
    .home-slider .slider-contain.slider-contain-banner h1 {
        font-size: 24px;
    }
    .home-slider .slider-contain.slider-contain-banner p {
        margin-top: 10px;
        line-height: 28px;
    }
    .home-slider .slider-details {
        top: 20%;
        padding: 0;
        width: 260px !important;
        height: 260px !important;
    }
    .home-slider .slider-details h1 {
        line-height: 1;
        font-size: 30px;
        margin: 5px 0;
    }
    .home-slider .slider-details h2 {
        font-size: 24px;
    }
    .home-slider .slider-details h3 {
        font-size: 20px;
    }
    .home-slider .slider-details h4 {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 2px;
    }
    .home-slider .slider-details .btn-white {
        padding: 7px 14px;
        margin-top: 5px;
    }
    .home-slider:hover .slick-next {
        right: 90px;
    }
    .home-slider:hover .slick-prev {
        left: 90px;
    }
    .height-85 .home-slider .home {
        height: 70vh;
    }
    .height-85 .home-slider .slider-contain {
        height: 70vh;
    }
    .background .contain-bg {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .background .contain-bg h4 {
        font-size: 16px;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 img {
        height: 150px;
    }
    .beauty-about .about-text p {
        text-align: center;
    }
    .theme-card .offer-slider img {
        padding: 10px 10px 10px 0;
    }
    .theme-card.card-border .offer-slider img {
        padding: 10px 10px 10px 30px;
    }
    .full-box .center-slider .offer-slider .product-box .product-info h4 {
        padding-bottom: 5px;
    }
    .full-box .center-slider .offer-slider .product-box .product-info .btn-outline {
        padding: 7px 20px;
    }
    .full-box .theme-card .offer-slider .product-box2 .media img {
        height: 150px;
    }
    .full-box .theme-card .offer-slider .product-box2 .media .media-body .color-variant li {
        margin-top: 0;
    }
    .alert {
        max-width: 45% !important;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content img {
        margin-bottom: 20px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
        margin-bottom: 18px;
    }
    .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 15px;
    }
    .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media .media-body .buttons a {
        font-size: 13px;
        padding: 4px 10px;
        margin: 3px 6px;
    }
    .theme-modal.exit-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 20px;
    }
    .parallax-cls .banner-contain {
        background-color: rgba(255, 255, 255, 0.5);
        padding: 35px;
    }
    .parallax-cls section .banner-contain {
        margin-top: 0;
    }
    .about-section {
        padding-top: 30px;
    }
    .about-section h2 {
        text-align: center;
    }
    .product-box .cart-info {
        bottom: 20px;
    }
    .absolute-banner {
        margin-top: -60px;
    }
    .absolute-banner.search-section {
        margin-top: 0;
    }
    .absolute-banner.search-section .absolute-bg .row > div {
        margin-bottom: 0;
    }
    .absolute-banner.search-section .absolute-bg .row > div.search-col {
        margin-bottom: 0;
    }
    .absolute-banner.search-section .absolute-bg .row > div.search-col .search-btn {
        width: 100%;
        margin: 0 auto;
    }
    .custom-cake .steps-media img {
        width: 42px;
    }
    header.header-style.header-tools .top-header {
        background-color: #fff;
    }
    header.header-style.header-tools .top-header .onhover-dropdown:before {
        display: none;
    }
    .main-feature .key-feature {
        margin-top: -30px;
    }
    .main-feature .key-feature > div {
        margin-top: 30px;
    }
    .main-feature .key-feature .theme-collection .image-contain {
        padding: 30px;
    }
    .dark-box > div {
        max-width: 33.33% !important;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 33.33% !important;
        flex: 0 0 33.33% !important;
    }
    .dark-box.partition-five > div:nth-child(-n + 4) {
        margin-bottom: 0;
    }
    .dark-box.partition-five > div:nth-child(-n + 3) {
        margin-bottom: 20px;
    }
    .dark-box.four-product > div {
        max-width: 33.33% !important;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 33.33% !important;
        flex: 0 0 33.33% !important;
    }
    .banner-style-2.absolute-banner .absolute-bg .collection-banner .absolute-img img {
        width: 29%;
        left: 26px;
        top: -12px;
    }
    .service-style-border .service-block {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .product-left-title {
        margin-bottom: 30px;
    }
    .product-left-title h3 {
        max-width: 100%;
    }
    .product-left-title.right-content {
        text-align: left;
    }
    .product-left-title.right-content .slick-custom-arrow {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .cookie-bar.left-bottom {
        display: none;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
    }
    .cookie-bar.left-bottom img {
        display: none;
    }
    .cookie-bar.left-bottom p {
        margin-bottom: 6px;
    }
    .cookie-bar.left-bottom .btn-close {
        display: none;
    }
    .cookie-bar.left-bottom.subscribe-box {
        left: 20px;
        bottom: 20px;
    }
    .cookie-bar.left-bottom.subscribe-box .btn-close {
        display: inline-block;
    }
    .deal-category .deal-content h2 {
        font-size: 22px;
    }
    .shop-sidebar-demo .shop-sidebar {
        height: 100vh;
        top: 0;
        width: 290px;
        left: -300px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        z-index: 6;
    }
    .shop-sidebar-demo .shop-sidebar.show {
        left: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .shop-sidebar-demo .shop-main {
        margin-left: 0;
        width: 100%;
    }
    .sidebar-shop-footer {
        margin-left: 0;
    }
    .login-page .authentication-right {
        height: auto;
    }
    .testimonial .testimonial-slider .media .media-body {
        padding: 0 30px;
        height: 100%;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .testimonial .testimonial-slider .media .media-body p {
        margin-bottom: 0;
    }
    .testimonial .testimonial-slider .slick-track .slick-slide:nth-child(even) .media {
        border-left: none;
        padding-left: 0;
    }
    .blog-detail-page .blog-advance ul {
        margin-bottom: 20px;
    }
    .blog-detail-page .blog-advance p:last-child {
        margin-bottom: 0;
    }
    .top-banner-content h4 {
        font-size: 20px;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
        border-top: 1px solid #ddd;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
        display: none;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view {
        display: none;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view,
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
        width: 50%;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view:before,
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter:before {
        right: 15px !important;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select,
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select {
        border-left: 1px solid #ddd;
        padding: 21px 34px 21px 34px;
        border-top: none;
        border-bottom: none;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select {
        border-right: none !important;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
        border-top: 1px solid #ddd;
    }
    .filter-main-btn {
        display: block;
    }
    .collection-filter {
        position: fixed !important;
        height: 100vh;
        top: 0;
        left: -350px;
        background-color: #fff;
        z-index: 99;
        overflow-y: scroll;
        padding: 0;
        width: calc(300px + (320 - 300) * ((100vw - 320px) / (992 - 320)));
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -webkit-box-shadow: 1px 0 5px #ddd;
        box-shadow: 1px 0 5px #ddd;
        display: block;
    }
    .collection-filter.show {
        left: 0;
    }
    .collection-filter .collection-sidebar-banner {
        text-align: center;
    }
    .collection-filter .theme-card {
        padding-left: 30px;
        padding-right: 30px;
    }
    .collection-filter .collection-sidebar-banner {
        padding: 0 30px;
    }
    .collection-filter.open {
        left: 0;
    }
    .collection-filter-block {
        border: none;
        background-color: transparent;
    }
    .collection-mobile-back {
        display: block;
        cursor: pointer;
        padding: calc(11px + 4 * (100vw - 320px) / 671) calc(12px + 8 * (100vw - 320px) / 671);
        position: sticky;
        top: 0;
        left: 0;
        background-color: #f6f6f6;
        z-index: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid #eee;
    }
    .collection-mobile-back:hover {
        background-color: #f6f6f6;
    }
    .collection .section-t-space {
        padding-top: 30px;
    }
    .collection .partition-collection > div:nth-last-child(1) {
        margin-top: 30px;
    }
    .collection .partition-collection > div:nth-last-child(2) {
        margin-top: 30px;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .open-popup.open {
        min-width: unset;
        border: none;
    }
    .right-login {
        margin-top: 30px;
    }
    .cart-section .cart-table thead th:last-child {
        display: none;
    }
    .cart-section tbody tr td {
        min-width: 135px;
    }
    .cart-section tbody tr td:last-child {
        display: none;
    }
    .cart-section .cart-buttons > div:last-child {
        padding-right: 15px;
    }
    .cart-section tfoot tr td {
        padding-right: 0;
    }
    .wishlist-section tbody tr td {
        min-width: 138px;
    }
    .product-right {
        text-align: center;
        margin: 20px 0 10px 0;
    }
    .product-right h2 {
        margin-top: 15px;
    }
    .product-right .rating-section {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product-right .detail-section,
    .product-right .product-icon {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product-right .product-description .qty-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product-right .size-text {
        text-align: left;
    }
    .product-right .timer {
        text-align: left;
    }
    .product-right .product-icon .product-social li {
        padding-right: 20px;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .open-popup {
        text-align: left;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter {
        height: 100vh;
        left: -350px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .search-count {
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .collection-view,
    .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view {
        display: none;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
        width: 50%;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view:before,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
        top: 13px;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
        left: unset;
        right: 35px;
    }
    .pro_sticky_info {
        border: none;
        padding: 0;
        margin-top: 0;
        margin-bottom: -20px;
    }
    .product-form-box {
        margin-bottom: 10px;
    }
    .dashboard-left {
        position: fixed;
        height: 100vh;
        top: 0;
        left: -350px;
        background-color: #fff;
        z-index: 99;
        padding: 0 35px 35px;
        max-width: 350px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-box-shadow: 0 0 8px 0 #ddd;
        box-shadow: 0 0 8px 0 #ddd;
    }
    .dashboard-left .block-title h2 {
        display: none;
    }
    .dashboard-left .block-content {
        border: none;
        padding: 0;
        margin-top: 20px;
    }
    .dashboard-left .block-content ul li:hover {
        padding-left: 0;
    }
    .account-sidebar {
        display: block;
    }
    .typography_section .row > div:first-child .typography-box:last-child {
        margin-bottom: 30px;
    }
    .product-slick .slick-prev,
    .product-slick .slick-next,
    .rtl-product-slick .slick-prev,
    .rtl-product-slick .slick-next,
    .product-right-slick .slick-prev,
    .product-right-slick .slick-next,
    .rtl-product-right-slick .slick-prev,
    .rtl-product-right-slick .slick-next {
        opacity: 1;
    }
    .product-slick .slick-prev,
    .rtl-product-slick .slick-prev,
    .product-right-slick .slick-prev,
    .rtl-product-right-slick .slick-prev {
        left: 20px;
    }
    .product-slick .slick-next,
    .rtl-product-slick .slick-next,
    .product-right-slick .slick-next,
    .rtl-product-right-slick .slick-next {
        right: 20px;
    }
    .order-up {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .bundle .bundle_img {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .bundle .bundle_detail .theme_checkbox {
        padding: 0 20%;
    }
    .checkout-page .checkout-form .checkout-details {
        margin-top: 30px;
    }
    .vendor-cover .bg-size {
        height: 270px;
    }
    .vendor-profile .profile-left {
        display: block;
    }
    .vendor-profile .profile-left .profile-image {
        margin: 0 auto;
        width: 100%;
    }
    .vendor-profile .profile-left .profile-detail {
        margin: 0 auto;
        text-align: center;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(34, 38, 42, 0.12);
        padding-top: 15px;
        width: 100%;
        margin-top: 15px;
    }
    .vendor-profile .profile-left .vendor-contact {
        width: 100%;
        text-align: center;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(34, 38, 42, 0.12);
        padding-top: 15px;
        margin-top: 15px;
    }
    .vendor-profile .profile-left .vendor-contact > div {
        width: 100%;
    }
    .vendor-profile .profile-left .vendor-contact .footer-social {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .vendor-profile .profile-left .vendor-contact .footer-social li {
        padding: 0 5px;
    }
    .become-vendor h4 {
        margin-bottom: 20px;
    }
    .become-vendor .step-bg .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .become-vendor .step-bg .row > div {
        padding-left: 15px;
        padding-right: 15px;
    }
    .become-vendor .step-bg .row > div:nth-child(2) {
        margin-top: 0;
        margin-bottom: 30px;
    }
    .become-vendor .step-bg .row > div:nth-child(1) {
        margin-bottom: 30px;
    }
    .become-vendor .step-bg .row > div:nth-child(3) {
        margin-bottom: 0;
    }
    .become-vendor .step-bg:before {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        background-color: transparent;
        overflow: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs .nav-item {
        white-space: nowrap;
    }
    .dashboard-section .counter-section {
        margin-top: 20px;
    }
    .dashboard-section .faq-tab .nav-tabs .nav-item .nav-link.active {
        border: none;
        width: 100%;
    }
    .faq-tab .nav-tabs .nav-item .nav-link.active {
        border-bottom: 2px solid var(--theme-color);
        border-right: none;
    }
    .bg-title .theme-tab .bg-title-part {
        margin-top: 30px;
    }
    .tracking-page .wrapper .arrow-steps .step {
        min-width: 130px;
    }
    .top-filter .collection-collapse-block {
        padding-bottom: 20px;
    }
    .sticky-bottom-cart .selection-section .form-group {
        width: 170px;
    }
    .order-success-sec {
        margin-top: 20px;
    }
    .order-success-sec .row {
        margin-bottom: -20px;
    }
    .order-success-sec .row > div {
        margin-bottom: 20px;
    }
    .tracking-page .order-map {
        margin-top: 20px;
        padding-bottom: 20px;
    }
    .tools_product .multiple-slider {
        margin-bottom: 0;
    }
    .element-page .left-sidebar .sticky-sidebar {
        position: fixed !important;
        width: 290px;
        height: 100vh;
        overflow: auto;
        left: -300px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        z-index: 9;
        background-color: #fff;
        top: 0;
        -webkit-box-shadow: 1px 0 5px #ddd;
        box-shadow: 1px 0 5px #ddd;
    }
    .element-page .left-sidebar .sticky-sidebar .doc-nav {
        padding: 25px;
    }
    .element-page .left-sidebar .sticky-sidebar .collection-mobile-back {
        padding: 25px;
    }
    .element-page .left-sidebar .sticky-sidebar.show {
        left: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .product-page-details .dashed-border-box .payment-img {
        margin-top: 8px;
    }
    .loader_skeleton .collection-banner .contain-banner {
        padding-left: 40px;
        padding-right: 40px;
    }
    .loader_skeleton .category-ldr .row .category-block {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .loader_skeleton .product-top-filter {
        border-top: 1px solid #f3f3f3;
    }
    .loader_skeleton .product-top-filter .row > div:nth-child(3) {
        border-right: 1px solid #f3f3f3;
    }
    .loader_skeleton .product-page .product-right h2,
    .loader_skeleton .product-page .product-right h3,
    .loader_skeleton .product-page .product-right h4 {
        margin-left: auto;
        margin-right: auto;
    }
    .loader_skeleton .product-page .product-right .btn-group {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .loader_skeleton .tab-product {
        margin-top: 25px !important;
    }
    .loader_skeleton .blog-page .order-sec .product-box .media {
        display: block;
    }
    .loader_skeleton .blog-page .order-sec .product-box .img-wrapper {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .container-fluid.custom-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .modern-box {
        margin-top: 50px;
    }
    .modern-box .absolute-img img {
        width: 50%;
        margin-left: 20px;
        margin-top: -76px;
    }
    .modern-box .modern-content p {
        display: none;
    }
    .title-basic {
        display: block;
    }
    .title-basic .timer {
        margin-left: 0;
        margin-top: 15px;
        padding-left: 15px;
    }
    .title-basic .timer p {
        font-size: 16px;
    }
    .title-basic .timer span {
        width: 60px;
    }
    .title-basic .timer span .padding-l {
        padding-left: 50px;
    }
    .game-banner .banner-timer {
        padding-top: 15px;
        padding-bottom: 30px;
    }
    .space_sm {
        padding-top: 0 !important;
    }
    header.header-5.left-sidebar-header {
        position: relative;
    }
    header.header-5.text-light-header {
        position: relative;
        background-color: #0c0d0c;
    }
    header.header-style .top-header .header-dropdown > li {
        padding: 25px 0 25px 10px;
    }
    .header-style-1 .main-menu .brand-logo {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .header-style-1 .toggle-nav {
        top: -43px;
    }
    .header-style-5.color-style .main-menu .menu-right .icon-nav li {
        padding-left: 12px;
    }
    .header-style-5.color-style .top-header .header-dropdown > li {
        padding-left: 12px;
    }
    .main-menu .menu-right .icon-nav li {
        padding-left: 10px;
    }
    .gym-slider .home-slider .home {
        height: 70vh;
    }
    .gym-slider .home-slider .home .slider-contain {
        height: 70vh;
    }
    .theme-modal.cart-modal .product-section {
        display: none;
    }
    .addtocart_count .product-box:hover .cart-info a:nth-child(1) i,
    .addtocart_count .product-box:hover .cart-info a:nth-child(2) i,
    .addtocart_count .product-box:hover .cart-info a:nth-child(3) i {
        -webkit-animation: none;
        animation: none;
    }
    .addtocart_count .center-slider .offer-slider .add-button,
    .addtocart_count .center-slider .offer-slider .cart-info {
        display: none;
    }
    .addtocart_count .center-slider .offer-slider .product-box .product-detail {
        margin-top: 25px;
    }
    .absolute_banner {
        margin-bottom: 0;
    }
    .absolute_banner .collection-banner .absolute-contain {
        bottom: 25px;
    }
    .absolute_banner .collection-banner .absolute-contain h3 {
        font-size: 20px;
    }
    .absolute_banner .collection-banner .absolute-contain h4 {
        font-size: 16px;
    }
    .box-product .full-box .row > div:nth-last-child(-n + 3) {
        margin-top: 30px;
    }
    .advertise-section .full-banner .banner-contain h2 {
        font-size: 60px;
        margin-top: -10px;
    }
    .absolute-banner {
        margin-top: -60px;
    }
    .absolute-banner.search-section {
        margin-top: 0;
    }
    .absolute-banner.search-section .absolute-bg .row > div {
        margin-bottom: 20px;
    }
    .absolute-banner.search-section .absolute-bg .row > div.search-col {
        margin-bottom: 0;
    }
    .absolute-banner.search-section .absolute-bg .row > div.search-col .search-btn {
        width: 70%;
        margin: 0 auto;
    }
    footer.footer-classic .upper-footer .small-section {
        padding: 20px 0;
    }
    footer.footer-classic .subscribe-form .form-control {
        padding: 8px;
    }
    footer.footer-black.footer-light .footer-theme .footer-title {
        border-bottom: 1px solid #505050;
    }
    footer.footer-black.footer-light .footer-theme .footer-title h4 {
        margin-bottom: 14px;
    }
    .footer-style-1 .contact-list {
        margin-bottom: 10px;
    }
    .footer-style-1 .footer-content .footer-social li {
        padding-right: 5px;
    }
    .insta-title {
        width: 170px;
        height: 30px;
    }
    .insta-title h4 {
        font-size: 14px;
    }
    .tools_slider .home-slider .home .tools-parts,
    .tools_slider .home-slider .home .tools-parts1 {
        display: none;
    }
    .tools_slider .home-slider .slider-contain {
        margin-left: 0;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .tools-service .service-block + .service-block {
        margin-top: 0;
    }
    .tools-service .service-block + .service-block + .service-block {
        margin-top: 20px;
    }
    .tools-grey .product-box .img-wrapper {
        padding-bottom: 35px;
    }
    .tools-grey .product-box .cart-info {
        bottom: 10px;
    }
    .tools-grey .product-box .cart-info button {
        font-size: 0;
        width: unset;
        background-color: #eef0f1;
    }
    .tools-grey .product-box .cart-info button i {
        display: block;
    }
    .tools-grey .product-box .cart-info button:hover i {
        color: #fff;
    }
    .tools-grey .product-box .cart-info .mobile-quick-view {
        display: block;
        margin-left: 5px;
    }
    .tools-grey .product-box .quick-view-part {
        display: none;
    }
    .tools-grey .product-box:hover .img-wrapper .front img {
        opacity: 1;
    }
    .tools-grey .product-box:hover .ribbon {
        display: block;
    }
    .tools-parallax-product .tools-grey .slick-prev,
    .tools-parallax-product .tools-grey .slick-next {
        display: none !important;
    }
    .tools-parallax-product.full-banner {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .bag-product .product-box .img-wrapper,
    .bag-product .product-wrap .img-wrapper {
        margin-bottom: 0;
    }
    .bag-product .product-box .product-info .add-btn,
    .bag-product .product-wrap .product-info .add-btn {
        bottom: 0;
        position: relative;
    }
    .bag-product .product-box .product-info .add-btn .btn,
    .bag-product .product-wrap .product-info .add-btn .btn {
        padding: 4px 5px;
        margin-top: 7px;
    }
    .bag-product .product-box.product-style-2 .product-info .add-btn,
    .bag-product .product-wrap.product-style-2 .product-info .add-btn {
        margin-top: 8px;
    }
    .bag-product .product-box.product-style-2 .product-info .color-variant,
    .bag-product .product-wrap.product-style-2 .product-info .color-variant {
        padding-top: 5px;
    }
    .pet-parallax .pet-decor {
        display: none;
    }
    .j-box .product-box .cart-info {
        bottom: 0;
        position: relative;
        opacity: 1;
    }
    .j-box .product-box .cart-info a i {
        padding: 10px;
    }
    .j-box.style-box .product-box .product-detail {
        padding-top: 0;
    }
    .pets-box .product-box .img-wrapper .cart-info {
        -webkit-transform: none;
        transform: none;
    }
    .pets-box .product-box .img-wrapper .cart-info i {
        font-size: 16px;
    }
    .service-w-bg .service-block svg {
        margin-bottom: 15px;
    }
    .layout3-menu .main-menu .brand-logo img {
        height: 25px;
    }
    .game-product .product-box .cart-info {
        right: 5px;
    }
    .game-product .product-box .cart-info a i {
        margin: 7px 0;
        padding: 7px;
        font-size: 14px;
    }
    .game-product .product-box .add-button {
        bottom: 0;
    }
    .game-product .product-box .img-wrapper {
        padding-bottom: 37px;
    }
    .game-product .product-box:hover .cart-info a:nth-child(1) i {
        -webkit-animation: none;
        animation: none;
    }
    .game-product .theme-tab .tab-title .current a,
    .game-product .theme-tab .tab-title2 .current a {
        border-bottom: none;
        padding-bottom: 0;
    }
    .gym-product .product-box .img-wrapper .cart-info {
        display: block;
        height: unset;
        top: unset;
        left: unset;
        right: 0;
    }
    .gym-product .product-box .img-wrapper .cart-info i {
        background: none;
        color: #6f6f6f;
    }
    .gym-product .product-box .img-wrapper .cart-info button:hover i,
    .gym-product .product-box .img-wrapper .cart-info a:hover i {
        color: var(--theme-color);
    }
    .gym-product .product-box:hover .img-wrapper .cart-info button {
        -webkit-animation: none;
        animation: none;
    }
    .gym-product .product-box:hover .img-wrapper .cart-info a:nth-child(2) i {
        -webkit-animation: none;
        animation: none;
    }
    .gym-product .product-box:hover .img-wrapper .cart-info a:nth-child(3) i {
        -webkit-animation: none;
        animation: none;
    }
    .gym-product .product-box:hover .img-wrapper .cart-info a:nth-child(4) i {
        -webkit-animation: none;
        animation: none;
    }
    .game-banner .banner-timer .banner-text {
        background-color: transparent;
    }
    .detail-cannabis .detail_section {
        margin-top: 30px;
        text-align: center;
    }
    .detail-cannabis .row > div:first-child .detail_section {
        margin-top: 0;
    }
    .border-box.tools-grey .product-box .img-wrapper {
        padding-bottom: 0;
    }
    .border-box.tools-grey .product-box .cart-info a,
    .border-box.tools-grey .product-box .cart-info button {
        background-color: #fff;
    }
    .service_slide .home-slider .slider-contain {
        height: 60vh;
    }
    .portfolio-section.metro-section .product-box .cart-wrap a i {
        opacity: 1;
        font-size: 16px;
        padding: 5px;
    }
    .portfolio-section.metro-section .product-box .cart-wrap button i {
        font-size: 16px;
        padding: 5px;
    }
    .portfolio-section.metro-section .product-box .product-detail {
        opacity: 1;
        bottom: 15px;
        background-color: rgba(255, 255, 255, 0.5);
    }
    .portfolio-section.metro-section .product-box .product-detail h6 {
        color: #000;
    }
    .portfolio-section.metro-section .product-box:hover .product-detail {
        opacity: 1;
    }
    .portfolio-section.metro-section .product-box:hover .cart-wrap a:nth-child(2) i,
    .portfolio-section.metro-section .product-box:hover .cart-wrap a:nth-child(3) i,
    .portfolio-section.metro-section .product-box:hover .cart-wrap a:nth-child(4) i {
        -webkit-animation: none;
        animation: none;
    }
    .bg-title .theme-tab .bg-title-part {
        display: block;
        text-align: center;
    }
    .bg-title .theme-tab .bg-title-part .tab-title {
        margin-left: unset;
        text-align: center;
    }
    .bg-title .theme-tab .bg-title-part .tab-title li {
        padding-left: 5px;
        padding-right: 5px;
    }
    .bg-title .theme-tab .bg-title-part .tab-title.w-bg {
        margin-top: 15px;
    }
    header.header-metro .metro .layout3-menu {
        max-width: 540px;
    }
    header.left-header .top-header .header-dropdown li {
        padding: 15px;
        padding-right: 0;
    }
    header.left-header .main-menu .menu-right .icon-nav li {
        padding-left: 15px;
    }
    header.header-5.left-sidebar-header .top-header .header-dropdown > li {
        padding-left: 10px;
    }
    footer.footer-5 .sub-footer > .container {
        border-top: none;
    }
    footer.footer-5 .dark-layout .footer-title {
        border-bottom: 1px solid #fff;
    }
    footer.footer-black .upside .small-section .center-thing {
        display: inline-block;
        width: 100%;
    }
    footer.footer-black .footer-title h4 {
        color: #fff;
    }
    footer.footer-black.footer-light .subscribe {
        height: auto;
        margin-bottom: 10px;
    }
    footer.footer-black.footer-light .subscribe-form {
        height: auto;
    }
    footer.footer-black .below-section {
        padding-top: 85px;
    }
    .portfolio-padding {
        padding-bottom: 10px;
    }
    .product-full-tab {
        padding-top: 30px !important;
    }
    .product-box.single-product .product-detail .btn-solid {
        padding: 8px 36px;
    }
    .product-box.single-product .color-variant {
        padding-top: 10px;
    }
    .product-box.single-product .color-variant .nav-item {
        width: 20px !important;
        height: 20px !important;
        margin: 0 6px;
    }
    .product-box .cart-info.bg-color-cls {
        right: 0;
    }
    .small-section {
        padding: 20px 0;
    }
    .theme-tab .tab-title a,
    .theme-tab .tab-title2 a {
        text-transform: capitalize;
    }
    .about-cls .service.border-section {
        border-bottom: none;
    }
    .about-cls .service.small-section {
        padding-bottom: 0;
    }
    .service-block .media {
        display: block;
        text-align: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .service-block svg {
        margin-right: 0;
    }
    .service-block + .service-block {
        border-left: 0;
        margin-top: 20px;
    }
    .service-block:last-child .media .media-body p {
        margin-bottom: 5px;
    }
    .full-banner.custom-space {
        padding: 30px 0;
    }
    .full-banner .custom-size.banner-contain h2 {
        font-size: calc(30px + (55 - 30) * ((100vw - 320px) / (767 - 320)));
        margin-bottom: 0;
    }
    .full-banner .custom-size.banner-contain h3 {
        font-size: calc(18px + (28 - 18) * ((100vw - 320px) / (767 - 320)));
    }
    .full-banner .custom-size.banner-contain .btn {
        margin-top: 0;
        padding: 7px 19px;
        font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (767 - 320)));
    }
    .partition2 {
        margin-bottom: -25px;
    }
    .partition2 > div {
        margin-bottom: 25px;
    }
    .partition4 > div + div {
        margin-top: 30px;
    }
    .center-slider {
        border-left: none;
        border-right: none;
    }
    .about-text p {
        line-height: 25px;
    }
    .banner-timer {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .banner-timer .banner-text {
        padding-top: 15px;
        padding-bottom: 15px;
        background-color: rgba(255, 255, 255, 0.65);
    }
    .banner-timer .banner-text h2 {
        font-size: 15px;
    }
    .banner-timer .timer-box {
        text-align: center;
    }
    .banner-timer .timer {
        margin-top: 5px;
        padding-top: 6px;
        padding-bottom: 6px;
        padding-left: 20px;
    }
    .banner-timer .timer p {
        font-size: 14px;
    }
    .banner-timer .timer span {
        width: 40px;
    }
    .banner-timer .timer span .padding-l {
        padding-left: 10px;
        right: -15px;
    }
    .darken-layout .footer-title,
    .dark-layout .footer-title {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
    .darken-layout .subscribe-wrapper,
    .dark-layout .subscribe-wrapper {
        padding-bottom: 10px;
    }
    footer .footer-title h4 {
        font-size: 14px !important;
    }
    .footer-title {
        margin-top: 10px;
        text-align: left;
        border-bottom: 1px solid #eee;
        position: relative;
    }
    .footer-title.footer-mobile-title {
        margin-top: 0;
    }
    .footer-title h4 {
        text-transform: uppercase;
        font-weight: 700;
        cursor: pointer;
    }
    .footer-title.active .according-menu {
        font: normal normal normal 14px/1 FontAwesome;
    }
    .footer-title.active .according-menu:before {
        content: "\f106";
        position: absolute;
        right: 2px;
        top: 2px;
    }
    .footer-title .according-menu {
        font: normal normal normal 14px/1 FontAwesome;
    }
    .footer-title .according-menu:before {
        content: "\f107";
        position: absolute;
        right: 2px;
        top: 2px;
    }
    .banner-slider .home-banner > div img {
        margin-top: 30px;
    }
    .banner-slider .home-banner > div:last-child img {
        margin-top: 30px;
    }
    .lookbook .row > div:last-child .lookbook-block {
        margin-top: 30px;
    }
    .lookbook-section .lookbook-img > div {
        margin-bottom: 25px;
    }
    .lookbook-section .lookbook-img > div + div img {
        margin-top: 0;
    }
    .lookbook-section.lookbook .row > div:last-child .lookbook-block {
        margin-top: 0;
    }
    .full-scroll-footer .sub-footer p {
        padding: 0;
        line-height: 25px;
    }
    .box-layout-body .box-layout {
        margin-top: -40px;
    }
    .layout-20 {
        padding: 15px;
    }
    .home-slider .slider-details {
        top: 15%;
        right: 8%;
        padding: 0px;
        width: 225px !important;
        height: 225px !important;
    }
    .home-slider .slider-details h1 {
        font-size: 25px;
        margin: 5px 0;
    }
    .home-slider .slider-details h2 {
        font-size: 20px;
    }
    .home-slider .slider-details h3 {
        font-size: 18px;
    }
    .home-slider .slider-details h3:before,
    .home-slider .slider-details h3:after {
        width: 8px;
        height: 8px;
        top: 5px;
    }
    .home-slider .slider-details h4 {
        font-size: 16px;
    }
    .home-slider .slider-details .btn-white {
        padding: 5px 10px;
        font-size: 14px;
    }
    .home-slider.fullpage .slick-dots {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: 70px;
        top: unset;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .home-slider.fullpage .slick-dots li button:before {
        color: #0a0100;
    }
    .footer-content {
        text-align: left;
    }
    .footer-content .footer-logo {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .footer-content li {
        text-align: left;
    }
    .footer-content .footer-social ul {
        margin: unset;
    }
    .footer-content .footer-social ul li {
        padding-right: 25px;
        padding-left: 0;
    }
    .social-white li:first-child {
        padding-left: 0;
    }
    .footer-style-1 .mb-cls-content {
        margin-top: 10px;
    }
    .footer-theme .footer-mobile-title {
        display: block !important;
    }
    .footer-theme .col {
        max-width: 100%;
        -ms-flex-preferred-size: unset;
        flex-basis: unset;
    }
    .footer-theme .footer-social {
        margin-bottom: 15px;
    }
    .footer-theme .sub-title li {
        padding-top: 10px;
    }
    .footer-theme .sub-title .contact-list i {
        position: relative;
        top: 0;
        margin-right: 10px;
    }
    .footer-theme .sub-title .contact-list li {
        padding-left: 0;
    }
    .footer-social ul {
        margin: 0 auto;
    }
    .footer-social li {
        padding: 0 15px;
    }
    .footer-end {
        text-align: center;
    }
    .sub-footer .payment-card-bottom {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-bottom: 25px;
    }
    .subscribe-wrapper {
        margin: 10px 0 0 0;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .footer-theme2 p {
        margin-bottom: 10px;
    }
    .footer-theme2 .footer-mobile-title {
        display: block !important;
    }
    .footer-theme2 .p-set {
        padding: 0 15px !important;
    }
    .footer-theme2 .col {
        padding: 0;
    }
    .footer-theme2 .footer-link li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: 10px;
    }
    .footer-theme2 .footer-link h4 {
        padding-bottom: 10px;
    }
    .footer-theme2 .contact-details li {
        padding-left: 0;
        padding-top: 10px;
    }
    .footer-theme2 .footer-link-b li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: 10px;
    }
    .footer-theme2 .footer-link-b h4 {
        margin-top: 0;
        padding-bottom: 10px;
    }
    .footer-theme2.section-light .footer-block h4 {
        padding-bottom: 10px;
    }
    .footer-theme2.section-light .footer-block .subscribe-white {
        padding: 40px 65px;
    }
    .footer-theme2.section-light .footer-block .subscribe-white h2 {
        margin-bottom: 20px;
    }
    .footer-theme2.section-light .footer-block .subscribe-white .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .footer-theme2.section-light .footer-block .subscribe-white .form-group .btn-solid,
    .footer-theme2.section-light .footer-block .subscribe-white .form-group .btn-outline {
        margin-top: 0;
    }
    .footer-theme2 .subscribe-block h2 {
        margin-bottom: 20px;
    }
    .footer-theme2 h4 {
        padding-bottom: 10px;
    }
    .darken-layout .footer-theme .footer-mobile-title h4 {
        color: #fff;
    }
    .dark-layout .small-section {
        padding-bottom: 40px;
    }
    .dark-layout section {
        padding-top: 0;
    }
    .dark-layout .section-b-space {
        border: none;
        padding-bottom: 0;
    }
    .dark-layout .subscribe-wrapper {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block {
        padding: 10px 60px;
    }
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block h2 {
        display: none;
    }
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .form-group .btn-solid,
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .form-group .btn-outline {
        margin-top: 0;
    }
    .social-white {
        margin-bottom: 10px;
    }
    .category-border div .category-banner .category-box h2 {
        font-size: 25px;
    }
    .pet-layout-footer .footer-theme2 .footer-link .social-white {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .pet-layout-footer .footer-theme2 .footer-link .social-white li {
        display: unset;
    }
    .box-layout .small-section {
        padding-top: 0;
    }
    .white-layout .footer-theme2 > div:nth-child(2) {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .white-layout .footer-theme2.footer-border {
        padding: 0;
        border: none;
    }
    .white-layout .footer-theme2 .footer-block .footer-container {
        max-width: 540px;
        width: 100%;
    }
    .white-layout .footer-theme2 .footer-block .footer-container .footer-mobile-title {
        margin-top: 20px;
    }
    .white-layout .footer-theme2 .footer-block .subscribe-white h2 {
        display: none;
    }
    .category-bg {
        padding: 30px 40px;
    }
    .category-bg .image-block.even:after {
        bottom: 85%;
    }
    .category-bg .image-block:after {
        width: 25px;
        margin-top: -25px;
    }
    .category-bg .image-block:hover:after {
        height: 50px;
    }
    .category-bg .contain-block h2 {
        font-size: 18px;
        margin-top: 8px;
    }
    .category-bg .contain-block h6 {
        letter-spacing: 0.1em;
        font-size: 12px;
    }
    .category-bg .contain-block:after {
        width: 25px;
    }
    .category-bg .contain-block.even:after {
        top: 87%;
    }
    .category-bg .contain-block .category-btn {
        margin-bottom: 10px;
        margin-top: 10px;
        letter-spacing: 0.1em;
        padding: 5px 15px;
    }
    .category-bg .contain-block:after {
        bottom: 87%;
    }
    .category-bg .contain-block:hover:after {
        height: 50px;
    }
    .layout9-box .product-box .img-block {
        min-height: unset;
    }
    .product-box .img-wrapper .cart-box.style-1,
    .product-wrap .img-wrapper .cart-box.style-1 {
        padding: 7px 4px;
        bottom: 7px;
    }
    .product-box .img-wrapper .cart-box.style-1 i,
    .product-wrap .img-wrapper .cart-box.style-1 i {
        padding-left: 4px;
        padding-right: 4px;
    }
    .product-box .cart-detail,
    .product-wrap .cart-detail {
        top: 5px;
        right: 10px;
    }
    .product-box:hover .product-info .add-btn,
    .product-wrap:hover .product-info .add-btn {
        -webkit-animation: none;
        animation: none;
    }
    .product-box .img-wrapper .cart-box,
    .product-wrap .img-wrapper .cart-box {
        padding: 8px 10px;
        bottom: 20px;
    }
    .product-box .img-wrapper .cart-box i,
    .product-wrap .img-wrapper .cart-box i {
        font-size: 15px;
        padding-left: 4px;
        padding-right: 4px;
    }
    .product-box .cart-info,
    .product-box .cart-detail {
        opacity: 1;
    }
    .product-box .img-wrapper .cart-box {
        opacity: 1;
    }
    .product-box:hover .img-wrapper .cart-box {
        -webkit-animation: none;
        animation: none;
    }
    .product-box:hover .cart-info button,
    .product-box:hover .cart-detail button {
        -webkit-animation: none;
        animation: none;
    }
    .product-box:hover .cart-info a i,
    .product-box:hover .cart-detail a i {
        -webkit-animation: none;
        animation: none;
    }
    .product-box:hover .cart-info a:nth-child(2) i,
    .product-box:hover .cart-detail a:nth-child(2) i {
        -webkit-animation: none;
        animation: none;
    }
    .product-box:hover .cart-info a:nth-child(3) i,
    .product-box:hover .cart-detail a:nth-child(3) i {
        -webkit-animation: none;
        animation: none;
    }
    .product-box:hover .cart-info a:nth-child(4) i,
    .product-box:hover .cart-detail a:nth-child(4) i {
        -webkit-animation: none;
        animation: none;
    }
    .product-box .product-info .add-btn,
    .product-wrap .product-info .add-btn {
        opacity: 1;
    }
    .no-slider.five-product-row .product-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
    .theme-tab .tab-title2 {
        font-size: 20px;
    }
    .theme-tab .tab-title2 li {
        padding-left: 15px;
        padding-right: 15px;
    }
    .theme-tab .tab-title2:after {
        top: 15px;
    }
    .full-banner {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .full-banner.parallax-layout {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .full-banner.feature-banner .banner-decor .left-img,
    .full-banner.feature-banner .banner-decor .right-img {
        display: none;
    }
    .full-banner.feature-banner h2 {
        margin-bottom: 35px;
    }
    .full-banner .banner-contain h2 {
        font-size: 75px;
    }
    .full-banner .santa-img img {
        width: 125px;
    }
    .pet-parallax .full-banner {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .collection-banner .contain-banner {
        padding-left: 60px;
        padding-right: 60px;
    }
    .collection-banner .contain-banner.banner-3 {
        padding-left: 40px;
        padding-right: 40px;
    }
    .collection-banner .contain-banner.banner-3 h2 {
        font-size: 20px;
    }
    .collection-banner .contain-banner.banner-3 h4 {
        font-size: 18px;
    }
    .collection-banner .contain-banner.banner-4 {
        padding-left: 45px;
        padding-right: 45px;
    }
    .collection-banner .contain-banner.banner-4 h2 {
        font-size: 18px;
    }
    .collection-banner .contain-banner h2 {
        font-size: 35px;
    }
    .home-slider .home {
        height: 60vh;
    }
    .home-slider .slider-contain {
        height: 60vh;
    }
    .home-slider .slider-contain h1 {
        font-size: 35px;
        margin-top: 5px;
    }
    .home-slider .slider-contain .btn-solid,
    .home-slider .slider-contain .btn-outline {
        margin-top: 10px;
        padding: 10px 25px;
    }
    .home-slider:hover .slick-next {
        right: 80px;
    }
    .home-slider:hover .slick-prev {
        left: 80px;
    }
    .upper-canvas-section.height-100 .home-slider .slider-contain.left-canvas-section {
        height: auto;
        padding-top: 120px;
    }
    .upper-canvas-section.height-100 .home-slider .slider-contain.right-canvas-section {
        height: auto;
        padding-top: 0;
        padding-bottom: 50px;
    }
    .lower-canvas-section .left-canvas-section {
        padding: 20px 0 40px;
    }
    .canvas-bg {
        background-position: right !important;
    }
    .home-form .table-form .form-group {
        margin-bottom: 20px;
    }
    .home-form .table-form .btn {
        background-size: 950px;
    }
    .height-85 .home-slider .home {
        height: 65vh;
    }
    .height-85 .home-slider .slider-contain {
        height: 65vh;
    }
    .background .col {
        -ms-flex-preferred-size: unset;
        flex-basis: unset;
    }
    .background .contain-bg {
        margin: 10px 0;
    }
    .full-box .center-slider .offer-slider {
        text-align: center;
    }
    .full-box .center-slider .offer-slider .product-box {
        border: none;
        display: inline-block;
    }
    .full-box .center-slider .offer-slider .product-box .img-wrapper {
        text-align: center;
    }
    .full-box .center-slider .offer-slider .product-box .img-wrapper img {
        height: 200px;
    }
    .full-box .center-slider .offer-slider .product-box:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .full-box .theme-card .offer-slider .sec-1 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .full-box .theme-card .offer-slider .sec-1 .product-box2 .media .media-body .color-variant li {
        height: 18px;
        width: 18px;
        padding-right: 3px;
    }
    .full-box .theme-card .offer-slider .sec-1 .product-box2 + .product-box2 {
        border-top: none;
    }
    .theme-tab .tab-title li,
    .theme-tab .tab-title2 li {
        padding-left: 5px;
        padding-right: 5px;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 img {
        height: 100px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content h2 {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content h4 {
        margin-bottom: 20px;
        font-size: 15px;
    }
    .filter-main-btn span {
        font-size: 16px;
    }
    .tap-top {
        bottom: 70px;
        right: 20px;
    }
    .footer-theme2 .footer-link li,
    .footer-theme2 .footer-link-b li {
        padding-left: 0;
    }
    .product-christmas .product-box .cart-wrap {
        background-color: var(--theme-color);
        bottom: 0;
        opacity: 1;
    }
    .bake-header .absolute-logo {
        left: 50px;
        -webkit-transform: unset;
        transform: unset;
    }
    .bakery-banner .home-slider .slider-contain > div {
        padding: 40px 40px;
    }
    .bakery-banner .home-slider .slider-contain h4 {
        letter-spacing: 0.2em;
        line-height: 22px;
    }
    .category-bake .category-box {
        padding: 10px 0;
    }
    .category-bake .category-box h3 {
        font-size: 18px;
    }
    .custom-cake .steps-media {
        margin-bottom: 20px;
    }
    .custom-cake .customized-bottom {
        display: block;
        text-align: center;
    }
    .custom-cake .customized-bottom .form-group {
        margin-right: 0;
        width: 100%;
        margin-bottom: 20px;
        text-align: left;
    }
    .cycle-box-row > div {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .bg-dark-bottom {
        padding: 14px !important;
    }
    .home-slider .banner-content-bottom .slick-slider {
        margin-top: 0;
        padding: 50px 0 100px;
    }
    .home-slider .banner-content-bottom .center-cls .slick-slider {
        margin-top: 14px;
    }
    .height-100.sm-responsive .home-slider .home {
        height: 80vh;
    }
    .height-100.sm-responsive .home-slider .slider-contain {
        height: calc(80vh + 80px);
    }
    .height-100.xs-responsive .home-slider .home {
        height: 60vh !important;
    }
    .height-100.xs-responsive .home-slider .slider-contain {
        height: calc(60vh + 80px);
    }
    .single-detail-section .row > div:first-child {
        margin-bottom: 20px;
    }
    .pt-res-0 {
        padding-top: 0;
    }
    .category-img-wrapper .row {
        margin-bottom: -30px;
    }
    .category-img-wrapper .row > div {
        margin-bottom: 30px;
    }
    .banner-style-1 .full-box .card-margin {
        margin-bottom: 20px;
    }
    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 {
        width: 100%;
        padding: 20px;
    }
    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
        height: 200px;
    }
    .banner-style-2.absolute-banner .absolute-bg .collection-banner .absolute-img img {
        left: 60px;
        top: 30px;
    }
    .service-style-border .service-block {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .service-style-border .service-block .media-body {
        padding-left: 0;
        border-left: none;
    }
    .service-style-border .service-block svg {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .sale-box {
        left: -8px;
    }
    .sale-box .heading-right h3 {
        -webkit-transform: translate(50%, -50%) rotate(-90deg) scale(0.7);
        transform: translate(50%, -50%) rotate(-90deg) scale(0.7);
    }
    .blog-detail-page .comment-section li {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .product-pagination .pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .testimonial {
        background-color: #f7f7f7;
    }
    .testimonial .testimonial-slider .media .media-body {
        padding: 30px 30px 30px 30px;
    }
    .about-page {
        text-align: center;
    }
    .team h2 {
        font-size: 25px;
    }
    .layout2-logo {
        padding-right: 70px;
    }
    .faq-section .theme-accordion .card .card-body p {
        line-height: 1.5 !important;
    }
    .faq-section .theme-accordion .card .card-header button {
        font-size: 14px !important;
        white-space: normal;
        width: 100%;
        padding: 16px 30px 16px 18px !important;
    }
    .product-wrapper-grid.list-view .product-box {
        display: block;
        border: 1px solid #eee;
        padding: 15px;
    }
    .product-wrapper-grid.list-view .product-box .img-wrapper,
    .product-wrapper-grid.list-view .product-box .img-block {
        margin: 0 auto 15px;
    }
    .product-wrapper-grid.list-view .product-box .product-detail {
        padding-left: 0;
    }
    .register-page .theme-card {
        padding: 25px;
    }
    .register-page .theme-card .theme-form input {
        margin-bottom: 25px;
        padding: 13px 18px;
    }
    .collection .partition-collection > div:nth-last-child(1),
    .collection .partition-collection > div:nth-last-child(2),
    .collection .partition-collection > div:nth-last-child(3) {
        margin-top: 30px;
    }
    .collection-product-wrapper .product-pagination .product-search-count-bottom {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-right: 0;
    }
    .collection-product-wrapper .product-pagination .product-search-count-bottom h5 {
        padding: 10px 0;
    }
    .cart-section tbody tr td a,
    .wishlist-section tbody tr td a {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .cart-section .cart-table thead th:nth-last-child(-n + 4) {
        display: none;
    }
    .cart-section tbody tr td:nth-last-child(-n + 4) {
        display: none;
    }
    .cart-section tbody tr td .mobile-cart-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .wishlist-section .cart-table thead th:nth-last-child(-n + 3) {
        display: none;
    }
    .wishlist-section tbody tr td:nth-last-child(-n + 3) {
        display: none;
    }
    .wishlist-section tbody tr td .mobile-cart-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .blog-page .order-sec {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .blog-page .blog-media:last-child {
        margin-bottom: 30px;
    }
    .blog-page .blog-sidebar ul li {
        display: block;
    }
    .tab-pane iframe {
        width: 100%;
    }
    .product-order .product-order-detail img {
        height: auto;
    }
    .typography_section .typography-box .typo-content.product-pagination .pagination {
        border-left: none;
    }
    .typography_section .typography-box .typo-content.typo-buttons a:last-child {
        margin-top: 5px;
    }
    .loader_skeleton .banner-slider .home-banner > div:first-child .home-slider {
        margin-top: 25px;
    }
    .loader_skeleton .category-ldr .row .category-block {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .loader_skeleton .box-layout .small-section {
        padding-top: 20px;
    }
    .loader_skeleton .center-slider .product-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .loader_skeleton .center-slider .product-box .img-wrapper {
        height: calc(50px + (250 - 50) * ((100vw - 320px) / (1920 - 320)));
        width: calc(120px + (230 - 150) * ((100vw - 320px) / (1920 - 320)));
        margin-right: 15px;
    }
    .loader_skeleton .center-slider .product-box .product-detail {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .loader_skeleton .center-slider .product-box .product-detail h4,
    .loader_skeleton .center-slider .product-box .product-detail h6 {
        margin-left: unset;
        margin-right: unset;
    }
    .loader_skeleton .service-block h4,
    .loader_skeleton .service-block p {
        margin-left: auto;
        margin-right: auto;
    }
    .dashboard-section .counter-section .row > div {
        margin-bottom: 20px;
    }
    .dashboard-section .counter-section .row > div:last-child {
        margin-bottom: 0;
    }
    .dashboard-section .apexcharts-canvas {
        margin: 0 auto;
    }
    .dashboard-section .dashboard-table .table.product-table th:nth-child(2),
    .dashboard-section .dashboard-table .table.product-table th:nth-child(3),
    .dashboard-section .dashboard-table .table.product-table td:nth-child(2),
    .dashboard-section .dashboard-table .table.product-table td:nth-child(3) {
        min-width: 200px;
    }
    .dashboard-section .dashboard-table .table.order-table-vendor td:nth-child(2),
    .dashboard-section .dashboard-table .table.order-table-vendor th:nth-child(2) {
        min-width: 200px;
    }
    .dark-box {
        margin-right: -10px;
        margin-left: -10px;
    }
    .dark-box > div {
        max-width: 50% !important;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        padding: 0 10px;
        margin-bottom: 30px;
    }
    .dark-box.partition-five > div:nth-child(-n + 4) {
        margin-bottom: 30px;
    }
    .dark-box .product-box {
        margin-bottom: 0;
        padding: 0;
        border: none;
    }
    .dark-box .product-box .cart-detail i {
        padding: 4px;
        font-size: 10px;
        margin-bottom: 7px;
    }
    .dark-box .product-box .product-info {
        padding-bottom: 0;
    }
    .dark-box .product-box .product-info .add-btn {
        display: block;
    }
    .dark-box .product-box:hover {
        border: none;
    }
    .dark-box.four-product > div {
        max-width: 50% !important;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
    }
    .tracking-page .wrapper {
        margin: 20px 0 5px;
    }
    .tracking-page .wrapper .arrow-steps .step {
        min-width: 130px;
        display: block;
        width: 100%;
        margin-bottom: 26px;
    }
    .tracking-page .wrapper .arrow-steps .step:before {
        display: none;
    }
    .tracking-page .wrapper .arrow-steps .step:after {
        -webkit-transform: rotate(90deg) translateY(-50%);
        transform: rotate(90deg) translateY(-50%);
        top: 30px;
        right: 50%;
        border-top: 17px solid transparent;
        border-bottom: 21px solid transparent;
        border-left: 17px solid #f8f8f8;
    }
    .tracking-page .wrapper .arrow-steps .step:last-child:after {
        display: none;
    }
    .tracking-page .tracking-detail ul li .left {
        min-width: 200px;
    }
    .sticky-bottom-cart .selection-section .form-group {
        width: 120px;
    }
    .modern-box {
        margin-top: 50px;
    }
    .modern-box .absolute-img img {
        width: 50%;
        margin-left: 20px;
        margin-top: -76px;
    }
    .modern-box .modern-content p {
        display: none;
    }
    .sitemap_page .row > div {
        padding-top: 0;
        padding-bottom: 0;
    }
    .sitemap_page .row > div:nth-child(odd) {
        background-color: transparent;
    }
    .blog-page .blog-sidebar .theme-card {
        background-color: transparent;
    }
    .setting-box {
        width: 460px;
    }
    .dashboard-section .dashboard-table .table.order-table th:nth-child(2),
    .dashboard-section .dashboard-table .table.order-table td:nth-child(2) {
        min-width: 80px;
    }
    .dashboard-section .dashboard-table .table.order-table th:nth-child(3),
    .dashboard-section .dashboard-table .table.order-table td:nth-child(3) {
        min-width: 180px;
    }
    .dashboard-section .dashboard-table .table.wishlist-table th:nth-child(2),
    .dashboard-section .dashboard-table .table.wishlist-table td:nth-child(2) {
        min-width: 80px;
    }
    .dashboard-section .dashboard-table .table.wishlist-table th:nth-child(3),
    .dashboard-section .dashboard-table .table.wishlist-table td:nth-child(3) {
        min-width: 180px;
    }
    .dashboard-section .dashboard-table .table.wishlist-table th:nth-child(5),
    .dashboard-section .dashboard-table .table.wishlist-table td:nth-child(5) {
        min-width: 150px;
    }
    .product-page-details .sub-title {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product-page-details .dashed-border-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .timer-sec-box {
        text-align: center;
    }
    .product-page-details .product-offer.delivery-details {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 577px) {
    .custom-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-style-1 .cart_qty_cls {
        top: -10px;
    }
    header.header-tools .toggle-nav {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    header.header-5.left-sidebar-header .top-header .header-dropdown > li {
        padding-top: 0;
        padding-bottom: 0;
    }
    header.header-5 .top-header .header-dropdown > li i {
        color: #999999;
    }
    .header-style-1 .main-menu {
        z-index: 9;
    }
    .header-style-1 .toggle-nav {
        z-index: 10;
    }
    .header-style-1 .top-header .header-dropdown li {
        padding: 0;
    }
    .header-style-1 .top-header .header-dropdown li i {
        color: #999999;
    }
    .header-style-1 .brand-logo {
        position: relative;
        left: 0;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        -webkit-transform: none;
        transform: none;
    }
    .header-style-1 .toggle-nav {
        top: -39px;
    }
    .header-style-1 .btn-solid.btn-xs {
        padding: 2px 11px;
    }
    .header-style-2 .main-menu .brand-logo {
        position: relative;
        padding-left: 40px;
    }
    .header-style-2 .main-nav-center .toggle-nav {
        left: 15px;
    }
    .header-style-5.border-style .main-menu {
        z-index: 9;
    }
    .header-style-5.border-style .main-menu .menu-right .icon-nav li {
        padding-top: 0;
        padding-bottom: 0;
    }
    .header-style-5.border-style .main-nav-center .toggle-nav {
        right: 15px;
        top: -68px;
    }
    .header-style-5.color-style .top-header .header-dropdown > li {
        padding: 0;
    }
    .header-style-5.color-style .top-header .header-dropdown > li img {
        opacity: 0.6;
        width: 22px;
        -webkit-filter: invert(0.7);
        filter: invert(0.7);
    }
    .header-style-5.color-style.style-classic .main-menu .menu-right .icon-nav li {
        padding: 0;
    }
    .header-style-5.color-style.style-classic .top-header .header-dropdown > li {
        padding: 0;
    }
    .header-style-5.color-style.style-classic .toggle-nav {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .header-style-7 .main-menu .menu-left .navbar {
        padding: 20px 15px 20px 0 !important;
    }
    .header-style-7 .main-menu .menu-left .navbar .bar-style {
        width: 20px;
    }
    .header-style-7 .main-menu .menu-right .icon-nav li {
        padding-right: 10px;
    }
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-cart {
        padding-right: 0;
    }
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-cart .show-div.shopping-cart {
        top: 52px;
        bottom: unset;
        left: unset !important;
    }
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-cart .show-div.shopping-cart li .media img {
        width: auto;
    }
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-setting,
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-cart,
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-search {
        position: relative;
        bottom: 0;
        right: 0 !important;
    }
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-setting img,
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-cart img,
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-search img {
        display: block;
        width: 25px;
    }
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-setting img {
        width: 27px;
    }
    .header-style-7 .main-menu .menu-right .icon-nav .mobile-setting .setting {
        top: 52px;
        bottom: unset;
        left: unset !important;
    }
    .header-style-7 .main-menu .menu-right .icon-nav .delivery-area {
        padding-left: 0;
    }
    .header-style-7 .main-menu .menu-right .icon-nav .delivery-area img {
        width: 20px;
    }
    .header-style-7 .main-menu .brand-logo {
        position: relative;
        left: 0;
        margin-right: 0;
        -webkit-transform: none;
        transform: none;
    }
    .header-style-7 .main-menu .brand-logo img {
        width: 120px;
        height: auto;
    }
    .header-style-7 .cart_qty_cls {
        padding: 1px;
        width: 15px;
        height: 15px;
    }
    .product-left-title h3 {
        margin-bottom: 0;
    }
    .shop-sidebar-demo .shop-main {
        margin-top: 74px;
    }
    .setting-box {
        width: 360px;
    }
    .top-header.top-header-theme .header-dropdown li i,
    .top-header.top-header-theme .header-dropdown li a {
        color: #999999;
    }
    .margin-default {
        margin-bottom: -15px;
    }
    .margin-default > div {
        margin-bottom: 15px;
    }
    .cart_qty_cls {
        top: -10px;
    }
    .basic-product .rating-w-count .rating i + i {
        margin-left: -2px;
    }
    header.sticky .top-header {
        display: block;
    }
    header.header-5.left-sidebar-header .top-header .header-dropdown .mobile-wishlist img,
    header.header-5.left-sidebar-header .top-header .header-dropdown .mobile-account img {
        -webkit-filter: invert(1);
        filter: invert(1);
        opacity: 0.8;
    }
    header.header-5 .toggle-nav {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .gift-card-section {
        margin: 0 15px;
    }
    .gift-card-section .container {
        padding: 0;
    }
    .deal-product-space {
        padding-top: 155px;
        padding-bottom: 85px !important;
    }
    .top-panel-adv {
        display: none;
    }
    .header-compact .main-menu .menu-right .icon-nav .mobile-setting,
    .header-compact .main-menu .menu-right .icon-nav .mobile-cart,
    .header-compact .main-menu .menu-right .icon-nav .mobile-search {
        z-index: 9;
    }
    .header-compact .main-menu .brand-logo {
        position: relative;
        left: 0;
        margin-right: 0;
        -webkit-transform: none;
        transform: none;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .header-compact .main-menu .menu-right .icon-nav .mobile-search {
        z-index: 10;
    }
    .header-compact .main-nav-center .toggle-nav {
        top: -67px;
    }
    .header-compact .top-header .header-dropdown li {
        padding: 0;
    }
    .small-slider.home-fashion .home-slider .home {
        height: 35vh;
    }
    .small-slider.home-fashion .home-slider .home .slider-contain {
        height: 35vh;
    }
    .container-fluid.custom-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .detail-cannabis .detail_section > div {
        padding: 30px 25px;
    }
    #fb-root {
        display: none;
    }
    header.left-header .top-header {
        height: 70px;
    }
    header.left-header .top-header .header-dropdown li {
        padding: 0;
    }
    header.left-header .top-header .header-dropdown .mobile-wishlist img,
    header.left-header .top-header .header-dropdown .mobile-account img {
        display: none;
    }
    header.left-header .top-header .header-dropdown .mobile-wishlist i,
    header.left-header .top-header .header-dropdown .mobile-account i {
        display: block;
    }
    header.left-header .main-menu .menu-left .mobile-logo {
        position: absolute;
        padding: 0 !important;
        -webkit-transform: unset;
        transform: unset;
        right: unset;
        left: 15px;
        margin-right: 0;
        top: 16px;
    }
    header.left-header .main-menu .menu-left .navbar {
        position: absolute;
        right: 15px;
        padding: 0 !important;
        top: 22px;
    }
    header.video-header .top-header .header-dropdown li {
        padding: 0;
    }
    header.header-tools .top-header .header-dropdown li {
        padding: 0;
    }
    header.header-style .brand-logo {
        left: 0;
        margin-right: 0;
        -webkit-transform: none;
        transform: none;
    }
    header.header-style .top-header .header-dropdown li img {
        -webkit-filter: invert(0.55);
        filter: invert(0.55);
    }
    header.header-5.left-sidebar-header .main-menu .menu-left .navbar {
        position: absolute;
        right: 0px;
        padding: 0 !important;
    }
    header.header-5.left-sidebar-header .brand-logo {
        position: relative;
    }
    header.header-5.left-sidebar-header .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .demo-right a {
        right: 14px;
        width: 30px;
        height: 44px;
        line-height: 15px;
        letter-spacing: 2px;
        font-size: 12px;
        padding: 8px 4px 10px;
    }
    .offer-box {
        display: none;
    }
    .advertise-section .full-banner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .advertise-section .full-banner .banner-contain {
        padding: 30px 10px;
    }
    .advertise-section .full-banner .banner-contain h2 {
        font-size: 40px;
        margin-bottom: 0;
        margin-top: -7px;
    }
    .advertise-section .full-banner .banner-contain h3 {
        font-size: 20px;
        margin-bottom: 3px;
    }
    .advertise-section .full-banner .banner-contain h4 {
        font-size: 16px;
        letter-spacing: 0.03em;
    }
    .dark-light {
        width: 35px;
        height: 35px;
    }
    .portfolio-padding {
        padding-bottom: 15px;
    }
    .portfolio-section .isotopeSelector {
        margin-bottom: 15px;
    }
    .portfolio-section .filter-button {
        padding: 0 15px;
        font-size: 16px;
        line-height: 30px;
    }
    .service_slide .home-slider .slider-contain {
        height: 58vh;
    }
    .portfolio-section.metro-section .product-box .cart-wrap a i {
        font-size: 18px;
        padding: 7px;
    }
    .portfolio-section.metro-section .product-box .cart-wrap button i {
        font-size: 18px;
        padding: 7px;
    }
    .filter-section .filter-container ul.filter > li {
        padding: 0 10px;
    }
    .filter-section .filter-container ul.filter > li > a {
        font-size: 16px;
        line-height: 30px;
    }
    .tab-left .theme-tab .left-side .left-tab-title {
        margin-bottom: 15px;
    }
    h2 {
        font-size: 24px;
    }
    .tools-service.absolute-banner .absolute-bg {
        padding-bottom: 20px;
        -webkit-box-shadow: 0 0 8px 0 #ddd;
        box-shadow: 0 0 8px 0 #ddd;
    }
    .tools-service .service-block + .service-block {
        margin-top: 20px;
    }
    .tools-service .service-block svg,
    .tools-service .service-block1 svg {
        margin-bottom: 7px;
    }
    .top-header .header-dropdown li i {
        padding-right: 0;
        font-size: 18px;
    }
    .tools-parallax-product.full-banner {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    header.header-gym {
        position: relative;
        background-color: #000;
    }
    header.header-gym .main-menu {
        padding: 0;
        z-index: 9;
    }
    header.header-gym .main-menu .brand-logo {
        left: 0;
        -webkit-transform: unset;
        transform: unset;
    }
    header.header-gym .top-header .header-dropdown li a i {
        padding-right: 0;
    }
    header.header-5 .top-header .header-dropdown .onhover-dropdown .onhover-show-div {
        top: unset;
    }
    header.header-6 .main-menu .brand-logo {
        position: relative;
        left: 0;
        -webkit-transform: none;
        transform: none;
    }
    header.header-7 {
        position: relative;
        z-index: unset;
        background-color: #333;
    }
    header.header-7 .main-menu .menu-left .navbar {
        padding: 15px 45px 15px 0 !important;
    }
    header.header-7 .main-nav-center .toggle-nav {
        top: -70px;
    }
    header.header-7 .game-layout {
        background-color: #333;
    }
    header.green-gradient .top-header .header-dropdown li {
        padding: 0;
    }
    header.header-christmas .main-menu .brand-logo {
        position: relative;
    }
    header.header-metro .metro {
        z-index: 10;
    }
    header.header-metro .top-header {
        z-index: 9;
    }
    .header-style-1 .main-menu .menu-right .icon-nav .onhover-div .show-div {
        top: unset;
    }
    .gym-banner .collection-banner .contain-banner {
        padding-left: 15px;
        padding-right: 15px;
    }
    .gym-banner .collection-banner .contain-banner h2 {
        font-size: 25px;
        margin-bottom: -3px;
    }
    .banner-furniture.gym-banner {
        padding-left: 0;
        padding-right: 0;
    }
    .gym-product .part-cls {
        margin-top: -20px;
    }
    .gym-product .part-cls > div:nth-last-child(-n + 3) .product-box {
        margin-top: 20px;
    }
    .gym-product .partition-cls,
    .gym-product .part-cls {
        margin-left: -10px;
        margin-right: -10px;
    }
    .gym-product .partition-cls > div,
    .gym-product .part-cls > div {
        padding-left: 10px;
        padding-right: 10px;
    }
    .gym-product .partition-cls > div .product-box,
    .gym-product .part-cls > div .product-box {
        margin-top: 20px;
    }
    .gym-product .product-box:hover {
        -webkit-transform: unset;
        transform: unset;
    }
    .header-metro .layout3-menu .main-menu .menu-left .main-menu-right .toggle-nav {
        right: 15px;
    }
    .layout3-menu .main-menu .menu-left {
        width: calc(100vw - 32px);
    }
    .layout3-menu .main-menu .menu-left .main-menu-right .toggle-nav {
        right: 0;
        padding-block: 15px;
    }
    .layout3-menu .main-menu .menu-left .main-menu-right .toggle-nav i {
        font-size: 22px;
        color: var(--theme-color);
        opacity: 1;
        line-height: 1.2;
    }
    .layout3-menu .main-menu .menu-left .main-menu-right .toggle-nav .sidebar-name {
        display: none;
    }
    .layout3-menu .main-menu > div:nth-child(2) {
        position: absolute;
        left: 54%;
        right: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        top: 0;
    }
    .layout3-menu .main-menu > div:nth-child(3) {
        height: 0;
    }
    .layout3-menu .brand-logo {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        padding-top: 16px !important;
        padding-bottom: 16px !important;
        margin: 0;
    }
    .search-overlay > div .closebtn {
        top: 15px;
        right: 30px;
    }
    .btn-solid,
    .btn-outline {
        padding: 7px 15px;
    }
    .product-box .product-detail .color-variant,
    .product-box .product-info .color-variant,
    .product-wrap .product-detail .color-variant,
    .product-wrap .product-info .color-variant {
        padding-top: 10px;
    }
    .detail-inline {
        display: block;
    }
    .detail-inline h4 {
        margin-left: unset;
        margin: 2px 0 6px !important;
    }
    .product-para p {
        padding-bottom: 10px;
    }
    .category-bg-section .category-border-2 .border-padding:nth-last-child(-n + 2) {
        padding-top: 10px;
    }
    footer {
        margin-bottom: 60px;
    }
    footer .btn-solid {
        padding: 13px 29px;
    }
    footer p {
        line-height: 20px;
    }
    footer.footer-black .below-section {
        padding-top: 75px;
    }
    footer.footer-black.footer-light .subscribe h4 {
        margin-bottom: 0;
    }
    .sidebar-shop-footer {
        margin-bottom: 0;
    }
    .partition1 {
        margin-bottom: -15px;
    }
    .partition1 > div {
        margin-bottom: 15px;
    }
    .theme-modal .modal-dialog .quick-view-modal .product-right {
        margin: 15px 0 10px 0;
    }
    .theme-modal .modal-dialog .quick-view-modal .product-right h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .theme-modal .modal-dialog .quick-view-modal .product-right h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .theme-modal .modal-dialog .quick-view-modal .product-right .color-variant li {
        height: 25px;
        width: 25px;
    }
    .theme-modal .modal-dialog .quick-view-modal .product-right .border-product {
        padding-top: 10px;
        padding-bottom: 15px;
    }
    .theme-modal .modal-dialog .quick-view-modal .product-right .size-box {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .theme-modal .modal-dialog .quick-view-modal .product-right .product-description .qty-box {
        margin-top: 5px;
    }
    .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media a img {
        max-width: 105px;
        margin-bottom: 10px;
    }
    .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media .media-body .buttons a {
        padding: 4px 5px;
    }
    .theme-modal.exit-modal .media {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .theme-modal.exit-modal .media img {
        width: 25%;
    }
    .theme-modal.exit-modal .media .media-body h4 {
        font-size: 16px;
        margin-bottom: 0;
    }
    .theme-modal.exit-modal .media .media-body h2 {
        margin-bottom: 2px;
    }
    .theme-modal.exit-modal .media .media-body h5 {
        font-size: 16px;
        line-height: 18px;
    }
    .theme-modal.exit-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 12px;
    }
    .dark-layout .footer-theme2 .col {
        padding: 0 15px;
    }
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block {
        padding: 10px 20px 20px 10px;
    }
    .white-layout .small-section .footer-theme2 .col {
        padding: 0 15px;
    }
    .footer-theme2 .col {
        padding: 0 15px;
    }
    .footer-theme2 .form-p {
        padding: 0;
    }
    .footer-theme2.footer-border {
        padding: 15px 0;
    }
    .footer-theme2 .subscribe-block {
        padding: 0 75px;
    }
    .footer-theme2 .footer-link h4 {
        padding-bottom: 10px;
    }
    .footer-theme2 .footer-link li {
        padding-right: 20px;
    }
    .footer-theme2 .footer-link-b h4 {
        padding-bottom: 15px;
    }
    .footer-theme2 .footer-link-b li {
        padding-right: 20px;
    }
    footer .dark-subscribe .subscribe {
        display: block;
    }
    footer .dark-subscribe .subscribe h4 {
        margin-bottom: 10px;
    }
    footer .dark-subscribe .subscribe .subscribe-form {
        display: block;
    }
    footer .dark-subscribe .subscribe .subscribe-form .form-control {
        margin: 0 auto 10px;
        padding: 8px 18px;
        border-radius: 20px;
    }
    footer .dark-subscribe .subscribe .subscribe-form .btn-solid {
        border-radius: 25px;
        padding: 7px 19px;
    }
    .social-white {
        margin-top: 25px;
    }
    .category-border div .category-banner .category-box h2 {
        font-size: 30px;
        padding: 10px 20px;
    }
    .filter-main-btn span {
        font-size: 14px;
    }
    .category-bg .image-block:after {
        display: none;
    }
    .category-bg .contain-block:after {
        display: none;
    }
    .category-bg .order-section div {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .category-bg .order-section div:nth-child(2) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .category-bg .order-section div:nth-child(3) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .category-bg .order-section div:nth-child(4) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .category-bg .order-section div:nth-child(5) {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .category-bg .order-section div:nth-child(6) {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .category-bg .contain-block {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .theme-tab .tab-title {
        margin-bottom: 25px;
    }
    .full-banner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .full-banner.parallax-layout {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .full-banner .banner-contain {
        background-color: rgba(255, 255, 255, 0.48);
        padding: 25px;
    }
    .full-banner .banner-contain .btn-solid,
    .full-banner .banner-contain .btn-outline {
        padding: 10px 20px;
    }
    .full-banner.p-left .banner-contain,
    .full-banner.p-right .banner-contain {
        float: none;
    }
    .full-banner .banner-contain h2 {
        font-size: 65px;
    }
    .full-banner .banner-contain h3 {
        font-size: 40px;
    }
    .full-banner .banner-contain h4 {
        font-size: 18px;
        padding-top: 0;
        letter-spacing: 0.3em;
    }
    .full-banner.feature-banner .feature-object {
        text-align: left;
        margin-left: 0;
        margin-bottom: 30px;
    }
    .full-banner.feature-banner .feature-object li .media .media-body {
        text-align: left;
    }
    .full-banner.feature-banner .feature-object li .media img {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-right: 15px;
        margin-left: 0;
    }
    .full-banner.feature-banner .feature-object li,
    .full-banner.feature-banner .feature-object-right li {
        margin-bottom: 30px;
    }
    .pet-parallax .full-banner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .home-slider .home {
        height: 58vh;
    }
    .home-slider .slider-contain {
        height: 58vh;
    }
    .home-slider .slider-contain h1 {
        font-size: 30px;
    }
    .home-slider .slider-details {
        top: 18%;
        right: 8%;
        width: 180px !important;
        height: 180px !important;
    }
    .home-slider .slider-details h1 {
        font-size: 22px;
        margin: 5px 0;
    }
    .home-slider .slider-details h2 {
        font-size: 18px;
    }
    .home-slider .slider-details h3 {
        font-size: 16px;
    }
    .home-slider .slider-details h4 {
        display: none;
    }
    .home-slider .slider-details .btn-white {
        padding: 4px 8px;
    }
    .home-slider:hover .slick-next {
        right: 70px;
    }
    .home-slider:hover .slick-prev {
        left: 70px;
    }
    .home-slider:hover .slick-prev,
    .home-slider:hover .slick-next {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    .home-slider.fullpage .slick-dots {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: 60px;
        top: unset;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .home-slider.fullpage .home .slider-contain {
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-left: 0;
    }
    .home-slider.fullpage .home .slider-contain > div {
        background-color: rgba(0, 0, 0, 0.15);
        padding: 30px 50px;
    }
    .home-slider.fullpage .home .slider-contain h1,
    .home-slider.fullpage .home .slider-contain p {
        color: #000;
    }
    .home-slider.fullpage .home .slider-contain h1 {
        font-size: 22px;
    }
    .home-slider.fullpage .home .slider-contain p {
        max-width: 330px;
        font-size: 12px;
    }
    .home-slider.fullpage .home .slider-contain .btn-solid {
        padding: 10px 15px;
    }
    .height-85 .home-slider .home {
        height: 60vh;
    }
    .height-85 .home-slider .slider-contain {
        height: 60vh;
    }
    .background {
        padding: 10px 10px;
    }
    .background .contain-bg {
        padding-top: 10px;
        padding-bottom: 10px;
        margin: 10px 0;
    }
    .background .contain-bg:hover {
        background-color: unset;
    }
    .category-border {
        padding: 10px 10px;
    }
    .category-border .border-padding {
        padding: 10px 10px;
    }
    .theme-tab .tab-content .product-tab .tab-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: calc(100% - 10px);
    }
    .theme-tab .tab-content .product-tab .tab-box:nth-last-child(-n + 2) {
        margin: 0 5px 10px;
    }
    .theme-tab .tab-content .product-tab .tab-box:nth-last-child(-n + 1) {
        margin: 0 5px 0;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 img {
        height: 150px;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body a h6 {
        margin-right: 10px;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body .color-variant li {
        margin-top: 7px;
        height: 18px;
        width: 18px;
    }
    .alert {
        right: 0 !important;
        left: 0;
        max-width: 90% !important;
    }
    .tap-top {
        width: 35px;
        height: 35px;
        padding: 2px;
        font-size: 19px;
    }
    .layout2-logo {
        padding-right: 0;
    }
    .absolute-banner {
        margin-top: 0;
    }
    .absolute-banner .absolute-bg {
        -webkit-box-shadow: none;
        box-shadow: none;
        padding-bottom: 0;
    }
    .absolute-banner.banner-padding {
        padding-top: 0;
    }
    .absolute-banner.search-section .absolute-bg {
        background-color: transparent;
        padding: 0 15px;
    }
    .box-layout-body .box-layout {
        margin-top: 0;
    }
    .full-scroll-menu .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .layout-20 {
        padding: 0;
    }
    .addcart_btm_popup {
        display: none !important;
    }
    .color-picker a.handle {
        width: 30px;
        height: 35px;
    }
    .color-picker a.handle i {
        margin-left: 7px;
        font-size: 17px;
    }
    .full-scroll-footer {
        display: none;
    }
    .bake-header .layout3-menu .main-menu .menu-left .main-menu-right .toggle-nav {
        right: unset;
        position: relative;
    }
    .bake-header.header-5 .main-menu .brand-logo {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .bakery-banner .home-slider .slider-contain > div:after {
        width: calc(100% + 20px);
        height: calc(100% + 20px);
    }
    .category-bake {
        margin-top: 30px;
    }
    .category-bake .row {
        margin-bottom: -30px;
    }
    .category-bake .row > div {
        margin-bottom: 30px;
    }
    .bakery-box .product-box .add-button {
        font-size: 15px;
        padding: 5px;
        bottom: 0;
        width: 100%;
        position: relative;
    }
    .bakery-box .product-box .cart-info a i {
        margin: 5px 0;
        padding: 8px;
        font-size: 8px;
    }
    .pd-sm-0 {
        padding: 0;
    }
    .animation-sec .animated-icon {
        display: none;
    }
    .bakery-card.theme-card .offer-slider img {
        height: 90px;
    }
    .bakery-card .offer-slider .media .lable {
        padding: 6px 5px;
        font-size: 12px;
    }
    .img-category h4 {
        font-size: 14px;
    }
    .img-category .img-sec {
        width: 100%;
    }
    .dark-box .product-box .product-info .add-btn .btn {
        padding: 4px 10px;
    }
    .category-bg.onerow-cat .order-section div:nth-child(2) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-bottom: 15px;
        margin-top: 15px;
    }
    .category-bg .contain-block {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .button-dark.category-button .btn {
        padding: 10px 6px;
    }
    .button-dark.category-button .btn img {
        margin-right: 8px;
    }
    .absolute-banner.banner-padding.banner-style-2 {
        padding-top: 15px;
    }
    .absolute-banner.banner-padding.banner-style-2 .partition2 > div {
        margin-bottom: 15px;
    }
    .banner-style-2.absolute-banner .absolute-bg .collection-banner:hover .absolute-img img {
        top: 30px;
    }
    .subscribe-form {
        gap: 10px 0;
    }
    .subscribe-form .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .subscribe-form .form-control {
        padding: 13px;
    }
    .product-left-title .slick-custom-arrow li {
        width: 28px;
        height: 28px;
    }
    .product-left-title .slick-custom-arrow li.left-arrow {
        margin-right: 6px;
    }
    .product-left-title .slick-custom-arrow i {
        font-size: 20px;
    }
    .cycle-box-row {
        margin-bottom: -14px;
    }
    .cycle-box-row > div {
        margin-bottom: 14px;
    }
    .vector-category {
        margin-top: 0;
    }
    .vector-category .category-slide .slick-prev,
    .vector-category .category-slide .slick-next {
        display: none !important;
    }
    .banner-furniture {
        padding-left: 0;
        padding-right: 0;
    }
    .j-box.style-box .product-box {
        padding: 5px;
    }
    .product-vertical .full-banner {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }
    .cookie-bar {
        display: block;
        text-align: center;
        bottom: -130px;
    }
    .cookie-bar p {
        margin-bottom: 8px;
        font-size: 13px;
    }
    .cookie-bar.show {
        bottom: 0;
    }
    .recently-purchase {
        left: 10px;
    }
    .recently-purchase .media-body {
        padding: 0 12px 0 12px;
    }
    .blackfriday-modal .modal-body .modal-bg {
        padding: 30px 20px;
    }
    .sale-box {
        left: -9px;
    }
    .sale-box .heading-right h3 {
        -webkit-transform: translate(50%, -50%) rotate(-90deg) scale(0.6);
        transform: translate(50%, -50%) rotate(-90deg) scale(0.6);
    }
    .deal-category .deal-content h2 {
        font-size: 18px;
    }
    .gradient-category .gradient-border {
        height: 220px;
    }
    .subscribe-box {
        display: none !important;
    }
    .newyear-modal .btn-close {
        right: 10px;
        font-size: 13px;
        top: 13px;
    }
    .newyear-modal .modal-body .modal-bg {
        padding: 25px;
    }
    .newyear-modal .modal-body .modal-bg .content {
        margin-top: 0;
    }
    .newyear-modal .modal-body .modal-bg .content h1 {
        max-width: 100%;
    }
    .shop-sidebar-demo .shop-main {
        padding: 0 15px;
    }
    .shop-sidebar-demo .shop-main .slick-sm-margin .slick-list {
        margin-left: -8px;
        margin-right: -8px;
    }
    .shop-sidebar-demo .shop-main .slick-sm-margin .slick-slide > div {
        margin-left: 8px;
        margin-right: 8px;
    }
    .product-style-5.product-box {
        padding: 10px;
    }
    .product-style-5.product-box h6 {
        margin-bottom: 0;
    }
    .product-style-5.product-box h4 {
        font-size: 14px;
    }
    .product-style-5.product-box .addtocart_btn .add_cart {
        width: 26px;
        height: 26px;
        font-size: 14px;
        border-radius: 3px;
        right: 10px;
        bottom: 10px;
    }
    .sidebar-shop-footer .container-fluid {
        padding: 0 15px;
    }
    .template-password #container #login {
        margin-bottom: 0;
    }
    .error-section {
        padding: 100px 0;
    }
    .error-section h1 {
        font-size: 100px;
    }
    .error-section h2 {
        margin: 20px 0;
        font-size: 18px;
    }
    .about-page .about-head {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    .about-page .about-head .theme-breadcrumb .breadcrumb {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 10px;
        padding-bottom: 0;
    }
    .blog-detail-page .blog-detail .post-social li {
        display: block;
    }
    .blog-detail-page .blog-detail .post-social li + li {
        padding-left: 0;
        margin-left: 0;
        border-left: none;
    }
    .collection .collection-block .collection-content p {
        margin-bottom: 10px;
    }
    .collection .collection-block .collection-content h4,
    .collection .collection-block .collection-content h3 {
        margin-bottom: 5px;
    }
    .collection-product-wrapper .product-wrapper-grid .product-box {
        margin-top: 30px;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
        padding: 10px 20px 10px 20px;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .search-count h5 {
        font-size: 14px;
        line-height: 20px;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view,
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
        width: 100%;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select,
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select {
        padding: 10px 20px 10px 20px;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view:before,
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter:before {
        top: 11px;
    }
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
        border-right: 1px solid #ddd !important;
        border-bottom: 1px solid #ddd;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .search-count {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view {
        border-bottom: 1px solid #ddd;
        width: 100%;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select {
        border-right: none;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view:before {
        top: 14px;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
        width: 100%;
        border-top: none;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
        left: unset;
        right: 35px !important;
        top: 14px;
    }
    .cart-section .cart-buttons > div:last-child {
        padding-right: 15px;
    }
    .cart-section .cart-buttons .btn-solid {
        padding: 7px 8px;
    }
    .wishlist-section .btn-solid {
        padding: 7px 8px;
    }
    .collection-wrapper .order-up {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .checkout-page .checkout-form .checkout-details {
        padding: 15px;
    }
    .product-box .img-wrapper .lable-block .lable3 {
        font-size: 12px;
        padding: 13px 8px;
    }
    .product-box .img-block .lable-wrapper .lable1,
    .product-box .img-block .lable-wrapper .lable2 {
        padding: 6px 9px 8px 15px;
        font-size: 12px;
    }
    .tab-product .tab-content.nav-material p {
        line-height: 1.5;
    }
    .tab-product .nav-material.nav-tabs {
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -ms-flex-wrap: unset;
        flex-wrap: unset;
        -webkit-box-pack: unset;
        -ms-flex-pack: unset;
        justify-content: unset;
    }
    .tab-product .nav-material.nav-tabs .nav-item .nav-link {
        white-space: nowrap;
    }
    .bg-style i {
        padding: 5px !important;
        margin: 0 1px;
        font-size: 12px !important;
    }
    .slider-right-nav .slick-slide:first-child > div {
        margin-top: 15px;
    }
    .lookbook .lookbook-block .lookbook-dot .dot-showbox {
        width: 90px;
        top: -70px;
        left: 26px;
    }
    .lookbook .lookbook-block .lookbook-dot .dot-showbox .dot-info h5 {
        line-height: 16px;
    }
    .padding-cls {
        padding-left: 15px;
        padding-right: 15px;
    }
    .success-text i {
        font-size: 40px;
    }
    .success-text p {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    .success-text h2 {
        margin-bottom: 10px;
    }
    .order-success-sec {
        padding: 10px;
    }
    .delivery-sec {
        margin-top: 0;
        margin-bottom: 0;
    }
    .delivery-sec h3 {
        font-size: 16px;
    }
    .product-order h3 {
        font-size: 20px;
    }
    .product-order .product-order-detail .order_detail h4,
    .product-order .product-order-detail .order_detail h5 {
        font-size: 14px;
        line-height: 1.2;
    }
    .product-order .total-sec ul li {
        font-size: 16px;
    }
    .product-order .final-total h3 {
        font-size: 16px;
    }
    .beauty-about .service .service-block1 {
        margin-bottom: 20px;
    }
    .beauty-about .service .service-block1:last-child {
        margin-bottom: 0;
    }
    .main-menu .menu-left .navbar i {
        font-size: calc(21px + (24 - 21) * ((100vw - 320px) / (576 - 320)));
    }
    .typography_section .typography-box .typo-content.typo-buttons a:last-child {
        margin-top: 0;
    }
    .typography_section .typography-box .typo-content.typo-buttons .btn-solid.btn-sm {
        padding: 3px 12px;
    }
    .bundle .bundle_img .img-box img {
        max-width: 70px;
    }
    .bundle .bundle_detail .theme_checkbox {
        padding: 0;
    }
    .vendor-cover .bg-size {
        height: 250px;
    }
    .start-selling form .row > div:nth-child(2) {
        margin-top: 15px;
    }
    .become-vendor .step-bg .step-box .steps {
        margin: 0 auto 15px auto;
    }
    .bg-title .theme-tab .bg-title-part {
        display: block;
        text-align: center;
    }
    .bg-title .theme-tab .bg-title-part .tab-title {
        margin-left: unset;
        text-align: center;
    }
    .bg-title .theme-tab .bg-title-part .tab-title li {
        padding-left: 5px;
        padding-right: 5px;
    }
    .bg-title .theme-tab .bg-title-part .tab-title.w-bg {
        margin-top: 15px;
    }
    .dashboard-right .dashboard {
        padding: 20px;
    }
    .portfolio-section.metro-section .product-box .product-detail.default-view {
        bottom: 0;
        width: 100%;
    }
    .video-product iframe {
        height: 40vh;
        margin-top: 60px;
    }
    .tracking-page .tracking-detail {
        margin-top: 10px;
    }
    .tracking-page .tracking-detail ul li {
        font-size: 14px;
    }
    .tracking-page .tracking-detail ul li .left {
        min-width: 140px;
        width: 200px;
    }
    .tracking-page .wrapper {
        margin: 30px 0 5px;
    }
    .tracking-page .table td {
        min-width: 170px;
    }
    .sticky-bottom-cart .selection-section .form-control {
        text-transform: capitalize;
        font-size: 13px;
    }
    .sticky-bottom-cart .selection-section .form-group {
        width: 100px;
    }
    .sticky-bottom-cart .add-btn .btn {
        padding: 5px 8px;
        font-size: 13px;
        text-transform: capitalize;
    }
    .faq-tab .nav-tabs .nav-item {
        margin-bottom: 1px;
    }
    .element-page {
        margin-bottom: 60px;
    }
    .loader_skeleton header.header-gym {
        top: 0;
        background-color: black;
    }
    .loader_skeleton .header-dropdown {
        display: none;
    }
}
@media (max-width: 575px) {
    .breadcrumb-section .page-title {
        text-align: center;
        margin: 0 auto;
        vertical-align: middle;
        display: unset;
    }
    .breadcrumb-section .page-title h2 {
        margin-top: -2px;
    }
    .breadcrumb-section .breadcrumb {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
        line-height: 1;
        margin-top: 10px;
    }
}
@media (max-width: 480px) {
    .title1 .title-inner1 {
        margin-bottom: 12px;
    }
    .title1.title5 hr[role="tournament6"] {
        margin: 12px auto 20px auto;
    }
    .title2 .title-inner2 {
        margin-bottom: 20px;
    }
    .title3 .line {
        margin-bottom: 20px;
    }
    .title4 .line {
        margin-bottom: 20px;
    }
    .title-borderless {
        margin-bottom: 20px;
    }
    .modern-box {
        margin-top: 24px;
        padding: 15px 10px;
        margin-bottom: 30px;
    }
    .modern-box .absolute-img img {
        margin-top: -50px;
    }
    .modern-box .modern-content {
        margin-top: 10px;
    }
    .modern-box .modern-content h6 {
        font-size: 12px;
        line-height: 1.3;
    }
    .modern-box .modern-content h4 {
        font-size: 13px;
    }
    .setting-box .setting-title img {
        width: 60%;
    }
    .setting-box .setting-title h3 {
        line-height: 24px;
        font-size: 18px;
    }
    .demo-section .demo-effects {
        margin-bottom: 20px;
    }
    .demo-section .demo-effects > div .layout-container {
        height: 80px;
    }
    .demo-section .demo-effects > div .demo-text h4 span {
        position: absolute;
        top: 0;
        right: 7px;
        padding: 0;
        font-size: 11px;
        border-radius: 2px;
        margin-left: 0;
        width: 36px;
        height: 18px;
        line-height: 18px;
    }
    .service_slide .home-slider .slider-contain {
        height: 55vh;
    }
    .advertise-section .full-banner {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    header.left-header .main-menu .menu-left .mobile-logo {
        top: 22px;
    }
    .gym-banner .collection-banner .contain-banner > div {
        background-color: rgba(0, 0, 0, 0.5);
        padding: 10px;
    }
    .gym-banner .collection-banner .contain-banner h2 {
        font-size: 20px;
        margin-top: 4px;
    }
    .gym-banner .collection-banner .contain-banner h4 {
        font-size: 14px;
    }
    .subscribe-form.classic-form .form-control {
        margin-left: 0;
    }
    .theme-tab .tab-title li {
        padding-left: 5px;
        padding-right: 5px;
    }
    .theme-tab .tab-title2 {
        margin-bottom: 30px;
        font-size: 18px;
        font-weight: 400;
    }
    .theme-tab .tab-title2 li {
        padding-left: 15px;
        padding-right: 15px;
    }
    .theme-tab .tab-title2:after {
        display: none;
    }
    .blog-details {
        padding-left: 0;
        padding-right: 0;
    }
    .full-banner {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .full-banner.parallax-layout {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .full-banner .banner-contain h2 {
        font-size: 60px;
    }
    .full-banner .banner-contain h4 {
        font-size: 18px;
    }
    .full-banner .santa-img {
        bottom: -20px;
        left: 10px;
    }
    .full-banner .santa-img img {
        width: 76px;
    }
    .pet-parallax .full-banner {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .collection-banner .contain-banner {
        padding-left: 30px;
        padding-right: 30px;
    }
    .collection-banner .contain-banner h2 {
        font-size: 24px;
    }
    .home-slider .home {
        height: 45vh;
    }
    .home-slider .slider-details {
        width: 150px !important;
        height: 150px !important;
    }
    .home-slider .slider-details h1 {
        font-size: 20px;
    }
    .home-slider .slider-details h2 {
        font-size: 16px;
    }
    .home-slider .slider-details h3 {
        font-size: 14px;
    }
    .home-slider .slider-contain {
        height: 45vh;
    }
    .home-slider .slider-contain h1 {
        font-size: 28px;
    }
    .home-slider .slider-contain h4 {
        letter-spacing: 0.1em;
    }
    .home-slider .slider-contain .btn-solid,
    .home-slider .slider-contain .btn-outline {
        margin-top: 5px;
    }
    .home-slider:hover .slick-prev,
    .home-slider:hover .slick-next {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    .home-slider:hover .slick-next {
        right: 60px;
    }
    .home-slider:hover .slick-prev {
        left: 60px;
    }
    .height-85 .home-slider .home {
        height: 55vh;
    }
    .height-85 .home-slider .slider-contain {
        height: 55vh;
    }
    .white-layout .footer-theme2 .footer-block .footer-container {
        max-width: 448px;
    }
    .footer-theme2.section-light .footer-block .subscribe-white {
        padding: 30px 30px;
    }
    .footer-theme2.section-light .footer-block .subscribe-white .form-control {
        letter-spacing: 3px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 35px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content img {
        margin-bottom: 10px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
        margin-bottom: 15px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content form .form-control {
        height: 40px;
        padding: 0;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content form .btn-solid,
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content form .btn-outline {
        padding: 8px 15px;
    }
    .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media {
        display: block;
        text-align: center;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body h4 {
        font-size: 15px;
    }
    .tab-bg,
    .bg-block {
        padding: 35px 25px 30px 25px;
    }
    .setting-box {
        width: 280px;
    }
    .setting-box .setting-contant .setting_buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .setting-box .setting-contant .setting_buttons li {
        width: 40% !important;
    }
    .upper-canvas-section.height-100 .home-slider .slider-contain.left-canvas-section {
        padding-top: 80px;
    }
    .lower-canvas-section .left-canvas-section {
        padding: 20px 0 20px;
    }
    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
        height: 160px;
        max-width: unset;
    }
    .timer-section .timer {
        padding-left: 30px;
    }
    .timer-section .timer span {
        width: 55px;
    }
    .product-vertical .full-box .theme-card .offer-slider .product-box2 .media img {
        height: auto;
    }
    .gradient-category .gradient-border {
        height: 180px;
    }
    .select_input select {
        padding: 12px 15px;
        margin-bottom: 18px;
    }
    .testimonial .testimonial-slider .media {
        display: inline-block;
    }
    .testimonial .testimonial-slider .media img {
        margin: 0 auto;
        height: 100px;
        width: 100px;
    }
    .testimonial .testimonial-slider .media .media-body {
        padding: 0;
        text-align: center;
    }
    .blog-detail-page .blog-contact h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .blog-detail-page .blog-contact .theme-form input,
    .blog-detail-page .blog-contact .theme-form textarea {
        padding: 12px 20px;
        margin-bottom: 20px;
    }
    .blog-detail-page .blog-detail h3 {
        font-size: 18px;
    }
    .blog-detail-page .blog-detail img {
        margin-bottom: 25px;
    }
    .blog-detail-page .blog-advance ul {
        line-height: 1.5;
    }
    .blog-detail-page .blog-advance img {
        margin-bottom: 20px;
        margin-top: 10px;
    }
    .blog-detail-page .blog-advance p {
        line-height: 1.5;
    }
    .blog-detail-page .comment-section li {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .blog-detail-page .comment-section li p {
        line-height: 1.5;
    }
    .blog-detail-page .comment-section li h6 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .blog-detail-page .comment-section li h6 span {
        display: inherit;
        margin-left: 0;
    }
    .blog-detail-page .comment-section .media {
        display: inline-block;
        text-align: center;
    }
    .faq-section .theme-accordion .card .card-body p {
        line-height: 1.5 !important;
    }
    .faq-section .theme-accordion .card .card-header button {
        line-height: 1.3;
        padding: 12px 35px 12px 12px !important;
    }
    .faq-section .accordion.theme-accordion .card .card-header button:before {
        top: 20px;
    }
    .pwd-page {
        padding: 70px 0;
    }
    .pwd-page h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .login-page .authentication-right h6 {
        margin-bottom: 10px;
    }
    .login-page .theme-card {
        padding: 25px;
    }
    .register-page .theme-card {
        padding: 18px;
    }
    .register-page .theme-card .theme-form input {
        margin-bottom: 20px;
        padding: 12px 15px;
    }
    .search-block .btn-solid {
        padding: 10px 15px;
    }
    .contact-page .map iframe {
        height: 275px;
    }
    .contact-page .theme-form input {
        padding: 12px 15px;
        margin-bottom: 18px;
    }
    .blog-page .blog-media .blog-right h6 {
        margin-bottom: 0;
    }
    .blog-page .blog-media .blog-right p {
        line-height: 1.3;
    }
    .blog-page .blog-media .blog-right h4 {
        margin-bottom: 5px;
    }
    .blog-page .blog-media .blog-right ul {
        margin-bottom: 5px;
    }
    .blog-page .blog-media .blog-right ul li {
        display: block;
    }
    .blog-page .blog-media .blog-right ul li + li {
        padding-left: 0;
        margin-left: 0;
        border-left: none;
    }
    .account-sidebar {
        width: 45%;
    }
    .success-text h2 {
        font-size: 20px;
    }
    .success-text p {
        font-size: 14px;
    }
    .typography_section .typography-box .typo-content.typo-buttons a {
        margin: 5px 0;
    }
    .dashboard-section .dashboard-box .dashboard-detail ul li .details {
        display: block;
    }
    .dashboard-section .dashboard-box .dashboard-detail ul li .details .left {
        width: auto;
    }
    .dashboard-section .dashboard-box .dashboard-detail ul li .details .left h6 {
        font-weight: 600;
    }
    .theme-card .offer-slider img {
        max-width: 130px;
        height: auto;
    }
    .tab-product .tab-content.nav-material .single-product-tables table {
        width: 100%;
    }
    .single-product-tables {
        display: block;
        margin-top: 0;
    }
    .single-product-tables table tr td:first-child {
        width: 140px;
    }
    .modern-box-margin {
        margin-bottom: -30px;
    }
    .modern-box {
        margin-top: 24px;
        padding: 15px 10px;
        margin-bottom: 30px;
    }
    .modern-box .absolute-img img {
        margin-top: -50px;
    }
    .modern-box .modern-content {
        margin-top: 10px;
    }
    .modern-box .modern-content h6 {
        font-size: 14px;
        line-height: 1.3;
    }
    .modern-box .modern-content h4 {
        font-size: 13px;
    }
    .cart_counter {
        display: block;
    }
    .cart_counter .cart_checkout {
        margin-left: 0;
    }
}
@media (max-width: 420px) {
    h2 {
        font-size: 22px;
    }
    .header-style-1 .navbar .nav-link {
        padding-right: 10px;
        font-size: 13px;
    }
    .product-pagination {
        margin-top: 30px;
    }
    .margin-res {
        margin-left: -10px;
        margin-right: -10px;
    }
    .margin-res > div {
        padding-left: 10px;
        padding-right: 10px;
    }
    .portfolio-section.metro-section .product-box .product-detail {
        width: 95%;
        bottom: 5px;
    }
    .portfolio-section.metro-section .product-box .product-detail h6,
    .portfolio-section.metro-section .product-box .product-detail h4 {
        font-size: 12px;
    }
    .portfolio-section.metro-section .product-box .cart-wrap button i,
    .portfolio-section.metro-section .product-box .cart-wrap a i {
        font-size: 10px;
        padding: 5px;
    }
    .collection-product-wrapper .product-wrapper-grid .product-box {
        margin-top: 20px;
    }
    .subscribe h4 {
        display: block;
    }
    footer p {
        line-height: 25px;
    }
    footer.footer-black .subscribe-form .form-control {
        height: 35px;
        width: 220px;
    }
    .blog-details p {
        font-size: 14px;
        line-height: 1.3;
    }
    .no-slider {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
    .no-slider .product-box {
        margin: 0 10px 20px !important;
        max-width: calc(50% - 20px);
    }
    .no-slider .product-box:nth-last-child(-n + 2) {
        margin: 0 10px 0 !important;
    }
    .no-slider.five-product .product-box {
        margin: 0 10px 20px !important;
        max-width: calc(50% - 20px);
    }
    .no-slider.five-product .product-box:nth-last-child(-n + 2) {
        margin: 0 10px 0 !important;
    }
    .product-m .slick-list {
        margin-left: -5px;
        margin-right: -5px;
    }
    .product-m .slick-slide > div {
        margin: 0 5px;
    }
    .product-box .cart-detail i,
    .product-wrap .cart-detail i {
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 14px;
    }
    .product-box .cart-info i,
    .product-box .cart-wrap i,
    .product-wrap .cart-info i,
    .product-wrap .cart-wrap i {
        padding: 5px;
        font-size: 13px;
    }
    .product-box .img-wrapper .lable-block .lable4,
    .product-wrap .img-wrapper .lable-block .lable4 {
        font-size: 10px;
    }
    .product-box .img-wrapper .cart-box i,
    .product-wrap .img-wrapper .cart-box i {
        font-size: 14px;
        padding-left: 4px;
        padding-right: 4px;
    }
    .product-box .product-detail,
    .product-box .product-info,
    .product-wrap .product-detail,
    .product-wrap .product-info {
        margin-top: 5px;
    }
    .product-box .product-detail h6,
    .product-box .product-info h6,
    .product-wrap .product-detail h6,
    .product-wrap .product-info h6 {
        font-size: 14px;
    }
    .product-box .product-detail h4,
    .product-box .product-info h4,
    .product-wrap .product-detail h4,
    .product-wrap .product-info h4 {
        font-size: 15px;
    }
    .product-box .product-detail .color-variant,
    .product-box .product-info .color-variant,
    .product-wrap .product-detail .color-variant,
    .product-wrap .product-info .color-variant {
        padding-top: 3px;
    }
    .product-box .product-detail .color-variant li,
    .product-box .product-info .color-variant li,
    .product-wrap .product-detail .color-variant li,
    .product-wrap .product-info .color-variant li {
        height: 14px;
        width: 14px;
        margin-right: 3px;
    }
    .product-box .cart-info.cart-wrap i,
    .product-box .cart-wrap.cart-wrap i,
    .product-wrap .cart-info.cart-wrap i,
    .product-wrap .cart-wrap.cart-wrap i {
        padding: 5px;
        font-size: 13px;
    }
    .absolute_banner .collection-banner .absolute-contain {
        padding: 10px;
        bottom: 10px;
    }
    .absolute-banner.search-section .absolute-bg .row > div.search-col .search-btn {
        width: 100%;
    }
    .absolute-product .product-box .product-detail .cart-bottom i {
        padding-right: 4px;
        padding-left: 4px;
        font-size: 16px;
    }
    .addtocart_count .product-box .cart-info a i {
        margin: 4px 0;
        padding: 5px;
        font-size: 14px;
    }
    .addtocart_count .product-box .add-button {
        font-size: 14px;
    }
    .timer span .padding-l {
        padding-left: 5px;
    }
    .about-text p {
        line-height: 22px;
    }
    .service_slide .service-home .service-block1 svg {
        width: 40px;
        height: 40px;
    }
    .footer-theme .footer-title {
        margin-top: 10px;
    }
    .footer-theme .footer-title h4 {
        font-weight: 600;
    }
    .footer-theme .sub-title h4 {
        margin-bottom: 14px;
    }
    .footer-theme .sub-title .contact-list li {
        line-height: 25px;
    }
    .footer-theme2 p {
        line-height: 25px;
    }
    .breadcrumb-section {
        padding: 15px 0;
    }
    .footer-light .subscribe-form .form-control {
        width: 280px;
    }
    .white-layout .footer-theme2 .footer-block .footer-container {
        max-width: 388px;
    }
    .white-layout .footer-theme2 .footer-block .subscribe-white .btn-solid,
    .white-layout .footer-theme2 .footer-block .subscribe-white .btn-outline {
        padding: 13px 8px;
    }
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .btn-solid,
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .btn-outline {
        padding: 13px 8px;
    }
    .footer-theme2 .subscribe-block .form-control {
        letter-spacing: 3px;
    }
    .subscribe-form {
        display: inline-block;
    }
    .subscribe-form .form-group {
        margin-bottom: 10px;
    }
    .category-border div .category-banner .category-box h2 {
        font-size: 25px;
    }
    .tools-grey .product-box .product-info {
        padding: 8px;
    }
    .tools-grey .product-box .product-info h4 {
        font-size: 13px;
    }
    .j-box .product-box .product-detail {
        padding-left: 4px;
        padding-bottom: 8px;
        padding-right: 4px;
        padding-top: 4px;
    }
    .full-banner .banner-contain h2 {
        font-size: 55px;
    }
    .full-banner .banner-contain h3 {
        font-size: 36px;
    }
    .home-slider .slider-contain h1 {
        font-size: 25px;
        margin-top: 10px;
    }
    .home-slider .slider-contain h4 {
        letter-spacing: 0.01em;
    }
    .home-slider .slider-contain .btn-solid,
    .home-slider .slider-contain .btn-outline {
        margin-top: 10px;
        padding: 5px 18px;
    }
    .home-slider .slider-details {
        width: 120px !important;
        height: 120px !important;
        top: 24%;
    }
    .home-slider .slider-details h1 {
        font-size: 18px;
    }
    .home-slider .slider-details h2 {
        font-size: 14px;
    }
    .home-slider .slider-details h3 {
        font-size: 12px;
    }
    .home-slider .slider-details .btn-white {
        padding: 0px 2px;
        margin-top: 0;
        font-size: 10px;
    }
    .home-slider:hover .slick-prev,
    .home-slider:hover .slick-next {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    .home-slider:hover .slick-next {
        right: 50px;
    }
    .home-slider:hover .slick-prev {
        left: 50px;
    }
    .theme-card.center-align {
        display: unset;
        height: unset;
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
    }
    .theme-card.card-border .offer-slider img {
        padding: 10px 10px 10px 15px;
    }
    .full-box .center-slider .offer-slider .product-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid #f1f5f4;
        border-top: 1px solid #f1f5f4;
        padding: 15px 0;
    }
    .full-box .center-slider .offer-slider .product-box .img-wrapper img {
        height: 120px;
        padding: 0 15px 0 0;
    }
    .full-box .center-slider .offer-slider .product-box .product-info {
        text-align: left;
    }
    .full-box .center-slider .offer-slider .product-box .product-info h6 {
        padding-top: 5px;
    }
    .full-box .center-slider .offer-slider .product-box .product-info .color-variant {
        padding-top: 2px;
    }
    .full-box .center-slider .offer-slider .product-box .product-info .color-variant li {
        height: 15px;
        width: 15px;
        padding-right: 3px;
    }
    .full-box .center-slider .offer-slider .product-box .product-detail {
        padding-left: 0;
    }
    .full-box .center-slider .offer-slider .product-box .product-detail h4 {
        font-size: 20px;
    }
    .full-box .center-slider .offer-slider .product-box .product-detail .color-variant {
        padding-top: 0;
    }
    .full-box .center-slider .offer-slider .product-box:hover .product-info .btn-outline {
        display: none;
    }
    .full-box .center-slider .offer-slider .product-box:hover .product-info .color-variant {
        opacity: 1;
    }
    .full-box .theme-card .offer-slider .sec-1 {
        display: inline;
    }
    .full-box .theme-card .offer-slider .sec-1 .product-box2 {
        border-bottom: 1px solid #f1f5f4;
    }
    .full-box .theme-card .offer-slider .sec-1 .product-box2:last-child {
        border-bottom: none;
    }
    .full-box .theme-card .offer-slider .sec-1 .product-box2 + .product-box2 {
        border-left: none;
    }
    .center-slider .offer-slider .product-box .product-detail {
        text-align: left !important;
    }
    .center-slider .offer-slider .product-box .product-detail .rating i {
        padding-right: 3px;
    }
    .center-slider .offer-slider .product-box .product-detail h4 {
        padding-bottom: 0.5rem;
    }
    .center-slider .offer-slider .product-box .product-detail .color-variant li {
        height: 18px;
        width: 18px;
        padding-right: 3px;
    }
    .center-slider .offer-slider .product-box .img-wrapper .cart-box {
        display: none;
    }
    .product-box .img-wrapper .lable-block .lable3 {
        font-size: 10px;
        padding: 10px 5px;
    }
    .product-box .img-wrapper .cart-box {
        padding: 4px 8px;
        bottom: 10px;
    }
    .product-box .img-block .lable-wrapper {
        top: 20px;
    }
    .product-box .img-block .lable-wrapper .lable1,
    .product-box .img-block .lable-wrapper .lable2 {
        padding: 5px 5px 5px 8px;
        font-size: 12px;
    }
    .product-box .cart-info {
        bottom: 10px;
    }
    .team h6 {
        line-height: 15px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 30px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
        font-size: 30px;
    }
    .login-page .authentication-right p {
        line-height: 1.5;
    }
    .login-page .theme-card .theme-form input {
        padding: 15px 20px;
        margin-bottom: 25px;
    }
    .tab-product .nav-material.nav-tabs .nav-item .nav-link {
        padding: 9px 12px;
    }
    .vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link,
    .vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
        padding: 10px 20px;
    }
    .product-right .product-buttons .btn-solid,
    .product-right .product-buttons .btn-outline {
        padding: 7px 8px;
    }
    .product-right.product-form-box .timer {
        padding-left: 29px;
    }
    .product-right.product-form-box .timer span {
        width: 45px;
    }
    .product-right .timer {
        padding-left: 35px;
    }
    .product-right .timer span {
        width: 45px;
    }
    .product-right .product-icon .product-social {
        margin-top: 0;
    }
    .product-right .product-icon .product-social li {
        padding-right: 5px;
    }
    .product-right .product-icon .product-social li a i {
        font-size: 14px;
    }
    .product-right .product-icon .wishlist-btn i {
        font-size: 14px;
        padding-left: 10px;
        margin-left: 5px;
    }
    .product-right .product-icon .wishlist-btn span {
        font-size: 14px;
    }
    .tab-product .theme-form input,
    .tab-product .theme-form textarea {
        font-size: 12px;
        padding: 8px 15px;
    }
    .order-box .sub-total .shipping {
        width: unset;
        float: unset;
        display: block;
    }
    .order-box .sub-total .shipping .shopping-option label {
        margin-bottom: 0;
    }
    .order-box .sub-total .shipping .shopping-option:last-child {
        padding-left: 0;
    }
    .checkout-page .checkout-form .form-group {
        margin-bottom: 15px;
    }
    .checkout-page .checkout-form input[type="text"],
    .checkout-page .checkout-form input[type="email"],
    .checkout-page .checkout-form input[type="password"],
    .checkout-page .checkout-form input[type="tel"],
    .checkout-page .checkout-form input[type="number"],
    .checkout-page .checkout-form input[type="url"] {
        height: 40px;
    }
    .checkout-page .checkout-form select,
    .checkout-page .checkout-form textarea {
        height: 40px;
    }
    .grid-products {
        margin-left: -10px;
        margin-right: -10px;
    }
    .grid-products .product-box {
        padding-left: 10px;
        padding-right: 10px;
    }
    .game-product .product-box .add-button {
        font-size: 14px;
        bottom: 6px;
    }
    .cycle-box .cart-detail li {
        padding: 0 8px;
    }
    .banner-style-1 .theme-card.center-align {
        display: block;
    }
    .banner-style-1 .theme-card.center-align .offer-slider .product-box2 .media .media-body {
        margin: 10px 0;
    }
    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
        height: 130px;
    }
    .sticky-bottom-cart .add-btn .btn {
        padding: 5px 4px;
        font-size: 12px;
    }
    .tracking-page .tracking-detail ul li .left {
        width: 170px;
    }
    .deal-category .deal-content {
        width: calc(100% - 15px);
        height: calc(100% - 15px);
    }
    .deal-category .deal-content h2 {
        font-size: 15px;
        margin-bottom: 3px;
    }
    .gradient-category .gradient-border {
        height: 140px;
    }
}
@media (max-width: 360px) {
    .btn-solid,
    .btn-outline {
        padding: 10px 15px;
    }
    h2 {
        font-size: 22px;
    }
    .shop-sidebar-demo .shop-main .small-slider .home .slider-contain .btn {
        padding: 5px 5px;
        font-size: 12px;
    }
    .advertise-section .full-banner {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .category-button .col {
        -ms-flex-preferred-size: unset;
        flex-basis: unset;
    }
    .gym-banner .collection-banner .contain-banner h2 {
        font-size: 18px;
    }
    .service_slide .home-slider .slider-contain {
        height: 50vh;
    }
    .tools-parallax-product .tools-description .tools-form .search-box {
        width: 92%;
    }
    footer .btn-solid {
        padding: 7px 8px;
    }
    .footer-theme2 .subscribe-block {
        padding: 0 30px;
    }
    .white-layout .small-section .footer-theme2 .col {
        padding: 0 15px;
    }
    .white-layout .footer-theme2 .footer-block .footer-container {
        max-width: 330px;
    }
    .footer-theme2.section-light .footer-block .subscribe-white {
        padding: 20px 20px;
    }
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .form-group .form-control {
        border: none;
    }
    .footer-end p {
        font-size: 13px;
    }
    .category-border div .category-banner .category-box h2 {
        padding: 7px 15px;
    }
    .full-banner {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .full-banner.parallax-layout {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .full-banner .banner-contain h2 {
        font-size: 55px;
    }
    .full-banner .banner-contain h3 {
        font-size: 30px;
    }
    .pet-parallax .full-banner {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .home-slider .home {
        height: 40vh;
    }
    .home-slider .slider-contain {
        height: 40vh;
    }
    .home-slider .slider-contain h1 {
        font-size: 22px;
    }
    .home-slider .slider-contain h4 {
        font-size: 14px;
    }
    .home-slider .slider-contain .btn-solid,
    .home-slider .slider-contain .btn-outline {
        margin-top: 8px;
        padding: 5px 15px;
    }
    .home-slider .slider-details {
        top: 20%;
    }
    .home-slider .slider-details h1 {
        font-size: 16px;
    }
    .home-slider .slider-details h2 {
        font-size: 13px;
    }
    .home-slider:hover .slick-prev,
    .home-slider:hover .slick-next {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    .home-slider:hover .slick-next {
        right: 40px;
    }
    .home-slider:hover .slick-prev {
        left: 40px;
    }
    .height-85 .home-slider .home {
        height: 50vh;
    }
    .height-85 .home-slider .slider-contain {
        height: 50vh;
    }
    .layout-7.home-slider .home {
        height: 40vh;
    }
    .layout-7.home-slider .home .slider-contain {
        height: 40vh;
    }
    .layout-7.home-slider.sm-size .home {
        height: 30vh;
    }
    .layout-7.home-slider.sm-size .home .slider-contain {
        height: 30vh;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body a h6 {
        font-size: 13px;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body .color-variant li {
        height: 12px;
        width: 12px;
    }
    .theme-tab .tab-content .product-tab .tab-box .product-box2 img {
        height: 115px;
    }
    .blog-detail-page .blog-detail p {
        line-height: 1.5;
    }
    .blog-detail-page .blog-contact h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body {
        padding: 10px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 20px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .btn-close {
        right: 10px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content form .form-group .form-control {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .login-page .theme-card {
        padding: 18px;
    }
    .search-block .btn-solid {
        padding: 10px 5px;
    }
    .search-block .form-header .input-group input {
        padding: 10px 12px;
    }
    .contact-page .map iframe {
        height: 200px;
    }
    .collection-product-wrapper .product-pagination .product-search-count-bottom {
        padding-left: 10px;
    }
    .collection-product-wrapper .product-pagination .product-search-count-bottom h5 {
        line-height: 15px;
    }
    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
        width: 80%;
    }
    .cart-section tbody tr td,
    .wishlist-section tbody tr td {
        min-width: 115px;
    }
    .cart-section tbody tr td .mobile-cart-content .col,
    .wishlist-section tbody tr td .mobile-cart-content .col {
        margin-left: 5px;
        margin-right: 5px;
    }
    .cart-section tbody tr td a img,
    .wishlist-section tbody tr td a img {
        height: 80px;
    }
    .cart-section tfoot tr td,
    .wishlist-section tfoot tr td {
        padding-right: 27px;
    }
    .cart-section tfoot tr td h2,
    .wishlist-section tfoot tr td h2 {
        font-size: 21px;
    }
    .wishlist-section .wishlist-buttons:last-child a {
        margin-left: 0;
    }
    .product-buttons .btn-solid,
    .product-buttons .btn-outline {
        padding: 7px 16px;
    }
    .product-description .qty-box .input-group {
        width: 100%;
    }
    .single-product-tables.detail-section table {
        width: 100%;
    }
    .product-right .timer {
        padding-left: 25px;
    }
    .product-right .timer span .padding-l {
        padding-left: 10px;
    }
    .product-right .product-buttons a:last-child {
        margin-left: 6px;
    }
    .product-form-box .timer span {
        width: 47px;
    }
    .product-form-box .timer span .padding-l {
        padding-left: 9px;
    }
    .product-form-box .product-buttons .btn-solid,
    .product-form-box .product-buttons .btn-outline {
        padding: 5px 5px;
    }
    .product-form-box .timer span,
    .border-product .timer span {
        width: 45px;
    }
    .product-form-box .timer span .padding-l,
    .border-product .timer span .padding-l {
        padding-right: 5px;
    }
    .d-none-frm-xs {
        display: none;
    }
    .gradient-category .gradient-border {
        height: 130px;
    }
    .sticky-bottom-cart .selection-section .form-group {
        width: 80px;
    }
}
@media (max-width: 320px) {
    .home-slider .slider-details {
        top: 16%;
    }
    .footer-theme .footer-logo {
        margin-bottom: 20px;
    }
    .footer-theme2 .col {
        padding: 10px 5px;
    }
    .white-layout .footer-theme2 .col {
        padding: 0 15px;
    }
    .white-layout .footer-theme2 .footer-block .footer-container {
        max-width: 290px;
    }
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .form-group .form-control {
        letter-spacing: 1px;
    }
    .footer-theme2.section-light .footer-block .subscribe-white .form-control {
        letter-spacing: 1px;
    }
    .collection-banner .contain-banner.banner-3 {
        padding-left: 25px;
        padding-right: 25px;
    }
    .collection-banner .contain-banner.banner-3 h2 {
        font-size: 15px;
    }
    .collection-banner .contain-banner.banner-4 {
        padding-left: 35px;
        padding-right: 35px;
    }
    .collection-banner .contain-banner.banner-4 h2 {
        font-size: 15px;
    }
    .gradient-category .gradient-border {
        height: 120px;
    }
}
body.rtl {
    direction: rtl;
}
.rtl .ms-5 {
    margin-right: 3rem !important;
    margin-left: 0 !important;
}
.rtl .shop-sidebar-demo .shop-main {
    margin-right: 320px;
    margin-left: 0;
}
.rtl .shop-sidebar-demo .shop-sidebar {
    right: 0;
    left: unset;
    border-left: 1px solid #ddd;
    border-right: none;
}
.rtl .sidebar-shop-footer {
    margin-left: 0;
    margin-right: 320px;
}
.rtl .shop-sidebar-demo .shop-main .small-slider .home .slider-contain {
    direction: ltr;
}
.rtl .slick-slider {
    direction: ltr;
}
.rtl .slick-slider .basic-product {
    direction: rtl;
}
.rtl .slick-slide {
    float: left;
}
.rtl ul {
    -webkit-padding-start: 0;
}
.rtl .pre-2,
.rtl .px-2 {
    padding-right: unset !important;
    padding-left: 0.5rem !important;
}
.rtl .me-1,
.rtl .mx-1 {
    margin-left: 0.25rem !important;
    margin-right: unset !important;
}
.rtl .me-2,
.rtl .mx-2 {
    margin-right: unset !important;
    margin-left: 0.5rem !important;
}
.rtl .ms-2,
.rtl .mx-2 {
    margin-left: unset !important;
    margin-right: 0.5rem !important;
}
.rtl .me-3,
.rtl .mx-3 {
    margin-right: unset !important;
    margin-left: 1rem !important;
}
.rtl .ms-3,
.rtl .mx-3 {
    margin-left: unset !important;
    margin-right: 1rem !important;
}
.rtl .ms-auto,
.rtl .mx-auto {
    margin-left: unset !important;
    margin-right: auto !important;
}
.rtl .pe-0,
.rtl .px-0 {
    padding-right: unset !important;
    padding-left: 0 !important;
}
.rtl .pe-2 {
    padding-left: 0.5rem !important;
    padding-right: unset !important;
}
.rtl .text-end {
    text-align: left !important;
}
.rtl .text-start {
    text-align: right !important;
}
.rtl .theme-form .form-group {
    text-align: right;
}
.rtl .form-check {
    padding-left: 0;
    padding-right: 1.5em;
}
.rtl .form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
    margin-left: 0;
}
.rtl .pixelstrap ul a {
    text-align: right;
}
.rtl .pixelstrap a .sub-arrow {
    right: auto;
    left: 10px;
}
@media (max-width: 1199px) {
    .rtl .pixelstrap a .sub-arrow {
        margin-left: unset;
        margin-right: auto;
    }
}
.rtl .pixelstrap .clothing-menu .link-section {
    text-align: right;
}
.rtl .pixelstrap li .lable-nav {
    left: unset;
    right: 28px;
}
.rtl .pixelstrap .link-section h5::before {
    left: unset;
    right: 0;
}
.rtl .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: unset;
    margin-right: calc(var(--bs-border-width) * -1);
}
.rtl .sm,
.rtl .sm ul,
.rtl .sm li {
    direction: rtl;
}
.rtl .onhover-dropdown .onhover-show-div {
    right: unset;
    left: 0;
    text-align: right;
}
.rtl .modal .btn-close {
    margin-right: auto;
    margin-left: 0;
}
.rtl .form-select {
    background-position: left 0.75rem center;
    padding-right: 0.75rem;
    padding-left: 2.25rem;
}
.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body {
    text-align: right;
}
.rtl .main-menu .menu-right .icon-nav .delivery-area i {
    margin-right: 0;
    margin-left: 5px;
}
.rtl .main-menu .menu-left.category-nav-right .navbar {
    padding: 40px 45px 40px 0;
}
.rtl .header-options {
    text-align: left;
}
.rtl .snow-slider .slick-slide img {
    width: 100%;
}
.rtl .effect-cls:before,
.rtl .effect-cls:after {
    right: 0;
}
.rtl .left-header .sidenav .pixelstrap > li > a {
    text-align: right;
}
.rtl .left-header .sidenav .pixelstrap li ul li a {
    text-align: right;
}
.rtl .top-header .header-contact li {
    padding-right: 0;
    padding-left: 25px;
}
.rtl .header-compact .menu-row .delivery-area {
    margin-right: 0;
    margin-left: 25px;
}
.rtl .top-panel-adv .delivery-area {
    margin-left: 0;
    margin-right: 20px;
}
.rtl .onhover-dropdown:before {
    left: 3px;
    right: unset;
}
.rtl .top-header .header-dropdown > li:nth-child(2) {
    padding: 0 25px;
    padding-left: 0;
}
.rtl .top-header .header-dropdown li i {
    padding-left: 0;
    padding-right: 5px;
}
@media (max-width: 577px) {
    .rtl .top-header .header-dropdown li i {
        padding: 0;
    }
}
.rtl .top-header .header-dropdown li:first-child {
    padding-right: 20px;
    padding-left: 0;
}
.rtl .top-header .header-dropdown .onhover-dropdown .onhover-show-div li {
    padding-inline: 0;
}
.rtl .top-header .header-contact {
    text-align: right;
}
.rtl .top-header .header-contact li i {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.rtl .svg-icon-menu.wo-bg .pixelstrap > li > a svg,
.rtl .svg-icon-menu.wo-bg .pixelstrap > li > a img {
    margin-right: unset;
    margin-left: 10px;
}
.rtl .watch-banner .timer .timer span .padding-l {
    right: -1px;
    left: unset;
}
.rtl .basic-product.theme-product-2 .cart-detail li + li {
    border-left: unset;
    border-right: 1px solid #eee;
}
.rtl .basic-product.theme-product-2 .cart-detail li i {
    margin-right: unset;
    margin-left: 6px;
}
.rtl .basic-product.theme-product-2 .product-detail .add-wish {
    right: unset;
    left: calc(10px + (18 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.rtl .basic-product.theme-product-6 .cart-info a + a::after {
    left: unset;
    right: 0;
}
.rtl .basic-product.theme-product-8 .add-round-btn {
    right: unset;
    left: calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320)));
}
.rtl .main-menu .menu-left .navbar {
    padding: 40px 0 40px 45px;
}
.rtl .main-menu .menu-right {
    float: left;
}
.rtl .main-menu .menu-right .icon-nav li {
    padding-left: 0;
    padding-right: 20px;
}
.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.setting {
    right: unset;
    left: 0;
}
.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.setting h6 {
    text-align: right;
}
.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart {
    right: unset;
    left: 0;
}
.rtl .pixelstrap .full-mega-menu ul a:before {
    right: 0;
}
.rtl .cart_qty_cls {
    right: unset;
    left: -8px;
}
.rtl .timer span .padding-l {
    right: unset;
    left: -1px;
}
.rtl header .main-navbar .nav-menu > li {
    float: right;
}
.rtl header .main-navbar .nav-menu > li > a {
    padding-right: 0;
    padding-left: 45px;
}
.rtl header .main-navbar .nav-menu > li > a .sub-arrow {
    right: auto;
    left: 7px;
}
.rtl header .main-navbar .nav-menu > li .mega-menu-container .mega-box {
    text-align: right;
}
.rtl header .main-navbar .nav-menu > li .mega-menu-container .mega-box .link-section .menu-content ul li a:before {
    right: 0;
}
.rtl header .main-navbar .nav-menu > li .nav-submenu {
    text-align: right;
}
.rtl header .main-navbar .nav-menu > li .nav-submenu li a i {
    float: left;
}
.rtl header .main-navbar .nav-menu > li .nav-submenu li .nav-sub-childmenu {
    left: -203px;
    right: unset;
}
.rtl header .sidenav .sidebar-menu li {
    direction: rtl;
    text-align: right;
}
.rtl header.left-header .sidenav {
    right: 0;
}
.rtl header.left-header .sidenav .pixelstrap li .mega-menu-container {
    right: 0px;
    margin-right: 270px;
    left: unset;
    margin-left: unset;
}
.rtl header.left-header .sidenav .pixelstrap li .nav-submenu {
    right: 0px;
    margin-right: 270px;
    margin-left: 0;
    left: unset;
}
.rtl header.left-header .sidenav .pixelstrap li .nav-submenu li .nav-sub-childmenu {
    left: unset;
    margin-left: 0;
    right: 0px;
    margin-right: 228px;
}
.rtl header.left-header .sidenav .pixelstrap li .nav-submenu li a i {
    float: left;
}
.rtl header.left-header .sidenav .left-sidebar_center {
    padding: 40px 30px 30px 0;
}
.rtl header.left-header .sidenav .left-sidebar_center .pixelstrap li a .sub-arrow {
    left: 7px;
    right: unset;
}
.rtl header.left-header.left-header-sm .sidenav .left-sidebar_center {
    padding: 0;
}
.rtl header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap > li > a img {
    margin-left: auto !important;
}
.rtl header.left-header.left-header-relative .main-menu {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.rtl header.left-header.left-header-relative .sidenav .left-sidebar_center {
    padding: 0;
}
.rtl header .layout3-menu .main-navbar .nav-menu > li > a {
    padding-left: 34px;
}
.rtl header .layout3-menu .main-navbar .nav-menu > li > a .sub-arrow {
    left: -5px;
}
.rtl header.header-christmas .main-menu .menu-left .navbar {
    padding: 20px 0 20px 45px;
}
.rtl header.header-tools .main-menu .menu-left .navbar {
    padding: 25px 0 25px 45px;
}
.rtl .header-style-5 .bottom-part .category-menu .toggle-sidebar i {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .header-compact .delivery-area svg {
    margin-left: 10px;
    margin-right: 0;
}
.rtl .header-compact .delivery-area div h6 {
    margin-left: 5px;
    margin-right: 0;
}
.rtl .header-compact .top-header .header-dropdown li:nth-child(2) {
    padding: 10px 25px;
}
.rtl .header-compact .top-header .header-dropdown li:last-child {
    padding-left: 0;
}
.rtl .addcart_btm_popup {
    left: 0;
    right: unset;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.rtl .addcart_btm_popup .fixed_cart {
    padding-right: 8px;
    padding-left: 0;
}
.rtl .dark-light {
    right: unset;
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.rtl .blog-left .blog-details {
    text-align: right;
}
.rtl .sidenav {
    right: -300px;
    left: unset;
}
.rtl .sidenav.open-side {
    right: 0;
}
.rtl .sidenav.marketplace-sidebar {
    right: unset;
}
.rtl .bg-title .theme-tab .bg-title-part .tab-title {
    margin-right: auto;
    margin-left: unset;
}
.rtl .product-left-title .slick-custom-arrow li.left-arrow {
    margin-left: 16px;
    margin-right: 0;
}
.rtl .setting-box {
    right: unset;
    left: -660px;
}
.rtl .setting-box.open-setting {
    right: unset;
    left: -4px;
}
.rtl .full-slider {
    direction: ltr;
}
.rtl .full-banner .santa-img {
    left: unset;
    right: 28px;
}
.rtl .full-banner.feature-banner .feature-object,
.rtl .full-banner.feature-banner .feature-object-right {
    text-align: left;
}
.rtl .full-banner.feature-banner .feature-object li,
.rtl .full-banner.feature-banner .feature-object-right li {
    margin-right: 0;
    margin-left: 50px;
}
.rtl .full-banner.feature-banner .feature-object li .media img,
.rtl .full-banner.feature-banner .feature-object-right li .media img {
    margin-left: 0;
    margin-right: 15px;
}
.rtl .full-banner.feature-banner .feature-object li .media .media-body,
.rtl .full-banner.feature-banner .feature-object-right li .media .media-body {
    text-align: left;
}
.rtl .full-banner.feature-banner .feature-object li:nth-child(2),
.rtl .full-banner.feature-banner .feature-object-right li:nth-child(2) {
    padding-right: 0;
    padding-left: 30px;
}
.rtl .full-banner.feature-banner .feature-object li:nth-child(3),
.rtl .full-banner.feature-banner .feature-object-right li:nth-child(3) {
    padding-right: 0;
    padding-left: 60px;
}
.rtl .full-banner.feature-banner .feature-object-right {
    text-align: right;
    margin-left: 0;
    margin-right: 50px;
}
.rtl .full-banner.feature-banner .feature-object-right li .media img {
    margin-left: 15px;
    margin-right: 0;
}
.rtl .full-banner.feature-banner .feature-object-right li .media .media-body {
    text-align: right;
}
.rtl .full-banner.feature-banner .feature-object-right li:nth-child(2) {
    padding-right: 30px;
    padding-left: 0;
}
.rtl .full-banner.feature-banner .feature-object-right li:nth-child(3) {
    padding-right: 60px;
    padding-left: 0;
}
.rtl .blog-section .review-box .santa-img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    left: -116px;
    right: unset;
}
.rtl .home-slider {
    direction: ltr;
}
.rtl .beauty-about {
    text-align: right;
}
.rtl .beauty-about .about-text p {
    text-align: right;
}
.rtl .form_search button {
    left: 5px;
    right: unset;
}
.rtl .cart-qty-cls {
    right: unset;
    left: -8px;
}
.rtl .search-overlay > div .overlay-content button {
    left: 10px;
    right: unset;
}
.rtl .search-overlay > div .closebtn {
    right: unset;
    left: 25px;
}
.rtl .collection-banner .contain-banner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.rtl .collection-banner.p-right .contain-banner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.rtl .collection-banner.p-left .contain-banner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.rtl .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .btn-close {
    right: unset;
    left: 17px;
}
.rtl .cart_counter .cart_checkout {
    margin-left: 0;
    margin-right: 10px;
}
.rtl .product-box .product-detail,
.rtl .product-box .product-info,
.rtl .product-wrap .product-detail,
.rtl .product-wrap .product-info {
    text-align: right;
    padding-left: 0;
    padding-right: 5px;
}
.rtl .product-box .img-wrapper .product-thumb-list,
.rtl .product-wrap .img-wrapper .product-thumb-list {
    right: 0;
    left: unset;
}
.rtl .product-box .cart-info.cart-wrap,
.rtl .product-box .cart-wrap.cart-wrap,
.rtl .product-wrap .cart-info.cart-wrap,
.rtl .product-wrap .cart-wrap.cart-wrap {
    text-align: left;
    left: 0;
    right: unset;
}
.rtl .product-style-4.product-box .product-info {
    text-align: right;
}
.rtl .product-style-4.product-box .addtocart_btn .add_cart {
    right: unset;
    left: 0;
}
.rtl .product-style-5.product-box {
    text-align: right;
}
.rtl .product-style-5.product-box .img-wrapper {
    margin-left: auto;
    margin-right: unset;
}
.rtl .product-style-5.product-box .addtocart_btn .cart_qty.qty-box .input-group {
    margin-right: auto;
    margin-left: 12px;
}
.rtl .product-style-5.product-box .addtocart_btn .cart_qty.qty-box .input-group button {
    border-radius: 10px !important;
}
.rtl .product-style-5.product-box .addtocart_btn .cart_qty.qty-box .input-group button.quantity-right-plus {
    left: 0;
    right: unset;
}
.rtl .product-style-5.product-box .addtocart_btn .cart_qty.qty-box .input-group button.quantity-left-minus {
    right: 0;
    left: unset;
}
.rtl .product-style-5.product-box .addtocart_btn .add_cart {
    left: 15px;
    right: unset;
}
.rtl .card .card-body .notification-list li {
    padding-left: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
    padding-right: calc(33px + (46 - 33) * ((100vw - 320px) / (1920 - 320)));
}
.rtl .card .card-body .notification-list li::after {
    left: unset;
    right: calc(18px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));
}
.rtl .product-box .product-info,
.rtl .product-wrap .product-info {
    text-align: center;
}
.rtl .product-box .cart-detail,
.rtl .product-wrap .cart-detail {
    right: unset;
    left: 20px;
}
.rtl .product-box .back,
.rtl .product-wrap .back {
    right: 0;
    left: unset;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
}
.rtl .j-box .product-box .img-wrapper .cart-info {
    width: 100%;
}
.rtl .j-box.style-box .product-box .cart-info a {
    border: none;
}
.rtl .portfolio-section.metro-section .product-box .cart-wrap {
    left: 7px;
}
.rtl .tools-grey .product-box .img-wrapper .cart-info {
    width: 100%;
}
.rtl .tools-parallax-product .tools-description {
    text-align: right;
}
.rtl .service-block1 + .service-block1 {
    border-left: 1px solid #eee;
    border-right: unset;
}
.rtl .service-block + .service-block {
    border-right: 1px solid #ddd;
    border-left: none;
}
.rtl .service-block svg {
    margin-right: 0;
    margin-left: 12px;
}
.rtl .service-block .media .media-body {
    text-align: right;
}
.rtl .footer-light .subscribe {
    border-right: none;
    border-left: 1px solid #ddd;
    text-align: right;
}
.rtl .footer-theme {
    text-align: right;
}
.rtl .footer-theme .sub-title .contact-list li {
    padding-left: 0;
    padding-right: 25px;
}
.rtl .footer-theme .sub-title .contact-list i {
    left: unset;
    right: 0;
}
.rtl .footer-social li,
.rtl .social-white li {
    padding-left: 45px;
    padding-right: 0;
}
.rtl .social-white li {
    padding-left: 22px;
    padding-right: 22px;
}
.rtl .sub-footer {
    text-align: right;
}
.rtl .product-right .product-buttons a:last-child,
.rtl .product-right .product-buttons button:last-child {
    margin-left: 0;
    margin-right: 10px;
}
.rtl .theme-modal.modal-dialog .modal-content .modal-body .modal-bg .close {
    left: 36px;
    right: unset;
}
.rtl .theme-card .slick-next {
    right: unset;
    left: 25px;
}
.rtl .theme-card .slick-prev {
    left: 0;
    right: unset;
}
.rtl .theme-card h5.title-border {
    text-align: right;
}
.rtl .theme-card .offer-slider .media {
    direction: rtl;
}
.rtl .theme-card .offer-slider .media .media-body {
    text-align: right;
}
.rtl .theme-card .offer-slider .media .media-body a h6 {
    margin-right: 0;
    margin-left: 0;
}
.rtl .theme-card .offer-slider img {
    padding: 15px 0 15px 15px;
}
.rtl .theme-card.card-border .offer-slider img {
    padding: 15px 30px 15px 15px;
}
.rtl .theme-card.card-border h5 {
    padding-right: 30px;
    padding-left: 0;
}
.rtl .theme-card.card-border .slick-prev {
    left: 30px;
}
.rtl .theme-card.card-border .slick-next {
    left: 50px;
}
.rtl .theme-tab .tab-content .product-tab .tab-box {
    text-align: right;
}
.rtl .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body a h6 {
    margin-left: 35px;
    margin-right: 0;
}
.rtl .full-box .theme-card .offer-slider .product-box2 .media .media-body a h6 {
    margin-right: 0;
    margin-left: 20px;
}
.rtl .game-product .product-box .cart-info {
    left: 10px;
}
.rtl .game-product .product-box .product-detail {
    text-align: center;
}
.rtl .gym-product .product-box .img-wrapper .cart-info {
    width: 100%;
}
.rtl .gym-product .product-box .product-detail {
    text-align: center;
}
.rtl .gym-blog .blog-details {
    text-align: right;
}
.rtl .pets-box .product-box .product-detail {
    text-align: center;
}
.rtl .blog.blog_box .blog-details {
    text-align: right;
}
.rtl .tab-left .theme-tab .left-side {
    text-align: right;
}
.rtl .tab-left .theme-tab .left-side .tab-title {
    margin-right: 0;
    margin-left: 100px;
    text-align: right;
}
.rtl .left-sidebar_space {
    padding-left: 0;
    padding-right: 300px;
}
.rtl .left-header .top-header {
    padding-left: 0;
    padding-right: 300px;
}
.rtl .absolute-product .product-box .product-detail {
    text-align: center;
}
.rtl .box-product .full-box .theme-card .offer-slider .product-box2 .media {
    padding-right: 0;
    padding-left: 15px;
}
.rtl .box-product .full-box .theme-card .offer-slider .product-box2 .media img {
    padding: 0 0 0 15px;
}
.rtl .layout3-menu .main-menu .menu-left .main-menu-right .toggle-nav {
    left: unset;
    right: 35px;
}
.rtl .breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
    padding-right: 0.5rem;
}
.rtl .breadcrumb-item + .breadcrumb-item:before {
    padding-left: 0.5rem;
    padding-right: 0;
    float: right;
}
.rtl .custom-control {
    padding-left: 0;
    padding-right: 1.5rem;
    text-align: right;
}
.rtl .custom-control-input {
    right: 0;
    left: unset;
}
.rtl .custom-control-label:after {
    left: unset;
    right: -1.5rem;
}
.rtl .custom-control-label:before {
    right: -1.5rem;
    left: unset;
}
.rtl .collection-collapse-block .collapse-block-title {
    text-align: right;
}
.rtl .collection-collapse-block .collapse-block-title:after {
    right: unset;
    left: -3px;
}
.rtl .collection-collapse-block .collection-collapse-block-content .color-selector ul {
    text-align: right;
}
.rtl .collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox label {
    padding-left: 0;
    padding-right: 10px;
}
.rtl .collection-collapse-block .collection-accordion .accordion-item .accordion-header .accordion-button::after {
    margin-left: unset;
    margin-right: auto;
}
.rtl .top-banner-wrapper .top-banner-content {
    text-align: right;
}
.rtl .banner-timer {
    direction: ltr;
}
.rtl .banner-timer .banner-text .text-start {
    text-align: left !important;
}
.rtl .product-filter-tags {
    text-align: right;
}
.rtl .product-filter-tags li a i {
    margin-left: 0;
    margin-right: 5px;
}
.rtl .collection-product-wrapper .product-top-filter .product-filter-content .search-count,
.rtl .collection-product-wrapper .product-top-filter .product-filter-content .sidebar-popup,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .search-count,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
    text-align: right;
}
.rtl .collection-product-wrapper .product-top-filter .product-filter-content .collection-view ul li:first-child,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .collection-view ul li:first-child {
    margin-right: 0;
    margin-left: 14px;
}
.rtl .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view {
    margin-left: unset;
    margin-right: auto;
}
.rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select,
.rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
    background-position: 5%;
    border-right: none;
    border-left: 1px solid #ddd;
}
.rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
    border-left: none;
}
.rtl .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
    background: url(../images/dropdown.png) no-repeat 5%;
}
.rtl .collection-product-wrapper .product-top-filter .popup-filter .open-popup {
    left: unset;
    right: 0;
}
.rtl .product-pagination .product-search-count-bottom {
    padding-left: 15px;
    padding-right: 0;
}
.rtl .details-sidebar-accordion .accordion-item .accordion-header .accordion-button::after {
    margin-left: unset;
    margin-right: auto;
}
.rtl .collection-filter-block .product-service .media .media-body {
    padding-right: 10px;
    padding-left: 0;
    text-align: right;
}
.rtl .product-service {
    padding: 20px;
}
.rtl .product-service .media .media-body {
    padding-left: unset;
    padding-right: 10px;
}
.rtl .product-right {
    text-align: right;
}
.rtl .product-right h4 span {
    padding-left: 0;
    padding-right: 5px;
}
.rtl .product-right .product-description h6 span {
    float: left;
}
.rtl .product-right .size-box ul li {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .product-right .product-buttons a:last-child {
    margin-left: 0;
    margin-right: 10px;
}
.rtl .product-right .product-icon .product-social li {
    padding-right: 0;
    padding-left: 30px;
}
.rtl .product-right .product-icon .product-social li:last-child {
    padding-left: 0;
}
.rtl .product-right .product-icon .wishlist-btn span {
    padding-left: 0;
    padding-right: 10px;
}
.rtl .product-right .product-icon .wishlist-btn i {
    padding-left: 0;
    margin-left: 0;
    padding-right: 10px;
    margin-right: 5px;
    border-left: none;
    border-right: 1px solid #ddd;
}
.rtl .product-right.product-form-box {
    text-align: center;
}
.rtl .product-right.product-form-box .timer p {
    text-align: right;
}
.rtl .product-right.product-form-box .product-description {
    text-align: center;
}
.rtl .product-right .product-count img {
    margin-right: 0;
    margin-left: 6px;
}
.rtl .product-right .product-count ul li:first-child {
    margin-right: 0;
    margin-left: 14px;
}
.rtl .product-right .rating-section h6 {
    margin-left: 0;
    margin-right: 10px;
}
.rtl .product-right .label-section .label-text {
    padding-left: 0;
    padding-right: 5px;
}
.rtl .recently-purchase {
    text-align: right;
}
.rtl .recently-purchase .close-popup {
    left: 7px;
    right: unset;
}
.rtl .sticky-bottom-cart .product-image .content {
    margin-left: 0;
    margin-right: 12px;
}
.rtl .sticky-bottom-cart .product-image .content h6 del {
    margin-left: 0;
    margin-right: 7px;
}
.rtl .sticky-bottom-cart .product-image .content h6 span {
    margin-left: 0;
    margin-right: 5px;
}
.rtl .sticky-bottom-cart .selection-section .form-group:nth-child(2) {
    margin-left: 0;
    margin-right: 40px;
}
.rtl .add_to_cart .cart-inner .cart_media li .buttons .checkout {
    float: left;
}
.rtl .add_to_cart .cart-inner .cart_media li .media .media-body {
    text-align: right;
}
.rtl .add_to_cart .cart-inner .cart_media .close-circle {
    left: 0;
    right: unset;
}
.rtl .add_to_cart .cart-inner .cart_top .close-cart {
    margin-right: auto;
    margin-left: unset;
}
.rtl .add_to_cart.top .cart_media .cart_product li,
.rtl .add_to_cart.bottom .cart_media .cart_product li {
    margin-left: 18px;
    margin-right: 0;
}
.rtl .tab-product .tab-content.nav-material p,
.rtl .product-full-tab .tab-content.nav-material p {
    text-align: right;
}
.rtl .product-related h2 {
    text-align: right;
}
.rtl .border-product {
    text-align: right;
}
.rtl .border-product .bundle .bundle-image-box .bundle-box .form-check {
    right: unset;
    left: 12px;
}
.rtl .theme_checkbox label {
    padding-left: 0;
    padding-right: 30px;
}
.rtl .theme_checkbox .checkmark {
    left: unset;
    right: 0;
}
.rtl .element-detail {
    text-align: right;
}
.rtl .dashboard-section .radio_animated {
    margin: 0 0 0 1rem;
}
.rtl .dashboard-section .dashboard-box .dashboard-title span {
    margin-left: 0;
    margin-right: 30px;
}
.rtl .dashboard-section .top-sec .btn {
    margin-left: unset;
    margin-right: auto;
}
.rtl .dashboard-section .counter-section .box-account .box .box-content {
    padding-left: unset;
    padding-right: 22px;
}
.rtl .dashboard-section .counter-section .counter-box {
    text-align: right;
    border-left: none;
    border-right: 3px solid var(--theme-color);
}
.rtl .dashboard-section .counter-section .counter-box img {
    margin-right: 0;
    margin-left: 20px;
}
.rtl .dashboard-section .faq-content .card {
    text-align: right;
}
.rtl .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
    text-align: right;
}
.rtl .offer-box {
    display: none;
}
.rtl .theme-modal-2 .modal-body .form-box .form-select {
    padding-right: calc(13px + (19 - 13) * ((100vw - 320px) / (1920 - 320)));
    padding-left: 2.25rem;
}
.rtl .user-dashboard-section .address-book-section .select-box .address-box .top h6 span {
    float: left;
}
.rtl .modal-header .close {
    margin: -1rem auto -1rem -1rem;
}
.rtl .modal-dialog .modal-content .modal-body {
    text-align: right;
}
.rtl .vendor-profile .profile-left .profile-detail,
.rtl .vendor-profile .profile-left .vendor-contact {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-right: 1px solid #efefef;
    padding-right: 20px;
    margin-right: 20px;
}
.rtl .vendor-profile .profile-left .profile-detail {
    text-align: right;
}
.rtl .vendor-profile .profile-left .profile-image img {
    margin: 0 auto;
}
.rtl .about-page {
    text-align: right;
}
.rtl .become-vendor {
    text-align: right;
}
.rtl .start-selling {
    text-align: right;
}
.rtl .wishlist-section tbody tr td,
.rtl .cart-section tbody tr td {
    text-align: center;
}
.rtl .cart-section .wishlist-buttons,
.rtl .wishlist-section .wishlist-buttons {
    text-align: left;
}
.rtl .cart-section tfoot tr td,
.rtl .wishlist-section tfoot tr td {
    text-align: left;
    padding-right: 0;
    padding-left: 63px;
}
.rtl .cart-section tfoot tr td:first-child,
.rtl .wishlist-section tfoot tr td:first-child {
    padding-right: 0;
    padding-left: 10px;
}
.rtl .cart-section .cart-buttons > div:first-child,
.rtl .wishlist-section .cart-buttons > div:first-child {
    text-align: right;
}
.rtl .cart-section .cart-buttons > div:nth-child(2),
.rtl .wishlist-section .cart-buttons > div:nth-child(2) {
    text-align: left;
}
.rtl .dashboard-right {
    text-align: right;
}
.rtl .dashboard .box .box-title > a {
    right: unset;
    left: 0;
}
.rtl .dashboard-left .block-content ul li {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
.rtl .review-people {
    padding-right: 23px;
    padding-left: unset;
    border-left: unset;
    border-right: 1px solid #eee;
}
.rtl .login-page {
    text-align: right;
}
.rtl .register-page {
    text-align: right;
}
.rtl .contact-page .theme-form {
    text-align: right;
}
.rtl .contact-page .contact-right {
    text-align: right;
}
.rtl .contact-page .contact-right ul li {
    padding-left: 0;
    padding-right: 150px;
}
.rtl .contact-page .contact-right ul li .contact-icon {
    right: 0;
    left: unset;
    border-right: none;
    border-left: 1px solid #ddd;
}
.rtl .checkout-page {
    text-align: right;
}
.rtl .order-box .title-box span {
    float: left;
}
.rtl .order-box .qty li span {
    float: left;
}
.rtl .order-box .sub-total .shipping {
    float: left;
}
.rtl .order-box .sub-total li:last-child .count {
    text-align: left;
}
.rtl .order-box .sub-total li .check-it {
    margin-left: unset;
    margin-right: 14px;
}
.rtl .order-box .sub-total li .count {
    float: left;
    text-align: left;
}
.rtl .order-box .sub-total .shopping-option label {
    padding-right: 10px;
    padding-left: 0;
}
.rtl .order-box .total li span {
    float: left;
    text-align: left;
}
.rtl .payment-box .payment-options li .radio-option input[type="radio"] {
    left: unset;
    right: 0;
}
.rtl .payment-box .payment-options li .radio-option label {
    padding-left: 0;
    padding-right: 30px;
}
.rtl .about-page {
    text-align: right;
}
.rtl .testimonial .testimonial-slider .slick-track .slick-slide:nth-child(even) .media {
    padding-left: 0;
    padding-right: 50px;
}
.rtl .testimonial .testimonial-slider .slick-track .slick-slide:nth-child(even) .media .media {
    padding-right: 0;
}
.rtl .testimonial .testimonial-slider .slick-track .slick-slide:nth-child(odd) .media {
    padding-right: 50px;
}
.rtl .testimonial .testimonial-slider .slick-track .slick-slide:nth-child(odd) .media .media {
    padding-right: 0;
}
.rtl .testimonial .testimonial-slider .media {
    direction: rtl;
}
.rtl .testimonial .testimonial-slider .media .media-body {
    padding: 30px 30px 30px 75px;
    text-align: right;
}
.rtl .typography_section {
    text-align: right;
}
.rtl .typography_section .typography-box .typo-content.input_button label {
    padding-left: 0;
    padding-right: 5px;
}
.rtl .review-page .comment-section .media {
    text-align: right;
}
.rtl .review-page .comnt-sec li {
    margin-right: 0;
    margin-left: 15px;
}
.rtl .comnt-sec li a i {
    margin-right: 0;
    margin-left: 5px;
}
.rtl .modern-box .modern-content .modern-bottom .right {
    margin-left: 0;
    margin-right: auto;
}
.rtl .modern-box .absolute-img img {
    margin-left: unset;
    margin-right: 30px;
}
.rtl footer .subscribe-form.rounded-input .form-control {
    border-radius: 0 25px 25px 0;
}
.rtl footer .subscribe-form.rounded-input .btn-solid {
    border-radius: 25px 0 0 25px;
}
.rtl .subscribe-form.classic-form .form-control {
    margin-left: 0;
    margin-right: 15px;
}
.rtl .blog-detail-page .comment-section li img {
    margin-right: 0;
    margin-left: 20px;
}
.rtl .blog-detail-page .comment-section li h6 span {
    margin-left: 0;
    margin-right: 20px;
}
.rtl .blog-detail-page .blog-detail-contain p {
    color: #ddd;
}
.rtl .product-order {
    text-align: right;
}
.rtl .product-order .product-order-table tfoot tr td {
    text-align: right;
}
.rtl .product-order .product-order-table tfoot tr td:nth-child(2) {
    text-align: left;
}
.rtl .product-order .total-sec ul li span {
    float: left;
}
.rtl .product-order .final-total h3 span {
    float: left;
}
.rtl .order-success-sec {
    text-align: right;
}
.rtl .compare-section .compare-part {
    text-align: right;
}
.rtl .compare-section .compare-part .close-btn {
    right: unset;
    left: 0;
}
.rtl .sitemap_page {
    text-align: right;
}
.rtl .sitemap_page ul {
    padding-left: unset;
    padding-right: 10px;
}
.rtl .faq-section {
    text-align: right;
}
.rtl .faq-section .theme-accordion .accordion-item .accordion-header .accordion-button::after {
    margin-left: unset;
    margin-right: auto;
}
.rtl .blog-sidebar {
    text-align: right;
}
.rtl .blog-sidebar .theme-card .recent-blog li .media img {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .blog-page .blog-media .blog-right {
    text-align: right;
}
.rtl .blog-page .blog-media .blog-right ul li + li {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #ddd;
}
.rtl .blog-page .blog-sidebar .theme-card .popular-blog li .blog-date {
    margin: 0 0 0 15px;
}
.rtl .blog-page .blog-box .blog-contain .blog-label > span + span {
    margin-left: unset;
    padding-left: unset;
    border-left: unset;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #eee;
}
.rtl .blog-detail-page {
    text-align: right;
}
.rtl .blog-detail-page .blog-detail .post-social {
    text-align: right;
}
.rtl .blog-detail-page .blog-detail .post-social li + li {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #ddd;
}
.rtl .product-christmas .product-box .cart-wrap {
    width: 100%;
}
.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle {
    left: 0;
    right: unset;
}
.rtl footer.footer-black.footer-light .subscribe {
    border-right: none;
    border-left: 1px solid rgba(0, 0, 0, 0.8);
}
.rtl .product-wrapper-grid.list-view .product-box .product-detail {
    padding-right: 15px;
    padding-left: 0;
    text-align: right !important;
}
.rtl .dashboard-section .apexcharts-svg {
    direction: ltr;
}
.rtl .theme-settings {
    left: 0;
    right: unset;
}
.rtl .theme-settings ul li {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-right: auto;
    margin-left: 0;
}
.rtl .search-section select.form-control {
    background: url(../images/dropdown.png) no-repeat 5%;
}
.rtl .cycle-box {
    direction: rtl;
}
.rtl .cycle-box .product-detail .add-wish {
    right: unset;
    left: 22px;
}
.rtl .cycle-box .product-detail .details li + li {
    margin-left: 0;
    margin-right: 12px;
}
.rtl .cycle-box .cart-detail li svg {
    margin-right: 0;
    margin-left: 6px;
}
.rtl .cycle-box .cart-detail li + li {
    border-left: none;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.rtl .filter-bottom-title:after {
    right: unset;
    left: -3px;
}
.rtl .pixelstrap .link-section {
    color: #fff;
}
.rtl .color-w-name ul li span {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .checkout-page .checkout-form select {
    background: url(../images/dropdown.png) no-repeat 5%;
}
.rtl.christmas {
    overflow-x: hidden !important;
}
.rtl .compare-page .table-wrapper .table thead .th-compare th .remove-compare {
    float: right;
}
.rtl .sale-box {
    right: -2px;
    left: unset;
}
.rtl .sale-box .heading-right h3 {
    left: -250px;
    right: unset;
    -webkit-transform: translate(50%, -50%) rotate(90deg);
    transform: translate(50%, -50%) rotate(90deg);
}
.rtl.modal-open {
    overflow-x: hidden !important;
}
.rtl .blackfriday-modal .btn-close {
    left: 20px;
    right: unset;
}
.rtl.dark .service-block + .service-block {
    border-color: #404040;
}
.rtl .cookie-bar .btn {
    margin-left: 0;
    margin-right: 20px;
}
.rtl .product-box .img-wrapper .lable-block .lable3,
.rtl .product-wrap .img-wrapper .lable-block .lable3 {
    right: 7px;
    left: unset;
}
.rtl .product-box .img-wrapper .lable-block .lable4,
.rtl .product-wrap .img-wrapper .lable-block .lable4 {
    left: 7px;
    right: unset;
}
.rtl .j-box .product-box {
    direction: rtl;
}
.rtl .j-box .product-box .cart-info a {
    border-right: 1px solid #ddd;
    border-left: unset;
}
.rtl .service-w-bg .service-block + .service-block {
    border: none;
}
.rtl .service-style-border .service-block .media-body {
    border-right: 1px solid #ddd;
    padding-right: 20px;
    border-left: none;
    padding-left: 0;
}
.rtl .service-style-border .service-block + .service-block {
    border-right: none;
}
.rtl .ajax-search .typeahead {
    text-align: right;
}
.rtl .product-vertical .theme-card.center-align .offer-slider .product-box2 .media .media-body {
    text-align: right;
}
.rtl .footer-style-1 .footer-social li {
    padding-left: 15px;
}
.rtl .title-basic .timer {
    margin-right: 15px;
    margin-left: 0;
}
.rtl .tracking-page .wrapper {
    margin-left: 0;
    margin-right: -5px;
}
.rtl .tracking-page .wrapper .arrow-steps .step {
    padding: 12px 30px 12px 10px;
    float: right;
}
.rtl .tracking-page .wrapper .arrow-steps .step span:before {
    left: unset;
    right: -20px;
}
.rtl .tracking-page .wrapper .arrow-steps .step:before,
.rtl .tracking-page .wrapper .arrow-steps .step:after {
    right: unset;
    left: -17px;
    border-left: 0;
    border-right: 17px solid #f8f8f8;
}
.rtl .tracking-page .wrapper .arrow-steps .step:before {
    right: 0;
    left: auto;
    border-left: 0;
    border-right: 17px solid #fff;
}
.rtl .tracking-page .wrapper .arrow-steps .step.current:after {
    border-left: 0;
    border-right: 17px solid var(--theme-color);
}
.rtl .theme-tab .tab-title.border-title li,
.rtl .theme-tab .tab-title2.border-title li {
    border-left: 0;
    border-right: 1px solid #bbbbbb;
}
.rtl .theme-tab .tab-title.border-title li:first-child,
.rtl .theme-tab .tab-title2.border-title li:first-child {
    border-right: 0;
}
.rtl .product-left-title.right-content .slick-custom-arrow {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.rtl .added-notification {
    right: unset;
    left: 30px;
}
.rtl .image-360 {
    right: unset;
    left: 20px;
}
.rtl .deal-section .sidenav nav > .pixelstrap > li > .has-submenu .sub-arrow,
.rtl .deal-section .sidenav nav > .pixelstrap > li > a .sub-arrow {
    margin-left: unset;
    margin-right: auto;
}
.rtl .tab-border .nav-border {
    border-left: 1px solid #ddd;
    border-right: none;
}
.rtl .search-block .form-header .input-group input {
    border-color: #404040;
}
.rtl .space_sm {
    padding-left: 0;
    padding-right: 240px;
}
.rtl .lable-gradient {
    right: 7px;
    left: unset;
}
.rtl .detail-inline h4 {
    margin-left: unset;
    margin-right: auto;
}
.rtl .gradient-slider .product-box {
    direction: rtl;
}
.rtl .variation-modal .btn-close {
    right: unset;
    left: 10px;
    margin: 0;
}
.rtl .quick-view-modal .modal-body .right-sidebar-modal .price-text h3 .discounted-price {
    margin-left: unset;
    margin-right: 7px;
}
.rtl .offcanvas.cart-offcanvas {
    right: unset;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.rtl .offcanvas.cart-offcanvas.show:not(.hiding),
.rtl .offcanvas.cart-offcanvas.showing {
    -webkit-transform: none;
    transform: none;
}
.rtl .offcanvas.cart-offcanvas .offcanvas-header .btn-close {
    margin-left: unset;
    margin-right: auto;
}
.rtl .offcanvas.cart-offcanvas .offcanvas-body .sidebar-title {
    text-align: left;
}
.rtl .offcanvas.cart-offcanvas .offcanvas-body .cart-product .media .media-body .close-circle,
.rtl .offcanvas.cart-offcanvas .offcanvas-body .cart-product .media .media-body .qty-box {
    right: unset;
    left: 0;
}
.rtl .offcanvas.cart-offcanvas .offcanvas-body .pre-text-box .progress .progress-bar i {
    right: unset;
    left: -16px;
}
.rtl .alert .btn-close {
    margin-left: unset;
    margin-right: auto;
}
.rtl .loader_skeleton .theme-card .product-box .img-wrapper {
    margin-right: unset;
    margin-left: 15px;
}
.rtl .loader_skeleton .blog-page .order-sec .product-box .img-wrapper {
    margin-right: unset;
    margin-left: 25px;
}
.custom-theme {
    position: fixed;
    right: 0;
    width: 40px;
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #f7f7f7;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(154, 154, 154, 0.54);
    box-shadow: 0px 0px 5px 0px rgba(154, 154, 154, 0.54);
    top: calc(50% + 34px);
    cursor: pointer;
}
body.rtl .m-r-15 {
    margin-left: 15px;
    margin-right: unset;
}
body.rtl .me-2,
body.rtl .mx-2 {
    margin-left: 0.5rem !important;
    margin-right: unset !important;
}
body.rtl .custom-select {
    padding: 0.375rem 0.75rem 0.375rem 1.75rem;
}
body.rtl .ps-0,
body.rtl .px-0 {
    padding-right: 0 !important;
    padding-left: unset !important;
}
body.rtl .m-r-10 {
    margin-left: 10px;
    margin-right: unset;
}
body.rtl .radio_animated,
body.rtl .checkbox_animated {
    margin: 0 0 0 1rem;
}
body.rtl .digital-add .form-group .radio_animated {
    margin-left: 8px;
    margin-right: unset;
}
body.rtl .needs-validation .form-group {
    text-align: right;
}
body.rtl .needs-validation .form-group .checkbox {
    padding-right: 0;
    padding-left: unset;
}
body.rtl .needs-validation .permission-block .attribute-blocks {
    padding-right: 15px;
    padding-left: unset;
    text-align: right;
}
body.rtl .needs-validation .permission-block .attribute-blocks .row {
    padding-right: 20px;
    padding-left: unset;
}
body.rtl .needs-validation .checkbox {
    right: 0;
    margin-left: -16px;
}
body.rtl .needs-validation .checkbox label {
    padding-right: 16px;
    padding-left: unset;
}
body.rtl .needs-validation .checkbox label::before {
    right: 0;
    left: unset;
    margin-left: unset;
    margin-right: -16px;
}
body.rtl .needs-validation .radio-animated label {
    margin-left: 20px;
    margin-right: unset;
}
body.rtl .modal-footer > :not(:last-child) {
    margin-left: 0.25rem;
    margin-right: unset;
}
body.rtl .jsgrid-button + .jsgrid-button {
    margin-right: 5px;
    margin-left: unset;
}
body.rtl .custom-theme {
    left: 0;
    right: unset;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
body.rtl .text-right {
    text-align: left !important;
}
body.rtl .br-wrapper {
    text-align: right;
}
body.rtl .card .card-header .card-header-right {
    left: 20px;
    right: unset;
}
body.rtl .card .card-header .card-header-right .card-option {
    text-align: left;
}
body.rtl .card .card-header .card-header-right .card-option.list-unstyled {
    padding-right: 0;
    padding-left: unset;
}
body.rtl code[class*="language-"],
body.rtl pre[class*="language-"] {
    text-align: right;
}
body.rtl .code-box-copy__btn {
    right: unset;
    left: 11px;
}
body.rtl table thead tr th,
body.rtl table thead tr td,
body.rtl table tbody tr th,
body.rtl table tbody tr td {
    text-align: right;
}
body.rtl .pull-right {
    float: left;
}
body.rtl .status-circle {
    right: 40px;
    left: unset;
}
body.rtl .right-sidebar.show {
    left: 0;
    right: unset;
}
body.rtl .right-sidebar .friend-list-search .fa {
    left: 35px;
    right: unset;
}
body.rtl .right-sidebar .chat-box .about {
    float: right;
    padding-right: 10px;
    padding-left: unset;
    text-align: right;
}
body.rtl .right-sidebar .chat-box .friend-list {
    text-align: right;
}
body.rtl .right-sidebar .chat-box .user-image {
    float: right;
    margin-left: 5px;
    margin-right: 0;
}
body.rtl .nav-menus .search-form input {
    padding: 10px 70px 10px 10px;
}
body.rtl ul.notification-dropdown.onhover-show-div li {
    text-align: right;
}
body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-user h6,
body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-user p {
    text-align: center;
}
body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li {
    text-align: right;
}
body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li.active > .sidebar-submenu {
    margin-right: 15px;
    margin-left: unset;
}
body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-submenu > li > a {
    padding-right: 10px;
    padding-left: unset;
}
body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-submenu > li > a > .fa-circle {
    right: 0;
    left: unset;
}
body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-header svg {
    margin-right: unset;
    margin-left: 14px;
}
body.rtl .page-wrapper .page-body-wrapper .page-sidebar ~ .page-body {
    margin-right: 255px;
    margin-left: unset;
}
body.rtl .page-wrapper .page-body-wrapper .page-sidebar.open {
    margin-right: calc(-260px);
    margin-left: unset;
}
body.rtl .page-wrapper .page-body-wrapper .page-sidebar.open ~ .page-body,
body.rtl .page-wrapper .page-body-wrapper .page-sidebar.open ~ footer {
    margin-right: 0;
}
body.rtl .page-wrapper .page-body-wrapper .page-header .row h3 {
    text-align: right;
}
body.rtl .page-wrapper .page-body-wrapper footer {
    margin-right: 255px;
    margin-left: unset;
}
body.rtl .page-wrapper .page-body-wrapper footer p i {
    margin-right: 5px;
    margin-left: unset;
}
body.rtl .page-main-header {
    margin-right: 255px;
    margin-left: unset;
}
body.rtl .page-main-header .main-header-right .nav-right {
    text-align: left;
}
body.rtl .page-main-header .main-header-right .nav-right .profile-dropdown li svg {
    margin-right: unset;
    margin-left: 10px;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li {
    text-align: right;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li:before {
    right: 0;
    left: unset;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li .dot {
    left: 17px;
    right: unset;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li .media .dotted-animation {
    left: -3px;
    right: unset;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li .media .dotted-animation .main-circle {
    left: 6px;
    right: unset;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li .media .dotted-animation .animate-circle {
    left: -4px;
    right: unset;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li.onhover-dropdown:hover .onhover-show-div:before {
    right: 10px;
    left: unset;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li.onhover-dropdown:hover .onhover-show-div:after {
    right: 10px;
    left: unset;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li.onhover-dropdown:last-child {
    padding-left: 0;
    padding-right: 20px;
    border-right: none;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li:first-child {
    border-right: none;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li:first-child .search-form .form-group:after {
    right: 22px;
    left: unset;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li:first-child .search-form .form-group:before {
    right: 51px;
    left: unset;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li:last-child {
    padding-right: 20px;
    padding-left: 0;
}
body.rtl .page-main-header .main-header-right .nav-right > ul > li i.ml-2 {
    margin-right: 0.5rem !important;
    margin-left: unset !important;
}
body.rtl .page-main-header .main-header-right .nav-right .language-dropdown {
    text-align: right;
}
body.rtl .page-main-header .main-header-right .nav-right .language-dropdown li a i {
    margin-left: 10px;
}
body.rtl .page-main-header .main-header-right .nav-right .profile-dropdown li a svg {
    margin-right: unset;
    margin-left: 10px;
}
body.rtl .page-main-header .main-header-right .mobile-sidebar {
    padding-right: 20px;
}
body.rtl .page-main-header.open {
    margin-right: 0;
}
body.rtl ul.notification-dropdown.onhover-show-div {
    right: initial;
    left: -30px;
    padding: 0;
}
body.rtl ul.notification-dropdown.onhover-show-div:before {
    right: inherit !important;
    left: 35px !important;
}
body.rtl ul.notification-dropdown.onhover-show-div:after {
    right: inherit !important;
    left: 35px !important;
}
body.rtl ul.notification-dropdown.onhover-show-div li {
    margin-right: 0 !important;
}
body.rtl ul.notification-dropdown.onhover-show-div li span.badge {
    margin-left: unset !important;
}
body.rtl ul.notification-dropdown.onhover-show-div li span svg {
    margin-right: unset;
    margin-left: 10px;
}
body.rtl ul.notification-dropdown.onhover-show-div li .notification-icon {
    margin-left: 20px;
    margin-right: unset;
}
body.rtl .media .media-body {
    text-align: right;
}
body.rtl .order-graph .order-graph-bottom h6 {
    margin-right: 15px !important;
    margin-left: 30px;
}
body.rtl .latest-order-table .btn {
    float: right;
}
body.rtl .product-physical table tr th:nth-child(2),
body.rtl .product-physical table tr td:nth-child(2) {
    text-align: right;
}
body.rtl .product-page-details .shipping-info {
    padding-left: unset;
    padding-right: 20px;
}
body.rtl .product-page-details .size-delivery-info a i {
    margin-right: unset;
    margin-left: 10px;
}
body.rtl .product-page-details .price-text .discounted-price {
    margin-left: unset;
    margin-right: 12px;
}
body.rtl .product-page-details .color-variant,
body.rtl .product-page-details .size-box,
body.rtl .product-right .color-variant,
body.rtl .product-right .size-box {
    text-align: right;
}
body.rtl .add-product-form .qty-box .input-group .input-group-append .btn {
    border-right: none !important;
    border-left: 1px solid #ddd !important;
}
body.rtl .add-product-form .qty-box .input-group .btn-primary.bootstrap-touchspin-down {
    border-left: none !important;
    border-right: 1px solid #ddd !important;
}
body.rtl .add-product-form .offset-sm-4 {
    text-align: right;
}
body.rtl .product-list table tr td,
body.rtl .product-list table tr th,
body.rtl .report-table table tr td,
body.rtl .report-table table tr th {
    text-align: right !important;
}
body.rtl .product-list table tr td:last-child,
body.rtl .product-list table tr th:last-child,
body.rtl .report-table table tr td:last-child,
body.rtl .report-table table tr th:last-child {
    text-align: center !important;
}
body.rtl .dropzone .dz-preview .dz-error-mark,
body.rtl .dropzone .dz-preview .dz-success-mark {
    left: unset;
    right: 48%;
    margin-right: -27px;
    margin-left: unset;
}
body.rtl .dropzone.dz-clickable .dz-message * {
    text-align: center;
}
body.rtl .digital-add .col-form-label {
    display: block;
    text-align: right;
}
body.rtl .dataTables_wrapper .dataTables_filter input[type="search"] {
    margin-right: 10px;
    margin-left: unset;
}
body.rtl .dataTables_wrapper table.dataTable .vendor-list img {
    margin-left: 20px;
    margin-right: unset;
}
body.rtl .category-table table tr td:nth-child(3),
body.rtl .category-table table tr th:nth-child(3) {
    text-align: right;
}
body.rtl .media-table table tr td:last-child,
body.rtl .media-table table tr th:last-child {
    text-align: right !important;
}
body.rtl .profile-details h5 {
    text-align: center;
}
body.rtl .account-setting {
    text-align: right;
}
@media only screen and (max-width: 991px) {
    body.rtl .page-wrapper .page-main-header {
        margin-right: 0;
    }
    body.rtl .page-wrapper .page-body-wrapper .page-sidebar ~ .page-body,
    body.rtl .page-wrapper .page-body-wrapper .page-sidebar ~ footer {
        margin-right: 0;
    }
}
@media only screen and (max-width: 767px) {
    body.rtl .needs-validation .form-group .checkbox {
        padding-right: 15px;
        padding-left: unset;
    }
    body.rtl .page-wrapper .page-body-wrapper footer p {
        text-align: center;
    }
}
@media (min-width: 1200px) {
    body.rtl .offset-xl-3 {
        margin-right: 25%;
        margin-left: unset;
    }
}
@media (min-width: 576px) {
    .rtl .me-sm-3 {
        margin-left: 1rem !important;
        margin-right: 0 !important;
    }
}
@media (min-width: 768px) {
    .rtl .offset-md-2 {
        margin-left: 0;
        margin-right: 16.66667%;
    }
}
@media (min-width: 992px) {
    .rtl .offset-lg-2 {
        margin-right: 16.66667%;
        margin-left: unset;
    }
    .rtl .offset-lg-4 {
        margin-left: unset;
        margin-right: 33.3333333333%;
    }
    .rtl .offset-lg-3 {
        margin-right: 25%;
        margin-left: 0;
    }
    .rtl .service_slide .service-home .offset-lg-2 {
        margin-right: 16.6666666667%;
        margin-left: 0;
    }
}
@media (min-width: 1200px) {
    .rtl .offset-xl-1 {
        margin-right: 8.33333%;
        margin-left: 0;
    }
    .rtl header .main-navbar .nav-menu > li .nav-submenu li a:before {
        right: 35px;
    }
    .rtl .sm-vertical a {
        text-align: right;
    }
    .rtl .layout3-menu .pixelstrap > li > a,
    .rtl .layout3-menu .pixelstrap > li > a:hover,
    .rtl .layout3-menu .pixelstrap > li > a:focus {
        padding-left: 28px;
    }
    .rtl .layout3-menu .pixelstrap .sub-arrow {
        left: -6px;
    }
    .rtl .layout3-menu .pixelstrap > li ul a {
        padding-right: 35px;
        padding-left: 35px;
    }
    .rtl .layout3-menu .pixelstrap .full-mega-menu li a {
        padding-right: 0;
        padding-left: 0;
    }
    .rtl .sm-horizontal > li {
        float: right;
    }
    .rtl .sm-horizontal > li > a,
    .rtl .sm-horizontal > li > a:hover,
    .rtl .sm-horizontal > li > a:active {
        padding-left: 45px;
        padding-right: 0;
    }
    .rtl .pixelstrap ul a:before {
        right: 35px;
    }
    .rtl .pixelstrap .full-mega-menu .mega-box {
        text-align: right;
    }
    .rtl .pixelstrap .mega ul {
        margin-left: auto !important;
    }
    .rtl .pixelstrap.sm-vertical .mega-menu ul a:before {
        right: 0;
    }
    .rtl .center-margin {
        margin-left: -30px;
        margin-right: 0;
    }
}
@media (min-width: 1367px) {
    .rtl .layout3-menu .pixelstrap > li > a,
    .rtl .layout3-menu .pixelstrap > li > a:hover,
    .rtl .layout3-menu .pixelstrap > li > a:focus {
        padding-left: 34px;
    }
    .rtl .layout3-menu .pixelstrap .sub-arrow {
        left: 0px;
    }
}
@media (min-width: 1400px) {
    .offset-xxl-1 {
        margin-left: 0;
        margin-right: 8.33%;
    }
}
@media (max-width: 1430px) and (min-width: 1200px) {
    .rtl .layout3-menu .main-menu .menu-left .navbar {
        padding: 40px 0 40px 35px;
    }
}
@media (max-width: 1430px) {
    .rtl .left-sidebar_space {
        padding-right: 0;
    }
    .rtl header.left-header .top-header {
        padding-right: 0;
    }
    .rtl header.left-header .sidenav {
        left: unset;
        right: -300px;
    }
    .rtl header.left-header .sidenav.open-side {
        right: 0;
    }
    .rtl header.left-header.left-header-sm .sidenav {
        right: 0;
    }
    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
        border-right: 1px solid #ddd;
        border-left: none;
        padding-right: 20px !important;
        padding-left: 0 !important;
        text-align: right;
    }
    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
        border-right: 1px solid #ddd;
    }
    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
        border-left: 1px solid #ddd;
        border-right: none;
    }
    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul,
    .rtl .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .rtl .product-right .product-icon .product-social li {
        padding-left: 10px;
    }
    .rtl .product-form-box .timer {
        padding-right: 17px;
    }
    .rtl .cart-section tfoot tr td {
        padding-left: 41px;
    }
}
@media (max-width: 1400px) {
    .rtl .theme-card .offer-slider img {
        padding: 8px;
    }
}
@media (max-width: 1367px) {
    .rtl .timer span .padding-l {
        padding-right: 5px;
    }
}
@media (max-width: 1199px) {
    .rtl .main-menu .menu-left .navbar {
        padding: 30px 0 30px 25px;
    }
    .rtl .pixelstrap li ul li a:hover {
        color: var(--theme-color);
    }
    .rtl .pixelstrap li > ul > li > ul {
        margin-right: 27px;
        margin-left: unset;
    }
    .rtl .pixelstrap li > ul > li > ul > li a {
        padding-right: 13px;
        padding-left: unset;
        margin-right: 11px;
        margin-left: unset;
    }
    .rtl .pixelstrap li > ul > li > ul > li a::before {
        left: unset;
        right: -4px;
    }
    .rtl .pixelstrap .link-section .menu-title .according-menu:before {
        left: -18px;
        right: unset;
    }
    .rtl .pixelstrap .link-section .menu-title.active .according-menu:before {
        left: -18px;
        right: unset;
    }
    .rtl .pixelstrap .link-section .menu-content a {
        padding-right: 13px;
        padding-left: unset;
        margin-right: 11px;
        margin-left: unset;
    }
    .rtl .pixelstrap .link-section .menu-content a::before {
        left: unset;
        right: -4px;
    }
    .rtl .pixelstrap li a {
        text-align: right;
    }
    .rtl .pixelstrap li .lable-nav {
        right: 15px;
        left: unset;
    }
    .rtl .pixelstrap .full-mega-menu .mega-box {
        text-align: right;
    }
    .rtl .pixelstrap .clothing-menu {
        padding: 0 18px 0 30px !important;
    }
    .rtl .pixelstrap .clothing-menu .link-section > ul > li > a {
        margin-left: unset;
        margin-right: 11px;
        padding-left: unset !important;
        padding-right: 13px !important;
    }
    .rtl .pixelstrap .clothing-menu .link-section > ul > li > a:before {
        left: unset;
        right: -4px;
    }
    .rtl .sidenav.marketplace-sidebar {
        right: -300px;
    }
    .rtl .sidenav.marketplace-sidebar.open-side {
        right: 0;
    }
    .rtl .sidenav .pixelstrap li > ul > li > a {
        padding-right: 13px !important;
        padding-left: 35px !important;
        margin-right: 11px;
        margin-left: unset;
    }
    .rtl .sidenav .pixelstrap li > ul > li > ul {
        margin-left: unset;
        margin-right: 14px;
    }
    .rtl .sidenav .pixelstrap li > ul > li > ul > li a::before {
        left: unset;
        right: -4px;
    }
    .rtl .space_sm {
        padding-right: 0;
    }
    .rtl header .main-navbar .nav-menu li {
        text-align: right;
    }
    .rtl header .main-navbar .nav-menu > li a .sub-arrow {
        left: 0;
        right: unset;
    }
    .rtl header .main-navbar .nav-menu > li .nav-submenu li .nav-sub-childmenu {
        left: 0;
    }
    .rtl header.left-header .sidenav .pixelstrap li .nav-submenu {
        margin-right: 0;
    }
    .rtl header.left-header .sidenav .pixelstrap li .nav-submenu li .nav-sub-childmenu {
        margin-right: 0;
    }
    .rtl header.left-header.left-header-relative .sidenav .left-sidebar_center {
        padding: 0 0 25px 25px;
    }
    .rtl header.left-header.left-header-sm .sidenav {
        right: -300px;
    }
    .rtl header.left-header.left-header-sm .sidenav .left-sidebar_center {
        padding: 0;
    }
    .rtl header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap > li > a img {
        margin-left: 12px !important;
        margin-right: 0 !important;
    }
    .rtl header.left-header.left-header-sm.open-side .sidenav {
        right: 0;
    }
    .rtl header.video-header #main-nav {
        right: unset;
        left: 0;
    }
    .rtl header.video-header .main-menu .menu-right .icon-nav {
        padding-left: 40px;
        padding-right: 0;
    }
    .rtl .sidenav .sidebar-menu li {
        direction: rtl;
        text-align: right;
    }
    .rtl .sidenav .sidebar-menu li a .sub-arrow {
        right: auto;
        left: 15px;
    }
    .rtl .service-block + .service-block {
        border: none;
    }
    .rtl .main-nav-center .toggle-nav {
        left: 175px;
        right: unset;
    }
    .rtl .product-right .product-icon .product-social li {
        padding-left: 4px;
    }
    .rtl .product-right .product-icon .wishlist-btn span {
        padding-right: 4px;
    }
    .rtl .cart-section tfoot tr td {
        padding-left: 25px;
    }
    .rtl .full-banner.feature-banner .feature-object li,
    .rtl .full-banner.feature-banner .feature-object-right li {
        margin-left: 0;
    }
    .rtl .add_to_cart.top .cart_media .cart_product li,
    .rtl .add_to_cart.bottom .cart_media .cart_product li {
        margin-left: 0;
        margin-right: 0;
    }
    .rtl .cart-section .cart-buttons > div:last-child,
    .rtl .wishlist-section .cart-buttons > div:last-child {
        padding-left: 17px;
    }
    .rtl .tab-border .nav-border {
        border-left: none;
    }
    .rtl .collection-product-wrapper .product-filter-content .collection-view {
        padding-right: 20px !important;
    }
    .rtl .footer-social li {
        padding-right: 0;
        padding-left: 38px;
    }
    .rtl .footer-theme2 .social-white li {
        padding-left: 12px;
        padding-right: 12px;
    }
    .rtl .tab-left .theme-tab .left-side .tab-title {
        text-align: center;
        margin-left: 0;
    }
    .rtl .product-form-box.product-right .timer {
        padding-left: 0;
    }
}
@media (max-width: 991px) {
    .rtl .sidebar-shop-footer {
        margin-right: 0;
    }
    .rtl .footer-light .subscribe {
        border: none;
    }
    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select {
        border-right: 1px solid #dddddd !important;
    }
    .rtl .filter-main-btn {
        text-align: right;
    }
    .rtl .product-right {
        text-align: center;
    }
    .rtl .product-right .size-text {
        text-align: right;
    }
    .rtl .product-right .timer {
        text-align: right;
    }
    .rtl .product-right .product-icon .product-social li {
        padding-left: 20px;
    }
    .rtl .border-product {
        text-align: center;
    }
    .rtl .faq-tab {
        text-align: right;
    }
    .rtl .faq-tab .nav-tabs .nav-item .nav-link.active,
    .rtl .faq-tab .nav-tabs .nav-item .nav-link:hover {
        border-left: none;
    }
    .rtl .vendor-profile .profile-left .profile-detail,
    .rtl .vendor-profile .profile-left .vendor-contact {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }
    .rtl .vendor-profile .profile-left .profile-detail {
        text-align: center;
    }
    .rtl .cart-section tfoot tr td {
        padding-left: 0;
    }
    .rtl .contact-page .contact-right ul li {
        padding-right: 0;
    }
    .rtl .contact-page .contact-right ul li .contact-icon {
        border-left: none;
    }
    .rtl .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
        text-align: center;
        background: none var(--theme-color);
        border: none;
    }
    .rtl .testimonial .testimonial-slider .media .media-body {
        padding: 0 30px;
    }
    .rtl .testimonial .testimonial-slider .slick-track .slick-slide:nth-child(even) .media {
        padding-left: 0;
        padding-right: 0;
    }
    .rtl .beauty-about .about-text p {
        text-align: center;
    }
    .rtl .full-banner.feature-banner .feature-object li:nth-child(2),
    .rtl .full-banner.feature-banner .feature-object-right li:nth-child(2) {
        padding-right: 0;
        padding-left: 0;
    }
    .rtl .full-banner.feature-banner .feature-object li:nth-child(3),
    .rtl .full-banner.feature-banner .feature-object-right li:nth-child(3) {
        padding-right: 0;
        padding-left: 0;
    }
    .rtl .full-banner.feature-banner .feature-object-right {
        margin-right: 0;
    }
    .rtl footer.footer-black.footer-light .subscribe {
        border-left: none;
    }
    .rtl .product-left-title.right-content {
        text-align: right;
    }
    .rtl .shop-sidebar-demo .shop-sidebar {
        left: unset;
        right: -300px;
    }
    .rtl .shop-sidebar-demo .shop-sidebar.show {
        right: 0;
    }
    .rtl .shop-sidebar-demo .shop-main {
        margin-right: 0;
    }
    .rtl .theme-card .offer-slider img {
        padding: 10px 0 10px 10px;
    }
    .rtl .collection-filter {
        right: -350px;
        left: unset;
    }
    .rtl .collection-filter.show {
        left: unset;
        right: 0;
    }
}
@media (max-width: 767px) {
    .rtl header.left-header .main-menu .menu-right .icon-nav li {
        padding-left: 0;
        padding-right: 15px;
    }
    .rtl .footer-title h4 {
        text-align: right;
    }
    .rtl .footer-title .according-menu:before {
        left: 2px;
        right: unset;
    }
    .rtl .footer-title.active .according-menu:before {
        left: 2px;
        right: unset;
    }
    .rtl .footer-content {
        text-align: right;
    }
    .rtl .footer-theme .sub-title li {
        text-align: right;
    }
    .rtl .footer-theme .sub-title .contact-list li {
        padding-right: 0;
    }
    .rtl .footer-theme .sub-title .contact-list i {
        margin-right: 0;
        margin-left: 10px;
    }
    .rtl .service-block .media .media-body {
        text-align: center;
    }
    .rtl .service-block + .service-block {
        border: none;
    }
    .rtl .footer-theme2 .contact-details li {
        text-align: right;
    }
    .rtl .social-white li:first-child {
        padding-right: 0;
    }
    .rtl .product-box .cart-detail,
    .rtl .product-wrap .cart-detail {
        left: 10px;
        right: unset;
    }
    .rtl .footer-theme2 .footer-link li,
    .rtl .footer-theme2 .footer-link-b li {
        padding-left: 0;
        padding-right: 20px;
    }
    .rtl .layout2-logo {
        padding-left: 70px;
        padding-right: 0;
    }
    .rtl .testimonial .testimonial-slider .media .media-body {
        padding: 30px 30px 30px 30px;
    }
    .rtl .footer-social li {
        padding: 0 15px;
    }
    .rtl .service-block svg {
        margin-left: 0;
        margin-bottom: 20px;
    }
    .rtl .service-style-border .service-block .media-body {
        border-right: none;
        padding-right: 0;
    }
    .rtl .tracking-page .wrapper .arrow-steps .step:after {
        right: unset;
        left: 50%;
        border-right: 17px solid #f8f8f8;
        -webkit-transform: rotate(-90deg) translateY(-50%);
        transform: rotate(-90deg) translateY(-50%);
    }
    .rtl .sticky-bottom-cart .selection-section .form-group:nth-child(2) {
        margin-right: 10px;
    }
}
@media (max-width: 577px) {
    .rtl header.left-header .main-menu .menu-left .mobile-logo {
        left: unset;
        right: 15px;
    }
    .rtl header.left-header .main-menu .menu-left .navbar {
        right: unset;
        left: 15px;
    }
    .rtl header.header-5 .main-menu .brand-logo {
        left: unset;
        right: 0;
    }
    .rtl header.header-5.left-sidebar-header .main-menu .menu-left .navbar {
        left: 0px;
        right: unset;
    }
    .rtl header.header-6 .main-menu .brand-logo {
        margin-right: 0;
    }
    .rtl header.header-style .brand-logo {
        right: 0;
        left: unset;
    }
    .rtl header.header-christmas .main-menu .brand-logo {
        margin-right: 0;
    }
    .rtl header.header-gym .main-menu .brand-logo {
        left: unset;
        right: 0;
        margin: 0;
    }
    .rtl header.left-header .main-menu .menu-right .icon-nav li {
        padding: 0;
    }
    .rtl .header-style-7 .main-menu .menu-left .navbar {
        padding: 25px 0 25px 15px !important;
    }
    .rtl .header-style-7 .main-menu .menu-right .icon-nav li {
        padding-right: 10px;
    }
    .rtl .header-style-7 .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart {
        right: unset;
        left: 0 !important;
    }
    .rtl .header-style-7 .main-menu .menu-right .icon-nav .mobile-setting .setting {
        right: unset;
        left: 0 !important;
    }
    .rtl .top-header .header-dropdown .mobile-account,
    .rtl .top-header .header-dropdown .mobile-wishlist {
        padding: 0;
    }
    .rtl .top-header .header-dropdown > li:nth-child(2) {
        padding: 0;
    }
    .rtl .top-header .header-dropdown li {
        padding: 0 !important;
    }
    .rtl .main-menu .menu-left .navbar {
        padding: 30px 0 20px 45px !important;
    }
    .rtl .main-menu .menu-right .icon-nav li {
        padding-right: 0;
    }
    .rtl .main-menu .menu-right .icon-nav .mobile-cart {
        right: unset;
        left: 48%;
    }
    .rtl .main-nav-center .toggle-nav {
        right: unset;
        left: 15px;
    }
    .rtl .layout2-logo {
        padding-left: 0;
    }
    .rtl .layout3-menu .main-menu .menu-left .menu-right .toggle-nav {
        left: 15px;
        right: unset;
    }
    .rtl .layout3-menu .main-menu .menu-left .main-menu-right .toggle-nav {
        top: 3px;
        left: 0;
        right: unset;
    }
    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
        border-right: none !important;
    }
    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
        border-right: 1px solid #dddddd !important;
    }
    .rtl .blog-detail-page .blog-detail .post-social li + li {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }
    .rtl .full-banner.feature-banner .feature-object {
        text-align: right;
    }
    .rtl .full-banner.feature-banner .feature-object li .media img {
        margin-left: 15px;
        margin-right: 0;
    }
    .rtl .full-banner.feature-banner .feature-object li .media .media-body {
        text-align: right;
    }
    .rtl footer .subscribe-form.rounded-input .form-control {
        border-radius: 20px;
    }
    .rtl footer .subscribe-form.rounded-input .btn-solid {
        border-radius: 20px;
    }
}
@media (max-width: 480px) {
    .rtl .testimonial .testimonial-slider .media .media-body {
        text-align: center;
        padding: 6px;
    }
    .rtl .review-page .comment-section .media {
        text-align: center;
    }
    .rtl .blog-detail-page .comment-section li img {
        margin-left: 0;
    }
    .rtl .blog-page .blog-media .blog-right ul li + li {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }
    .rtl .cart_counter .cart_checkout {
        margin-right: 0;
    }
}
@media (max-width: 420px) {
    .rtl .full-box .center-slider .offer-slider .product-box {
        direction: rtl;
    }
    .rtl .full-box .center-slider .offer-slider .product-box .img-wrapper img {
        padding: 0 0 0 15px;
    }
    .rtl .product-right .product-icon .product-social li {
        padding-left: 5px;
    }
    .rtl .timer span .padding-l {
        padding-right: 5px;
    }
    .rtl .order-box .sub-total .shipping .shopping-option:last-child {
        padding-left: 0;
        padding-right: 20px;
    }
    .rtl .center-slider .offer-slider .product-box .product-detail {
        text-align: right !important;
    }
}
@media (max-width: 360px) {
    .rtl .timer span .padding-l {
        padding-right: 10px;
    }
}
body.dark {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #cfd4da;
}
.dark.rtl .tracking-panel ul li.active::after {
    border-right-color: #404040;
}
.dark.rtl .tracking-panel ul li::after {
    border-right-color: #232323;
}
.dark.rtl .tracking-panel ul li::before {
    border-right-color: #2b2b2b;
}
.dark h1 {
    color: #fff;
}
.dark h2 {
    color: #f1f3f5;
}
.dark h3 {
    color: #eaedef;
}
.dark h4 {
    color: #e7eaec;
}
.dark h5 {
    color: #dee2e6;
}
.dark h6 {
    color: #cfd4da;
}
.dark p {
    color: #cfd4da;
}
.dark li {
    color: #cfd4da;
}
.dark a {
    color: #cbcbcb;
}
.dark .no-data-added {
    background-color: #404040;
    background-color: #2b2b2b;
}
.dark .btn-animation:before {
    background-color: #232323;
}
.dark .btn-outline {
    color: var(--theme-color);
}
.dark .brand-section .brand-box h2 {
    border-color: #404040;
    background-color: #232323;
}
.dark .dropdown-item:hover,
.dark .dropdown-item:focus {
    color: #fff;
    background-color: #2b2b2b;
}
.dark .form-control::-webkit-input-placeholder {
    color: #757575;
}
.dark .form-control::-moz-placeholder {
    color: #757575;
}
.dark .form-control:-ms-input-placeholder {
    color: #757575;
}
.dark .form-control::-ms-input-placeholder {
    color: #757575;
}
.dark .form-control::placeholder {
    color: #757575;
}
.dark .search-suggestion-box {
    -webkit-box-shadow: 0 0 8px #6060602b;
    box-shadow: 0 0 8px #6060602b;
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .search-suggestion-box .not-found-box h5 {
    color: #a7a7a7;
}
.dark .search-suggestion-box .not-found-box h5 span {
    color: #ddd;
}
.dark .search-suggestion-box ul > li .suggestion-category a {
    color: #fff !important;
}
.dark .search-suggestion-box ul > li .suggestion-category p {
    color: #cbcbcb;
}
.dark .search-suggestion-box ul > li .suggestion-category p + p::before {
    color: rgba(206, 206, 206, 0.3);
}
.dark .search-suggestion-box .recent-search-section .filter-row > a {
    background-color: #232323;
    color: #fff !important;
}
.dark .search-suggestion-box .recent-search-section .filter-row > a:hover {
    background-color: var(--theme-color);
    color: #fff !important;
}
.dark .modal .btn-close span {
    color: #fff;
}
.dark .form-select {
    background-color: #2b2b2b;
    border-color: #404040;
    background-image: url(../images/form-select-icon.svg);
    background-size: 11px 12px;
}
.dark .border-bottom-grey,
.dark .border-top-grey {
    border-color: #404040;
}
.dark .quick-view-modal .modal-body .view-main-slider .slick-arrow {
    color: #ddd;
    background-color: #232323;
    -webkit-box-shadow: 0 0 8px rgba(64, 64, 64, 0.6);
    box-shadow: 0 0 8px rgba(64, 64, 64, 0.6);
    border-color: #404040;
}
.dark .quick-view-modal .modal-body .view-main-slider .slick-arrow::before {
    color: #ddd;
}
.dark .quick-view-modal .modal-body .view-thumbnail-slider .slider-image {
    background-color: #232323;
    border-color: #404040;
}
.dark .quick-view-modal .modal-body .right-sidebar-modal .qty-box .input-group {
    background-color: #232323;
    border-color: #404040;
}
.dark .quick-view-modal .modal-body .right-sidebar-modal .qty-box .input-group input {
    background-color: #232323;
}
.dark .quick-view-modal .modal-body .right-sidebar-modal .qty-box .input-group .btn {
    background-color: #2b2b2b;
}
.dark .quick-view-modal .modal-body .right-sidebar-modal .qty-box .input-group .btn i {
    color: #ddd;
}
.dark .quick-view-modal .modal-body .right-sidebar-modal .name {
    color: #cfd4da;
}
.dark .quick-view-modal .modal-body .right-sidebar-modal .description-text {
    color: #ddd;
}
.dark .quick-view-modal .modal-body .right-sidebar-modal .price-text span {
    color: #cfd4da;
}
.dark .quick-view-modal .modal-body .right-sidebar-modal .price-text h3 .discounted-price {
    color: var(--theme-color);
}
.dark .quick-view-modal .modal-body .right-sidebar-modal .buy-box a {
    color: #ddd;
}
.dark .quick-view-modal .modal-body .right-sidebar-modal .product-rating .divider {
    color: #404040;
}
.dark .quick-view-modal .modal-body .quantity-variant {
    background-color: #232323;
    border-color: #404040;
}
.dark .quick-view-modal .modal-body .quantity-variant li {
    background-color: transparent;
}
.dark .quick-view-modal .modal-body .quantity-variant li.active {
    background-color: #2b2b2b;
}
.dark .quick-view-modal .modal-body .quantity-variant li.active button {
    background-color: #2b2b2b;
}
.dark .quick-view-modal .modal-body .quantity-variant li button {
    background-color: #232323;
}
.dark .share-modal .modal-body .product-social .nav-link {
    background-color: #232323;
    border-color: #404040;
    color: #ddd;
}
.dark .share-modal .modal-body .product-social .nav-link.active {
    background-color: var(--theme-color);
    color: #fff;
    border-color: transparent;
}
.dark .tab-border {
    border-color: #404040;
}
.dark .product-page-details .buy-box a {
    color: #ddd;
}
.dark .product-page-details .price-text .discounted-price {
    color: var(--theme-color);
}
.dark .product-page-details .price-text span,
.dark .product-page-details .price-text del {
    color: #ddd;
}
.dark .product-page-details .product-offer.delivery-details li i {
    color: #ddd;
}
.dark .product-page-details .product-accordion .accordion-item .accordion-header .accordion-button {
    color: #ddd;
    border-color: #404040;
    background-color: #232323;
}
.dark .product-page-details .product-accordion .accordion-item .accordion-body p {
    color: #ddd;
}
.dark .product-page-details .product-accordion .accordion-item .accordion-body .bordered-box .delivery-details li {
    color: #ddd;
}
.dark .product-page-details .product-buttons .btn.disabled {
    border-color: var(--theme-color);
}
.dark .product-page-details .quantity-variant.radio .digital-size .form-check .form-check-input {
    border-color: #404040;
    background-color: #232323;
}
.dark.digital-download header.header-5.overlay-style.sticky {
    background-color: #232323;
}
.dark.digital-download header.header-5.overlay-style.sticky .main-menu .menu-right .icon-nav i {
    color: #fff;
}
.dark.digital-download header.header-5.overlay-style.sticky .navbar-nav > li > a {
    color: #fff;
}
.dark.digital-download header.header-5.overlay-style.sticky .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown > a {
    color: #fff;
}
.dark .skeleton-basic-product .img-wrapper .product-image-box {
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(64, 64, 64, 0.85)), color-stop(18%, #404040), color-stop(33%, rgba(64, 64, 64, 0.85)));
    background: linear-gradient(90deg, rgba(64, 64, 64, 0.85) 8%, #404040 18%, rgba(64, 64, 64, 0.85) 33%);
}
.dark .skeleton-basic-product .product-detail .product-title,
.dark .skeleton-basic-product .product-detail h6,
.dark .skeleton-basic-product .product-detail .price {
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(64, 64, 64, 0.85)), color-stop(18%, #404040), color-stop(33%, rgba(64, 64, 64, 0.85)));
    background: linear-gradient(90deg, rgba(64, 64, 64, 0.85) 8%, #404040 18%, rgba(64, 64, 64, 0.85) 33%);
}
.dark .service-style-border .service-block .media-body {
    border-color: #404040;
}
.dark .footer-background .light-layout,
.dark .footer-background .sub-footer {
    background-color: transparent;
}
.dark .bg_cls {
    background-color: #232323;
}
.dark .white-bg {
    background-color: #2b2b2b !important;
}
.dark .grey-bg {
    background-color: #232323;
}
.dark .border-top {
    border-color: #404040 !important;
}
.dark .bg-light {
    background-color: #232323 !important;
}
.dark .product-details-box .theme-card .offer-slider > div .media:last-child img {
    background-color: #232323;
    border-color: #404040;
}
.dark .blog-section .blog-details p {
    color: #cfd4da;
}
.dark .blog-section .review-box {
    background-color: #2b2b2b;
}
.dark .blog-section .review-box .slick-prev:after {
    background-color: #404040;
}
.dark .blog-section .review-box .review-content h6 {
    color: #cfd4da;
}
.dark .page-link {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-color: #404040;
}
.dark .breadcrumb-section {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .light-layout {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .form-control {
    color: #cfd4da;
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #404040;
}
.dark mark,
.dark .mark {
    background-color: #232323;
    color: #fff;
}
.dark .product-review-form .product-rating .price-number {
    color: #ddd;
}
.dark .product-review-form .product-wrapper {
    background-color: #232323;
    border-color: #404040;
}
.dark .product-review-form .product-wrapper .product-image {
    background-color: #2b2b2b;
}
.dark .product-review-form .product-wrapper .product-content .product-review-rating .price-number {
    color: #ddd;
}
.dark .btn-solid {
    color: #fff !important;
}
.dark .btn-solid:hover {
    color: var(--theme-color) !important;
    background-color: transparent;
}
.dark .variation-box .radio .form-check .form-check-input {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .variation-box .radio .form-check .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.dark .quantity-variant li,
.dark .image-box li {
    background-color: #232323;
    border-color: #404040;
}
.dark .quantity-variant {
    background-color: #232323;
    border-color: #404040;
}
.dark .quantity-variant li {
    background-color: #232323;
    border-color: transparent;
}
.dark .quantity-variant li.active {
    background-color: #2b2b2b;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-color: var(--theme-color);
}
.dark .quantity-variant li.active button {
    background-color: #2b2b2b !important;
    color: var(--theme-color);
}
.dark .quantity-variant li button {
    color: #ddd;
}
.dark .quantity-variant.color li {
    border-color: transparent;
}
.dark .quantity-variant.color li.active {
    border-color: var(--theme-color);
}
.dark .quantity-variant.circle li {
    border-color: transparent;
}
.dark select {
    color: #cfd4da;
}
.dark option {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .demo-section .demo-effects > div .demo-text span {
    color: #fff;
}
.dark .setting_box_body {
    background-color: #2b2b2b;
}
.dark .setting-box {
    background-color: #2b2b2b;
}
.dark .setting-box ::-webkit-scrollbar-track {
    background: #3c3c3c;
}
.dark .setting-box .setting-section {
    border-color: #3c3c3c;
}
.dark .setting-box .demo-effects > div .layout-container {
    border-color: #3c3c3c;
}
.dark .setting-box .accordion-button {
    color: #ddd;
    border-bottom-color: #3c3c3c;
}
.dark .setting-box .accordion-button::after {
    color: #ddd;
}
.dark .setting-box .accordion-button .setting-description-text .setting-title-content {
    color: #fff;
}
.dark .setting-box .sidebar-back {
    color: #fff;
    background-color: rgba(35, 35, 35, 0.8);
}
.dark .setting-box .close-icon {
    background-color: #2b2b2b;
    border-color: #3c3c3c;
}
.dark .setting-box .setting-inner-title a {
    color: #fff;
}
.dark .setting-box .form-switch .form-check-input {
    border-color: #3c3c3c;
}
.dark .setting-box .setting-contant::-webkit-scrollbar-thumb {
    background: var(--theme-color);
}
.dark .setting-box .setting-title {
    border-color: #404040;
    background-color: #232323;
}
.dark .setting-box .setting-title h4 {
    color: #ddd;
}
.dark .setting-box .setting-title .close-icon i {
    color: #ddd;
}
.dark .top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu {
    border-color: #404040;
    background-color: #232323;
}
.dark .top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu:hover,
.dark .top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu:focus {
    color: #cbcbcb;
}
.dark .blog-left .blog-details h4 {
    color: #e7eaec;
}
.dark .blog-left .blog-details h6 {
    color: #cfd4da;
}
.dark header {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark header .offcanvas {
    background-color: #2b2b2b;
}
.dark header .offcanvas .offcanvas-header {
    background-color: #232323;
}
.dark header .search-full .input-group {
    border-color: #404040;
}
.dark header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown > a:hover {
    color: var(--theme-color);
}
.dark header.header-5 .pixelstrap a,
.dark header.header-5 .pixelstrap:hover,
.dark header.header-5 .pixelstrap:active {
    color: #cfd4da;
}
.dark header.header-5 .main-menu .menu-right .icon-nav li i {
    color: #cfd4da;
}
.dark header.header-5 .top-header .header-dropdown > li i {
    color: #cfd4da !important;
}
.dark header.header-5.left-sidebar-header {
    background-color: #2b2b2b;
}
.dark header.header-5.left-sidebar-header .top-header .header-dropdown > li img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.dark header.header-5.left-sidebar-header .form_search {
    -webkit-box-shadow: 0 0 0 1px #545454;
    box-shadow: 0 0 0 1px #545454;
}
.dark header.header-5.left-sidebar-header .onhover-div > div img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.dark header.header-tools {
    background-color: transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark header.header-tools.sticky {
    background-color: #2b2b2b;
}
.dark header.header-tools .main-menu .menu-right .icon-nav i {
    color: #cbcbcb;
}
.dark header.header-tools .top-header .header-dropdown li i {
    color: #cbcbcb;
}
.dark header.header-tools .logo-menu-part > .container {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-color: #404040;
}
.dark header.header-tools.header-style.top-relative {
    background-color: #2b2b2b;
}
.dark header.left-header .top-header {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark header.left-header .top-header .header-contact li {
    color: #ddd;
}
.dark header.left-header .top-header .header-dropdown li i {
    color: #ddd;
}
.dark header.left-header .main-menu .menu-right .header-dropdown > li img {
    -webkit-filter: invert(100);
    filter: invert(100);
}
.dark header.left-header .onhover-div > div img {
    -webkit-filter: invert(100);
    filter: invert(100);
}
.dark header.left-header .sidenav nav {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark header.left-header .sidenav .left-sidebar_center {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark header.left-header .sidenav .pixelstrap > li > a {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap > li {
    border-color: #404040;
}
.dark header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap > li > a img {
    background-color: transparent;
    -webkit-filter: invert(1);
    filter: invert(1);
}
.dark header.header-style .top-header .header-dropdown > li img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.dark header.header-style .onhover-div > div img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.dark header.left-header.left-header-relative .pixelstrap > li > a {
    color: #fff;
    background-color: #2b2b2b;
}
.dark header.left-header .main-menu .brand-logo {
    border-color: #404040;
}
.dark header.left-header .sidenav .leftside_social {
    border-color: #404040;
}
.dark header.header-metro .metro {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark header.header-metro .top-header .header-contact li {
    color: #999;
}
.dark header.header-metro .top-header .header-dropdown li {
    color: #999;
}
.dark header.header-metro .top-header .header-dropdown li a i {
    color: #999;
}
.dark header.header-christmas {
    background-color: #c1272d;
}
.dark .search-modal .modal-body .search-category li {
    color: #ddd;
}
.dark .search-modal .modal-body .search-input-box i {
    border-color: #404040;
    color: #ddd;
}
.dark .search-modal .modal-body .search-input-box .form-control {
    border-color: #404040;
}
.dark .offcanvas.cart-offcanvas {
    background-color: #2b2b2b;
}
.dark .offcanvas.cart-offcanvas .offcanvas-header {
    border-color: #404040;
}
.dark .offcanvas.cart-offcanvas .offcanvas-header h3 {
    color: #eaedef;
}
.dark .offcanvas.cart-offcanvas .offcanvas-header .btn-close {
    background-color: #232323;
    border-color: #404040;
}
.dark .offcanvas.cart-offcanvas .offcanvas-header .btn-close i {
    color: #cecece;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .pre-text-box {
    border-color: #404040;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .pre-text-box .progress {
    background-color: #232323;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product li + li {
    border-color: #404040;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product .media img {
    background-color: #232323;
    border-color: #404040;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product .media .media-body .qty-box {
    background-color: #232323;
    border-color: #404040;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product .media .media-body .qty-box .input-group button i {
    color: #cecece;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product .media .media-body a h4 {
    color: #e7eaec;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product .media .media-body .quantity {
    color: #e7eaec;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product .media .media-body .close-circle .close_button {
    background-color: #232323;
    border-color: #404040;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product .media .media-body .close-circle .close_button i {
    color: #cecece;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-media::-webkit-scrollbar-thumb {
    background: #404040;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-media::-webkit-scrollbar-track {
    background: #232323;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart_total {
    border-color: #404040;
    background-color: #232323;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart_total li + li {
    border-color: #404040;
}
.dark .offcanvas.cart-offcanvas .offcanvas-body .cart_total li .total h5 {
    color: #ddd;
}
.dark .slider-nav .slider-image {
    border-color: #404040;
    background-color: #232323;
}
.dark .checkbox_animated::after {
    background-color: #232323;
    border-color: #404040;
}
.dark .border-product {
    border-color: #404040;
}
.dark .border-product .product-title {
    color: #fff;
}
.dark .review-people::-webkit-scrollbar-thumb {
    background-color: #888;
}
.dark .review-people::-webkit-scrollbar {
    background-color: #404040;
}
.dark .review-people .review-list li .people-box {
    background-color: #262626;
    border-color: #404040;
}
.dark .review-people .review-list li .people-box .people-comment .people-name .name {
    color: #fff;
}
.dark .review-people .review-list li .people-box .people-text .user-round {
    background-color: #2b2b2b;
}
.dark .review-people .review-list li .people-box .people-text .user-round h4 {
    color: #fff;
}
.dark .review-title-2,
.dark .review-people {
    border-color: #404040;
}
.dark .product-rating-box .product-main-rating {
    border-color: #404040;
}
.dark .product-rating-box .rating-count {
    color: #ddd;
}
.dark .product-rating-box .product-rating-list li .rating-product .progress {
    background-color: #404040;
}
.dark .product-rating-box .product-rating-list li .rating-product .total {
    color: rgba(221, 221, 221, 0.78);
}
.dark .product-rating-box .product-rating-list li .rating-product h5 i {
    color: #ddd;
}
.dark .product-rating-box .rating-box h4 {
    color: #ddd;
}
.dark .outer-border {
    border-color: #404040;
}
.dark .tracking-panel .panel-content .icon img {
    -webkit-filter: invert(1) brightness(100);
    filter: invert(1) brightness(100);
}
.dark .tracking-panel ul li {
    background-color: #232323;
}
.dark .tracking-panel ul li.active {
    background-color: #404040;
}
.dark .tracking-panel ul li.active::after {
    border-left-color: #404040;
}
.dark .tracking-panel ul li::after {
    border-left-color: #232323;
}
.dark .tracking-panel ul li:before {
    border-left-color: #2b2b2b;
}
.dark .ckeditor-content p {
    color: #cfd4da !important;
}
.dark .post-question-box h4 a {
    background-color: #262626;
    color: #ddd;
}
.dark .tab-product.product-details-contain .nav-tabs {
    border-color: #404040;
    background-color: #262626;
}
.dark .tab-product.product-details-contain .nav-tabs .nav-item .nav-link {
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .tab-product.product-details-contain .nav-tabs .nav-item .nav-link.active {
    color: var(--theme-color);
    font-weight: 600;
    background-color: rgba(236, 137, 81, 0.07);
    border-color: rgba(236, 137, 81, 0.588235);
}
.dark .tab-product .nav-material.nav-tabs,
.dark .product-full-tab .nav-material.nav-tabs {
    background-color: #232323;
    border-color: #404040;
}
.dark .tab-product .nav-material.nav-tabs .nav-item .nav-link,
.dark .product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .tab-product .nav-material.nav-tabs .nav-item .nav-link.active,
.dark .product-full-tab .nav-material.nav-tabs .nav-item .nav-link.active {
    background-color: var(--theme-color);
    color: #fff;
}
.dark .tab-product .tab-content.nav-material,
.dark .product-full-tab .tab-content.nav-material {
    border-color: #404040;
}
.dark .clock {
    border-color: #ddd;
}
.dark .clock::after,
.dark .clock::before {
    background-color: #ddd;
}
.dark .pwd-page .theme-form input {
    border-color: #404040;
}
.dark .login-page .theme-card {
    border-color: #404040;
    background-color: #232323;
}
.dark .login-page .theme-card .theme-form input {
    border-color: #404040;
}
.dark .login-page .theme-card .theme-form label {
    color: #929292;
}
.dark .login-page .authentication-right h6,
.dark .login-page .authentication-right p {
    color: #cfd4da;
}
.dark .delivery-sec a {
    color: var(--theme-color);
}
.dark .tracking-page .tacking-table {
    border-color: #404040;
}
.dark .tracking-page .tacking-table tr th {
    border-color: #404040;
    color: #ddd;
    background-color: #232323;
}
.dark .tracking-page .tacking-table tr td {
    border-color: #404040;
}
.dark .tracking-page .tacking-table tr td h6 {
    color: #ddd;
}
.dark .tracking-page .summary-details .details-box {
    border-color: #404040;
    background-color: #232323;
}
.dark .tracking-page .summary-details .tracking-total li:last-child {
    border-color: #404040;
}
.dark .tracking-page .summary-details .order-title {
    border-color: #404040;
    color: #fff;
}
.dark .tracking-page .summary-details .customer-detail h4 {
    color: #ddd;
}
.dark .order-success-sec {
    background-color: #232323;
    border-color: #404040;
}
.dark .order-success-sec .order-detail li {
    color: #ddd;
}
.dark .product-order .product-order-table {
    border-color: #404040;
}
.dark .product-order .product-order-table thead tr th {
    background-color: #232323;
    color: #fff;
}
.dark .product-order .product-order-table tbody tr td {
    color: #ddd;
    border-color: #404040;
}
.dark .product-order .product-order-table tfoot tr:last-child {
    border-color: #404040;
    color: #fff;
}
.dark .product-order .product-order-table tfoot tr td {
    border-color: #404040;
    color: #ddd;
}
.dark .product-order .product-order-table tfoot tr td:nth-child(2) {
    color: #fff;
    border-color: #404040;
}
.dark .theme-modal-2 .modal-header h3 {
    color: #fff;
}
.dark .theme-modal-2 .modal-body .form-box .form-select {
    border-color: #404040;
}
.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-dropdown {
    border-color: #404040;
}
.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-dropdown .select2-search .select2-search__field {
    color: #fff;
}
.dark .theme-modal-2 .modal-body .form-box .custom-select .select2 .selection {
    border-color: #404040;
}
.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-selection .select2-selection__rendered {
    color: #ddd;
}
.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-selection.select2-selection--single {
    border-color: #404040;
    background-color: #232323;
}
.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-selection.select2-selection--single .select2-selection__placeholder {
    color: #ddd;
}
.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-selection.select2-selection--single .select2-selection__arrow::before {
    color: #ddd;
}
.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-results .select2-results__options .select2-results__option--highlighted {
    background-color: var(--theme-color);
}
.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-results .select2-results__options .select2-results__option {
    background-color: #2b2b2b;
    color: #ddd;
}
.dark .theme-modal-2 .modal-body .form-box .form-label {
    color: #ddd;
}
.dark .theme-modal-2 .modal-body .form-box .form-control {
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .review-modal .modal-body .product-wrapper {
    background-color: #232323;
    border-color: #404040;
}
.dark .review-modal .modal-body .product-wrapper .product-image {
    background-color: #2b2b2b;
}
.dark .review-modal .modal-body .product-wrapper .product-content .product-review-rating label {
    color: #ddd;
}
.dark .review-modal .modal-body .product-wrapper .product-content .product-review-rating .product-rating .rating-number {
    color: rgba(221, 221, 221, 0.6);
}
.dark .review-modal .modal-body .form-box .form-label {
    color: #ddd;
}
.dark .review-modal .modal-body .form-box .form-control {
    border-color: #404040;
}
.dark .review-modal .modal-body .review-box .product-review-rating label {
    color: #ddd;
}
.dark .sticky-bottom-cart .product-image img {
    background-color: #262626;
}
.dark .sticky-bottom-cart .cart-content .middle-value .qty-box input {
    background-color: #232323;
    border-color: #404040;
}
.dark .sticky-bottom-cart .cart-content .middle-value .qty-box .input-group span button {
    background: #232323 !important;
    border-color: #404040;
}
.dark .bundle .bundle-title {
    color: #fff;
}
.dark .bundle .bundle-image-box .bundle-box {
    border-color: #404040;
    background-color: #232323;
}
.dark .bundle .bundle-image-box .bundle-box .bundle-content h4 {
    color: #ddd;
}
.dark .bundle .bundle-image-box .bundle-box .bundle-content select {
    color: #ddd;
    background-image: url(../../svg/dropdown.svg);
}
.dark .bundle .bundle-image-box .bundle-box .bundle-image {
    background-color: #2b2b2b;
}
.dark .bundle .bundle-image-box .bundle-box .checkbox_animated::after {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .product-page-details .compare-box a {
    color: #cbcbcb;
}
.dark .product-page-details .progress {
    background-color: #232323;
}
.dark .product-page-details .left-progressbar h6 {
    color: #ddd;
}
.dark .product-page-details .product-offer li {
    color: #ddd;
}
.dark .product-page-details .dashed-border-box {
    border-color: #404040;
}
.dark .product-page-details .dashed-border-box h4 {
    background-color: #2b2b2b;
}
.dark .product-page-details .shipping-info li {
    color: #cfd4da;
}
.dark .product-page-details .bordered-box {
    border-color: #404040;
}
.dark .product-page-details .qty-section .qty-box .input-group {
    background-color: #232323;
    border-color: #404040;
}
.dark .product-page-details .qty-section .qty-box .input-group button {
    background-color: #2b2b2b !important;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}
.dark .product-page-details .qty-section .qty-box .input-group input {
    background-color: #232323;
}
.dark .product-page-details .description-text {
    color: #ddd;
}
.dark .product-page-details .price-text span.text-dark {
    color: #fff !important;
}
.dark .product-page-details .product-rating .divider {
    color: #404040;
}
.dark .product-page-details .rating span,
.dark .product-page-details .product-rating span {
    color: #ff9800;
}
.dark .product-page-details .size-delivery-info {
    border-color: #404040;
}
.dark .product-page-details .size-delivery-info a {
    color: #ddd;
}
.dark .product-page-details .quantity-variant li {
    background-color: transparent;
}
.dark .product-page-details .quantity-variant li.active {
    border-color: var(--theme-color);
    background-color: #2b2b2b;
}
.dark .product-page-details .quantity-variant li button {
    background-color: transparent;
}
.dark .product-page-details .select-dropdown {
    background-color: #232323;
    background-image: url("../images/form-select-icon.svg");
}
.dark .product-page-details .timer p span {
    color: #fff;
}
.dark .product-page-details.product-form-box {
    border-color: #404040;
}
.dark .four-image-sec {
    background-color: #232323;
}
.dark .phone-field .custom-select .select2 .selection {
    border-color: #404040;
}
.dark .phone-field .custom-select .select2 .selection .select2-selection .select2-selection__rendered {
    color: #ddd;
}
.dark .phone-field .custom-select .select2-dropdown .select2-search .select2-search__field {
    color: #ddd;
}
.dark .form-box .form-label,
.dark .form-box label {
    color: #ddd;
}
.dark .form-box .custom-select .select2-results .select2-results__options::-webkit-scrollbar {
    background-color: #404040;
}
.dark .form-box .custom-select .select2-results .select2-results__options .select2-results__option {
    background-color: #232323;
}
.dark .form-box .custom-select .select2-dropdown {
    border-color: #404040;
    background-color: #232323;
}
.dark .form-box .custom-select .select2-dropdown .select2-search .select2-search__field {
    border-color: #404040 !important;
    background: #2b2b2b !important;
}
.dark .auth-modal .create a {
    color: #fff;
}
.dark .auth-modal .divider::before {
    border-color: #404040;
}
.dark .auth-modal .divider span {
    background-color: #2b2b2b;
    color: #ddd;
}
.dark .auth-modal .modal-content {
    background-color: transparent;
}
.dark .auth-modal .modal-content .right-content {
    background-color: #2b2b2b;
}
.dark .auth-modal .modal-content .right-content .modal-back {
    color: #ddd;
}
.dark .auth-modal .auth-form-box .auth-box .form-control {
    border-color: #404040;
}
.dark .auth-modal .auth-form-box .auth-box .form-label {
    color: #ddd;
}
.dark .auth-modal .auth-form-box .forgot {
    color: #ddd;
}
.dark .auth-modal .auth-title h3 {
    color: #fff;
}
.dark .header-compact .main-menu .menu-right .icon-nav li.mobile-cart > div img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.dark .wishlist-section tbody .table-price h2 del,
.dark .cart-section tbody .table-price h2 del {
    color: #ddd;
}
.dark .wishlist-section tbody .qty-box .input-group button,
.dark .cart-section tbody .qty-box .input-group button {
    border-color: #404040;
}
.dark .wishlist-section tbody .qty-box .input-group button i,
.dark .cart-section tbody .qty-box .input-group button i {
    -webkit-columns: #ddd;
    -moz-columns: #ddd;
    columns: #ddd;
}
.dark .wishlist-section tfoot tr td,
.dark .cart-section tfoot tr td {
    color: #ddd;
}
.dark .header-style-1 .border-top-cls {
    border-color: #404040;
}
.dark .header-style-1 .navbar .nav-link {
    color: #cbcbcb;
}
.dark .vector-category .category-slide .slick-prev,
.dark .vector-category .category-slide .slick-next {
    color: #ddd;
    background-color: #232323;
    -webkit-box-shadow: 0 0 8px rgba(64, 64, 64, 0.6);
    box-shadow: 0 0 8px rgba(64, 64, 64, 0.6);
    border-color: #404040;
}
.dark .vector-category .category-slide .slick-prev::before,
.dark .vector-category .category-slide .slick-next::before {
    color: #ddd;
}
.dark .special-product-section .title2 h4 {
    color: #777;
}
.dark .special-product-section .title2 h2 {
    color: #222;
}
.dark.header-style-light .header-style-5 .bottom-part .category-menu .toggle-sidebar {
    color: #ddd;
    background-color: #232323;
    border-color: #404040;
}
.dark.header-style-light .header-style-5 .bottom-part .category-menu .toggle-sidebar h5 {
    color: #cfd4da;
}
.dark .header-style-5 .bottom-part {
    background-color: #232323;
}
.dark .header-style-5 .bottom-part.bottom-light {
    border-color: #404040;
    background-color: transparent;
}
.dark .header-style-5 .bottom-part.bottom-light .pixelstrap > li > a {
    color: #cfd4da;
}
.dark .header-style-5 .bottom-part.bottom-light .pixelstrap > li > a:hover,
.dark .header-style-5 .bottom-part.bottom-light .pixelstrap > li > a:focus {
    color: #cfd4da;
}
.dark .header-style-5.color-style {
    background-color: #2b2b2b;
}
.dark .header-style-5.color-style .form_search.ajax-search .typeahead {
    background-color: #232323 !important;
}
.dark .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical > li > a {
    color: #cbcbcb;
}
.dark .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical > li > a:hover,
.dark .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical > li > a:focus,
.dark .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical > li > a:active {
    color: #cbcbcb;
}
.dark .header-style-5.color-style.style-classic .bottom-part .pixelstrap > li > a {
    color: #cbcbcb;
}
.dark .header-style-5.color-style.style-classic .bottom-part .pixelstrap > li > a:hover,
.dark .header-style-5.color-style.style-classic .bottom-part .pixelstrap > li > a:focus,
.dark .header-style-5.color-style.style-classic .bottom-part .pixelstrap > li > a:active {
    color: #cbcbcb;
}
.dark .header-style-5.color-style.style-classic .bottom-part .container {
    background-color: #232323;
}
.dark .header-style-5.style-light .bottom-part .category-menu .toggle-sidebar {
    color: #ddd;
    background-color: #232323;
    border-color: #404040;
}
.dark .header-style-5.style-light .bottom-part .category-menu .toggle-sidebar h5 {
    color: #ddd;
}
.dark .bg-theme {
    background-color: #232323;
}
.dark .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .marketplace-sidebar.sidenav .sm-vertical {
    background-color: #232323;
}
.dark .marketplace-sidebar.sidenav ul li a {
    background-color: #232323;
    color: #fff;
}
.dark .svg-icon-menu.wo-bg .pixelstrap > li > a svg {
    fill: #fff;
}
.dark .svg-icon-menu .pixelstrap > li > a img {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .ajax-search .typeahead {
    background-color: #2b2b2b !important;
}
.dark .ajax-search .tt-menu {
    background-color: #2b2b2b;
}
.dark .ajax-search .description-section h4 {
    color: #e7eaec;
}
.dark .deal-product-space {
    background-color: #232323;
}
.dark.section-white section {
    background-color: #2b2b2b;
}
.dark .search-section select.form-control {
    background-color: #2b2b2b;
}
.dark .vegetables-category .category-boxes {
    background-color: #232323;
}
.dark .vegetables-category .category-boxes h4 {
    color: #e7eaec;
}
.dark .product-vertical .full-box .theme-card .offer-slider {
    background-color: #2b2b2b;
}
.dark .top-header {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .banner-timer .banner-text h2 {
    color: #222;
}
.dark .sub-footer {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .sub-footer.black-subfooter p {
    color: #ddd;
}
.dark .border-section {
    border-color: #404040;
}
.dark .pixelstrap a,
.dark .pixelstrap:hover,
.dark .pixelstrap:active {
    color: #cecece;
}
.dark .sm-vertical {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .sidenav nav {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .sidenav .sidebar-back {
    color: #f1f3f5;
    border-color: #404040;
}
.dark .deal-section .sidenav .pixelstrap li .clothing-menu li a {
    background-color: #2b2b2b;
}
.dark .pixelstrap ul {
    background: #2b2b2b;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark .pixelstrap ul a {
    color: #e7eaec;
}
.dark .pixelstrap ul a:hover,
.dark .pixelstrap ul a:focus,
.dark .pixelstrap ul a:active,
.dark .pixelstrap ul a.highlighted {
    color: #e7eaec;
}
.dark .pixelstrap .link-section h5 {
    color: #fff;
}
.dark .pixelstrap .mega ul {
    background: #2b2b2b;
}
.dark .pixelstrap .home-menu,
.dark .pixelstrap .feature-menu,
.dark .pixelstrap .category-menu,
.dark .pixelstrap .full-mega-menu,
.dark .pixelstrap .clothing-menu {
    -webkit-box-shadow: 0 0 1px 0 #2b2b2b;
    box-shadow: 0 0 1px 0 #2b2b2b;
}
.dark .onhover-div > div img {
    -webkit-filter: brightness(100);
    filter: brightness(100);
}
.dark .onhover-div .show-div {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark .error-section h1 {
    color: #e6e6e6;
}
.dark .breadcrumb-section {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}
.dark .breadcrumb-section .breadcrumb a {
    color: #f7f7f7;
}
.dark .breadcrumb-section .breadcrumb-item {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}
.dark .breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}
.dark .breadcrumb-section .breadcrumb-item.active {
    color: #e7eaec;
}
.dark .main-menu .menu-left .navbar i {
    color: #f7f7f7;
}
.dark .main-menu .menu-right .icon-nav li i {
    color: #cecece;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .empty-cart-box i {
    background-color: #232323;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.setting h6 {
    color: #cfd4da;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.setting ul li a {
    color: #cfd4da;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li {
    border-color: #404040;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body .qty-box .input-group span button i {
    color: #ddd;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body h4 {
    color: #e7eaec;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body h4 span {
    color: #dee2e6;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .form-control {
    border-color: #404040 !important;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle i:hover {
    color: #fff;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .total {
    border-color: #404040;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .total h5 {
    color: #dee2e6;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .buttons a {
    color: #fff;
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .buttons a:hover {
    color: var(--theme-color);
}
.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .cart_product::-webkit-scrollbar-track {
    background: #404040;
}
.dark .compare-fix a,
.dark .compare-fix h5 {
    color: #fff;
}
.dark .footer-theme .sub-title li {
    color: #cfd4da;
}
.dark .footer-theme .sub-title li a {
    color: #cfd4da;
}
.dark .footer-theme .sub-title h4 {
    color: #e7eaec;
}
.dark .footer-theme .sub-title .contact-list i {
    color: #ddd;
}
.dark .footer-social i {
    color: #cfd4da;
}
.dark .footer-light .subscribe {
    border-color: #404040;
}
.dark .border-b {
    border-color: #404040;
}
.dark .footer-theme2 .contact-details li {
    color: #cfd4da;
}
.dark .footer-theme2 .contact-details li a {
    color: #e7eaec;
}
.dark .footer-theme2 .subscribe-block {
    border-color: #404040;
}
.dark .footer-theme2 .footer-link a,
.dark .footer-theme2 .footer-link-b a {
    color: #cbcbcb;
}
.dark .footer-theme2 .footer-link a:hover,
.dark .footer-theme2 .footer-link-b a:hover {
    color: #fff;
}
.dark .top-header .header-contact li {
    color: #cfd4da;
}
.dark .top-header .header-dropdown li {
    color: #cfd4da;
}
.dark .top-header .header-dropdown li a i {
    color: #cfd4da !important;
}
.dark .top-header .header-dropdown .onhover-dropdown .onhover-show-div li a {
    color: #cbcbcb;
}
.dark .top-header.top-header-dark .header-dropdown li a {
    color: #cbcbcb;
}
.dark .top-header.top-header-dark .header-contact li i {
    color: #cbcbcb;
}
.dark .top-header.top-header-dark2 .header-dropdown li a {
    color: #cfd4da;
}
.dark .top-header.top-header-dark2 .header-contact li i {
    color: #cfd4da;
}
.dark .top-header.top-header-dark3 .header-dropdown li a {
    color: #cbcbcb;
}
.dark .top-header.top-header-dark3 .header-contact li i {
    color: #cbcbcb;
}
.dark .onhover-dropdown .onhover-show-div {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark .testimonial {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .testimonial .testimonial-slider .media img {
    border-color: #404040;
}
.dark .team img {
    border-color: #232323;
}
.dark .team h6 {
    background-color: #232323;
}
.dark .team h4 {
    background-color: #232323;
    color: var(--theme-color);
}
.dark .service-block + .service-block {
    border-color: #404040;
}
.dark .pixelstrap.light-font-menu li > a {
    color: #f1f3f5;
}
.dark .about-section .service-block1 {
    background-color: #232323;
}
.dark .theme-tab .tab-title a,
.dark .theme-tab .tab-title2 a {
    color: #cbcbcb;
}
.dark .theme-tab .tab-title .current a,
.dark .theme-tab .tab-title2 .current a {
    color: var(--theme-color);
}
.dark .theme-tab .tab-title2:after {
    border-color: #404040;
}
.dark .theme-tab .tab-title2 .current {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .theme-tab .tab-title2 .current a {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .product-box .cart-info.bg-color-cls button {
    background-color: #2b2b2b;
}
.dark .product-box .cart-info.bg-color-cls a i {
    background-color: #2b2b2b;
}
.dark .product-box .product-detail h4,
.dark .product-box .product-info h4,
.dark .product-wrap .product-detail h4,
.dark .product-wrap .product-info h4 {
    color: #e7eaec;
}
.dark .theme-card.product-card .card-title {
    border-color: #404040;
}
.dark .theme-card.product-card .media-list .media .product-sm {
    background-color: #232323;
    border-color: #404040;
}
.dark .theme-card.product-card .media-list .media .media-body h4 {
    color: #fff;
}
.dark .theme-card.product-card .media-list .media .media-body a h6 {
    color: #ddd;
}
.dark .theme-card .offer-slider .media .media-body h4 {
    color: #e7eaec;
}
.dark .theme-card .offer-slider .media .media-body .rating i:last-child {
    color: #777;
}
.dark .theme-card h5.title-border {
    border-color: #404040;
}
.dark .theme-card.card-border {
    border-color: #404040;
}
.dark .dark-layout {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .sub-footer.darker-subfooter {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .sub-footer.darker-subfooter p {
    color: #cfd4da;
}
.dark .compare-page .table-wrapper .table {
    color: #f1f3f5;
    border-color: #404040;
}
.dark .compare-page .table-wrapper .table thead .th-compare td {
    background: #232323;
    border-color: #404040;
    color: #fff;
}
.dark .compare-page .table-wrapper .table thead .th-compare th {
    border-color: #404040;
}
.dark .compare-page .table-wrapper .table thead .th-compare th .remove-compare {
    color: #cfd4da;
}
.dark .compare-page .table-wrapper .table tbody tr th {
    border-color: #404040;
    color: #fff;
    background: #232323;
}
.dark .compare-page .table-wrapper .table tbody tr td {
    border-color: #404040;
    color: #ddd;
}
.dark .compare-page .table-wrapper .table tbody tr .product_price {
    color: #ddd;
}
.dark .compare-page .table-wrapper .table tbody tr p {
    color: #cfd4da;
}
.dark .lookbook .lookbook-block .lookbook-dot:before {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .lookbook .lookbook-block .lookbook-dot .dot-showbox .dot-info {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .sitemap_page ul li a {
    color: #cbcbcb;
}
.dark .sitemap_page ul li a:hover {
    color: var(--theme-color);
}
.dark .sitemap_page ul ul li a {
    color: #dee2e6;
}
.dark .sitemap_page .row > div:nth-child(odd) {
    background-color: #232323;
}
.dark .compare-padding .compare-table {
    border-color: #404040;
}
.dark .compare-padding .compare-table tr:nth-child(even) {
    background-color: #232323;
}
.dark .compare-padding .compare-table tr td {
    border-color: #404040;
    color: #fff;
}
.dark .compare-padding .compare-table tr td .img-section a {
    color: #fff;
}
.dark .compare-padding .compare-table tr td .compare-rating span {
    color: #ddd;
}
.dark .compare-padding .compare-table tr td .close-btn {
    color: #fff;
    border-color: #404040;
    background-color: #232323;
}
.dark .compare-padding .compare-table tr td.title-detail {
    border-color: #404040;
}
.dark .review-page .comnt-sec li a {
    color: #cbcbcb;
}
.dark .blog-detail-page .blog-detail h3 {
    color: #fff;
}
.dark .blog-detail-page .blog-detail .post-social li {
    color: #ddd;
}
.dark .blog-detail-page .blog-detail .post-social li + li {
    border-color: #404040;
}
.dark .blog-detail-page .comment-section li {
    border-color: #404040;
}
.dark .blog-detail-page .comment-section li h6 {
    color: #fff;
}
.dark .blog-detail-page .comment-section li h6 span {
    color: #ddd;
}
.dark .blog-page .blog-box .blog-contain .blog-label > span {
    color: #ddd;
}
.dark .blog-page .blog-box .blog-contain .blog-label > span + span {
    border-color: #404040;
}
.dark .blog-page .blog-box .blog-contain a h3 {
    color: #fff;
}
.dark .blog-page .blog-list {
    border-color: #404040;
}
.dark .blog-page .blog-list .blog-contain p {
    color: #ddd;
}
.dark .blog-page .blog-list .blog-contain .blog-label > span {
    color: #ddd;
}
.dark .blog-page .blog-list .blog-contain .blog-label > span + span {
    border-color: #404040;
}
.dark .blog-page .blog-list .blog-contain a h3 {
    color: #fff;
}
.dark .blog-page .blog-media .blog-right h4 {
    color: #e7eaec;
}
.dark .blog-page .blog-media .blog-right ul {
    color: #cfd4da;
}
.dark .blog-page .blog-media .blog-right ul li + li {
    border-color: #404040;
}
.dark .blog-page .blog-sidebar .categories li a span {
    color: #ddd;
}
.dark .blog-page .blog-sidebar .theme-card {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-color: #404040;
}
.dark .blog-page .blog-sidebar .theme-card .tags li {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .blog-page .blog-sidebar .theme-card .tags li:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.dark .blog-page .blog-sidebar .theme-card .tags li:hover a {
    color: #fff;
}
.dark .blog-page .blog-sidebar .theme-card .tags li a {
    color: #ddd;
}
.dark .blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-content h6 {
    color: #ddd;
}
.dark .blog-page .blog-sidebar .left-skelton-box {
    background-color: #232323;
}
.dark .blog-page .blog-sidebar .left-skelton-box ul li {
    background-color: #1d1d22;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(44, 44, 44, 0.5)), to(rgba(255, 255, 255, 0)));
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(44, 44, 44, 0.5), rgba(255, 255, 255, 0));
}
.dark .blog-page .blog-sidebar h4 {
    border-color: #404040;
    color: #e7eaec;
}
.dark .blog-page .blog-sidebar h6 {
    color: #cfd4da;
}
.dark .blog-page .blog-sidebar p {
    color: #cfd4da;
}
.dark .form_search {
    background-color: #232323;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark .img-category:hover .img-sec {
    border-color: var(--theme-color);
}
.dark .img-category .img-sec {
    background-color: #232323;
    border-color: #404040;
}
.dark .img-category h4 a {
    color: #ddd;
}
.dark .vector-category .container {
    background-color: #2b2b2b;
    -webkit-box-shadow: 0 0 8px #0a0a0a;
    box-shadow: 0 0 8px #0a0a0a;
}
.dark .vector-category .category-slide .img-category .img-sec {
    background-color: #232323;
}
.dark .vector-category .category-slide .img-category .img-sec img {
    -webkit-filter: invert(0.6);
    filter: invert(0.6);
}
.dark .cart-section .cart-table thead th,
.dark .wishlist-section .cart-table thead th {
    color: #f1f3f5;
}
.dark .cart-section tbody tr td,
.dark .wishlist-section tbody tr td {
    border-color: #404040 !important;
}
.dark .cart-section tbody tr td a,
.dark .wishlist-section tbody tr td a {
    color: #cbcbcb;
}
.dark .cart-section tbody tr td h2,
.dark .wishlist-section tbody tr td h2 {
    color: #f1f3f5;
}
.dark .table tbody + tbody {
    border-color: #404040;
}
.dark .table thead th {
    border-color: #404040 !important;
}
.dark .top-banner-wrapper .top-banner-content h4 {
    color: #e7eaec;
}
.dark .top-banner-wrapper .top-banner-content h5 {
    color: #dee2e6;
}
.dark .top-banner-wrapper .top-banner-content p {
    color: #cfd4da;
}
.dark .top-filter ::-webkit-scrollbar-track {
    background: #404040;
}
.dark .category-box {
    background-color: #232323;
    border-color: #404040;
}
.dark .category-box.active {
    background-color: var(--theme-color);
    border-color: transparent;
}
.dark .irs-line {
    background: #232323;
}
.dark .category-shop-section .nav {
    background-color: #232323;
}
.dark .category-shop-section .nav .sidebar-back {
    border-color: #404040;
}
.dark .category-shop-section .nav .nav-link {
    color: #ddd;
}
.dark .category-shop-section .nav .nav-link.active {
    color: var(--theme-color2);
}
.dark .popular-search-section {
    border-color: #404040;
}
.dark .popular-search-section ul li::after {
    background-color: #404040;
}
.dark .popular-search-section ul li a {
    color: #ddd;
}
.dark .product-style-5.product-box {
    background-color: #232323;
}
.dark .product-style-5.product-box h5 {
    color: #ddd;
}
.dark .product-style-5.product-box h6 {
    color: #fff;
}
.dark .category-slider-section .product-category-slider .category-box {
    background-color: #232323;
    border-color: #404040;
}
.dark .category-slider-section .product-category-slider .category-box:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.dark .category-slider-section .product-category-slider .category-box:hover h5 {
    color: #fff;
}
.dark .category-slider-section .product-category-slider .category-box img {
    -webkit-filter: invert(1) brightness(100);
    filter: invert(1) brightness(100);
}
.dark .category-slider-section .product-category-slider .category-box h5 {
    color: #ddd;
}
.dark .collection-collapse-block .collection-accordion {
    background-color: transparent;
}
.dark .collection-collapse-block .collection-accordion .accordion-item .accordion-header .accordion-button {
    background-color: #232323;
    color: #ddd;
}
.dark .collection-collapse-block .collection-accordion .accordion-item .accordion-body {
    background-color: #232323;
}
.dark .collection-collapse-block .collection-accordion .accordion-item .accordion-body::-webkit-scrollbar-track {
    background: #2b2b2b;
}
.dark .collection-collapse-block .collection-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-input::after {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .collection-collapse-block .collection-accordion .accordion-item .accordion-body .collection-listing li .form-check .form-check-label {
    color: #ddd;
}
.dark .modern-box {
    background-color: #232323;
}
.dark .collection-product-wrapper .product-top-filter {
    border-color: #404040;
    background-color: #232323;
}
.dark .collection-product-wrapper .product-top-filter .product-filter-content .form-select,
.dark .collection-product-wrapper .product-top-filter .popup-filter .form-select {
    color: #ddd;
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .collection-product-wrapper .product-top-filter .product-filter-content .search-count,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .sidebar-popup,
.dark .collection-product-wrapper .product-top-filter .popup-filter .search-count,
.dark .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .select2 .selection .select2-selection,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .select2 .selection .select2-selection,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .select2 .selection .select2-selection,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .select2 .selection .select2-selection {
    background: #2b2b2b;
    border-color: #404040 !important;
}
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .select2 .select2-container--default .select2-dropdown,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .select2 .select2-container--default .select2-dropdown,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .select2 .select2-container--default .select2-dropdown,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .select2 .select2-container--default .select2-dropdown {
    border-color: #404040;
    background: #2b2b2b;
}
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .select2 .select2-container--default .select2-results .select2-results__options::-webkit-scrollbar,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .select2 .select2-container--default .select2-results .select2-results__options::-webkit-scrollbar,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .select2 .select2-container--default .select2-results .select2-results__options::-webkit-scrollbar,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .select2 .select2-container--default .select2-results .select2-results__options::-webkit-scrollbar {
    background-color: #404040;
}
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .select2 .select2-container--default .select2-results .select2-results__options .select2-results__option,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .select2 .select2-container--default .select2-results .select2-results__options .select2-results__option,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .select2 .select2-container--default .select2-results .select2-results__options .select2-results__option,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .select2 .select2-container--default .select2-results .select2-results__options .select2-results__option {
    color: #ddd;
}
.dark .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view,
.dark .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view {
    border-color: #404040;
}
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select {
    border-color: #404040;
}
.dark .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li,
.dark .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li.active,
.dark .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li.active {
    background-color: var(--theme-color);
}
.dark .collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar-track {
    background: #2b2b2b;
}
.dark .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup a {
    background: #2b2b2b;
    border-color: #404040;
    color: #cbcbcb;
}
.dark .collection-product-wrapper .product-top-filter .popup-filter .open-popup {
    border-color: #404040;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark .collection-product-wrapper .product-top-filter.sidebar-top-filter .collection-top-filter .top-filter-card-body {
    background-color: #232323;
    border-color: #404040;
}
.dark .product-slick .slick-next:before,
.dark .product-slick .slick-prev:before,
.dark .rtl-product-slick .slick-next:before,
.dark .rtl-product-slick .slick-prev:before,
.dark .product-right-slick .slick-next:before,
.dark .product-right-slick .slick-prev:before,
.dark .rtl-product-right-slick .slick-next:before,
.dark .rtl-product-right-slick .slick-prev:before {
    color: #ddd;
    background-color: #232323;
    -webkit-box-shadow: 0 0 8px rgba(64, 64, 64, 0.6);
    box-shadow: 0 0 8px rgba(64, 64, 64, 0.6);
    border-color: #404040;
}
.dark .product-pagination {
    border-color: #404040;
}
.dark .product-pagination .pagination li.active a {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-color: #404040;
}
.dark .product-pagination .pagination li a {
    border-color: #404040;
    background-color: #232323;
    color: #ddd;
}
.dark .product-pagination .product-search-count-bottom {
    border-color: #404040;
}
.dark .product-pagination .product-search-count-bottom h5 {
    color: #dee2e6;
}
.dark .portfolio-section #form1 {
    border-color: #404040;
    background-color: #232323;
}
.dark .portfolio-section .isotopeSelector .overlay {
    border-color: #404040;
}
.dark .portfolio-section .filter-button {
    color: #fff;
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .portfolio-section .filter-button.active {
    color: var(--theme-color);
    background-color: rgba(236, 137, 81, 0.071);
    border-color: rgba(236, 137, 81, 0.588);
}
.dark .portfolio-section.metro-section .product-box .product-detail {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .portfolio-section.metro-section .product-box .product-detail h4 {
    color: #e7eaec;
}
.dark .portfolio-section.metro-section .product-box .product-detail h6 {
    color: #cfd4da;
}
.dark .collection-filter-block {
    border-color: #404040;
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .collection-filter-block .accordion-item + .accordion-item {
    border-color: #404040;
}
.dark .collection-filter-block .accordion-item .accordion-button {
    color: #fff;
}
.dark .collection-filter-block .accordion-item .accordion-button:not(.collapsed) {
    color: #fff;
}
.dark .collection-filter-block .accordion-item .accordion-body .search-not-found-box {
    background-color: #2b2b2b;
}
.dark .collection-filter-block .accordion-item .accordion-body .search-box::after {
    border-color: #404040;
}
.dark .collection-filter-block .accordion-item .accordion-body .search-box .form-control {
    border-color: #404040;
}
.dark .collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input::after {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-label {
    color: #ddd;
}
.dark .custom-sidebar-height::-webkit-scrollbar {
    background-color: #2b2b2b;
}
.dark .load-more-sec a {
    border-color: #404040;
}
.dark .coupon-modal .coupon-box {
    background-color: #232323;
}
.dark .coupon-modal .coupon-box .coupon-content p {
    color: rgba(221, 221, 221, 0.678);
}
.dark .coupon-modal .coupon-box .coupon-content .coupon-apply {
    border-color: #404040;
}
.dark .coupon-modal .coupon-box .coupon-content .coupon-apply h6 {
    color: #fff;
}
.dark .checkout-page .checkout-title h3 {
    color: #eaedef;
}
.dark .checkout-page .coupon-content .coupon-apply {
    border-color: #404040;
}
.dark .checkout-page .coupon-content .coupon-apply h6 {
    color: #ddd;
}
.dark .checkout-page .checkout-form .form-group .field-label {
    color: #cfd4da;
}
.dark .checkout-page .checkout-form input[type="text"],
.dark .checkout-page .checkout-form input[type="email"],
.dark .checkout-page .checkout-form input[type="password"],
.dark .checkout-page .checkout-form input[type="tel"],
.dark .checkout-page .checkout-form input[type="number"],
.dark .checkout-page .checkout-form input[type="url"] {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-color: #404040;
}
.dark .checkout-page .checkout-form select,
.dark .checkout-page .checkout-form textarea {
    border-color: #404040;
}
.dark .checkout-page .checkout-form .checkout-details {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #404040;
}
.dark .checkout-page .checkout-form .checkout-details .coupon-box {
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .checkout-page .checkout-form .checkout-details .order-box .title-box h4 {
    color: #fff;
}
.dark .checkout-page .checkout-form .checkout-details .promo-code-box h5 {
    color: #ddd;
}
.dark .checkout-page .checkout-form .checkout-details .promo-code-box .form-control {
    border-color: #404040;
}
.dark .wishlist-section tbody tr td .icon-box a {
    border-color: #404040;
    background-color: #232323;
}
.dark .coupon-box {
    background: #232323;
}
.dark .coupon-box .coupon-content p {
    color: #ddd;
}
.dark .coupon-box .coupon-content .coupon-apply {
    border-color: #404040;
}
.dark .coupon-box .coupon-content .coupon-apply h6 {
    color: #fff;
}
.dark .intl-tel-input .flag-box {
    margin-left: 6px;
    margin-right: unset;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box {
    background-color: #232323;
    border-color: #404040;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-title {
    border-color: #404040;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box {
    background-color: #2b2b2b;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-input::before {
    background-color: #232323;
    border-color: #404040;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-input:checked::before {
    border-color: var(--theme-color);
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-label .address {
    color: #fff;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box .form-check-label .address span {
    color: #fff;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box > div .form-check .form-check-input::before {
    background-color: #232323;
    border-color: #404040;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box > div .delivery-address-detail h6,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box > div .delivery-address-detail p {
    color: #ddd;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box > div .delivery-address-detail h6 span,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-address-box > div .delivery-address-detail p span {
    color: #ddd;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option {
    background-color: #2b2b2b;
}
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input::before,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input::before,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input::before,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box > ul > li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input::before {
    background-color: #232323;
    border-color: #404040;
}
.dark .checkout-section-2 .checkout-right-box .checkout-details .order-box .title-box {
    border-color: #404040;
    color: #ddd;
}
.dark .order-box .title-box {
    color: #eaedef;
    border-color: #404040;
}
.dark .order-box .qty {
    border-color: #404040;
}
.dark .order-box .qty li {
    color: #cfd4da;
}
.dark .order-box .qty li .cart-image {
    background-color: #2b2b2b;
}
.dark .order-box .qty li span {
    color: #dee2e6;
}
.dark .order-box .sub-total {
    border-color: #404040;
}
.dark .order-box .sub-total li {
    color: #cfd4da;
}
.dark .order-box .sub-total li .check-it::after {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .order-box .sub-total li h4 {
    color: #ddd;
}
.dark .order-box .sub-total .shopping-option label {
    color: #929292;
}
.dark .order-box .total {
    border-color: #404040;
}
.dark .order-box .total li {
    color: #cfd4da;
}
.dark .order-box .box-loader .loader-wrapper {
    background-color: #2b2b2b;
}
.dark .collection .collection-block .collection-content h4 {
    color: #e7eaec;
}
.dark .collection .collection-block .collection-content h3 {
    color: #eaedef;
}
.dark .table th,
.dark .table td {
    border-color: #404040;
}
.dark .dashboard .box-head h2 {
    color: #f1f3f5;
}
.dark .dashboard .box .box-title {
    border-color: #404040;
}
.dark .dashboard .box .box-title h3 {
    color: #eaedef;
}
.dark .white-bg {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .card {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .card .card-header {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .card .card-body .notification-list h4 {
    color: #fff;
}
.dark .card .card-body .notification-list h5 {
    color: #ddd;
}
.dark .card .card-body .notification-list li {
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .cart-section .cart-table,
.dark .wishlist-section .cart-table {
    border-color: #404040;
}
.dark .cart-section thead th,
.dark .wishlist-section thead th {
    background-color: #232323;
}
.dark .cart-section tbody tr td,
.dark .wishlist-section tbody tr td {
    background-color: transparent;
}
.dark .cart-section tbody .remove-btn,
.dark .wishlist-section tbody .remove-btn {
    border-color: #404040;
    background-color: #232323;
}
.dark .cart-section .qty-box .input-group .form-control,
.dark .wishlist-section .qty-box .input-group .form-control {
    border-color: #404040;
}
.dark .cart-section tfoot tr td,
.dark .wishlist-section tfoot tr td {
    background-color: transparent;
}
.dark .cart-section tfoot tr td:first-child,
.dark .wishlist-section tfoot tr td:first-child {
    color: #ddd;
}
.dark .compare-section .compare-box {
    border-color: #404040;
}
.dark .compare-section .compare-part .close-btn {
    background-color: #232323;
    color: #ddd;
    border-color: #404040;
}
.dark .compare-section .compare-part .detail-part .title-detail {
    border-color: #404040;
}
.dark .compare-section .compare-part .img-section {
    border-color: #404040;
}
.dark .compare-section .compare-part .img-section a h5 {
    color: #fff;
}
.dark .compare-section .compare-part .detail-part .title-detail {
    background-color: #232323;
}
.dark .faq-section .theme-accordion .accordion-item {
    border-color: #404040;
}
.dark .faq-section .theme-accordion .accordion-item .accordion-header {
    background-color: #232323;
}
.dark .faq-section .theme-accordion .accordion-item .accordion-header .accordion-button {
    color: #fff;
    background-color: #232323;
}
.dark .faq-section .theme-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--theme-color);
}
.dark .faq-section .theme-accordion .accordion-item .accordion-body p {
    color: #ddd;
}
.dark.box-layout-body .box-layout-header {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark.box-layout-body .box-layout.bg-image {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark.box-layout-body .light-layout {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark.box-layout-body .sub-footer {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark.box-layout-body .brand-slider-box .logo-block {
    background-color: #2b2b2b;
}
.dark.box-layout-body .general-variant .active {
    border-color: #404040;
}
.dark.box-layout-body .basic-product .img-wrapper {
    background-color: #2b2b2b;
}
.dark.box-layout-body .basic-product .cart-info a,
.dark.box-layout-body .basic-product .cart-info button {
    background-color: #232323;
}
.dark .bg-title.wo-bg .theme-tab .bg-title-part {
    border-color: #404040;
}
.dark .bg-title.wo-bg .theme-tab .bg-title-part .title-border {
    color: #fff;
}
.dark .bg-title.wo-bg .theme-tab .tab-title a {
    color: #cfd4da;
}
.dark .full-box .theme-card .offer-slider .product-box2 + .product-box2 {
    border-top: none;
}
.dark .center-slider {
    border-color: #404040;
}
.dark .bg-block {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-image: none;
}
.dark .theme-tab .tab-content .product-tab .tab-box {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .theme-tab .tab-content .product-tab .tab-box .product-box2 {
    background-color: #2b2b2b;
}
.dark .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body h4 {
    color: #e7eaec;
}
.dark .flower-bg {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-image: none;
}
.dark header.full-scroll-menu {
    background-color: transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark.tools-bg .basic-product {
    background-color: #232323;
}
.dark.tools-bg .basic-product .img-wrapper {
    background-color: #2b2b2b;
}
.dark.tools-bg .basic-product .img-wrapper .rating-label {
    background-color: #232323;
}
.dark.tools-bg .basic-product .cart-info a,
.dark.tools-bg .basic-product .cart-info button {
    background-color: #232323;
}
.dark .category-m.w-bg .category-wrapper {
    background-color: #2b2b2b;
}
.dark .category-m .category-wrapper h4 a {
    color: #cbcbcb;
}
.dark .category-block:hover .category-image.svg-image {
    background-color: var(--theme-color);
}
.dark .category-block .category-image {
    border-color: #404040;
}
.dark .category-block .category-image.svg-image {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .white-layout {
    background-color: #232323;
}
.dark .footer-theme2.footer-border {
    border-color: #404040;
}
.dark .footer-theme2.footer-border > div:first-child,
.dark .footer-theme2.footer-border > div:last-child {
    background-color: #232323;
}
.dark .footer-theme2.section-light .footer-social i,
.dark .footer-theme2.section-light .social-white i {
    color: #ddd;
}
.dark .footer-theme2.section-light .footer-block .subscribe-white {
    border-color: #404040;
}
.dark .footer-theme2.section-light .footer-block h4 {
    color: #e7eaec;
}
.dark .footer-theme2.section-light .footer-block .contact-details li a {
    color: #e7eaec;
}
.dark .footer-theme2 .footer-link.link-white h4 {
    color: #e7eaec;
}
.dark .absolute-banner .absolute-bg {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark footer .dark-layout {
    background-color: #232323;
}
.dark footer.pet-layout-footer .white-layout {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark footer.pet-layout-footer .sub-footer.black-subfooter {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark footer.pet-layout-footer .footer-social i,
.dark footer.pet-layout-footer .social-white i {
    color: #ddd;
}
.dark .logo-block img {
    -webkit-filter: invert(100);
    filter: invert(100);
}
.dark .logo-block img:hover {
    -webkit-filter: invert(100);
    filter: invert(100);
}
.dark .bg-white {
    background-color: #2b2b2b !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .product-box .img-wrapper .cart-box,
.dark .product-wrap .img-wrapper .cart-box {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark .tab-bg.tab-grey-bg {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .blog.blog_box .blog-details p {
    color: #cfd4da;
}
.dark .blog.blog_box .blog-details a p {
    color: #cfd4da;
}
.dark .blog.blog_box .blog-details .read-cls {
    color: #cbcbcb;
}
.dark .btn-close {
    color: #fff;
}
.dark .sticky-bottom-cart .cart-content {
    background-color: #232323;
}
.dark .sticky-bottom-cart .selection-section .form-control {
    background-color: #2b2b2b;
    border-color: #404040;
    background-image: url("../images/form-select-icon.svg");
}
.dark .sticky-bottom-cart .product-image .content h6 {
    color: #cfd4da;
}
.dark .recently-purchase {
    background: #2b2b2b;
    -webkit-box-shadow: 0 0 7px 0px #7c7c7c47;
    box-shadow: 0 0 7px 0px #7c7c7c47;
}
.dark .recently-purchase img {
    background-color: #252525;
}
.dark .recently-purchase .close-popup {
    color: #fff;
}
.dark .product-slider-image,
.dark .sticky-product-height {
    background-color: #232323;
    border-color: #404040;
}
.dark .product-social li {
    background-color: #232323;
    border-color: #404040;
}
.dark .product-social li a {
    color: #fff;
}
.dark .product-right .product-title {
    color: #cfd4da;
}
.dark .product-right .border-product {
    border-color: #404040;
}
.dark .product-right .product-icon .product-social li a {
    color: #cbcbcb;
}
.dark .product-right .product-icon .wishlist-btn {
    color: #cbcbcb;
}
.dark .product-right .product-icon .wishlist-btn i {
    border-color: #404040;
}
.dark .product-right.product-form-box {
    border-color: #404040;
}
.dark .product-right.product-form-box .timer {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .product-right .timer {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .product-right .timer p {
    color: #cfd4da;
}
.dark .product-right .size-box ul li {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-color: #404040;
}
.dark .product-right .size-box ul li.active {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .product-right .size-box ul li a {
    color: #cbcbcb;
}
.dark .product-right h4 del {
    color: #929292;
}
.dark .timer span .timer-cal {
    color: #929292;
}
.dark .qty-box .input-group span button {
    background: #2b2b2b !important;
    border-color: #404040;
}
.dark .qty-box .input-group button i {
    color: #ddd;
}
.dark .nav-tabs {
    border-color: #404040;
}
.dark .nav-tabs .nav-link.active {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .tab-product .nav-material.nav-tabs .nav-item .nav-link {
    color: #cbcbcb;
}
.dark .tab-product .nav-material.nav-tabs .nav-link.active {
    color: var(--theme-color);
}
.dark .tab-product .theme-form input,
.dark .tab-product .theme-form textarea {
    border-color: #404040;
}
.dark .product-related h2 {
    border-color: #404040;
}
.dark .product-accordion .btn-link {
    color: #e7eaec;
}
.dark .product-accordion .card-header {
    border-color: rgba(64, 64, 64, 0.125);
}
.dark .product-accordion .accordion .accordion-item {
    background-color: transparent;
}
.dark .product-accordion .accordion .accordion-item .accordion-header .accordion-button {
    color: #ddd;
    border-color: #404040;
    background-color: #232323;
}
.dark .product-accordion .accordion .accordion-item .accordion-body p {
    color: #ddd;
}
.dark .bundle .bundle_detail .price_product {
    color: #fff;
}
.dark .product-detail-label li.soldout {
    color: #cbcbcb;
}
.dark .product-detail-label li.featured {
    background-color: #2b2b2b;
}
.dark .modal-content {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark button.close {
    color: #fff;
}
.dark .modal-header {
    border-color: #404040;
}
.dark .collection-filter-block .product-service .media {
    border-color: #404040;
}
.dark .collection-filter-block .accordion-item .accordion-body .shop-category-list > li > a {
    color: #ddd;
}
.dark .category-border {
    background-color: #404040;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .category-border div .category-banner .category-box {
    background-color: #232323;
    border-color: #404040;
}
.dark .category-border div .category-banner .category-box h2 {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .background {
    background-color: #404040;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .background .contain-bg {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .background .contain-bg h4 {
    color: #e7eaec;
}
.dark .background .contain-bg:hover h4 {
    color: var(--theme-color);
}
.dark .blog-bg {
    background-color: #404040;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .sub-footer.black-subfooter {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark.tools-bg {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark.tools-bg section {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .category-tools .category-m .category-wrapper {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .category-m .category-wrapper {
    border-color: #404040;
}
.dark .category-m .category-wrapper h4 {
    color: #e7eaec;
}
.dark .category-m .category-wrapper .category-link li a {
    color: #cbcbcb;
}
.dark .tools-brand .row {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark .absolute_banner .collection-banner .absolute-contain {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark .absolute_banner .collection-banner .absolute-contain h4 {
    color: #e7eaec;
}
.dark .absolute-product .product-box {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .absolute-product .product-box .product-detail .cart-bottom {
    border-color: #404040;
}
.dark .absolute-product .product-box .product-detail .cart-bottom i {
    color: #cbcbcb;
}
.dark .absolute-product .product-box .product-detail .cart-bottom i:hover {
    color: #fff;
}
.dark .seller-grid-box {
    background-color: #232323;
    border-color: #404040;
}
.dark .seller-grid-box .grid-contain .seller-contact-details ul li i {
    color: #ddd;
}
.dark .seller-grid-box .grid-contain .seller-contact-details ul li h5 {
    color: #ddd;
}
.dark .seller-grid-box .grid-contain .seller-contact-details ul li h5 a {
    color: #ddd;
}
.dark .seller-grid-box .grid-contain .seller-category .product-image li {
    background: #2b2b2b;
    color: #ddd;
}
.dark .seller-grid-box .grid-contain .seller-category .btn {
    background-color: #2b2b2b !important;
}
.dark .seller-grid-box .grid-image .image {
    background-color: #2b2b2b;
}
.dark .seller-grid-box .grid-image .contain-name h3 {
    color: #fff;
}
.dark .service-block1 {
    background-color: #232323;
    border-color: #404040;
}
.dark .service-block1 + .service-block1 {
    border-color: #404040;
}
.dark .service-block1 .service-svg {
    background-color: #2b2b2b;
}
.dark .box-product .full-box .theme-card .offer-slider .product-box2 {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #404040;
    background-color: #232323;
}
.dark .box-product .full-box .theme-card .offer-slider .product-box2 .media {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .box-product .full-box .theme-card .offer-slider .product-box2 .cart-bottom {
    border-color: #404040;
}
.dark .pets-box .product-box .img-wrapper .cart-info i {
    background-color: #2b2b2b;
}
.dark .tab-bg {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .darken-layout {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .darken-layout p {
    color: #cfd4da;
}
.dark .darken-layout .sub-title .contact-list li {
    color: #cfd4da;
}
.dark .darken-layout .sub-title .contact-list i {
    color: #cfd4da;
}
.dark .darken-layout .footer-social i {
    color: #cfd4da;
}
.dark .sub-footer.dark-subfooter p {
    color: #cfd4da;
}
.dark .cart-section tbody tr td a,
.dark .cart-section tbody tr td p,
.dark .wishlist-section tbody tr td a,
.dark .wishlist-section tbody tr td p {
    color: #cbcbcb;
}
.dark .footer-title {
    border-color: #404040;
}
.dark .category-bg {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .category-bg .contain-block {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .category-bg .contain-block h2 {
    color: #f1f3f5;
}
.dark .category-bg .contain-block h6 span {
    color: #929292;
}
.dark .service_slide .service-home .row > div:nth-child(even) .service-block1 {
    background-color: rgba(43, 43, 43, 0.85);
}
.dark .service_slide .service-home .service-block1 {
    background-color: rgba(35, 35, 35, 0.9);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .service_slide .service-home .service-block1:nth-child(even) {
    background-color: rgba(35, 35, 35, 0.7);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .service_slide .service-home .service-block1 svg path {
    fill: #fff;
}
.dark .bg-grey {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .detail-cannabis .detail_section > div {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark .detail-cannabis .detail_section svg {
    fill: #fff;
}
.dark .demo-card.theme-card {
    background-color: #232323;
}
.dark .theme-modal .modal-dialog .modal-content .modal-body {
    background-image: linear-gradient(
        135deg,
        var(--theme-color) 5.77%,
        #232323 5.77%,
        #232323 25%,
        #f1f3f5 25%,
        #f1f3f5 30.77%,
        #232323 30.77%,
        #232323 50%,
        var(--theme-color) 50%,
        var(--theme-color) 55.77%,
        #232323 55.77%,
        #232323 75%,
        #f1f3f5 75%,
        #f1f3f5 80.77%,
        #232323 80.77%,
        #232323 100%
    );
}
.dark .theme-modal .modal-dialog .modal-content .modal-body .modal-bg {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content h4 {
    color: #e7eaec;
}
.dark .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .btn-close span {
    color: #fff;
}
.dark .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
    color: #f1f3f5;
}
.dark .theme-modal.demo-modal .modal-dialog .modal-content .modal-body {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .theme-modal.demo-modal .modal-dialog .modal-content .modal-body .demo-section .demo-effects > div .layout-container {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dark .theme-modal.demo-modal .modal-dialog .modal-content .modal-body .demo-section .demo-effects > div .demo-text h4 {
    color: #e7eaec;
}
.dark .theme-modal.demo-modal .modal-dialog .modal-content .modal-body .demo-section .demo-effects > div .demo-text .demo-btn .btn {
    border-color: #404040;
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #cbcbcb;
}
.dark .theme-modal.demo-modal .modal-dialog .modal-content .modal-body .demo-section .title-text h3 {
    color: #eaedef;
}
.dark .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart #upsell_product .product-box .product-detail h6 a {
    color: #cbcbcb;
}
.dark .theme-modal.exit-modal .media .media-body h5 {
    color: #dee2e6;
}
.dark #quick-view .modal-dialog .modal-content .modal-body {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .effect-cls:before,
.dark .effect-cls:after {
    -webkit-filter: invert(0.83);
    filter: invert(0.83);
}
.dark .contact-page .contact-form {
    background-color: #232323;
    border-color: #404040;
}
.dark .contact-page .contact-form .form-box label {
    color: #ddd;
}
.dark .contact-page .contact-right ul li {
    border-color: #404040;
    background-color: #232323;
}
.dark .contact-page .contact-right ul li .contact-icon i {
    background-color: #2b2b2b;
}
.dark .contact-page .contact-right ul li .media-body h6 {
    color: #fff;
}
.dark .setting-box .setting-title h4 {
    color: #fff;
}
.dark .vendor-profile .profile-left {
    background-color: #232323;
    border-color: #404040;
}
.dark .vendor-profile .profile-left .profile-image h3 {
    color: #e7eaec;
}
.dark .vendor-profile .profile-left .profile-image a {
    background-color: #2b2b2b;
}
.dark .vendor-profile .profile-left .profile-image img {
    background-color: #2b2b2b;
}
.dark .vendor-profile .profile-left .profile-detail {
    border-color: #404040;
}
.dark .vendor-profile .profile-left .vendor-contact {
    border-color: #404040;
}
.dark .vendor-profile .profile-left .vendor-contact .vendor-details li i,
.dark .vendor-profile .profile-left .vendor-contact .vendor-details li h5 {
    color: #ddd;
}
.dark .vendor-profile .profile-left .vendor-contact .vendor-details li i a,
.dark .vendor-profile .profile-left .vendor-contact .vendor-details li h5 a {
    color: #ddd;
}
.dark .vendor-profile .profile-left .vendor-contact h6 {
    color: #cfd4da;
}
.dark .vendor-profile .collection-product-wrapper .product-top-filter {
    background-color: #232323;
}
.dark .vendor-profile .product-pagination {
    background-color: #232323;
}
.dark .vendor-profile .page-link {
    background-color: #232323;
}
.dark .vendor-profile .profile-title h3 {
    color: #eaedef;
}
.dark .vendor-profile .profile-title h4 {
    color: #e7eaec;
}
.dark .vendor-profile .collection-filter-block {
    border-color: transparent;
    background-color: #232323;
}
.dark .become-vendor {
    background-color: #232323;
}
.dark .become-vendor .step-bg .step-box {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .become-vendor .step-bg .step-box .steps {
    background-color: #232323;
}
.dark .user-dashboard-section .wallet-point-box {
    border-color: #404040;
    background-color: #232323;
}
.dark .user-dashboard-section .wallet-point-box .total-detail .point-ratio {
    background-color: #2b2b2b;
}
.dark .user-dashboard-section .wallet-point-box .total-detail .point-ratio .counter {
    color: #fff;
}
.dark .user-dashboard-section .welcome-msg h4 {
    color: #fff;
}
.dark .user-dashboard-section .faq-content .box-loader .loader-wrapper {
    background-color: #232323;
    border-color: #404040;
}
.dark .notification-list li {
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .notification-list li.unread {
    border: 1px solid var(--theme-color);
}
.dark .notification-list li.unread h5 {
    color: #ddd;
}
.dark .notification-list li h5 {
    color: #dee2e6;
}
.dark .dashboard-section .title-header h5 i {
    color: #fff;
}
.dark .dashboard-section .wallet-table .table-responsive {
    border-color: #404040;
}
.dark .dashboard-section .wallet-table .order-table td h6 {
    color: #fff;
}
.dark .dashboard-section .wallet-table .order-table tr a {
    color: #ddd;
}
.dark .dashboard-section .wallet-table .order-table td,
.dark .dashboard-section .wallet-table .order-table th {
    border-color: #404040;
}
.dark .dashboard-section .wallet-point-box .total-image {
    background-color: #2b2b2b;
}
.dark .dashboard-section .wallet-point-box .total-detail .total-box h5 {
    color: #eaedef;
}
.dark .dashboard-section .wallet-point-box .total-detail .total-box h3 {
    color: #fff;
}
.dark .dashboard-section .top-sec-2 {
    border-color: #404040;
}
.dark .dashboard-section .themeform-auth .form-label {
    color: #ddd;
}
.dark .dashboard-section .themeform-auth .form-control {
    border-color: #404040;
}
.dark .dashboard-section .top-sec h3 {
    color: #fff;
}
.dark .dashboard-section .counter-section {
    background-color: #232323;
    border-color: #404040;
}
.dark .dashboard-section .dashboard-sidebar {
    background-color: #232323;
    border-color: #404040;
}
.dark .dashboard-section .dashboard-sidebar .profile-top {
    border-color: #404040;
}
.dark .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-round {
    background-color: #2b2b2b;
}
.dark .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon {
    background-color: #404040;
    border-color: rgba(119, 119, 119, 0.36);
}
.dark .dashboard-section .dashboard-sidebar .profile-top .profile-detail {
    border-color: #404040;
}
.dark .dashboard-section .dashboard-sidebar .profile-top .profile-detail h6 {
    color: #ddd;
}
.dark .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
    background-color: #232323;
}
.dark .dashboard-section .address-book-section .select-box .address-box {
    background-color: #2b2b2b;
}
.dark .dashboard-section .address-book-section .select-box .address-box .top h6 {
    color: #ddd;
}
.dark .dashboard-section .address-book-section .select-box .address-box .middle .address p,
.dark .dashboard-section .address-book-section .select-box .address-box .middle .number p {
    color: #fff;
}
.dark .dashboard-section .address-book-section .select-box .address-box .bottom {
    border-color: #404040;
}
.dark .dashboard-section .address-book-section .select-box .address-box .bottom .bottom_btn {
    background-color: #232323;
    color: #fff;
}
.dark .dashboard-section .radio_animated::after {
    background: #2b2b2b;
    border-color: #404040;
}
.dark .dashboard-section .faq-content .card {
    background-color: #232323;
    border-color: #404040;
}
.dark .dashboard-section .faq-content .dashboard-table {
    background-color: transparent;
}
.dark .dashboard-section .faq-content .dashboard-table .table thead th {
    background-color: #232323;
}
.dark .dashboard-section .faq-content .download-detail {
    border-color: #404040;
    background-color: #232323;
}
.dark .dashboard-section .faq-content .download-detail form .input-group .form-control {
    border-color: #404040;
}
.dark .dashboard-section .faq-content .download-table {
    border-color: #404040;
}
.dark .dashboard-section .faq-content .download-table .user-download-table .dropdown .dropdown-toggle {
    background-color: #232323;
    border-color: #404040;
    color: #ddd;
}
.dark .dashboard-section .faq-content .download-table .user-download-table tbody td {
    border-color: #404040;
}
.dark .dashboard-section .faq-content .tab-pane .card-body .tracking-total ul li:last-child {
    border-color: #404040;
}
.dark .dashboard-section .faq-content .tab-pane .card-body .customer-detail ul li h4 {
    color: #ddd;
}
.dark .dashboard-section .faq-content .tab-pane .card-body .order-title {
    color: #fff;
    border-color: #404040;
}
.dark .dashboard-section .counter-section .counter-box {
    background-color: #2b2b2b;
}
.dark .dashboard-section .counter-section .counter-box h5 {
    color: #ddd;
}
.dark .dashboard-section .box-head h4 {
    color: #fff;
}
.dark .dashboard-section .dashboard-table h3 {
    color: #eaedef;
}
.dark .dashboard-section .dashboard-table .table th,
.dark .dashboard-section .dashboard-table .table td {
    color: #fff;
}
.dark .dashboard-section .dashboard-box {
    background-color: #232323;
    border-color: #404040;
}
.dark .dashboard-section .dashboard-box .dashboard-title {
    border-color: #404040;
}
.dark .dashboard-section .dashboard-box .dashboard-detail ul li .details .left h6 {
    color: #9c9c9c;
}
.dark .dashboard-section .dashboard-box .dashboard-detail ul li.details h5 {
    color: #fff;
}
.dark .dashboard-section .dashboard-box .dashboard-detail ul li.details h5 span {
    color: #ddd;
}
.dark .faq-tab .nav-tabs .nav-item .nav-link {
    background-color: #232323;
    color: #cfd4da;
}
.dark .faq-tab .nav-tabs .nav-item .nav-link:hover {
    color: var(--theme-color);
}
.dark .faq-tab .nav-tabs .nav-item .nav-link.active {
    background-color: #232323;
}
.dark .faq-tab .nav-tabs .nav-item .nav-link.active i {
    background-color: var(--theme-color);
}
.dark .faq-tab .nav-tabs .nav-item .nav-link i {
    background-color: #2b2b2b;
}
.dark .faq-tab .nav-tabs .logout-cls {
    border-color: #404040;
}
.dark .category-img-wrapper .category-wrap .category-content h3 {
    color: #eaedef;
}
.dark .add_to_cart {
    background-color: #2b2b2b;
}
.dark .add_to_cart ::-webkit-scrollbar-thumb {
    background: #404040;
}
.dark .add_to_cart ::-webkit-scrollbar-track {
    background: #2b2b2b;
}
.dark .add_to_cart .cart-inner {
    background-color: #2b2b2b;
}
.dark .add_to_cart .cart-inner .pere-text-box {
    border-color: #404040;
}
.dark .add_to_cart .cart-inner .pere-text-box .progress {
    background-color: #232323;
}
.dark .add_to_cart .cart-inner .cart_top {
    border-color: #404040;
}
.dark .add_to_cart .cart-inner .cart_top h3 {
    color: #eaedef;
}
.dark .add_to_cart .cart-inner .cart_top .close-cart {
    background-color: #232323;
    border-color: #404040;
}
.dark .add_to_cart .cart-inner .cart_top .close-cart i {
    color: #cbcbcb !important;
}
.dark .add_to_cart .cart-inner .cart_media li + li {
    border-color: #404040;
}
.dark .add_to_cart .cart-inner .cart_media li .total {
    border-color: #404040;
}
.dark .add_to_cart .cart-inner .cart_media li .media .media-body .gram {
    color: #dee2e6;
}
.dark .add_to_cart .cart-inner .cart_media li .media .media-body h4 {
    color: #e7eaec;
}
.dark .add_to_cart .cart-inner .cart_media li .media img {
    background-color: #232323;
    border-color: #404040;
}
.dark .add_to_cart .cart-inner .cart_media li .total h5 {
    color: #ddd;
}
.dark .add_to_cart .cart-inner .cart_media .close-circle button {
    background-color: #232323;
    border-color: #404040;
}
.dark .add_to_cart .cart-inner .cart_media .close-circle .close_button i {
    color: #cbcbcb !important;
}
.dark .add_to_cart .cart-inner .cart_media .cart_total {
    border-color: #404040;
    background-color: #232323;
}
.dark .add_to_cart .cart-inner .qty-box {
    background-color: #232323;
    border-color: #404040;
}
.dark .add_to_cart .cart-inner .qty-box .input-group .input-group-prepend .btn i {
    color: #cbcbcb !important;
}
.dark .add_to_cart.top .cart-inner .cart_top,
.dark .add_to_cart.bottom .cart-inner .cart_top {
    background-color: #232323;
}
.dark .theme-settings ul li {
    background-color: #232323;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.54);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.54);
    color: #fff;
}
.dark .theme-settings ul li a {
    color: #fff;
}
.dark .theme-settings ul li .backend-btn a {
    color: #fff;
}
.dark .cookie-bar.left-bottom {
    -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.12), 0 15px 12px rgba(0, 0, 0, 0.13);
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.12), 0 15px 12px rgba(0, 0, 0, 0.13);
    background-color: #2b2b2b;
}
.dark .cookie-bar.left-bottom p {
    color: #cfd4da;
}
.dark .cookie-bar.left-bottom .btn-close i {
    color: #cbcbcb;
}
.dark .service-w-bg .service-block .media {
    background-color: #232323;
}
.dark .title-basic .timer {
    background-color: #232323;
}
.dark .title-basic .timer p {
    color: #cfd4da;
}
.dark .title-basic .timer span {
    color: #fff;
}
.dark .loader-wrapper {
    background-color: #2b2b2b;
}
.dark .loader-wrapper .loader:after {
    border-color: #2b2b2b;
}
.dark .product-parallax .theme-card .offer-slider > div .media {
    background-color: #2b2b2b;
}
.dark .product-parallax .theme-card .offer-slider .media {
    background-color: #2b2b2b;
}
.dark .load-more-button .btn.loading {
    border-color: #404040 #404040 #404040 #999;
    background: #2b2b2b;
}
.dark .footer-style-1 .footer-social i {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .category-width .category-block .category-image img {
    -webkit-filter: invert(0.6);
    filter: invert(0.6);
}
.dark .category-width .category-block:hover .category-image img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.dark .image-swatch li img {
    border-color: #404040;
}
.dark .image-swatch li.active img {
    border-color: var(--theme-color);
}
.dark .gradient-category .gradient-border .img-sec {
    background-color: #232323;
}
.dark .gradient-category .gradient-border .img-sec:after {
    -webkit-filter: invert(0.9);
    filter: invert(0.9);
}
.dark .deal-category .deal-content {
    background-color: #2b2b2b;
}
.dark .mobile-menu {
    background-color: #232323;
}
.dark .mobile-menu ul li.active i,
.dark .mobile-menu ul li.active span {
    color: #fff;
}
.dark .mobile-menu ul li a i {
    color: #ddd;
}
.dark .mobile-menu ul li a span {
    color: rgba(221, 221, 221, 0.8);
}
.dark .header-style-7 {
    border-color: #404040;
}
.dark .header-style-7 .main-menu .menu-left .navbar .bar-style img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.dark .shop-sidebar-demo .shop-sidebar {
    background-color: #232323;
    border-color: #404040;
}
.dark .shop-sidebar-demo .shop-sidebar .pixelstrap.sm-vertical a img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.dark .shop-sidebar-demo .shop-main .small-slider .home .slider-contain h4,
.dark .shop-sidebar-demo .shop-main .small-slider .home .slider-contain h2 {
    color: #222;
}
.dark .top-panel-adv .delivery-area h5 {
    color: #222;
}
.dark .top-panel-adv .panel-left-content h4 {
    color: #222;
}
.dark.bg_cls .basic-product.theme-product-11 {
    background-color: #2b2b2b;
}
.dark.bg_cls .service-block1 {
    background-color: #232323;
    border-color: #404040;
}
.dark .title1.title5 hr[role="tournament6"]::before {
    background-color: #2b2b2b;
}
.dark .brand-slider-box .logo-block {
    background-color: #232323;
    border-color: #404040;
}
.dark .brand-slider-box .logo-block h4 {
    color: #fff;
}
.dark .left-header .menu-left ul li a {
    color: #ddd;
}
.dark .blog-wo-bg .brand-slider-box .logo-block {
    background-color: transparent;
}
.dark .full-banner.feature-banner.feature-banner .feature-object-right li:hover .media img,
.dark .full-banner.feature-banner.feature-banner .feature-object li:hover .media img,
.dark .full-banner.feature-banner .feature-object-right li:hover .media img,
.dark .full-banner.feature-banner .feature-object li:hover .media img {
    background-color: #232323;
}
.dark .full-banner.feature-banner.feature-banner .feature-object-right li .media img,
.dark .full-banner.feature-banner.feature-banner .feature-object li .media img,
.dark .full-banner.feature-banner .feature-object-right li .media img,
.dark .full-banner.feature-banner .feature-object li .media img {
    border-color: #404040;
}
.dark.christmas header.sticky {
    background-color: #232323;
}
.dark.christmas .main-menu .menu-right .icon-nav li i {
    color: #fff;
}
.dark .basic-product .price {
    color: #fff;
}
.dark .basic-product .product-title {
    color: #fff;
}
.dark .basic-product .cart-info button,
.dark .basic-product .cart-info a {
    background-color: #2b2b2b;
}
.dark .basic-product .cart-info button i,
.dark .basic-product .cart-info a i {
    color: #ddd;
}
.dark .basic-product .timer {
    background-color: rgba(43, 43, 43, 0.92);
}
.dark .basic-product .img-wrapper {
    background-color: #232323;
}
.dark .basic-product .img-wrapper .rating-label {
    background-color: #2b2b2b;
    color: #fff;
}
.dark .basic-product .img-wrapper .addto-cart-bottom {
    background-color: #2b2b2b;
    border: 1px solid #404040;
    color: #ddd;
}
.dark .basic-product .img-wrapper .trending-label li:nth-child(2) {
    background-color: #2b2b2b;
}
.dark .basic-product .img-wrapper .unit-label {
    background-color: #2b2b2b;
}
.dark .basic-product .img-wrapper .quick-option {
    background-color: #232323;
}
.dark .basic-product .product-right .form-select {
    background-color: #232323;
    border-color: #404040;
    color: #ddd;
    background-image: url(../../../assets/svg/dropdown.svg);
}
.dark .basic-product .theme-bg-service.service-w-bg .service-block .media {
    background-color: var(--theme-color);
}
.dark .basic-product .add-cart-btn {
    color: #ddd;
    background-color: #404040;
}
.dark .basic-product .product-action {
    border-color: #404040;
}
.dark .basic-product .product-action button {
    color: #ddd;
    background-color: #404040;
}
.dark .basic-product .general-variant li {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .basic-product .general-variant li button {
    color: #fff;
}
.dark .basic-product .general-variant .active {
    border-color: #232323;
}
.dark .basic-product .product-detail .digital-price .form-check .form-check-input {
    background-color: #232323;
    border-color: #404040;
}
.dark .basic-product .product-detail .digital-price .form-check .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.dark .basic-product .addtocart_btn .qty-box .input-group {
    background-color: #232323;
}
.dark .basic-product .addtocart_btn .qty-box .input-group button {
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .basic-product .addtocart_btn .qty-box .input-group button i {
    color: #ddd;
}
.dark .basic-product.theme-product-1 {
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .basic-product.theme-product-1 .product-detail > div {
    border-color: #404040;
}
.dark .basic-product.theme-product-2 {
    background-color: #232323;
    border-color: #404040;
}
.dark .basic-product.theme-product-2 .cart-detail {
    border-color: #404040;
}
.dark .basic-product.theme-product-2 .cart-detail li + li {
    border-color: #404040;
}
.dark .basic-product.theme-product-2 .cart-detail li button,
.dark .basic-product.theme-product-2 .cart-detail li a {
    color: #ddd;
}
.dark .basic-product.theme-product-2 .img-wrapper {
    background-color: #2b2b2b;
}
.dark .basic-product.theme-product-2 .img-wrapper::after {
    background-color: rgba(34, 34, 34, 0.77);
}
.dark .basic-product.theme-product-2 .product-detail .details li {
    color: #ddd;
}
.dark .basic-product.theme-product-2 .product-detail .add-wish {
    background-color: #404040;
}
.dark .basic-product.theme-product-3 {
    border-color: #404040;
}
.dark .basic-product.theme-product-5 .cart-info {
    background-color: #404040;
}
.dark .basic-product.theme-product-5 .cart-info a,
.dark .basic-product.theme-product-5 .cart-info button {
    background-color: transparent;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}
.dark .basic-product.theme-product-6 {
    border-color: #404040;
}
.dark .basic-product.theme-product-6 .cart-info {
    background-color: #2b2b2b;
}
.dark .basic-product.theme-product-6 .cart-info a + a::after {
    background-color: #404040;
}
.dark .basic-product.theme-product-6 .hover-action li a {
    background-color: transparent;
}
.dark .basic-product.theme-product-7 {
    background-color: #232323;
    border-color: #404040;
}
.dark .basic-product.theme-product-7 .img-wrapper {
    background-color: #2b2b2b;
}
.dark .basic-product.theme-product-8 {
    background-color: #2b2b2b;
    border-color: #404040;
}
.dark .basic-product.theme-product-8 .cart-info a i {
    color: var(--theme-color);
}
.dark .basic-product.theme-product-9 {
    background-color: #232323;
    border-color: #404040;
}
.dark .basic-product.theme-product-9 .img-wrapper {
    background-color: #2b2b2b;
}
.dark .basic-product.theme-product-9 .discount-value {
    border-color: #404040;
    color: #ddd;
}
.dark .basic-product.theme-product-9 .discount-value .offer-icon {
    color: #ddd;
}
.dark .basic-product.theme-product-10 .product-title {
    color: #fff;
}
.dark .basic-product.theme-product-11 {
    border-color: #404040;
}
.dark .basic-product.theme-product-11 .abs-product {
    background-color: #232323;
}
.dark .collection-filter .custom-nav-tab .nav-item {
    border-color: #404040;
    background-color: #232323;
}
.dark .collection-filter .custom-nav-tab .nav-item .nav-link {
    color: #ddd;
}
.dark .collection-filter .custom-nav-tab .nav-item .nav-link img {
    -webkit-filter: invert(1) brightness(100);
    filter: invert(1) brightness(100);
}
.dark .slider-nav .slick-slide > div,
.dark .rtl-slider-nav .slick-slide > div,
.dark .slider-right-nav .slick-slide > div,
.dark .rtl-slider-right-nav .slick-slide > div {
    border-color: #404040;
}
.dark .slider-nav .slick-slide > div img,
.dark .rtl-slider-nav .slick-slide > div img,
.dark .slider-right-nav .slick-slide > div img,
.dark .rtl-slider-right-nav .slick-slide > div img {
    background-color: #232323;
}
.dark .question-answer li {
    border-color: #404040;
}
.dark .question-answer li h6 {
    color: #fff;
}
.dark .question-answer li .answer-box p {
    color: #ddd;
}
.dark .question-answer li .question-box h5 {
    border-color: #404040;
    background-color: #262626;
}
.dark .question-answer li .question-box .link-dislike-box {
    margin-left: unset;
    margin-right: auto;
}
.dark .question-answer li .question-box .link-dislike-box li a span {
    color: rgba(221, 221, 221, 0.67);
}
.dark .shop-filter-category {
    border-color: #404040;
}
.dark .shop-filter-category .filter-list {
    border-color: #404040;
}
.dark .shop-filter-category .filter-list li {
    background-color: #2b2b2b;
}
.dark .shop-filter-category .filter-list li a,
.dark .shop-filter-category .filter-list li i {
    color: #ddd;
}
.dark .search-modal .search-title {
    color: #fff;
}
.dark .search-modal .search-category-box li.text-secondary {
    color: #fff !important;
}
.dark .search-modal .modal-body .search-box i,
.dark .search-modal .modal-body .search-box .form-control {
    border-color: #3c3c3c;
}
.dark .card-white-bg .title2 h4 {
    color: var(--theme-color);
}
.dark .card-white-bg .title2 .title-inner2 {
    color: #222;
}
.dark .card-white-bg .theme-card h5 {
    color: #222;
}
.dark .card-white-bg .theme-card h5.title-border {
    border-color: #eee;
}
.dark .card-white-bg .theme-card .offer-slider .media .media-body h4 {
    color: #222;
}
.dark .card-white-bg .theme-card .offer-slider .media .media-body a h6 {
    color: #777;
}
.dark .wo-box .service-block1 {
    background-color: transparent;
}
.dark .setting-box .accordion-button .setting-description-text .setting-content {
    color: #cecece;
}
.dark .product-sidebar-box .collection-filter-block.accordion {
    border-color: #3c3c3c;
}
.dark .download-dropdown-menu {
    border-color: #404040;
    background-color: #2b2b2b;
}
.dark .download-dropdown-menu .dropdown-item {
    color: #ddd;
}
.dark .variation-modal .variation-title .main-title a {
    color: #fff;
}
.dark .variation-modal .variation-box .quantity-variant {
    background-color: #232323;
    border-color: #404040;
}
.dark .variation-modal .variation-qty-button {
    border-color: #404040;
}
.dark .variation-modal .variation-qty-button .qty-section .qty-box .input-group {
    background-color: #232323;
    border-color: #404040;
}
.dark .variation-modal .variation-qty-button .qty-section .qty-box .input-group button i {
    color: #cecece;
}
.dark .alert .btn-close {
    color: #222;
}
.dark .product-service {
    background-color: #232323;
    border-color: #404040;
}
.dark .product-service .media {
    border-color: #404040;
}
.dark .details-sidebar-accordion {
    border-color: #404040;
    background-color: transparent;
}
.dark .details-sidebar-accordion .accordion-item {
    background-color: #232323;
}
.dark .details-sidebar-accordion .accordion-item .accordion-button {
    background-color: #232323;
    color: #fff;
}
.dark .details-sidebar-accordion .accordion-body {
    background-color: #232323;
}
.dark .details-sidebar-accordion .accordion-body::-webkit-scrollbar-track {
    background-color: #404040;
}
.dark .details-sidebar-accordion .accordion-body .collection-listing li .form-check .form-check-label {
    color: #ddd;
}
.dark .subscribe-form.classic-form .form-control {
    background-color: #232323;
}
.dark .category-nft a {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #404040;
}
.dark .nft-top-collection .collection-panal .nft-collection + .nft-collection {
    border-color: #404040;
}
.dark .nft-top-collection .collection-panal .nft-collection .number {
    color: #ddd;
}
.dark .nft-box {
    border-color: #525252;
}
.dark .nft-box .nft-img .timer-sec {
    background-color: rgba(64, 64, 64, 0.7);
}
.dark .nft-box .nft-content .top-content h4 {
    color: #fff;
}
.dark .nft-box .nft-content .top-content h5 {
    color: rgba(255, 255, 255, 0.7);
}
.dark .nft-box .nft-content .bottom-content span {
    color: rgba(255, 255, 255, 0.7);
}
.dark .nft-box .nft-content .bottom-content .price img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.dark .tools-grey .product-box {
    border-color: #404040;
}
.dark .tools-grey .product-box .product-info {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-color: #404040;
}
.dark .tools-grey .product-box .cart-info button {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #cbcbcb;
}
.dark .tools-grey .product-box .cart-info a {
    background-color: #232323;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .tools-grey .product-box .cart-info a i {
    color: #cbcbcb;
}
.dark .tools-grey .product-box .img-wrapper .front {
    background-color: #2b2b2b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .loader_skeleton {
    background-color: #2b2b2b;
}
.dark .loader_skeleton .product-box .img-wrapper {
    background-color: #404040;
}
.dark .loader_skeleton .service-block1 svg {
    background-color: #404040;
}
.dark .loader_skeleton .gradient-category .gradient-border {
    background-color: #404040;
}
.dark .loader_skeleton .marketplace-sidebar.sidenav .pixelstrap > li > a .ldr-text,
.dark .loader_skeleton .home-slider .home .slider-contain h2,
.dark .loader_skeleton .home-slider .home .slider-contain h1,
.dark .loader_skeleton .home-slider .home .slider-contain h6,
.dark .loader_skeleton .collection-banner .ldr-bg .contain-banner h4,
.dark .loader_skeleton .collection-banner .ldr-bg .contain-banner h2,
.dark .loader_skeleton .collection-banner .ldr-bg .contain-banner h6,
.dark .loader_skeleton .title1 h4,
.dark .loader_skeleton .title1 h2,
.dark .loader_skeleton .title8 h2,
.dark .loader_skeleton .title8 p,
.dark .loader_skeleton .product-para .first,
.dark .loader_skeleton .product-para .second,
.dark .loader_skeleton .top-banner-wrapper .top-banner-content h4,
.dark .loader_skeleton .top-banner-wrapper .top-banner-content h5,
.dark .loader_skeleton .top-banner-wrapper .top-banner-content p,
.dark .loader_skeleton .product-top-filter .ldr-text,
.dark .loader_skeleton .product-box .product-detail h4,
.dark .loader_skeleton .product-box .product-detail h5,
.dark .loader_skeleton .product-box .product-detail h6,
.dark .loader_skeleton .product-box.product-style-5.product-box h6,
.dark .loader_skeleton .product-box.product-style-5.product-box h5,
.dark .loader_skeleton .product-box.product-style-5.product-box h4,
.dark .loader_skeleton .category-button .btn-outline,
.dark .loader_skeleton .category-block .category-details h5,
.dark .loader_skeleton .category-block .category-details h6,
.dark .loader_skeleton .service-home .service-block1 h4,
.dark .loader_skeleton .service-home .service-block1 p,
.dark .loader_skeleton .service-block1 h5,
.dark .loader_skeleton .service-block h4,
.dark .loader_skeleton .service-block p,
.dark .loader_skeleton .category-tools .category-m .category-wrapper h4,
.dark .loader_skeleton .category-tools .category-m .category-wrapper .category-link li,
.dark .loader_skeleton .category-tools .category-m .category-wrapper .ldr-btn,
.dark .loader_skeleton .collection-filter-block .filter-block h4,
.dark .loader_skeleton .collection-filter-block .filter-block ul li,
.dark .loader_skeleton .theme-card .title-border,
.dark .loader_skeleton .product-page .product-right h2,
.dark .loader_skeleton .product-page .product-right h4,
.dark .loader_skeleton .product-page .product-right h3,
.dark .loader_skeleton .product-page .product-right ul li,
.dark .loader_skeleton .product-page .product-right .btn-group .btn-ldr,
.dark .loader_skeleton .tab-product ul li,
.dark .loader_skeleton .gradient-category h4,
.dark .loader_skeleton .img-category h4,
.dark .loader_skeleton .title-basic .title,
.dark .loader_skeleton .vertical-banner .vertical-content h2,
.dark .loader_skeleton .vertical-banner .vertical-content a {
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(212, 212, 212, 0.3)), color-stop(18%, #6e6e6e), color-stop(33%, rgba(212, 212, 212, 0.3)));
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.3) 8%, #6e6e6e 18%, rgba(212, 212, 212, 0.3) 33%);
}
.dark .loader_skeleton .product-page .product-right.product-form-box {
    border-color: #404040;
}
.dark .loader_skeleton .product-page .sm-product,
.dark .loader_skeleton .product-page .main-product {
    background-color: #404040;
}
.dark .loader_skeleton .marketplace-sidebar.sidenav {
    background-color: #232323;
}
.dark .loader_skeleton .marketplace-sidebar.sidenav .pixelstrap > li > a .ldr-img-icon {
    background-color: #404040;
}
.dark .loader_skeleton .home-slider .home,
.dark .loader_skeleton .home-slider .ldr-bg,
.dark .loader_skeleton .collection-banner .home,
.dark .loader_skeleton .collection-banner .ldr-bg,
.dark .loader_skeleton .home-slider .home,
.dark .loader_skeleton .home-slider .ldr-bg {
    background: #404040;
}
.dark .loader_skeleton .service-block svg {
    background: #404040;
}
.dark .loader_skeleton .tab-product p {
    background-color: #404040;
}
.dark .loader_skeleton .top-banner-wrapper .img-ldr-top {
    background-color: #404040;
}
@media (min-width: 1200px) {
    .dark .pixelstrap .scroll-up,
    .dark .pixelstrap .scroll-down {
        background: #404040;
    }
    .dark header .navbar-expand-xl .dropdown-menu {
        background-color: #2b2b2b;
    }
    .dark header .navbar-expand-xl .dropdown-menu .dropdown-item:active {
        color: #fff;
    }
    .dark header .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header {
        color: #ddd;
    }
    .dark header .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item:hover,
    .dark header .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item:focus {
        color: #fff;
    }
    .dark header .navbar.navbar-expand-xl .navbar-nav .nav-item:hover > .nav-link:not(.disabled) {
        color: var(--theme-color);
    }
    .dark header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown > a:hover {
        color: var(--theme-color);
    }
}
@media (max-width: 1430px) {
    .dark header.left-header .sidenav .sidebar-back {
        color: #cfd4da;
        border-color: #404040;
    }
    .dark .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
        border-color: #404040;
    }
    .dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
        border-color: #404040;
    }
}
@media (max-width: 1199px) {
    .dark .sm-horizontal {
        background-color: #2b2b2b;
        border-color: #404040;
    }
    .dark .sm-horizontal .mobile-back {
        border-color: #404040;
        color: #e7eaec;
        background-color: #232323;
    }
    .dark .sm-horizontal .mobile-back i {
        color: #ddd;
    }
    .dark .sm-horizontal.pixelstrap ul {
        background-color: #2b2b2b;
    }
    .dark .tab-product .nav-material.nav-tabs {
        background-color: #2b2b2b;
        border-color: #404040;
    }
    .dark .tab-product.product-details-contain .nav-tabs,
    .dark .tab-product.product-details-contain .nav-tabs {
        border-color: #404040;
        background-color: #262626;
    }
    .dark header.left-header .pixelstrap ul {
        background-color: #232323;
    }
    .dark header.left-header.left-header-relative .pixelstrap > li > a {
        background-color: #232323;
    }
    .dark header.header-christmas .pixelstrap > li > a,
    .dark header.header-christmas .pixelstrap > li > a:hover,
    .dark header.header-christmas .pixelstrap > li > a:focus {
        color: #cbcbcb !important;
    }
    .dark header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item {
        color: #cbcbcb;
    }
    .dark header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item::before {
        background-color: rgba(206, 206, 206, 0.65);
    }
    .dark header .navbar-nav .dropdown-menu .dropdown-column .dropdown-header {
        color: rgba(221, 221, 221, 0.8);
    }
    .dark header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item {
        color: #cbcbcb;
    }
    .dark header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item::before {
        background-color: rgba(206, 206, 206, 0.65);
    }
    .dark .header-style-1 .bg-light-xl {
        background-color: #232323 !important;
    }
    .dark .pixelstrap .link-section h5 {
        color: rgba(207, 212, 218, 0.8);
    }
    .dark .pixelstrap .link-section .menu-content a::before {
        background-color: #ddd;
    }
    .dark .pixelstrap .clothing-menu {
        background-color: #232323;
    }
    .dark .pixelstrap .clothing-menu .link-section > ul > li > a::before {
        background-color: rgba(207, 212, 218, 0.65);
    }
    .dark .pixelstrap li > ul {
        background-color: #232323;
    }
    .dark .pixelstrap li > ul > li > ul > li a::before {
        background-color: rgba(207, 212, 218, 0.65);
    }
    .dark .header-style-5 .bottom-part .pixelstrap > li > a {
        color: #cbcbcb;
    }
    .dark .header-style-5 .bottom-part .pixelstrap > li > a:hover,
    .dark .header-style-5 .bottom-part .pixelstrap > li > a:focus,
    .dark .header-style-5 .bottom-part .pixelstrap > li > a:active {
        color: #cbcbcb;
    }
    .dark .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar {
        background-color: #232323;
    }
    .dark .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
        background-color: #232323;
    }
    .dark .header-style-5.color-style .marketplace-sidebar.sidenav.fixed-sidebar {
        background-color: #232323;
    }
    .dark .header-style-5.color-style .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
        background-color: #232323;
    }
    .dark .header-style-5.color-style.style-classic .bottom-part .container {
        background-color: transparent;
    }
    .dark .marketplace-sidebar.sidenav.wo-bg {
        background-color: #232323;
    }
    .dark .sidenav .pixelstrap li > ul > li > a {
        color: rgba(207, 212, 218, 0.8);
    }
}
@media (max-width: 991px) {
    .dark .collection-filter {
        background-color: #232323;
    }
    .dark .collection-product-wrapper .product-top-filter {
        background-color: #232323;
    }
    .dark .collection-product-wrapper .product-top-filter .product-filter-content {
        background-color: #232323;
        border-color: #404040;
    }
    .dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select,
    .dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select {
        border-color: #404040;
    }
    .dark .collection-product-wrapper .product-top-filter .popup-filter {
        background-color: #232323;
    }
    .dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter,
    .dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view {
        border-color: #404040;
    }
    .dark .collection-mobile-back {
        border-color: #404040;
        background-color: #2b2b2b;
    }
    .dark .collection-mobile-back span,
    .dark .collection-mobile-back i {
        color: #fff;
    }
    .dark .collection-filter {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .dark header.header-tools .logo-menu-part {
        background-color: #2b2b2b;
    }
    .dark header.header-style.header-tools .top-header {
        background-color: #2b2b2b;
    }
    .dark .service_slide .service-home .service-block1 {
        background-color: #2b2b2b;
    }
    .dark .service_slide .service-home .service-block1:nth-child(even) {
        background-color: #2b2b2b;
    }
    .dark .dashboard-section .dashboard-sidebar .back-btn {
        color: #fff;
        border-color: #404040;
        background-color: #232323;
    }
    .dark .dashboard-section .dashboard-sidebar .profile-top {
        background-color: #2b2b2b;
    }
    .dark .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-round {
        background-color: #232323;
    }
    .dark .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
        background-color: #232323;
    }
    .dark .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs .nav-item {
        background-color: #232323;
    }
    .dark .collection-collapse-block.open {
        background-color: #232323;
    }
}
@media (max-width: 767px) {
    .dark .collection-product-wrapper .product-pagination .theme-pagination-block nav {
        border-color: #404040;
    }
    .dark .product-pagination .pagination {
        border-color: #404040;
    }
    .dark .product-wrapper-grid.list-view .product-box {
        border-color: #404040;
    }
    .dark .wishlist-section tbody tr td .mobile-cart-content .col:last-child .td-color a {
        border-color: #404040;
        background-color: #232323;
        color: #ddd;
    }
}
@media (max-width: 577px) {
    .dark header.header-style .top-header .header-dropdown > li img {
        -webkit-filter: invert(0.55);
        filter: invert(0.55);
    }
    .dark .header-5 .top-header .header-dropdown .mobile-wishlist img,
    .dark .header-5 .top-header .header-dropdown .mobile-account img {
        -webkit-filter: invert(1);
        filter: invert(1);
        opacity: 0.7;
    }
    .dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
        border-color: #404040 !important;
    }
    .dark .tools-service.absolute-banner .absolute-bg {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .dark .full-banner .banner-contain {
        background-color: rgba(0, 0, 0, 0.2);
    }
    .dark .mobile-fix-option {
        background-color: #2b2b2b;
    }
    .dark .top-header .header-dropdown .mobile-account i,
    .dark .top-header .header-dropdown .mobile-wishlist i {
        color: #cecece;
    }
}
@media (max-width: 420px) {
    .dark .full-box .theme-card .offer-slider .sec-1 .product-box2 {
        border-color: #404040;
    }
    .dark .full-box .center-slider .offer-slider .product-box {
        border-color: #404040;
    }
}

        .sec-title .title{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #ec8951;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2, .sec-title h1{
  position: relative;
  display: block;
  font-size:40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:18px;
}

.sec-title h2:before, .sec-title h1:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:50px;
  height:3px;
  background-color:#d1d2d6;
}

.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2{
  color: #ffffff;
}

.sec-title.text-center h2:before{
  left:50%;
  margin-left: -25px;
}

.list-style-one{
  position:relative;
}

.list-style-one li{
  position:relative;
  font-size:16px;
  line-height:26px;
  color: #222222;
  font-weight:400;
  padding-left:35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #000;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover{
  color: #44bce2;
}

.btn-style-one{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ec8951;
}

.btn-style-one:hover{
  background-color: #000;
  color: #ffffff;
}
.about-section{
  position: relative;
  padding: 120px 0 0px;
}

.about-section .sec-title{
  margin-bottom: 45px;
}

.about-section .content-column{
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column{
  position: relative;
  padding-left: 30px;
}

.about-section .text{
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.about-section .list-style-one{
  margin-bottom: 45px;
}

.about-section .btn-box{
  position: relative;
}

.about-section .btn-box a{
  padding: 15px 50px;
}

.about-section .image-column{
  position: relative;
}

.about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column{
  position: relative;
  padding-left: 120px;
  padding-bottom: 125px;
}

.about-section .image-column .inner-column:before{
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  content: "";
}

.about-section .image-column .image-1{
  position: relative;
}

.about-section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.about-section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover{
  background-color: #191e34;
  color: #fff;
    
}
/*#Why Choose Us */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@800&display=swap");
:root {
  --font-size: 0.8em;
  --bg1: #f5f8f7;
  --blue: #3498db;
  --green: #2ecc71;
  --purple: #9b59b6;
  --gold: #f1c40f;
  --red: #e74c3c;
  --orange: #e67e22;
  --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
  --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
}
main {
  padding: 2vw;
}

ul.infoGraphic {
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 31em;
  background: var(--bg1);
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
}
ul.infoGraphic li .numberWrap {
  position: absolute;
}
ul.infoGraphic li .number {
  font-family: "maven pro", sans-serif;
  font-size: 13em;
  font-weight: 900;
  width: 0.9em;
  text-align: center;
}
ul.infoGraphic li .number.fontColor1 {
  color: var(--blue);
}
ul.infoGraphic li .number.fontColor2 {
  color: var(--green);
}
ul.infoGraphic li .number.fontColor3 {
  color: var(--purple);
}
ul.infoGraphic li .number.fontColor4 {
  color: var(--gold);
}
ul.infoGraphic li .number.fontColor5 {
  color: var(--red);
}
ul.infoGraphic li .number.fontColor6 {
  color: var(--orange);
}
ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -2em;
  top: 0em;
}
ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  background: var(--bg1);
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}
ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px/10px;
  z-index: -1;
}
ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}
ul.infoGraphic li .content {
  margin: 8em 3em 1em 7em;
  position: relative;
}
ul.infoGraphic li .content h2 {
  font-size: 1.7em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}
ul.infoGraphic li .content p {
  line-height: 1.5em;
}

ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
}

.icon {
  position: absolute;
  font-size: 2rem;
  text-align: center;
  top: -1.3em;
  left: 50%;
  transform: translatex(-50%);
}
.icon:before {
  color: #666;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

.iconCodepen:before {
  content: "";
}

.iconSocial:before {
  content: "";
}

.iconAirplane:before {
  content: "";
}

.iconMap:before {
  content: "";
}

.iconBulb:before {
  content: "";
}

.iconPeace:before {
  content: "";
}



.controls {
  position: fixed;
  z-index: 2;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #d7d7d7a1;
  padding: 0.5rem 2em;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border: 1px solid #0000004d;
}

.sliderBox {
  text-align: center;
}
.sliderBox .range-value {
  font-weight: 500;
  font-size: 22px;
}

input[type=range] {
  width: 100%;
  margin: 1em 0;
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  background: #00000066;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 2px;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background: #eee;
  box-shadow: inset 0px 1px 1px #ffffff66, 0px 1px 3px black;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #eee;
}

input[type=range]::-moz-range-track {
  background: #000;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
}

input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 13px 0;
  color: transparent;
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type=range]::-ms-fill-lower {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}

input[type=range]::-ms-fill-upper {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}

input[type=range]::-ms-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}

input[type=range]:focus::-ms-fill-lower {
  background: #ffffff;
}

input[type=range]:focus::-ms-fill-upper {
  background: #ffffff;
}

/*Vission&Mission*/

.road-map-main {
  margin: 50px 0 51px;
}
.road-map-main .road-map-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
height: 189.5px;
}
@media (max-width: 991px) {
  .road-map-main .road-map-wrapper {
    margin-bottom: 25px;
    height: auto;
    display: block;
  }
}
.road-map-main .road-map-wrapper::before {
  content: "";
  width: 100%;
  clear: both;
  display: block;
}
.road-map-main .road-map-wrapper::after {
  content: "";
  width: 100%;
  clear: both;
  display: block;
}
.road-map-main .road-map-wrapper .road-map-circle {
width: 214px;
    height: 214px;
    border-radius: 50%;
    border: 25px solid transparent;
    border-top-color: #ec8951;
    border-right-color: #ec8951;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(46deg);
}
@media (max-width: 992px) {
  .road-map-main .road-map-wrapper .road-map-circle {
    position: unset;
    border: 25px solid #ec8951;
  }
}
.road-map-main .road-map-wrapper .road-map-circle .road-map-circle-text {
  width: 140px;
  height: 133px;
  border-radius: 50%;
  background-color: #000;
  font-size: 25px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  color: #fff;
  box-shadow: 0px 0px 10px 5px #00000021;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
      text-align: center;
}
.road-map-main .road-map-wrapper .road-map-card {
  width: 34%;
  background: #ec8951;
  padding: 20px 20px;
  z-index: 1;
  position: absolute;
  right: 0;
  border-radius: 5px;
}
.road-map-main .road-map-wrapper .road-map-card::before {
  content: "";
  width: 25%;
  height: 20px;
  background: #ec8951;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -23%;
  z-index: -1;
}
.contact-right{
    padding:0px 0 50px;
}
.contact-page{
       padding:50px 0 50px;
}
@media (max-width: 991px) {
  .road-map-main .road-map-wrapper .road-map-card {
    width: 100%;
    margin-top: 30px;
    position: unset;
  }
  .road-map-main .road-map-wrapper .road-map-card::before {
    content: "";
    width: 20px;
    height: 30%;
    top: 50%;
    transform: translateX(-50%);
    left: 50%;
  }
}
@media (max-width: 425px) {
  .road-map-main .road-map-wrapper .road-map-card {
    top: 45%;
  }
}
.road-map-main .road-map-wrapper .road-map-card .card-head {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 15px;
  color: #fff;
}
.road-map-main .road-map-wrapper .road-map-card .card-text {
  color: #fff;
  margin: 0;
  display: -webkit-box;
  /*-webkit-line-clamp: 5;*/
  -webkit-box-orient: vertical;
  /*overflow: hidden;*/
}
@media (max-width: 1199px) {
  .road-map-main .road-map-wrapper .road-map-card .card-text {
    /*-webkit-line-clamp: 4;*/
  }
}
.road-map-main .road-map-wrapper:nth-of-type(even) .road-map-circle {
  border-bottom-color: #ec8951;
  border-left-color: #ec8951;
  border-top-color: transparent;
  border-right-color: transparent;
}
@media (max-width: 991px) {
  .road-map-main .road-map-wrapper:nth-of-type(even) .road-map-circle {
    border-color: #ec8951;
  }
}
.road-map-main .road-map-wrapper:nth-of-type(even) .road-map-card {
  left: 0;
}
.road-map-main .road-map-wrapper:nth-of-type(even) .road-map-card::before {
  right: -23%;
  left: unset;
}
@media (max-width: 991px) {
  .road-map-main .road-map-wrapper:nth-of-type(even) .road-map-card::before {
    content: "";
    width: 20px;
    height: 30%;
    top: 50%;
    transform: translateX(-50%);
    left: 50%;
  }
}
@media (max-width: 767px) {
  
  .about-section .image-column .image-2{
 display :none; 
}
.about-section .image-column .inner-column {
    position: relative;
    padding-left: 0px;
    padding-bottom: 50px;
}
 .about-section .image-column .image-1 img {
  
    width: 100%;
}
.about-section .image-column .inner-column:before {
    position: absolute;
    left: 0px;
    top: 67px;
    height: 300px;
    width: 300px;
    background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
    content: "";
}
.section-b-space {
    padding: 50px 0px;
}
.about-section .text {
   
    text-align: justify;

}
.category-rounded .category-block .category-image.svg-image {
    border-radius: 10px;
}
.category-block .category-image.svg-image {
    background-color: #fff;
}
.category-block .category-image {
   
    width: 150px;
    height: 150px;
   
}
.about-section .content-column .inner-column {
    position: relative;
    padding-left: 0px;
}
.about-section .sec-title {
    margin-bottom: 20px;
    text-align: center;
}
.main-menu .brand-logo .logo-1 {
    width: 55px;
    height: auto;
}
.main-menu .brand-logo .logo-2 {
    width: 80px;
    height: auto;
}
.about-section {
    position: relative;
    padding: 50px 0 0px;
}
.sec-title h2 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.28em;
    color: #222222;
    font-weight: 600;
    padding-bottom: 18px;
}
.sec-title h2:before {
    position: absolute;
    content: '';
    left: 42%;
    bottom: 0px;
    width: 50px;
    height: 3px;
    background-color: #d1d2d6;
    /* margin: auto; */
    /* display: flex
; */
}
.overlay-inner {
  
    padding: 20px;
   
}
.overlay-text h2 {
  font-size: 25px;
        line-height: 30px;
  
}
.cta {
  
    padding: 240px 0px;
}
    .small-section {
        padding: 50px 0;
    }
}
@media (max-width: 425px) {
  .road-map-main .road-map-wrapper:nth-of-type(even) .road-map-card::before {
    top: 45%;
    
    
  }
 
}
