@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color-orange: #36ed3f;
    --color-orange-hover: #57d760;
    --color-primary: #1abd0b;
    --color-primary2: #32c139;
    --color-red: #F24C3D;
    --font-text: 'Open Sans', sans-serif;
    --color-text: #777777;
    --color-success: #198754;
    --color-input: #66BB6A;
    --color-secondary: #423F3E;
    /* A2D2FF primary 1
    277BC0 primary 2
    #FF7F34 orange old
  */
    --yellow: #FFBD13;
    --blue: #4383FF;
    --blue-d-1: #3278FF;
    --light: #F5F5F5;
    --grey: #AAA;
    --white: #FFF;
    --shadow: 8px 8px 30px rgba(0, 0, 0, .05);
}

.price__product {
    color: var(--color-red);
}


/* Back top top */

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 999;
    cursor: pointer;
}

.btn-back {
    width: 45px;
    height: 45px;
    background: rgb(101, 206, 244);
    background: linear-gradient(129deg, rgba(101, 206, 244, 1) 16%, rgba(33, 129, 235, 1) 95%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: none;
}

.btn-back .arrow path {
    fill: white;
}

.btn-back .text {
    font-size: 0.7em;
    width: 100px;
    position: absolute;
    color: var(--color-orange);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -40px;
    opacity: 0;
    transition-duration: .7s;
}

.btn-back:hover .text {
    opacity: 1;
    transition-duration: .7s;
}

.btn-back:hover .arrow {
    animation: slide-in-bottom .7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-custom-pr {
    background-color: var(--color-orange) !important;
}


/* scroll bar */

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-orange);
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
}


/* spinner loading */

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background-color: #ffffff;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
    z-index: 999999;
}

.cssload-container * {
    box-sizing: border-box;
}

.cssload-container {
    margin: 38px auto 0 auto;
    max-width: 1048px;
}

.cssload-container ul li {
    list-style: none;
}

.cssload-flex-container {
    display: flex;
    display: -o-flex;
    display: -ms-flex;
    display: -webkit-flex;
    display: -moz-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.cssload-flex-container li {
    padding: 19px;
    height: 188px;
    width: 188px;
    margin: 56px 38px;
    position: relative;
    text-align: center;
}

.cssload-loading-center {
    display: inline-block;
    position: absolute;
    background-image: url("../img/logo_sn.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 56px;
    width: 56px;
    left: 68px;
    top: 69px;
    transform: rotate(0deg);
    border-radius: 6px;
    animation: pulse 1.3s ease infinite;
}

.cssload-loading {
    display: inline-block;
    position: relative;
    width: 141px;
    height: 141px;
    margin-top: 6px;
    transform: rotate(45deg);
}

.cssload-loading:after,
.cssload-loading:before {
    position: absolute;
    content: '';
    height: 19px;
    width: 19px;
    display: block;
    top: 0;
    background: var(--color-primary);
    border-radius: 6px;
}

.cssload-loading:after {
    right: 0;
    animation: square-tr 2.6s ease infinite;
    animation-delay: .162.5s;
}

.cssload-loading:before {
    animation: square-tl 2.6s ease infinite;
    animation-delay: .162.5s;
}

.cssload-loading.cssload-two {
    position: relative;
    top: -150px;
}

.cssload-loading.cssload-two:after,
.cssload-loading.cssload-two:before {
    bottom: 0;
    top: initial;
}

.cssload-loading.cssload-two:after {
    animation: square-br 2.6s ease infinite;
    animation-direction: reverse;
}

.cssload-loading.cssload-two:before {
    animation: square-bl 2.6s ease infinite;
    animation-direction: reverse;
}

@keyframes square-tl {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(0, 117.5px);
    }
    50% {
        transform: translate(117.5px, 117.5px);
    }
    75% {
        transform: translate(117.5px, 0);
    }
}

@keyframes square-bl {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(0, -117.5px);
    }
    50% {
        transform: translate(117.5px, -117.5px);
    }
    75% {
        transform: translate(117.5px, 0);
    }
}

@keyframes square-tr {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-117.5px, 0);
    }
    50% {
        transform: translate(-117.5px, 117.5px);
    }
    75% {
        transform: translate(0, 117.5px);
    }
}

@keyframes square-br {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-117.5px, 0);
    }
    50% {
        transform: translate(-117.5px, -117.5px);
    }
    75% {
        transform: translate(0, -117.5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(inherit) rotate(45deg);
    }
    75% {
        transform: scale(0.25) rotate(45deg);
    }
}


/*  */

.no-padding {
    padding: 0;
}

input.form-control::placeholder {
    font-size: 14px;
    font-family: inherit !important;
    font-weight: normal !important;
}

.section_gap {
    padding: 100px 0;
}

.checkout-page .form-select {
    font-size: 14px !important;
    font-weight: 400;
    font-family: inherit !important;
    font-weight: normal !important;
}

@media (max-width: 991px) {
    .section_gap {
        padding: 80px 0;
    }
}

.section_gap_top_75 {
    padding: 75px 0;
}

@media (max-width: 991px) {
    .section_gap_top_75 {
        padding: 70px 0;
    }
}

.section_gap_75 {
    padding: 75px 0;
}

@media (max-width: 991px) {
    .section_gap_75 {
        padding: 70px 0;
    }
}

.section_gap_top {
    padding-top: 100px;
}

@media (max-width: 991px) {
    .section_gap_top {
        padding-top: 80px;
    }
}

.section_gap_bottom {
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .section_gap_bottom {
        padding-bottom: 80px;
    }
}

.gray-bg {
    background: #f9f9ff;
}


/* Section title css
============================================================================================ */

.section-title {
    margin-bottom: 50px;
}

.section-title h1 {
    font-size: 36px;
}

.section-title p {
    margin-bottom: 0;
}


/* Start Gradient Area css
============================================================================================ */

.gradient-bg,
.primary-btn,
.add-bag .add-btn,
.single-product .product-details .prd-bottom .social-info span:after,
.grid-btn:hover,
.list-btn:hover,
.grid-btn.active,
.list-btn.active,
.pagination a.active,
.pagination a:hover,
.s_Product_carousel .owl-dots div.active,
.s_product_text .card_area .icon_btn:after,
.product_description_area .nav.nav-tabs li a.active,
.blog-pagination .page-item.active .page-link,
.single-footer-widget .click-btn {
    background: -webkit-linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
    background: -moz-linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
    background: -o-linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
    background: linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
}

.gradient-bg-reverse {
    background: -webkit-linear-gradient(270deg, var(--color-orange) 0%, #ff6c00 100%);
    background: -moz-linear-gradient(270deg, var(--color-orange) 0%, #ff6c00 100%);
    background: -o-linear-gradient(270deg, var(--color-orange) 0%, #ff6c00 100%);
    background: linear-gradient(270deg, var(--color-orange) 0%, #ff6c00 100%);
}

.gradient-color,
.s_product_text h2,
.s_product_text .list li a.active,
.product_description_area .tab-content .total_rate .box_total h4,
.single-footer-widget .bb-btn {
    background: -webkit-linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
    background: -moz-linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
    background: -o-linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
    background: linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Start primary btn css
============================================================================================ */

.primary-btn {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.primary-btn:before {
    position: absolute;
    left: -145px;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: #000;
    opacity: 0;
    -webkit-transform: skew(40deg);
    -moz-transform: skew(40deg);
    -ms-transform: skew(40deg);
    -o-transform: skew(40deg);
    transform: skew(40deg);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.primary-btn:hover {
    color: #fff;
}

.primary-btn:hover:before {
    left: 180px;
    opacity: .3;
}

body {
    line-height: 24px;
    font-size: 14px;
    font-family: var(--font-text);
    font-weight: 400;
    color: #777777;
    background: #fff;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-text);
    color: #222222;
    font-weight: 500;
    line-height: 1.2 !important;
}

.list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.overflow-hidden {
    overflow: hidden;
}

.sample-text-area {
    background: #fff;
    padding: 100px 0 70px 0;
}

.text-heading {
    margin-bottom: 30px;
    font-size: 24px;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5em;
}

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    color: #777777;
}

.button-area {
    background: #fff;
}

.button-area .border-top-generic {
    padding: 70px 15px;
    border-top: 1px dotted #eee;
}

.button-group-area .genric-btn {
    margin-right: 10px;
    margin-top: 10px;
}

.button-group-area .genric-btn:last-child {
    margin-right: 0;
}

.genric-btn {
    display: inline-block;
    outline: none;
    line-height: 40px;
    padding: 0 30px;
    font-size: .8em;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.genric-btn:focus {
    outline: none;
}

.genric-btn.e-large {
    padding: 0 40px;
    line-height: 50px;
}

.genric-btn.large {
    line-height: 45px;
}

.genric-btn.medium {
    line-height: 30px;
}

.genric-btn.small {
    line-height: 25px;
}

.genric-btn.radius {
    border-radius: 3px;
}

.genric-btn.circle {
    border-radius: 20px;
}

.genric-btn.arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.genric-btn.arrow span {
    margin-left: 10px;
}

.genric-btn.default {
    color: #222222;
    background: #f9f9ff;
    border: 1px solid transparent;
}

.genric-btn.default:hover {
    border: 1px solid #f9f9ff;
    background: #fff;
}

.genric-btn.default-border {
    border: 1px solid #f9f9ff;
    background: #fff;
}

.genric-btn.default-border:hover {
    color: #222222;
    background: #f9f9ff;
    border: 1px solid transparent;
}

.genric-btn.primary {
    color: #fff;
    background: var(--color-orange);
    border: 1px solid transparent;
}

.genric-btn.primary:hover {
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
    background: #fff;
}

.genric-btn.primary-border {
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
    background: #fff;
}

.genric-btn.primary-border:hover {
    color: #fff;
    background: var(--color-orange);
    border: 1px solid transparent;
}

.genric-btn.success {
    color: #fff;
    background: #4cd3e3;
    border: 1px solid transparent;
}

.genric-btn.success:hover {
    color: #4cd3e3;
    border: 1px solid #4cd3e3;
    background: #fff;
}

.genric-btn.success-border {
    color: #4cd3e3;
    border: 1px solid #4cd3e3;
    background: #fff;
}

.genric-btn.success-border:hover {
    color: #fff;
    background: #4cd3e3;
    border: 1px solid transparent;
}

.genric-btn.info {
    color: #fff;
    background: #38a4ff;
    border: 1px solid transparent;
}

.genric-btn.info:hover {
    color: #38a4ff;
    border: 1px solid #38a4ff;
    background: #fff;
}

.genric-btn.info-border {
    color: #38a4ff;
    border: 1px solid #38a4ff;
    background: #fff;
}

.genric-btn.info-border:hover {
    color: #fff;
    background: #38a4ff;
    border: 1px solid transparent;
}

.genric-btn.warning {
    color: #fff;
    background: #f4e700;
    border: 1px solid transparent;
}

.genric-btn.warning:hover {
    color: #f4e700;
    border: 1px solid #f4e700;
    background: #fff;
}

.genric-btn.warning-border {
    color: #f4e700;
    border: 1px solid #f4e700;
    background: #fff;
}

.genric-btn.warning-border:hover {
    color: #fff;
    background: #f4e700;
    border: 1px solid transparent;
}

.genric-btn.danger {
    color: #fff;
    background: #f44a40;
    border: 1px solid transparent;
}

.genric-btn.danger:hover {
    color: #f44a40;
    border: 1px solid #f44a40;
    background: #fff;
}

.genric-btn.danger-border {
    color: #f44a40;
    border: 1px solid #f44a40;
    background: #fff;
}

.genric-btn.danger-border:hover {
    color: #fff;
    background: #f44a40;
    border: 1px solid transparent;
}

.genric-btn.link {
    color: #222222;
    background: #f9f9ff;
    text-decoration: underline;
    border: 1px solid transparent;
}

.genric-btn.link:hover {
    color: #222222;
    border: 1px solid #f9f9ff;
    background: #fff;
}

.genric-btn.link-border {
    color: #222222;
    border: 1px solid #f9f9ff;
    background: #fff;
    text-decoration: underline;
}

.genric-btn.link-border:hover {
    color: #222222;
    background: #f9f9ff;
    border: 1px solid transparent;
}

.genric-btn.disable {
    color: #222222, 0.3;
    background: #f9f9ff;
    border: 1px solid transparent;
    cursor: not-allowed;
}

.generic-blockquote {
    padding: 30px 50px 30px 30px;
    background: #f9f9ff;
    border-left: 2px solid var(--color-orange);
}

.progress-table-wrap {
    overflow-x: scroll;
}

.progress-table {
    background: #f9f9ff;
    padding: 15px 0px 30px 0px;
    min-width: 800px;
}

.progress-table .serial {
    width: 11.83%;
    padding-left: 30px;
}

.progress-table .country {
    width: 28.07%;
}

.progress-table .visit {
    width: 19.74%;
}

.progress-table .percentage {
    width: 40.36%;
    padding-right: 50px;
}

.progress-table .table-head {
    display: flex;
}

.progress-table .table-head .serial,
.progress-table .table-head .country,
.progress-table .table-head .visit,
.progress-table .table-head .percentage {
    color: #222222;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 500;
}

.progress-table .table-row {
    padding: 15px 0;
    border-top: 1px solid #edf3fd;
    display: flex;
}

.progress-table .table-row .serial,
.progress-table .table-row .country,
.progress-table .table-row .visit,
.progress-table .table-row .percentage {
    display: flex;
    align-items: center;
}

.progress-table .table-row .country img {
    margin-right: 15px;
}

.progress-table .table-row .percentage .progress {
    width: 80%;
    border-radius: 0px;
    background: transparent;
}

.progress-table .table-row .percentage .progress .progress-bar {
    height: 5px;
    line-height: 5px;
}

.progress-table .table-row .percentage .progress .progress-bar.color-1 {
    background-color: #6382e6;
}

.progress-table .table-row .percentage .progress .progress-bar.color-2 {
    background-color: #e66686;
}

.progress-table .table-row .percentage .progress .progress-bar.color-3 {
    background-color: #f09359;
}

.progress-table .table-row .percentage .progress .progress-bar.color-4 {
    background-color: #73fbaf;
}

.progress-table .table-row .percentage .progress .progress-bar.color-5 {
    background-color: #73fbaf;
}

.progress-table .table-row .percentage .progress .progress-bar.color-6 {
    background-color: #6382e6;
}

.progress-table .table-row .percentage .progress .progress-bar.color-7 {
    background-color: #a367e7;
}

.progress-table .table-row .percentage .progress .progress-bar.color-8 {
    background-color: #e66686;
}

.single-gallery-image {
    margin-top: 30px;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    height: 200px;
}

.list-style {
    width: 14px;
    height: 14px;
}

.unordered-list li {
    position: relative;
    padding-left: 30px;
    line-height: 1.82em !important;
}

.unordered-list li:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid var(--color-orange);
    background: #fff;
    top: 4px;
    left: 0;
    border-radius: 50%;
}

.ordered-list {
    margin-left: 30px;
}

.ordered-list li {
    list-style-type: decimal-leading-zero;
    color: var(--color-orange);
    font-weight: 500;
    line-height: 1.82em !important;
}

.ordered-list li span {
    font-weight: 300;
    color: #777777;
}

.ordered-list-alpha li {
    margin-left: 30px;
    list-style-type: lower-alpha;
    color: var(--color-orange);
    font-weight: 500;
    line-height: 1.82em !important;
}

.ordered-list-alpha li span {
    font-weight: 300;
    color: #777777;
}

.ordered-list-roman li {
    margin-left: 30px;
    list-style-type: lower-roman;
    color: var(--color-orange);
    font-weight: 500;
    line-height: 1.82em !important;
}

.ordered-list-roman li span {
    font-weight: 300;
    color: #777777;
}

.single-input {
    display: block;
    width: 100%;
    line-height: 40px;
    border: none;
    outline: none;
    background: #f9f9ff;
    padding: 0 20px;
}

.single-input:focus {
    outline: none;
}

.input-group-icon {
    position: relative;
}

.input-group-icon .icon {
    position: absolute;
    left: 20px;
    top: 0;
    line-height: 40px;
    z-index: 3;
}

.input-group-icon .icon i {
    color: #797979;
}

.input-group-icon .single-input {
    padding-left: 45px;
}

.single-textarea {
    display: block;
    width: 100%;
    line-height: 40px;
    border: none;
    outline: none;
    background: #f9f9ff;
    padding: 0 20px;
    height: 100px;
    resize: none;
}

.single-textarea:focus {
    outline: none;
}

.single-input-primary {
    display: block;
    width: 100%;
    line-height: 40px;
    border: 1px solid transparent;
    outline: none;
    background: #f9f9ff;
    padding: 0 20px;
}

.single-input-primary:focus {
    outline: none;
    border: 1px solid var(--color-orange);
}

.single-input-accent {
    display: block;
    width: 100%;
    line-height: 40px;
    border: 1px solid transparent;
    outline: none;
    background: #f9f9ff;
    padding: 0 20px;
}

.single-input-accent:focus {
    outline: none;
    border: 1px solid #eb6b55;
}

.single-input-secondary {
    display: block;
    width: 100%;
    line-height: 40px;
    border: 1px solid transparent;
    outline: none;
    background: #f9f9ff;
    padding: 0 20px;
}

.single-input-secondary:focus {
    outline: none;
    border: 1px solid #f09359;
}

.default-switch {
    width: 35px;
    height: 17px;
    border-radius: 8.5px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.default-switch input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.default-switch input+label {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--color-orange);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.default-switch input:checked+label {
    left: 19px;
}

.primary-switch {
    width: 35px;
    height: 17px;
    border-radius: 8.5px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.primary-switch input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.primary-switch input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.primary-switch input+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 8.5px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.primary-switch input+label:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.primary-switch input:checked+label:after {
    left: 19px;
}

.primary-switch input:checked+label:before {
    background: var(--color-orange);
}

.confirm-switch {
    width: 35px;
    height: 17px;
    border-radius: 8.5px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.confirm-switch input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.confirm-switch input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.confirm-switch input+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 8.5px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
}

.confirm-switch input+label:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.confirm-switch input:checked+label:after {
    left: 19px;
}

.confirm-switch input:checked+label:before {
    background: #4cd3e3;
}

.primary-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.primary-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.primary-checkbox input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.primary-checkbox input:checked+label {
    background: url(../img/elements/primary-check.png) no-repeat center center/cover;
    border: none;
}

.confirm-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.confirm-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.confirm-checkbox input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.confirm-checkbox input:checked+label {
    background: url(../img/elements/success-check.png) no-repeat center center/cover;
    border: none;
}

.disabled-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.disabled-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.disabled-checkbox input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.disabled-checkbox input:disabled {
    cursor: not-allowed;
    z-index: 3;
}

.disabled-checkbox input:checked+label {
    background: url(../img/elements/disabled-check.png) no-repeat center center/cover;
    border: none;
}

.primary-radio {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.primary-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.primary-radio input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.primary-radio input:checked+label {
    background: url(../img/elements/primary-radio.png) no-repeat center center/cover;
    border: none;
}

.confirm-radio {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.confirm-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.confirm-radio input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.confirm-radio input:checked+label {
    background: url(../img/elements/success-radio.png) no-repeat center center/cover;
    border: none;
}

.disabled-radio {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.disabled-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.disabled-radio input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.disabled-radio input:disabled {
    cursor: not-allowed;
    z-index: 3;
}

.disabled-radio input:checked+label {
    background: url(../img/elements/disabled-radio.png) no-repeat center center/cover;
    border: none;
}

.default-select {
    height: 40px;
}

.default-select .nice-select {
    border: none;
    border-radius: 0px;
    height: 40px;
    background: #f9f9ff;
    padding-left: 20px;
    padding-right: 40px;
}

.default-select .nice-select .list {
    margin-top: 0;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    width: 100%;
    padding: 10px 0 10px 0px;
}

.default-select .nice-select .list .option {
    font-weight: 300;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 28px;
    min-height: 28px;
    font-size: 12px;
    padding-left: 20px;
}

.default-select .nice-select .list .option.selected {
    color: var(--color-orange);
    background: transparent;
}

.default-select .nice-select .list .option:hover {
    color: var(--color-orange);
    background: transparent;
}

.default-select .current {
    margin-right: 50px;
    font-weight: 300;
}

.default-select .nice-select::after {
    right: 20px;
}

.form-select .nice-select {
    border: none;
    border-radius: 0px;
    height: 40px;
    background: #f9f9ff;
    padding-left: 45px;
    padding-right: 40px;
    width: 100%;
}

.form-select .nice-select .list {
    margin-top: 0;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    width: 100%;
    padding: 10px 0 10px 0px;
}

.form-select .nice-select .list .option {
    font-weight: 300;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 28px;
    min-height: 28px;
    font-size: 12px;
    padding-left: 45px;
}

.form-select .nice-select .list .option.selected {
    color: var(--color-orange);
    background: transparent;
}

.form-select .nice-select .list .option:hover {
    color: var(--color-orange);
    background: transparent;
}

.form-select .current {
    margin-right: 50px;
    font-weight: 300;
}

.form-select .nice-select::after {
    right: 20px;
}

.sticky-wrapper {
    /* position: absolute;
  top: 40px; */
    width: 100%;
}

@media (max-width: 991px) {
    .sticky-wrapper {
        top: 0;
    }
}


/* banner area css
============================================================================================ */

.banner-area {
    background-size: cover;
    position: relative;
}

@media (max-width: 768px) {
    .banner-area .fullscreen {
        height: 650px !important;
    }
}

.banner-area .active-banner-slider .owl-nav {
    position: absolute;
    right: 0;
    bottom: -200px;
}

@media (max-width: 1920px) {
    .banner-area .active-banner-slider .owl-nav {
        right: -115px;
    }
}

@media (max-width: 1680px) {
    .banner-area .active-banner-slider .owl-nav {
        right: 0px;
    }
}

@media (max-width: 991px) {
    .banner-area .active-banner-slider .owl-nav {
        display: none;
    }
}

.banner-area .active-banner-slider .owl-nav .owl-prev,
.banner-area .active-banner-slider .owl-nav .owl-next {
    display: inline-block;
    margin: 10px;
    opacity: .5;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.banner-area .active-banner-slider .owl-nav .owl-prev:hover,
.banner-area .active-banner-slider .owl-nav .owl-next:hover {
    opacity: 1;
}

.banner-area .banner-content {
    padding-left: 10px;
}

@media (max-width: 991px) {
    .banner-area .banner-content {
        padding-left: 0;
    }
}

.banner-area .banner-content h1 {
    font-size: 60px;
    line-height: 66px;
    font-weight: 700;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .banner-area .banner-content h1 {
        font-size: 35px;
        line-height: 46px;
    }
}

.banner-area .banner-content p {
    margin: 0;
}

@media (max-width: 991px) {
    .banner-area .banner-img {
        display: none;
    }
}

.add-bag {
    margin-top: 30px;
}

.add-bag .add-btn {
    height: 50px;
    width: 50px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(255, 108, 0, 0.2);
}

.add-bag .add-btn span {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    color: #fff;
}

.add-bag .add-text {
    padding-left: 15px;
    font-size: 12px;
    font-family: var(--font-text);
    font-weight: 500;
    color: #222222;
}

.organic-breadcrumb {
    overflow: hidden;
    background: linear-gradient(rgba(140, 140, 145, 0.5), rgba(88, 85, 86, 0.8)), url("../img/banner/banner_organic.png");
    background-size: cover;
    background-position: center;
    height: 250px;
    /* background-repeat: no-repeat; */
}

@media (max-width: 767px) {
    .organic-breadcrumb {
        background: linear-gradient(rgba(126, 126, 131, 0.5), rgba(88, 85, 86, 0.8)), url("../img/banner/banner_organic.png");
        height: 160px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.container-menu-blog {
    width: 85%;
    margin: auto;
}

.menu-blog {
    width: 100%;
}

ul.menu-blog {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--color-primary);
    padding: 10px;
}

li.menu-blog-item {
    float: left;
}

li.menu-blog-item a {
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

li.menu-blog-item a:hover {
    background-color: var(--color-primary2);
}


/* Tạo hiệu ứng màu nền đổi màu khi di chuột qua */

li.menu-blog-item a.active {
    background-color: var(--color-orange);
    color: white;
}


/* Sử dụng Media Query để điều chỉnh kiểu dáng menu-blog khi màn hình nhỏ hơn 768px */

@media screen and (max-width: 768px) {
    ul.menu-blog {
        display: none;
        margin-top: 0;
    }
    ul.menu-blog.responsive {
        display: block;
    }
    li.menu-blog-item {
        float: none;
        width: 100%;
        text-align: center;
    }
    li.menu-blog-item:last-child {
        padding-top: 10px;
    }
}


/* Ẩn nút menu-blog khi màn hình rộng hơn 768px */

@media screen and (min-width: 769px) {
    div.menu-blog-button {
        display: none;
    }
}


/* CSS cho nút menu-blog */

div.menu-blog-button button {
    width: 100%;
    margin: auto;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 18px;
}


/* Style cho input search */

#search {
    border: none;
    padding: 5px;
    border-radius: 50px 0px 0px 50px;
    outline: none;
    /* Loại bỏ viền khi input được focus */
}


/* Style cho nút search */

.search-button {
    background-color: var(--color-orange);
    border: none;
    padding: 5px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
}


/* Style cho biểu tượng tìm kiếm */

.search-button i {
    color: white;
}

#category .organic-breadcrumb {
    margin-bottom: 50px;
}

.breadcrumb-banner {
    padding: 100px 80px 100px 0;
}

.breadcrumb-banner h1 {
    font-weight: 600;
    color: #fff;
    font-size: 30px;
}

@media (max-width: 767px) {
    .breadcrumb-banner {
        padding: 60px 0 100px 0;
    }
}

@media (max-width: 456px) {
    .breadcrumb-banner .col-first {
        padding-right: 0 !important;
    }
    .breadcrumb-banner h1 {
        font-size: 20px;
    }
    #item__blog {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .breadcrumb-banner nav a {
        font-size: 14px !important;
    }
}

.breadcrumb-banner p {
    margin-bottom: 0;
    color: #fff;
}

.breadcrumb-banner nav a {
    display: inline-block;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}

.banner-area .breadcrumb-banner nav li {
    font-size: 16px;
    list-style: none;
    color: #ececec;
    opacity: 0.7;
}

.breadcrumb-banner nav a span {
    display: inline-block;
    margin: 0 10px;
}

.breadcrumb-banner .col-first {
    padding-right: 15px;
}

@media (max-width: 1680px) {
    .breadcrumb-banner .col-first {
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-banner .col-first {
        width: 100%;
    }
}

@media screen and (max-width: 456px) {
    .banner-area .breadcrumb-banner nav li {
        font-size: 14px;
    }
    .breadcrumb-banner nav a span {
        margin: 0 6px;
    }
}

.p1-gradient-bg,
.details-tab-navigation .nav-link:hover,
.details-tab-navigation .nav-link.active,
.quick-view-carousel-details .owl-controls .owl-dots .owl-dot.active:after,
.organic-body .quick-view-carousel .owl-controls .owl-dots .owl-dot.active:after,
.organic-body .organic,
.organic-body .organic:hover,
.checkput-login .top-title,
.register-form,
.mini-cart-2a.mini-cart-1 .mini-border,
.mini-cart-2a.mini-cart-2 .mini-border,
.mini-cart-2a.mini-cart-3 .mini-border,
.mini-cart-2a.mini-cart-4 .mini-border,
.mini-cart.mini-cart-1 .mini-border,
.mini-cart.mini-cart-2 .mini-border,
.mini-cart.mini-cart-3 .mini-border,
.mini-cart.mini-cart-4 .mini-border,
.item-cart,
.submit-btn,
.submit-btn.color-1,
.submit-btn.color-2,
.submit-btn.color-3,
.submit-btn.color-4,
.view-btn.color-1:after,
.view-btn.color-2:after,
.view-btn.color-3:after,
.view-btn.color-4:after,
.organic-section-title-left .carousel-trigger .prev-trigger:after,
.organic-section-title-left .carousel-trigger .next-trigger:after,
.single-search-product:before,
.single-organic-product:after,
.single-organic-product .bottom,
.single-organic-product:hover .discount,
.single-furniture-product .bottom,
.single-furniture-product:hover .discount,
.single-sidebar-product:before,
.single-organic-product-list:after {
    background-image: -moz-linear-gradient(45deg, #f6463d 0%, #f6398d 45%, #f52cdc 100%);
    background-image: -webkit-linear-gradient(45deg, #f6463d 0%, #f6398d 45%, #f52cdc 100%);
    background-image: -ms-linear-gradient(45deg, #f6463d 0%, #f6398d 45%, #f52cdc 100%);
}

.p1-gradient-color,
.organic-body .quick-view-content .price span,
.organic-body .quick-view-content .category span,
.organic-body .quick-view-content .view-full,
.organic-product-top .single-product-top:hover .product-title,
.tab-navigation .nav-link:hover,
.tab-navigation .nav-link.active,
.mini-cart-2a.mini-cart-1 .middle h5 a:hover,
.mini-cart-2a.mini-cart-1 .cross span:hover,
.mini-cart-2a.mini-cart-2 .middle h5 a:hover,
.mini-cart-2a.mini-cart-2 .cross span:hover,
.mini-cart-2a.mini-cart-3 .middle h5 a:hover,
.mini-cart-2a.mini-cart-3 .cross span:hover,
.mini-cart-2a.mini-cart-4 .middle h5 a:hover,
.mini-cart-2a.mini-cart-4 .cross span:hover,
.mini-cart.mini-cart-1 .middle h5 a:hover,
.mini-cart.mini-cart-1 .cross span:hover,
.mini-cart.mini-cart-2 .middle h5 a:hover,
.mini-cart.mini-cart-2 .cross span:hover,
.mini-cart.mini-cart-3 .middle h5 a:hover,
.mini-cart.mini-cart-3 .cross span:hover,
.mini-cart.mini-cart-4 .middle h5 a:hover,
.mini-cart.mini-cart-4 .cross span:hover,
.single-search-product .desc .title:hover,
.single-sidebar-product .desc .title:hover {
    background: -moz-linear-gradient(45deg, #f6463d 0%, #f6398d 45%, #f52cdc 100%);
    background: -webkit-linear-gradient(45deg, #f6463d 0%, #f6398d 45%, #f52cdc 100%);
    background: -ms-linear-gradient(45deg, #f6463d 0%, #f6398d 45%, #f52cdc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* start features area css
============================================================================================ */

@media (max-width: 768px) {
    .features-area {
        padding-top: 0;
    }
}

.features-area .col-lg-3:last-child .single-features {
    border-right: 0;
}

@media (max-width: 575px) {
    .features-area .col-lg-3:last-child .single-features {
        margin-top: 30px;
    }
}

.features-area .col-lg-3:nth-child(3) .single-features,
.features-area .col-lg-3:nth-child(4) .single-features {
    margin-bottom: 0;
}

.features-inner {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
}

.single-features {
    border-right: 1px solid #eeeeee;
    margin: 20px 0;
}

.single-features:last-child {
    border-right: unset;
}

@media (max-width: 991px) {
    .single-features {
        border-right: none;
    }
}

.single-features .f-icon img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-features h6 {
    font-size: 16px;
    margin-bottom: 0;
}

.single-features p {
    margin-bottom: 0;
}

.single-features:hover .f-icon img {
    opacity: .5;
}


/* start features area css
============================================================================================ */


/* start category area css
============================================================================================ */

.single-deal {
    position: relative;
}

.single-deal .overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-deal .deal-details {
    position: absolute;
    left: 50%;
    top: 115%;
    display: inline-block;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-deal .deal-details h6 {
    color: #fff;
    text-transform: uppercase;
}

.single-deal:hover .overlay {
    opacity: .5;
    visibility: visible;
}

.single-deal:hover .deal-details {
    top: 50%;
    opacity: 1;
    visibility: visible;
}


/* end category area css
============================================================================================ */


/* start product area css
============================================================================================ */

.active-product-area {
    padding-top: 70px;
    padding-bottom: 50px;
}

.active-product-area .owl-nav div {
    position: absolute;
    left: 35%;
    top: 7%;
    opacity: .3;
}

@media (max-width: 1440px) {
    .active-product-area .owl-nav div {
        left: 30%;
    }
}

@media (max-width: 1200px) {
    .active-product-area .owl-nav div {
        left: 28%;
    }
}

@media (max-width: 991px) {
    .active-product-area .owl-nav div {
        top: 3%;
        left: 25%;
    }
}

@media (max-width: 870px) {
    .active-product-area .owl-nav div {
        left: 15%;
    }
}

@media (max-width: 767px) {
    .active-product-area .owl-nav div {
        left: 10%;
        top: 2%;
        margin-top: -25px;
    }
}

@media (max-width: 570px) {
    .active-product-area .owl-nav div {
        left: 37%;
        top: 1%;
        margin-top: -25px;
    }
}

@media (max-width: 480px) {
    .active-product-area .owl-nav div {
        margin-top: -20px;
        left: 28%;
    }
}

.active-product-area .owl-nav div:hover {
    opacity: 1;
}

.active-product-area .owl-nav .owl-next {
    left: auto;
    right: 35%;
}

@media (max-width: 1440px) {
    .active-product-area .owl-nav .owl-next {
        right: 30%;
    }
}

@media (max-width: 1200px) {
    .active-product-area .owl-nav .owl-next {
        right: 28%;
    }
}

@media (max-width: 991px) {
    .active-product-area .owl-nav .owl-next {
        top: 3%;
        right: 25%;
    }
}

@media (max-width: 870px) {
    .active-product-area .owl-nav .owl-next {
        right: 15%;
    }
}

@media (max-width: 767px) {
    .active-product-area .owl-nav .owl-next {
        right: 10%;
        top: 2%;
        margin-top: -25px;
    }
}

@media (max-width: 570px) {
    .active-product-area .owl-nav .owl-next {
        right: 37%;
        top: 1%;
        margin-top: -25px;
    }
}

@media (max-width: 480px) {
    .active-product-area .owl-nav .owl-next {
        margin-top: -20px;
        right: 28%;
    }
}

.single-product {
    margin-bottom: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.single-product #img_product {
    margin-bottom: 20px;
    width: 100%;
    height: auto !important;
    object-fit: cover;
    border: 1px solid #ececec;
}

.single-product .product-details h6 {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    transition: 0.3s;
}

.single-product .product-name-box {
    height: 45px !important;
}

.single-product .product-details .price h6 {
    font-size: 14px;
    padding-right: 15px;
    margin: 0;
}

.single-product .product-details .price .l-through {
    text-decoration: line-through;
    color: #cccccc;
    margin-bottom: 0;
}

.single-product .product-details .prd-bottom {
    position: relative;
}

.single-product .product-details h6.price__product {
    font-size: 11px;
}

.single-product .product-details .prd-bottom .btn-order {
    background-color: var(--color-orange);
    transition: .3s ease;
}

.single-product .product-details .prd-bottom button {
    border: none;
    border-radius: 5px;
    padding: 5px 50px 5px 50px;
    background-color: #E45F45;
    color: #fff;
}

.single-product .product-details .prd-bottom button:hover {
    background: -webkit-linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
    background: -moz-linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
    background: -o-linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
    background: linear-gradient(90deg, var(--color-orange) 0%, #ff6c00 100%);
}

.pro-detail__par {
    height: 400px;
}


/* end product area css
============================================================================================ */

.exclusive-deal-area {
    background: #f9f9ff;
}

.exclusive-deal-area .exclusive-left {
    position: relative;
    background: url(../img/avtshope.png) center no-repeat;
    background-size: cover;
    text-align: center;
    padding: 275px 0;
}

@media (max-width: 1024px) {
    .exclusive-deal-area .exclusive-left {
        padding: 175px 0;
    }
}

.exclusive-deal-area .exclusive-left:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    opacity: .5;
}

.exclusive-deal-area .exclusive-left .clock_sec {
    padding: 0 190px;
}

@media (max-width: 1680px) {
    .exclusive-deal-area .exclusive-left .clock_sec {
        padding: 0 135px;
    }
}

@media (max-width: 1440px) {
    .exclusive-deal-area .exclusive-left .clock_sec {
        padding: 0 75px;
    }
}

@media (max-width: 991px) {
    .exclusive-deal-area .exclusive-left .clock_sec {
        padding: 0 220px;
    }
}

@media (max-width: 767px) {
    .exclusive-deal-area .exclusive-left .clock_sec {
        padding: 0 130px;
    }
}

@media (max-width: 575px) {
    .exclusive-deal-area .exclusive-left .clock_sec {
        padding: 0 15px;
    }
}

.exclusive-deal-area .exclusive-left .clock_sec.row {
    margin-right: 0;
    margin-left: 0;
}

.exclusive-deal-area .exclusive-left .clock_sec h1 {
    font-size: 36px;
    color: #fff;
    margin: 0;
}

@media (max-width: 1380px) {
    .exclusive-deal-area .exclusive-left .clock_sec h1 {
        font-size: 30px;
    }
}

.exclusive-deal-area .exclusive-left .clock_sec p {
    color: #fff;
    margin-bottom: 30px;
}

.exclusive-deal-area .exclusive-left .clock_sec .clock-wrap {
    background: #fff;
    padding: 18px 0;
    border-radius: 5px;
}

.exclusive-deal-area .exclusive-left .clock_sec .clock-wrap .clockinner {
    color: #222222;
    border-right: 1px solid #eee;
}

.exclusive-deal-area .exclusive-left .clock_sec .clock-wrap .clockinner h1 {
    color: #222222;
    margin-bottom: 0;
}

.exclusive-deal-area .exclusive-left .primary-btn {
    margin-top: 40px;
}

.exclusive-deal-area .exclusive-right {
    text-align: center;
}

.exclusive-deal-area .exclusive-right .active-exclusive-product-slider {
    padding: 0 230px;
}

@media (max-width: 1440px) {
    .exclusive-deal-area .exclusive-right .active-exclusive-product-slider {
        padding: 0 130px;
    }
}

@media (max-width: 1380px) {
    .exclusive-deal-area .exclusive-right .active-exclusive-product-slider {
        padding: 0 168px;
    }
}

@media (max-width: 1024px) {
    .exclusive-deal-area .exclusive-right .active-exclusive-product-slider {
        padding: 0 80px;
    }
}

@media (max-width: 991px) {
    .exclusive-deal-area .exclusive-right .active-exclusive-product-slider {
        margin-top: 50px;
    }
    section.section-contact__bottom .contact-power {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575px) {
    .exclusive-deal-area .exclusive-right .active-exclusive-product-slider {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .exclusive-deal-area .exclusive-right .active-exclusive-product-slider .owl-nav {
        display: none;
    }
}

.exclusive-deal-area .exclusive-right .active-exclusive-product-slider .owl-nav div {
    position: absolute;
    left: 5%;
    top: 50%;
    opacity: .3;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.exclusive-deal-area .exclusive-right .active-exclusive-product-slider .owl-nav div:hover {
    opacity: 1;
}

.exclusive-deal-area .exclusive-right .active-exclusive-product-slider .owl-nav .owl-next {
    left: auto;
    right: 5%;
}

@media (max-width: 991px) {
    .exclusive-deal-area .exclusive-right .active-exclusive-product-slider .single-exclusive-slider {
        padding-bottom: 80px;
    }
    .exclusive-deal-area .exclusive-right .active-exclusive-product-slider .single-exclusive-slider img {
        max-width: 450px;
        margin: 0 auto;
    }
}

.exclusive-deal-area .exclusive-right .product-details h4 {
    font-size: 24px;
    text-transform: uppercase;
}

.exclusive-deal-area .exclusive-right .product-details .price h6 {
    font-size: 14px;
    display: inline-block;
    padding-right: 15px;
    margin-bottom: 15px;
}

.exclusive-deal-area .exclusive-right .product-details .price .l-through {
    text-decoration: line-through;
    color: #cccccc;
    margin-bottom: 0;
}

.exclusive-deal-area .exclusive-right .product-details .add-bag {
    margin: 30px 0;
}

.exclusive-deal-area .exclusive-right .product-details .add-bag .add-btn {
    height: 30px;
    width: 30px;
    line-height: 32px;
}

.exclusive-deal-area .exclusive-right .product-details .add-bag .add-btn span {
    transform: rotate(0deg);
}

@media (max-width: 767px) {
    .single-img {
        min-width: 50%;
    }
}

.single-img img {
    opacity: .2;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

@media (max-width: 800px) {
    .single-img img {
        margin-bottom: 40px;
    }
}

.single-img img:hover {
    opacity: .8;
}

.single-related-product {
    margin-bottom: 15px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-related-product .desc {
    margin: 10px 0px 10px 15px;
}

.single-related-product .price h6 {
    font-size: 14px;
    display: inline-block;
    padding-right: 10px;
    margin-bottom: 0px;
}

.single-related-product .price .l-through {
    text-decoration: line-through;
    color: #cccccc;
    margin-bottom: 0;
}

.single-related-product a {
    color: #222222;
    font-weight: bold;
    text-transform: uppercase;
}

.single-related-product:hover .desc a {
    color: var(--color-orange);
}

.single-related-product img.image-related {
    height: 70px;
    width: 70px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .ctg-right {
        display: none;
    }
}

.details-tab-navigation {
    background: #f9fafc;
}

.details-tab-navigation .nav-tabs {
    border: none;
}

.details-tab-navigation .nav-link {
    border: 1px solid #eee;
    background: #fff;
    color: #000;
    padding: 0 30px;
    line-height: 35px;
    margin: 10px 3px;
    border-radius: 0px;
}

.details-tab-navigation .nav-link:hover {
    color: #fff;
    border: 1px solid transparent;
}

.details-tab-navigation .nav-link.active {
    color: #fff;
    border: 1px solid transparent;
}


/* .description {
    padding: 30px;
    border: 1px solid #eee;
    border-top: 0px;
} */

.specification-table {
    padding: 30px;
    border: 1px solid #eee;
    border-top: 0px;
}

.specification-table .single-row {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.specification-table .single-row span {
    width: 50%;
}

.specification-table .single-row span:first-child {
    margin-left: 50px;
}

.specification-table .single-row:last-child {
    border-bottom: 0px;
}

.review-wrapper {
    padding: 30px;
    border: 1px solid #eee;
    border-top: 0px;
}

.review-overall {
    width: 235px;
    padding: 30px 0;
    border: 1px solid #eee;
    background: #f9fafc;
    text-align: center;
}

.review-overall h3 {
    font-weight: 500;
}

.review-overall .main-review {
    color: var(--color-orange);
    font-size: 48px;
    font-weight: 700;
    padding: 15px 0;
}

.review-count {
    margin-left: 30px;
}

.review-count h4 {
    margin-bottom: 5px;
}

.single-review-count .total-star {
    margin: 0 10px;
}

.total-star i {
    display: inline-block;
    margin: 0 1px;
    color: #cccccc;
}

.total-star.five-star i:nth-child(-n+5) {
    color: #fbd600;
}

.total-star.four-star i:nth-child(-n+4) {
    color: #fbd600;
}

.total-star.three-star i:nth-child(-n+3) {
    color: #fbd600;
}

.total-star.two-star i:nth-child(-n+2) {
    color: #fbd600;
}

.total-star.one-star i:nth-child(-n+1) {
    color: #fbd600;
}

.total-comment {
    margin-top: 30px;
}

.total-comment .single-comment .user-details img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

.total-comment .single-comment .user-details .user-name h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.total-comment .single-comment .user-comment {
    margin-top: 15px;
    margin-bottom: 30px;
}

.add-review h3 {
    margin-bottom: 20px;
}

.main-form {
    text-align: right;
}

.main-form .view-btn {
    border: 0px;
    cursor: pointer;
    margin-top: 10px;
}

.common-input {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    line-height: 40px;
    padding: 0 30px;
    margin-top: 10px;
}

.common-input:focus {
    outline: none;
}

.common-input.mt-20 {
    margin-top: 20px;
}

.common-textarea {
    display: block;
    width: 100%;
    height: 100px;
    border: 1px solid #eee;
    padding: 10px 30px;
    margin-top: 10px;
}

.common-textarea:focus {
    outline: none;
}

.reply-comment {
    margin-left: 30px;
}

.quick-view-carousel-details {
    position: relative;
}

.quick-view-carousel-details .item {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    height: 600px;
    display: block;
}

.quick-view-carousel-details .owl-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-left: 10px;
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot:nth-child(1) {
    background: url(../img/ob1.jpg);
    margin-left: 0;
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot:nth-child(2) {
    background: url(../img/ob2.jpg);
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot:nth-child(3) {
    background: url(../img/ob3.jpg);
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot.active {
    box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quick-view-carousel-details .owl-controls .owl-dots .owl-dot.active:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .8;
    left: 0;
    top: 0;
}

.organic-body .quick-view-carousel .owl-controls .owl-dots .owl-dot:nth-child(1) {
    background: url(../img/organic-food/ob1.jpg);
    margin-left: 0;
}

.organic-body .quick-view-carousel .owl-controls .owl-dots .owl-dot:nth-child(2) {
    background: url(../img/organic-food/ob2.jpg);
}

.organic-body .quick-view-carousel .owl-controls .owl-dots .owl-dot:nth-child(3) {
    background: url(../img/organic-food/ob3.jpg);
}

.organic-body .organic span {
    color: #fff;
}

.organic-product-top .single-product-top {
    height: 500px;
    padding: 40px;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.organic-product-top .single-product-top.middle {
    height: 235px;
}

.organic-product-top .single-product-top .product-title {
    position: relative;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 21px;
}

.tab-navigation .nav-tabs {
    border: none;
}

.tab-navigation .nav-link {
    border: none;
    background: #f9fafc;
    padding: 0 30px;
    line-height: 35px;
    margin: 10px 3px;
    border-radius: 3px;
}

.tab-navigation .nav-link:hover {
    box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
}

.tab-navigation .nav-link.active {
    box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
}

#filter-bar {
    margin-bottom: 30px;
}

label {
    margin-bottom: 0;
}

.view-btn {
    border-radius: 0px;
    box-shadow: none;
    border: 1px solid #eee;
    padding: 0 30px;
    cursor: pointer;
    min-width: 172px;
}

.view-btn.color-2:after {
    border-radius: 0;
}

.view-btn span {
    font-weight: 400;
}

.billing-form-page .common-input {
    padding: 0 15px;
}

.billing-form-page .common-textarea {
    padding: 10px 15px;
}

.billing-form-page .view-btn {
    border-radius: 0px;
    box-shadow: none;
    border: 1px solid #eee;
    padding: 0 30px;
    cursor: pointer;
    min-width: 172px;
}

.billing-form-page .view-btn.color-2:after {
    border-radius: 0;
}

.billing-form-page .view-btn span {
    font-weight: 400;
}

.checkput-login .top-title {
    padding: 10px 15px;
}

.checkput-login .top-title p {
    margin: 0;
    color: #fff;
}

.checkput-login .top-title p a {
    color: #fff;
    text-decoration: underline;
}

.checkout-login-collapse {
    padding: 20px;
}

.pixel-checkbox+label {
    margin-left: 10px;
}

.billing-title {
    border-bottom: 1px solid #ddd;
    line-height: 1.3em;
    padding-bottom: 10px;
}

.billing-title.pl-15 {
    padding-left: 15px;
}

.billing-form .common-input {
    margin-top: 20px;
}

.billing-form .sorting {
    margin-top: 20px;
    margin-right: 0;
}

.billing-form .sorting .nice-select {
    width: 100%;
}

.billing-form .sorting .nice-select .list {
    width: 100%;
}

.order-wrapper {
    background: #f9fafc;
    padding: 20px 15px;
}

.order-wrapper .list-row {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.order-wrapper .list-row h6 {
    text-transform: uppercase;
}

.order-wrapper .list-row .total {
    font-weight: 500;
    color: #222222;
}

.order-wrapper .bold-lable {
    font-weight: 700;
    text-transform: uppercase;
    color: #222222;
}

.order-wrapper .payment-info {
    margin-top: 20px;
    background: #f5f5f5;
    border-top: 1px solid #eee;
    padding: 15px;
}

.order-wrapper .terms-link {
    color: #43b253;
}

.order-wrapper .pixel-checkbox {
    margin-top: 5px;
}

.cart-title {
    padding-bottom: 15px;
}

.cart-single-item {
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.cart-single-item .product-item {
    margin-left: 15px;
}

.cart-single-item .product-item img {
    border-radius: 3px;
}

.cart-single-item .product-item h6 {
    color: #000;
    margin-left: 30px;
    font-weight: 400;
}

.cart-single-item .price,
.cart-single-item .total {
    font-size: 18px;
    font-weight: 500;
    color: #222222;
}

.cart-single-item .quantity-container .quantity-amount {
    color: #222222;
    font-weight: 500;
    font-size: 18px;
    border-radius: 20px 0 0 20px;
    width: 60px;
}

.cart-single-item .quantity-container .arrow-btn {
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    border-left: 1px solid #eee;
}

.cart-single-item .quantity-container .arrow-btn .arrow {
    padding-right: 15px;
}

.cupon-area {
    padding: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cupon-area .view-btn {
    box-shadow: none;
    border-radius: 0px;
    cursor: pointer;
    border: 1px solid #eee;
    padding: 0 30px;
}

.cupon-area .view-btn.color-2:after {
    border-radius: 0;
}

.cupon-area .view-btn span {
    font-weight: 400;
}

.cupon-area .cuppon-wrap .view-btn {
    border-radius: 0;
}

.cupon-area .cuppon-wrap .view-btn.color-2:after {
    border-radius: 0;
}

.cupon-area .cupon-code {
    display: none;
}

.cupon-area .cupon-code input {
    border: 1px solid #eee;
    line-height: 40px;
    padding: 0 15px;
    width: 200px;
    border-right: 0px;
    margin-right: -5px;
}

.cupon-area .cupon-code button {
    border-right: 0;
    cursor: pointer;
}

.cupon-area .cupon-code button:focus {
    outline: none;
}

.cupon-area .cupon-code .view-btn {
    border-radius: 0;
}

.cupon-area .cupon-code .view-btn:after {
    border-radius: 0;
}

.subtotal-area {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.subtotal-area .subtotal {
    margin-left: 200px;
    font-weight: 500;
    color: #222222;
    font-size: 18px;
}

.shipping-area {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.shipping-area .filter-list label {
    margin-right: 10px;
}

.shipping-area .calculate {
    margin-right: 43px;
}

.shipping-area .view-btn {
    border-radius: 0px;
    box-shadow: none;
    border: 1px solid #eee;
    padding: 0 30px;
    cursor: pointer;
    width: 172px;
}

.shipping-area .view-btn.color-2:after {
    border-radius: 0;
}

.shipping-area .view-btn span {
    font-weight: 400;
}

.shipping-area .sorting {
    margin-right: 0;
    width: 300px;
}

.shipping-area .sorting .nice-select {
    width: 100%;
}

.shipping-area .sorting .list {
    width: 100%;
}

.shipping-area .common-input {
    padding: 0 15px;
}

.quantity-container .quantity-amount {
    width: 50px;
    line-height: 36px;
    border: 1px solid #eeeeee;
    border-right: 0px;
    border-radius: 3px;
    margin-right: -3px;
    padding-left: 20px;
}

.quantity-container .arrow {
    height: 17px;
    padding-left: 15px;
    border: none;
    cursor: pointer;
    background: #fff;
}

.quantity-container .arrow:focus {
    outline: none;
}

.quantity-container .arrow span {
    font-size: 12px;
}

.quantity-container .arrow-btn {
    padding: 1px 0 3px 0;
    border: 1px solid #eeeeee;
    border-left: 0px;
    border-radius: 3px;
}

.order-rable {
    width: 100%;
    padding: 15px;
    display: block;
}

.order-rable tr td {
    width: 50%;
}

.order-rable tr td:last-child {
    color: #222222;
    font-weight: 500;
}

.login-form {
    padding: 30px;
    background: #f9fafc;
    height: 100%;
}

.login-form a:hover {
    color: #44b253;
}

.register-form {
    padding: 30px 30px 100px 30px;
}

.register-form .billing-title {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.register-form p {
    color: #fff;
}

.register-form .common-input {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
}

.register-form .common-input:focus {
    border: 1px solid white;
}

.register-form ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #fff;
    font-weight: 300;
}

.register-form :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
    opacity: 1;
    font-weight: 300;
}

.register-form ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
    opacity: 1;
    font-weight: 300;
}

.register-form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
    font-weight: 300;
}

.register-form ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
    font-weight: 300;
}

.order-tracking {
    padding: 30px;
    background: #f9fafc;
}

.tracking_form .primary-btn {
    border-radius: 0px;
    line-height: 38px;
    border: none;
}

.tracking_form .primary-btn:hover:before {
    left: 170px;
}

.load-product {
    display: none;
}

.cart-btn {
    display: inline-block;
    height: 40px;
    width: 174px;
    text-align: center;
    background: #fff;
    box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cart-btn span {
    color: #222222;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cart-btn .cart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.cart-btn .lnr-cart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin-top: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cart-btn:hover .cart {
    margin-top: -30px;
}

.cart-btn:hover .lnr-cart {
    margin-top: 0;
}

.mini-cart-2a {
    width: 290px;
    background: #fff;
    position: absolute;
    z-index: 3;
    top: 50px;
    right: 15px;
    display: none;
    z-index: 5;
}

.mini-cart-2a .mini-border {
    width: 100%;
    height: 1px;
}

.mini-cart-2a.showing {
    display: block;
}

.mini-cart-2a .total-amount {
    border-bottom: 1px dotted #eee;
    padding: 20px;
    background: #f9fafc;
}

.mini-cart-2a .total-amount .title span {
    color: #cccccc;
}

.mini-cart-2a .total-amount .amount {
    font-size: 24px;
    color: #222222;
}

.mini-cart-2a .single-cart-item {
    padding: 20px;
    border-bottom: 1px dotted #eee;
}

.mini-cart-2a .single-cart-item .middle {
    padding: 0 10px;
}

.mini-cart-2a .single-cart-item .middle h5 a {
    font-size: 14px;
    font-weight: 400;
    background: -webkit-linear-gradient(-180deg, #555555, #555555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mini-cart-2a .single-cart-item .middle h6 {
    font-weight: 700;
    margin-top: 5px;
}

.mini-cart-2a .single-cart-item .cross {
    cursor: pointer;
}

.mini-cart-2a .single-cart-item .cross span {
    background: -webkit-linear-gradient(-180deg, #777, #777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mini-cart-2a .proceed-btn {
    padding: 20px;
}

.mini-cart-2a .proceed-btn .view-btn {
    width: 100%;
    text-align: center;
}

.mini-cart-2a.mini-cart-4 {
    right: 0;
}

.mini-cart {
    width: 290px;
    background: #fff;
    position: absolute;
    z-index: 3;
    top: 50px;
    right: 15px;
    display: none;
    z-index: 5;
}

.mini-cart .mini-border {
    width: 100%;
    height: 1px;
}

.mini-cart.showing {
    display: block;
}

.mini-cart .total-amount {
    border-bottom: 1px dotted #eee;
    padding: 20px;
    background: #f9fafc;
}

.mini-cart .total-amount .title span {
    color: #cccccc;
}

.mini-cart .total-amount .amount {
    font-size: 24px;
    color: #222222;
}

.mini-cart .single-cart-item {
    padding: 20px;
    border-bottom: 1px dotted #eee;
}

.mini-cart .single-cart-item .middle {
    padding: 0 10px;
}

.mini-cart .single-cart-item .middle h5 a {
    font-size: 14px;
    font-weight: 400;
    background: -webkit-linear-gradient(-180deg, #555555, #555555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mini-cart .single-cart-item .middle h6 {
    font-weight: 700;
    margin-top: 5px;
}

.mini-cart .single-cart-item .cross {
    cursor: pointer;
}

.mini-cart .single-cart-item .cross span {
    background: -webkit-linear-gradient(-180deg, #777, #777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mini-cart .proceed-btn {
    padding: 20px;
}

.mini-cart .proceed-btn .view-btn {
    width: 100%;
    text-align: center;
}

.mini-cart.mini-cart-4 {
    right: 0;
}

.item-cart {
    display: inline-block;
    line-height: 40px;
    border-radius: 20px;
    text-transform: uppercase;
    width: 170px;
    text-align: center;
    font-weight: 700;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    color: #fff;
}

.item-cart:hover {
    color: #fff;
}

.submit-btn {
    display: inline-block;
    line-height: 42px;
    border-radius: 20px;
    text-transform: uppercase;
    padding: 0 40px;
    text-align: center;
    z-index: 4;
    color: #fff;
    transition: visibility 0s, opacity 0.5s linear;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

.view-btn {
    display: inline-block;
    line-height: 40px;
    padding: 0 40px;
    text-align: center;
    background: #fff;
    box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    position: relative;
}

.view-btn span {
    color: #222222;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.view-btn i {
    color: #222222;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.view-btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.view-btn.reply {
    padding: 0 30px;
    text-transform: capitalize;
    border-radius: 20px;
    margin-left: auto;
    box-shadow: none;
    border: 1px solid #eee;
}

.view-btn.reply span {
    font-weight: 300;
    margin-left: 10px;
}

.view-btn.reply:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.view-btn.reply:hover {
    border: 1px solid transparent;
}

.view-btn:hover:after {
    opacity: 1;
}

.view-btn:hover span {
    color: #fff;
}

.view-btn:hover i {
    color: #fff;
}

.furniture-section-title {
    margin-bottom: 30px;
    padding: 10px 0;
    border-bottom: 1px dotted #eeeeee;
}

.furniture-section-title h3 {
    font-size: 24px;
    font-weight: 500;
}

.jewellery-section-title img {
    margin-bottom: 10px;
}

.jewellery-section-title h3 {
    margin-bottom: 10px;
    position: relative;
}

.jewellery-section-title h3:before {
    position: absolute;
    content: "";
    width: 25%;
    height: 1px;
    background: #eeeeee;
    left: 0;
    bottom: 5px;
}

.jewellery-section-title h3:after {
    position: absolute;
    content: "";
    width: 25%;
    height: 1px;
    background: #eeeeee;
    right: 0;
    bottom: 5px;
}

.testimonial-section-title {
    padding-right: 50px;
}

.testimonial-section-title img {
    margin-bottom: 10px;
}

.testimonial-section-title h3 {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.testimonial-section-title h3:after {
    position: absolute;
    content: "";
    width: 200px;
    height: 1px;
    background: #eeeeee;
    left: 110%;
    bottom: 5px;
}

.organic-section-title {
    overflow: hidden;
}

.organic-section-title h3 {
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.organic-section-title h3:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 500px;
    background: url(../img/logo/title-line.png) repeat;
    top: 50%;
    right: 120%;
    transform: translateY(-50%);
}

.organic-section-title h3:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 500px;
    background: url(../img/logo/title-line.png) repeat;
    top: 50%;
    left: 120%;
    transform: translateY(-50%);
}

.organic-section-title-left {
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.organic-section-title-left h3 {
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-left: 50px;
}

.organic-section-title-left h3:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 200px;
    background: url(../img/logo/title-line.png) repeat;
    top: 50%;
    right: 107%;
    transform: translateY(-50%);
}

.organic-section-title-left h3:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 2000px;
    background: url(../img/logo/title-line.png) repeat;
    top: 50%;
    left: 107%;
    transform: translateY(-50%);
}

.organic-section-title-left .carousel-trigger {
    position: absolute;
    top: 50%;
    right: 50px;
    z-index: 2;
    padding: 7px 15px;
    background: #fff;
    transform: translateY(-50%);
}

.organic-section-title-left .carousel-trigger .prev-trigger {
    margin-right: 5px;
}

.organic-section-title-left .carousel-trigger .next-trigger {
    margin-left: 5px;
}

.organic-section-title-left .carousel-trigger .prev-trigger,
.organic-section-title-left .carousel-trigger .next-trigger {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 3;
    position: relative;
}

.organic-section-title-left .carousel-trigger .prev-trigger span,
.organic-section-title-left .carousel-trigger .next-trigger span {
    line-height: 40px;
    position: relative;
    z-index: 3;
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.organic-section-title-left .carousel-trigger .prev-trigger:after,
.organic-section-title-left .carousel-trigger .next-trigger:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.organic-section-title-left .carousel-trigger .prev-trigger:hover,
.organic-section-title-left .carousel-trigger .next-trigger:hover {
    box-shadow: none;
}

.organic-section-title-left .carousel-trigger .prev-trigger:hover:after,
.organic-section-title-left .carousel-trigger .next-trigger:hover:after {
    opacity: 1;
}

.organic-section-title-left .carousel-trigger .prev-trigger:hover span,
.organic-section-title-left .carousel-trigger .next-trigger:hover span {
    color: #fff;
}

.banner-discount {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transform: rotate(-25deg);
    position: absolute;
    background: url(../img/logo/discount-shape.svg) no-repeat center center/cover;
    z-index: 5;
}

.banner-discount .offer {
    margin-top: 7px;
    position: relative;
    color: #fff;
    z-index: 5;
}

.banner-discount .offer b {
    font-size: 24px;
    font-weight: 700;
}

.single-search-product {
    padding: 15px 0;
    position: relative;
}

.single-search-product img {
    max-width: 70px;
    height: auto;
}

.single-search-product .desc {
    margin-left: 15px;
    margin-top: 5px;
}

.single-search-product .desc .title {
    margin-bottom: 5px;
    display: inline-block;
    background: -webkit-linear-gradient(-180deg, #555555, #555555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-search-product .desc .price {
    font-weight: 700;
    color: #222222;
}

.single-search-product .desc .price span {
    font-weight: 700;
}

.single-search-product .desc .price del {
    font-size: 12px;
    color: #cccccc;
    font-weight: 400;
}

.single-search-product:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #eeeeee;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.single-search-product:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 1px;
    left: 0;
    bottom: 0;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.single-search-product:hover:before {
    width: 100%;
}

.single-organic-product {
    margin-top: 30px;
    padding: 30px 20px 0 20px;
    text-align: center;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.single-organic-product:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 0%;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.single-organic-product .price {
    margin-top: 10px;
    margin-bottom: 5px;
}

.single-organic-product .price del {
    font-size: 14px;
    color: #cccccc;
    font-weight: 400;
}

.single-organic-product .bottom {
    width: 160px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px 20px 0 0;
    transform: scaleY(0);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.single-organic-product .bottom a {
    display: inline-block;
    width: 25%;
    line-height: 40px;
}

.single-organic-product .bottom a span {
    color: #fff;
}

.single-organic-product .bottom a:hover {
    background: #fff;
}

.single-organic-product .bottom a:hover span {
    color: #222222;
}

.single-organic-product .text {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.single-organic-product .discount {
    width: 60px;
    line-height: 30px;
    border-radius: 3px;
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #222222;
    text-align: center;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 4;
    box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
}

.single-organic-product:hover {
    box-shadow: 0px 30px 40px 0px rgba(0, 0, 0, 0.1);
}

.single-organic-product:hover .bottom {
    transform: scaleY(1);
}

.single-organic-product:hover:after {
    width: 100%;
}

.single-organic-product:hover .text {
    opacity: 0;
}

.single-organic-product:hover .discount {
    color: #fff;
}

.single-furniture-product {
    margin-top: 30px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
}

.single-furniture-product .thumb {
    border: 15px solid #f9fafc;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: #f9fafc;
}

.single-furniture-product .desc {
    padding: 20px 15px 10px 15px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-furniture-product .desc p {
    margin-bottom: 10px;
}

.single-furniture-product .bottom {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-top: 20px;
    width: 160px;
    height: 40px;
    margin-right: auto;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.single-furniture-product .bottom a {
    display: inline-block;
    width: 25%;
    line-height: 40px;
    text-align: center;
}

.single-furniture-product .bottom a span {
    color: #fff;
}

.single-furniture-product .bottom a:hover {
    background: #fff;
    box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
}

.single-furniture-product .bottom a:hover span {
    color: #222222;
}

.single-furniture-product .discount {
    width: 60px;
    line-height: 30px;
    border-radius: 3px;
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #222222;
    text-align: center;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 4;
    box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
}

.single-furniture-product:hover {
    box-shadow: 2.828px 2.828px 25px 0px rgba(0, 0, 0, 0.1);
}

.single-furniture-product:hover .desc {
    padding: 5px 15px 25px 15px;
}

.single-furniture-product:hover .thumb {
    border: 15px solid #fff;
}

.single-furniture-product:hover .discount {
    color: #fff;
}

.jewellery-single-product {
    margin-top: 30px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.jewellery-single-product .top {
    padding: 40px 40px 0 40px;
    text-align: center;
}

.jewellery-single-product .desc {
    margin-top: 10px;
    text-align: center;
    padding-bottom: 40px;
}

.jewellery-single-product .desc h6 {
    font-family: var(--font-text);
    font-weight: 400;
    margin-bottom: 8px;
}

.jewellery-single-product .desc h5 {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-family: var(--font-text);
    font-weight: 700;
    margin-bottom: 8px;
}

.jewellery-single-product .desc h5 del {
    color: #cccccc;
    font-weight: 400;
    font-size: 12px;
}

.jewellery-single-product .desc .icon-group span {
    color: #6a12c9;
    padding: 0 2px;
}

.jewellery-single-product .bottom {
    background: #f9fafc;
}

.jewellery-single-product .bottom a {
    width: 40px;
    line-height: 40px;
    border-right: 1px solid #eee;
    text-align: center;
    color: #222222;
}

.jewellery-single-product .bottom a:last-child {
    border-right: 0px;
}

.jewellery-single-product .bottom a:hover {
    background: #fff;
}

.jewellery-single-product:hover {
    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.1);
}

.jewellery-single-product:hover h5 {
    color: #6f0fce;
}

.jewellery-single-product:hover h5 del {
    color: #cccccc;
}

.jewellery-single-product .discount {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
}

.jewellery-single-product .discount .st0 {
    fill: #fff;
}

.jewellery-single-product .discount .st1 {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #68489D;
    stroke-miterlimit: 10;
}

.jewellery-single-product .discount:hover .st0 {
    fill: #8421e1;
}

.jewellery-single-product .discount:hover .st1 {
    stroke: #fff;
}

.jewellery-single-product .discount span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.jewellery-single-product .discount:hover {
    color: #fff;
}

.single-small-banner {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    padding: 20px;
    width: 32.36%;
}

.single-small-banner:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 200px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(25deg);
    background: rgba(0, 0, 0, 0.05);
}

.single-small-banner:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 200px;
    left: 60px;
    top: 50%;
    transform: translateY(-50%) rotate(25deg);
    background: rgba(0, 0, 0, 0.05);
}

.single-small-banner.color-1 {
    background: #3fcaff;
}

.single-small-banner.color-2 {
    background: #ffcc00;
}

.single-small-banner.color-3 {
    background: #e10101;
}

.single-small-banner .desc {
    margin-left: 10px;
}

.single-small-banner .desc h5 {
    text-shadow: -4px 4px 1px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    margin-bottom: 3px;
}

.single-small-banner .desc p {
    margin: 0;
    text-shadow: -4px 4px 1px rgba(0, 0, 0, 0.15);
}

.single-sidebar-product {
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.single-sidebar-product img {
    max-width: 70px;
    height: auto;
}

.single-sidebar-product .desc {
    margin-left: 12px;
    margin-top: 5px;
}

.single-sidebar-product .desc .title {
    margin-bottom: 5px;
    display: inline-block;
    background: -webkit-linear-gradient(-180deg, #555555, #555555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-sidebar-product .desc .price {
    font-weight: 700;
    color: #222222;
}

.single-sidebar-product .desc .price span {
    font-weight: 700;
}

.single-sidebar-product .desc .price del {
    font-size: 12px;
    color: #cccccc;
    font-weight: 400;
}

.single-sidebar-product:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #eeeeee;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.single-sidebar-product:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 1px;
    left: 0;
    bottom: 0;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.single-sidebar-product:hover:before {
    width: 100%;
}

.single-sidebar-product .dot-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.single-sidebar-product .dot-bottom span {
    width: 3px;
    height: 1px;
    display: inline-block;
    background: transparent;
    position: relative;
    margin-left: 9px;
}

.single-sidebar-product .dot-bottom span:first-child {
    margin-left: 6px;
}

.single-sidebar-product .dot-bottom span:before {
    width: 3px;
    height: 1px;
    background: #fff;
    content: "";
    position: absolute;
    left: -3px;
    top: 0;
}

.single-sidebar-product .dot-bottom span:after {
    width: 3px;
    height: 1px;
    background: #fff;
    content: "";
    position: absolute;
    left: 3px;
    top: 0;
}

.jewellery-tab-area ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    height: 300px;
}

.jewellery-tab-area ul.tabs li {
    background: #f9fafc;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100px;
    border-bottom: 1px solid #fff;
}

.jewellery-tab-area ul.tabs li.current {
    background: #fff;
}

.jewellery-tab-area .tab-content {
    display: none;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.jewellery-tab-area .tab-content.current {
    display: inherit;
}

.jewellery-tab-area .first-tab-content {
    background: #f9fafc;
    position: relative;
    min-height: 300px;
}

.jewellery-tab-area .first-tab-content .text-btn {
    width: 55%;
    margin-left: 20px;
}

.jewellery-tab-area .first-tab-content .left-img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 150px;
    height: auto;
}

.jewellery-tab-area .first-tab-content .right-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.filter-bar {
    padding: 11px 20px;
    background: var(--color-primary2);
}

.filter-bar a,
.filter-bar i {
    color: #000;
}

#filter-bar .form-select {
    width: 160px;
}

select.form-select {
    font-size: 16px;
}

select.form-select:focus {
    box-shadow: unset !important;
    border-color: none !important;
}

.main-categories a {
    color: #000;
}

.main-categories a.active {
    color: var(--color-orange);
}

.grid-btn,
.list-btn {
    margin-top: 10px;
    width: 40px;
    line-height: 40px;
    border: 1px solid #eee;
    text-align: center;
    margin-right: 10px;
}

.grid-btn i,
.list-btn i {
    display: inline-block;
}

.grid-btn:hover i,
.list-btn:hover i {
    color: #fff;
}

.grid-btn.active i,
.list-btn.active i {
    color: #fff;
}

.sorting {
    margin-top: 10px;
    margin-right: 10px;
}

.sorting .nice-select {
    border-radius: 0px;
    border: 1px solid #eee;
    padding-right: 50px;
}

.sorting .nice-select:after {
    right: 18px;
}

.sorting .nice-select .list {
    border-radius: 0px;
}


/* CSS Paginate new */

.paginate .item-paginate {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F6F6F6;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    font-size: 1rem;
    transition: .3s;
}

.paginate .item-paginate:hover {
    color: var(--color-orange);
}

.paginate .item-paginate i.btn-left,
.paginate .item-paginate i.btn-right {
    font-size: 1.5rem;
}

.paginate .item-paginate.active {
    color: #fff;
    background-color: var(--color-orange);
}

.accordion-button:focus {
    box-shadow: unset !important;
}

@media screen and (max-width: 460px) {
    .paginate .item-paginate {
        width: 30px;
        height: 30px;
    }
}


/*  */

.pagination {
    margin-top: 10px;
    border-left: 1px solid #eee;
    border-radius: 0px;
}

.pagination a {
    width: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    background: #fff;
}

.pagination a.active {
    color: #fff;
}

.pagination a:hover {
    color: #fff;
}

.pagination .dot-dot {
    width: auto;
    background: transparent;
    border-top: 0px;
    border-bottom: 0px;
    color: #cccccc;
    padding: 0 5px;
}

.pagination .dot-dot:hover {
    background: transparent;
    border: 0px;
    border-right: 1px solid #eee;
    color: #cccccc;
}

.single-organic-product-list {
    padding: 30px 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-bottom: 1px solid #eee;
    position: relative;
}

.single-organic-product-list .product-thumb {
    position: relative;
    z-index: 2;
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    height: 100%;
    min-height: 190px;
    max-width: 400px;
}

.single-organic-product-list .product-details {
    position: relative;
    z-index: 2;
    padding: 10px 70px 10px 20px;
}

.single-organic-product-list .product-details h4 {
    margin-bottom: 10px;
    margin-top: 3px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-organic-product-list .product-details .rattings {
    margin-bottom: 20px;
}

.single-organic-product-list .product-details .rattings i {
    color: #fbd600;
    margin-right: 2px;
}

.single-organic-product-list .product-details .rattings span {
    margin-left: 5px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-organic-product-list .product-details .collect-info li {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-organic-product-list .product-details .collect-info li i {
    color: #44b253;
    margin-right: 10px;
}

.single-organic-product-list .price-wrap {
    position: relative;
    z-index: 2;
    padding: 10px 0;
}

.single-organic-product-list .price-wrap .avalability {
    margin-bottom: 0px;
    border-bottom: 1px solid #eee;
    padding-bottom: 3px;
}

.single-organic-product-list .price-wrap .avalability span {
    color: #44b253;
}

.single-organic-product-list .price-wrap .price {
    font-size: 24px;
    font-weight: 700;
    color: #222222;
    margin: 25px 0;
}

.single-organic-product-list .price-wrap .view-btn {
    width: 100%;
}

.single-organic-product-list .price-wrap .compare {
    margin-top: 20px;
}

.single-organic-product-list .price-wrap .compare p i {
    margin-right: 10px;
}

.single-organic-product-list:after {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    transform: scaleY(0);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    transform-origin: top;
    z-index: 1;
}

.single-organic-product-list:hover {
    padding: 30px;
}

.single-organic-product-list:hover:after {
    transform: scaleY(1);
}

.single-organic-product-list:hover .product-details span {
    color: #fff;
}

.single-product .product-details {
    padding-left: 0 !important;
}

.single-organic-product-list:hover .product-details p {
    color: #fff;
}

.single-organic-product-list:hover .product-details h4 {
    color: #fff;
}

.single-organic-product-list:hover .price-wrap .price {
    color: #fff;
}

.single-organic-product-list:hover .price-wrap .compare p {
    color: #fff;
}

.single-organic-product-list:hover .price-wrap .compare p i {
    color: #fff;
}

.sidebar-categories .head {
    line-height: 60px;
    background: var(--color-primary2);
    padding: 0 30px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.accordion-button::after {
    display: none;
}

.accordion-button .fa-chevron-down {
    position: absolute;
    right: 30px;
}

.accordion.open .fa-chevron-down {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-button[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
    transition: 0.5s ease;
}

.sidebar-categories .main-categories {
    padding: 0 20px;
    background: #fff;
    box-shadow: 0 10px 10px rgba(153, 153, 153, 0.1);
}

.sidebar-categories .main-nav-list a {
    font-size: 14px;
    display: block;
    line-height: 50px;
    padding-left: 10px;
}

.sidebar-categories .main-nav-list {
    border-bottom: 1px solid #eee;
}

.sidebar-categories .main-nav-list:last-child {
    border-bottom: unset;
}

.sidebar-categories .main-nav-list a:hover {
    color: var(--color-orange);
}

.sidebar-categories .main-nav-list a .number {
    color: #cccccc;
    margin-left: 10px;
}

.sidebar-categories .main-nav-list a .lnr {
    margin-right: 10px;
    display: none;
}

.sidebar-categories .main-nav-list.child a {
    padding-left: 32px;
}

.sidebar-filter {
    margin-top: 50px;
}

.sidebar-filter .top-filter-head {
    line-height: 60px;
    background: #D9D9D9;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.sidebar-filter .head {
    line-height: 60px;
    padding: 0 30px;
    font-size: 14px;
    font-weight: 700;
    color: #222222;
    text-transform: uppercase;
    margin-top: 5px;
}

.sidebar-filter .common-filter {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

.sidebar-filter .common-filter .filter-list {
    position: relative;
    padding-left: 28px;
}

.filter-list {
    line-height: 30px;
}

.filter-list i {
    margin-right: 10px;
    cursor: pointer;
}

.filter-list .number {
    color: #ccc;
}

.filter-list label {
    margin-bottom: 3px;
    cursor: pointer;
}

@-webkit-keyframes click-wave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.35;
        position: absolute;
        top: 50%;
        left: 50%;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
        top: 50%;
        left: 50%;
        position: absolute;
    }
}

@-moz-keyframes click-wave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.35;
        position: absolute;
        top: 50%;
        left: 50%;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
        top: 50%;
        left: 50%;
        position: absolute;
    }
}

@keyframes click-wave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.35;
        position: absolute;
        top: 50%;
        left: 50%;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
        top: 50%;
        left: 50%;
        position: absolute;
    }
}

.pixel-radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    background: #fff;
    border: 1px solid #eee;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
    outline: none;
    position: relative;
    z-index: 1;
}

.pixel-radio:checked {
    border: 7px solid var(--color-orange);
}

.pixel-radio:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: var(--color-orange);
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    opacity: 0;
}

.pixel-radio {
    border-radius: 50%;
    top: 6px;
}

.pixel-radio::after {
    border-radius: 50%;
}

.price-range-area {
    padding: 30px 30px 0 30px;
}

.price-range-area .noUi-target {
    background: #eee;
    border-radius: 0px;
    border: 0px;
    box-shadow: none;
}

.price-range-area .noUi-horizontal {
    height: 6px;
}

.price-range-area .noUi-connect {
    background: #eee;
    border-radius: 0px;
    box-shadow: none;
}

.price-range-area .noUi-horizontal .noUi-handle {
    width: 16px;
    height: 16px;
    left: -8px;
    top: -5px;
    border-radius: 50%;
    border: 0px;
    background: var(--color-orange);
    box-shadow: none;
    cursor: pointer;
    -webkit-transition: ease 0.1s;
    -moz-transition: ease 0.1s;
    -o-transition: ease 0.1s;
    transition: ease 0.1s;
}

.price-range-area .noUi-horizontal .noUi-handle:focus {
    outline: none;
}

.price-range-area .noUi-horizontal .noUi-handle:hover {
    border: 3px solid var(--color-orange);
    background: #fff;
}

.price-range-area .noUi-handle::after,
.price-range-area .noUi-handle::before {
    display: none;
}

.price-range-area .value-wrapper {
    margin-top: 20px;
    color: #cccccc;
}

.price-range-area .value-wrapper .to {
    margin: 0 5px;
}

.price-range-area .price {
    margin-right: 5px;
    color: #777777;
}


/* Feature Product Area css
============================================================================================ */

.feature_product_area .main_box {
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: -50px;
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.feature_product_area .hot_product_inner {
    margin-bottom: 100px;
}

.hot_p_item {
    position: relative;
}

.hot_p_item .product_text {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
}

.hot_p_item .product_text h4 {
    margin-top: 26px;
    margin-left: 26px;
    color: #222222;
    font-family: var(--font-text);
    font-weight: 500;
    font-size: 30px;
}

.hot_p_item .product_text a {
    position: absolute;
    left: 26px;
    bottom: 28px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.hot_p_item .product_text a:hover {
    color: var(--color-orange);
}

.feature_p_slider .owl-dots {
    text-align: center;
}

.feature_p_slider .owl-dots .owl-dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: #e4ecee;
    display: inline-block;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-top: 45px;
    margin-bottom: 30px;
}

.feature_p_slider .owl-dots .owl-dot:last-child {
    margin-right: 0px;
}

.feature_p_slider .owl-dots .owl-dot.active {
    width: 30px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 4px;
}

.f_p_item {
    text-align: center;
    margin-bottom: 35px;
}

.f_p_item .f_p_img {
    position: relative;
    overflow: hidden;
}

.f_p_item .f_p_img .p_icon {
    position: absolute;
    right: -45px;
    bottom: 30px;
    transition: all 300ms ease;
}

.f_p_item .f_p_img .p_icon a {
    display: block;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 3px;
    background: #fff;
    line-height: 40px;
    color: #222222;
    margin-bottom: 5px;
}

.f_p_item .f_p_img .p_icon a:last-child {
    margin-bottom: 0px;
}

.f_p_item .f_p_img .p_icon a:hover {
    color: #fff;
    background: var(--color-orange);
}

.f_p_item h4 {
    color: #222222;
    font-size: 16px;
    margin-top: 15px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.f_p_item h4:hover {
    color: var(--color-orange);
}

.f_p_item h5 {
    margin-bottom: 0px;
    font-size: 18px;
    color: #777777;
}

.f_p_item:hover .f_p_img .p_icon {
    right: 15px;
}

.latest_product_area .main_box {
    padding-top: 100px;
    padding-bottom: 100px;
}

.latest_product_inner {
    margin-bottom: -35px;
}


/* End Feature Product Area css
============================================================================================ */


/* End Feature Product Area css
============================================================================================ */

.most_product_area .main_box {
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: -50px;
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.most_product_inner {
    margin-bottom: -30px;
}

.most_p_list .media {
    margin-bottom: 30px;
}

.most_p_list .media .d-flex {
    padding-right: 20px;
}

.most_p_list .media .media-body {
    vertical-align: middle;
    align-self: center;
}

.most_p_list .media .media-body h4 {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: normal;
    color: #222222;
}

.most_p_list .media .media-body h3 {
    font-size: 16px;
    font-weight: 500;
    color: #777777;
    margin-bottom: 0px;
}


/* End Feature Product Area css
============================================================================================ */


/* Product Sidebar Area css
============================================================================================ */

.cat_product_area .latest_product_inner {
    padding-top: 30px;
    margin-bottom: -50px;
}

.cat_product_area .latest_product_inner .f_p_item {
    margin-bottom: 50px;
}

.left_widgets {
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0px 10px 10px 0px rgba(153, 153, 153, 0.1);
}

.left_widgets:last-child {
    margin-bottom: 0px;
}

.widgets_inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.l_w_title {
    background: #e8f0f2;
    padding-left: 30px;
}

.l_w_title h3 {
    margin-bottom: 0px;
    font-size: 14px;
    color: #222222;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 60px;
}

.cat_widgets .list li {
    margin-bottom: 13px;
}

.cat_widgets .list li a {
    font-size: 14px;
    font-family: var(--font-text);
    color: #222222;
}

.cat_widgets .list li .list {
    margin-top: 10px;
    padding-left: 35px;
    border-top: 1px solid #eeeeee;
    padding-top: 10px;
    display: none;
}

.p_filter_widgets .widgets_inner {
    border-bottom: 1px solid #eeeeee;
}

.p_filter_widgets .widgets_inner:last-child {
    border-bottom: 0px;
}

.p_filter_widgets h4 {
    color: #222222;
    font-size: 14px;
    font-family: var(--font-text);
    font-weight: normal;
    margin-bottom: 22px;
    margin-top: 10px;
}

.p_filter_widgets .list li {
    margin-bottom: 18px;
}

.p_filter_widgets .list li a {
    padding-left: 30px;
    font-size: 14px;
    font-family: var(--font-text);
    font-weight: normal;
    color: #777777;
    position: relative;
}

.p_filter_widgets .list li a:before {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 1px solid #777777;
    position: absolute;
    left: 0px;
    top: 5px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.p_filter_widgets .list li a:after {
    content: "";
    height: 4px;
    width: 4px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 8px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.p_filter_widgets .list li.active a:before,
.p_filter_widgets .list li:hover a:before {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

.p_filter_widgets .list li:last-child {
    margin-bottom: 0px;
}

.p_filter_widgets .range_item .ui-slider {
    height: 6px;
    border: none;
    background: #e8f0f2;
}

.p_filter_widgets .range_item .ui-slider .ui-slider-range {
    background: #e8f0f2;
}

.p_filter_widgets .range_item .ui-slider .ui-slider-handle {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: none;
    background: var(--color-orange);
    outline: none !important;
    box-shadow: none;
    top: -6px;
    cursor: pointer;
}

.p_filter_widgets .range_item label {
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    color: #777777;
    font-family: var(--font-text);
    margin-top: 15px;
}

.p_filter_widgets .range_item input {
    display: inline-block;
    border: none;
    width: 100px;
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
    margin-top: 9px;
    padding-left: 3px;
}

.p_filter_widgets .range_item input.placeholder {
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
}

.p_filter_widgets .range_item input:-moz-placeholder {
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
}

.p_filter_widgets .range_item input::-moz-placeholder {
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
}

.p_filter_widgets .range_item input::-webkit-input-placeholder {
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
}

.product_top_bar {
    background: #e8f0f2;
    clear: both;
    display: flex;
    padding: 10px 20px;
}

.product_top_bar .left_dorp .sorting {
    display: inline-block;
    clear: none;
    border: 1px solid #eeeeee;
    border-radius: 0px;
    height: 40px;
    width: 210px;
    padding-left: 20px;
}

.product_top_bar .left_dorp .sorting span {
    font-size: 14px;
    font-family: var(--font-text);
    color: #555555;
}

.product_top_bar .left_dorp .sorting .list {
    width: 100%;
    border-radius: 0px;
}

.product_top_bar .left_dorp .sorting .list li {
    font-size: 14px;
    font-family: var(--font-text);
    color: #555555;
}

.product_top_bar .left_dorp .sorting:after {
    content: "\f0d7";
    font: normal normal normal 14px/1 FontAwesome;
    transform: rotate(0);
    border: none;
    color: #555555;
    margin-top: -6px;
    right: 20px;
}

.product_top_bar .left_dorp .show {
    clear: none;
    display: inline-block;
    clear: none;
    border: 1px solid #eeeeee;
    border-radius: 0px;
    height: 40px;
    width: 120px;
    padding-left: 20px;
    margin-left: 10px;
}

.product_top_bar .left_dorp .show span {
    font-size: 14px;
    font-family: var(--font-text);
    color: #555555;
}

.product_top_bar .left_dorp .show .list {
    width: 100%;
    border-radius: 0px;
}

.product_top_bar .left_dorp .show .list li {
    font-size: 14px;
    font-family: var(--font-text);
    color: #555555;
}

.product_top_bar .left_dorp .show:after {
    content: "\f0d7";
    font: normal normal normal 14px/1 FontAwesome;
    transform: rotate(0);
    border: none;
    color: #555555;
    margin-top: -6px;
    right: 20px;
}

.cat_page .pagination {
    margin-bottom: 0px;
    border-radius: 0px;
}

.cat_page .pagination li a {
    height: 40px;
    width: 40px;
    border-radius: 0px;
    background: #fff;
    padding: 0px;
    text-align: center;
    line-height: 38px;
    border-color: #eeeeee;
    border-radius: 0px !important;
    font-size: 14px;
    color: #222222;
    font-weight: normal;
    font-family: var(--font-text);
}

.cat_page .pagination li.blank a {
    background: transparent;
    color: #cccccc;
    border: none;
}

.cat_page .pagination li:hover a,
.cat_page .pagination li.active a {
    background: var(--color-orange);
    color: #fff;
    border-color: var(--color-orange);
}

.most_p_withoutbox {
    padding-bottom: 120px;
}


/* End Product Sidebar Area css
============================================================================================ */


/* Single Product Area css
============================================================================================ */

.s_Product_carousel .owl-dots {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.s_Product_carousel .owl-dots div {
    height: 5px;
    width: 20px;
    background: #dddddd;
    margin: 5px;
    display: block;
    content: "";
    border-radius: 50px;
}

.s_Product_carousel .owl-dots div.active {
    width: 30px;
}

.s_product_text {
    margin-left: -15px;
    margin-top: 65px;
}

@media (max-width: 575px) {
    .s_product_text {
        margin-left: 0px;
    }
}

.s_product_text h3 {
    font-size: 24px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 10px;
}

.s_product_text h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.s_product_text .list li {
    margin-bottom: 5px;
}

.s_product_text .list li a {
    font-size: 14px;
    font-family: var(--font-text);
    font-weight: normal;
    color: #555555;
}

.s_product_text .list li a span {
    width: 90px;
    display: inline-block;
}

.s_product_text .list li a span:hover {
    color: #555;
}

.s_product_text .list li a.active span {
    color: #555;
    -webkit-text-fill-color: #555;
}

.s_product_text .list li:last-child {
    margin-bottom: 0px;
}

.s_product_text p {
    padding-top: 20px;
    border-top: 1px dotted #d5d5d5;
    margin-top: 20px;
    margin-bottom: 70px;
}

.s_product_text .card_area .primary-btn {
    line-height: 38px;
    padding: 0px 20px;
    text-transform: uppercase;
    margin-right: 10px;
    border-radius: 5px;
}

.s_product_text .card_area .icon_btn {
    position: relative;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: #828bb2;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-right: 10px;
    z-index: 1;
}

.s_product_text .card_area .icon_btn:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.s_product_text .card_area .icon_btn:hover:after {
    opacity: 1;
    visibility: visible;
}

.product_count {
    display: inline-block;
    position: relative;
    margin-bottom: 24px;
}

.product_count label {
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
    font-weight: normal;
    padding-right: 10px;
}

.product_count input {
    width: 76px;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    padding-left: 10px;
}

.product_count button {
    display: block;
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    position: absolute;
    right: 0px;
    font-size: 14px;
    color: #cccccc;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.product_count button:hover {
    color: #222222;
}

.product_count .increase {
    top: -4px;
}

.product_count .reduced {
    bottom: -8px;
}

.product_description_area {
    padding-bottom: 120px;
    margin-top: 60px;
}

.product_description_area .nav.nav-tabs {
    background: #e8f0f2;
    text-align: center;
    display: block;
    border: none;
    padding: 10px 0px;
}

.product_description_area .nav.nav-tabs li {
    display: inline-block;
    margin-right: 7px;
}

.product_description_area .nav.nav-tabs li:last-child {
    margin-right: 0px;
}

@media (max-width: 441px) {
    .product_description_area .nav.nav-tabs li:last-child {
        margin-top: 15px;
    }
}

.product_description_area .nav.nav-tabs li a {
    padding: 0px;
    border: none;
    line-height: 38px;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 0px;
    padding: 0px 30px;
    color: #222222;
    font-size: 13px;
    font-weight: normal;
}

@media (max-width: 570px) {
    .product_description_area .nav.nav-tabs li a {
        padding: 0 15px;
    }
}

.product_description_area .nav.nav-tabs li a.active {
    color: #fff;
    border: 1px solid transparent;
}

.product_description_area .tab-content {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 30px;
}

.product_description_area .tab-content .total_rate .box_total {
    background: #e8f0f2;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.product_description_area .tab-content .total_rate .box_total h4 {
    font-size: 48px;
    font-weight: bold;
}

.product_description_area .tab-content .total_rate .box_total h5 {
    color: #222222;
    margin-bottom: 0px;
    font-size: 24px;
}

.product_description_area .tab-content .total_rate .box_total h6 {
    color: #222222;
    margin-bottom: 0px;
    font-size: 14px;
    color: #777777;
    font-weight: normal;
}

.product_description_area .tab-content .total_rate .rating_list {
    margin-bottom: 30px;
}

.product_description_area .tab-content .total_rate .rating_list h3 {
    font-size: 18px;
    color: #222222;
    font-family: var(--font-text);
    font-weight: 500;
    margin-bottom: 10px;
}

.product_description_area .tab-content .total_rate .rating_list .list li a {
    font-size: 14px;
    color: #777777;
}

.product_description_area .tab-content .total_rate .rating_list .list li a i {
    color: #fbd600;
}

.product_description_area .tab-content .total_rate .rating_list .list li:nth-child a i:last-child {
    color: #eeeeee;
}

.product_description_area .tab-content .table {
    margin-bottom: 0px;
}

.product_description_area .tab-content .table tbody tr td {
    padding-left: 65px;
    padding-right: 65px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.product_description_area .tab-content .table tbody tr td h5 {
    font-size: 14px;
    font-family: var(--font-text);
    font-weight: normal;
    color: #777777;
    margin-bottom: 0px;
    white-space: nowrap;
}

.product_description_area .tab-content .table tbody tr:first-child td {
    border-top: 0px;
}

.review_item {
    margin-bottom: 15px;
}

.review_item:last-child {
    margin-bottom: 0px;
}

.review_item .media {
    position: relative;
}

.review_item .media .d-flex {
    padding-right: 15px;
}

.review_item .media .media-body {
    vertical-align: middle;
    align-self: center;
}

.review_item .media .media-body h4 {
    margin-bottom: 0px;
    font-size: 14px;
    color: #222222;
    font-family: var(--font-text);
    margin-bottom: 8px;
}

.review_item .media .media-body i {
    color: #fbd600;
}

.review_item .media .media-body h5 {
    font-size: 13px;
    font-weight: normal;
    color: #777777;
}

.review_item .media .media-body .reply_btn {
    border: 1px solid #e0e0e0;
    padding: 0px 28px;
    display: inline-block;
    line-height: 32px;
    border-radius: 16px;
    font-size: 14px;
    font-family: var(--font-text);
    color: #222222;
    position: absolute;
    right: 0px;
    top: 14px;
    @icnlude transition;
}

.review_item .media .media-body .reply_btn:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: #fff;
}

.review_item p {
    padding-top: 10px;
    margin-bottom: 0px;
}

.review_item.reply {
    padding-left: 28px;
}

.review_box h4 {
    font-size: 24px;
    color: #222222;
    margin-bottom: 20px;
}

.review_box p {
    margin-bottom: 0px;
    display: inline-block;
}

.review_box .list {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
}

.review_box .list li {
    display: inline-block;
}

.review_box .list li a {
    display: inline-block;
    color: #fbd600;
}

.review_box .contact_form {
    margin-top: 15px;
}

.review_box .primary-btn {
    line-height: 38px !important;
    padding: 0px 38px;
    text-transform: uppercase;
    margin-right: 10px;
    border-radius: 5px;
    border: none;
}


/* End Single Product Area css
============================================================================================ */


/* Cart Area css
============================================================================================ */

.cart_area {
    padding-top: 100px;
    padding-bottom: 100px;
}

.cart_inner .table thead tr th {
    border-top: 0px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-text);
    color: #777777;
    border-bottom: 0px !important;
}

.cart_inner .table tbody tr td {
    padding-top: 30px;
    padding-bottom: 30px;
    vertical-align: middle;
    align-self: center;
}

.cart_inner .table tbody tr td .media .d-flex {
    padding-right: 30px;
}

.cart_inner .table tbody tr td .media .d-flex img {
    border: 1px solid #eeeeee;
    border-radius: 3px;
}

.cart_inner .table tbody tr td .media .media-body {
    vertical-align: middle;
    align-self: center;
}

.cart_inner .table tbody tr td .media .media-body p {
    margin-bottom: 0px;
}

.cart_inner .table tbody tr td h5 {
    font-size: 14px;
    color: #222222;
    font-family: var(--font-text);
    margin-bottom: 0px;
}

.cart_inner .table tbody tr td .product_count {
    margin-bottom: 0px;
}

.cart_inner .table tbody tr td .product_count input {
    width: 100px;
    padding-left: 30px;
    height: 40px;
    outline: none;
    box-shadow: none;
}

.cart_inner .table tbody tr td .product_count .increase {
    top: -2px;
}

.cart_inner .table tbody tr td .product_count .increase:before {
    content: "";
    height: 40px;
    width: 1px;
    position: absolute;
    left: -3px;
    top: 0px;
    background: #eeeeee;
}

.cart_inner .table tbody tr td .product_count .increase:after {
    content: "";
    height: 1px;
    width: 30px;
    position: absolute;
    left: -3px;
    top: 22px;
    background: #eeeeee;
}

.cart_inner .table tbody tr td .product_count .reduced {
    bottom: -6px;
}

.cart_inner .table tbody tr.bottom_button .gray_btn {
    line-height: 38px;
    background: #e8f0f2;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    padding: 0px 40px;
    display: inline-block;
    color: #222222;
    text-transform: uppercase;
    font-weight: 500;
}

.cart_inner .table tbody tr.bottom_button td:last-child {
    width: 60px;
}

.cart_inner .table tbody tr.bottom_button td .cupon_text {
    margin-left: -446px;
}

.cart_inner .table tbody tr.bottom_button td .cupon_text input {
    width: 200px;
    padding: 0px 15px;
    border-radius: 3px;
    border: 1px solid #eeeeee;
    height: 40px;
    font-size: 14px;
    color: #cccccc;
    font-family: var(--font-text);
    font-weight: normal;
    margin-right: -3px;
    outline: none;
    box-shadow: none;
}

.cart_inner .table tbody tr.bottom_button td .cupon_text input.placeholder {
    font-size: 14px;
    color: #cccccc;
    font-family: var(--font-text);
    font-weight: normal;
}

.cart_inner .table tbody tr.bottom_button td .cupon_text input:-moz-placeholder {
    font-size: 14px;
    color: #cccccc;
    font-family: var(--font-text);
    font-weight: normal;
}

.cart_inner .table tbody tr.bottom_button td .cupon_text input::-moz-placeholder {
    font-size: 14px;
    color: #cccccc;
    font-family: var(--font-text);
    font-weight: normal;
}

.cart_inner .table tbody tr.bottom_button td .cupon_text input::-webkit-input-placeholder {
    font-size: 14px;
    color: #cccccc;
    font-family: var(--font-text);
    font-weight: normal;
}

.cart_inner .table tbody tr.bottom_button td .cupon_text .primary-btn {
    height: 40px;
    line-height: 38px;
    text-transform: uppercase;
    padding: 0px 38px;
    margin-right: -3px;
    border-radius: 0;
}

.cart_inner .table tbody tr.bottom_button td .cupon_text .gray_btn {
    padding: 0px 40px;
}

.cart_inner .table tbody tr.shipping_area td:nth-child(3) {
    vertical-align: top;
}

.cart_inner .table tbody tr.shipping_area .shipping_box {
    margin-left: -250px;
    text-align: right;
}

.cart_inner .table tbody tr.shipping_area .shipping_box .list li {
    margin-bottom: 12px;
}

.cart_inner .table tbody tr.shipping_area .shipping_box .list li:last-child {
    margin-bottom: 0px;
}

.cart_inner .table tbody tr.shipping_area .shipping_box .list li a {
    padding-right: 30px;
    font-size: 14px;
    color: #777777;
    position: relative;
}

.cart_inner .table tbody tr.shipping_area .shipping_box .list li a:before {
    content: "";
    height: 16px;
    width: 16px;
    border: 1px solid #cdcdcd;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.cart_inner .table tbody tr.shipping_area .shipping_box .list li a:after {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--color-orange);
    display: inline-block;
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.cart_inner .table tbody tr.shipping_area .shipping_box .list li.active a:after {
    opacity: 1;
}

.cart_inner .table tbody tr.shipping_area .shipping_box h6 {
    font-size: 14px;
    font-weight: normal;
    color: #222222;
    font-family: var(--font-text);
    margin-top: 20px;
    margin-bottom: 20px;
}

.cart_inner .table tbody tr.shipping_area .shipping_box h6 i {
    color: #777777;
    padding-left: 5px;
}

.cart_inner .table tbody tr.shipping_area .shipping_box .shipping_select {
    display: block;
    width: 100%;
    background: #e8f0f2;
    border: 1px solid #eeeeee;
    height: 40px;
    margin-bottom: 20px;
}

.cart_inner .table tbody tr.shipping_area .shipping_box .shipping_select .list {
    width: 100%;
    border-radius: 0px;
}

.cart_inner .table tbody tr.shipping_area .shipping_box .shipping_select .list li {
    font-size: 14px;
    font-weight: normal;
    color: #777777;
}

.cart_inner .table tbody tr.shipping_area .shipping_box input {
    height: 40px;
    outline: none;
    border: 1px solid #eeeeee;
    background: #e8f0f2;
    width: 100%;
    padding: 0px 15px;
    margin-bottom: 20px;
}

.cart_inner .table tbody tr.out_button_area .checkout_btn_inner {
    margin-left: -388px;
}

.cart_inner .table tbody tr.out_button_area .checkout_btn_inner .primary-btn {
    height: 40px;
    padding: 0px 30px;
    line-height: 38px;
    text-transform: uppercase;
    border-radius: 0;
}

.cart_inner .table tbody tr.out_button_area .checkout_btn_inner .primary-btn:hover:before {
    left: 240px;
}

.gray_btn {
    line-height: 38px;
    background: #e8f0f2;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    padding: 0px 40px;
    display: inline-block;
    color: #222222;
    text-transform: uppercase;
    font-weight: 500;
}

.cart_area {
    max-width: 90%;
    margin: 0 auto;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 2px 2px 10px #ccc;
    margin-top: 100px;
    padding-top: 50px;
    margin-bottom: 100px;
}

.cart_area .container {
    margin-top: 50px;
}

.sp-cart,
.thanhtoan {
    padding: 10px;
}

.sp-cart {
    margin-right: 10px;
    flex: 8;
    border-radius: 5px;
    padding: 20px;
}

.thanhtoan {
    flex: 4;
    border-radius: 5px;
    padding: 20px;
}

.product-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 20px;
}

.product-image {
    width: 100%;
    height: auto;
}

.product-details {
    flex-grow: 1;
    padding-left: 20px;
}

.product-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.product-price {
    color: #000;
    text-align: right;
    font-weight: bold;
}

.product-text {
    color: #000;
}

.checkout-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.discount-input::placeholder {
    padding: 10px;
}

.discount-input {
    text-align: center;
    height: 50px;
    border: 1px solid var(--color-orange);
    background-color: white;
    border-radius: 20px;
    width: 100%;
    margin: auto;
    padding: 5px;
    margin-top: 30px;
}

.discount-input:focus {
    outline: none;
}

.apply-discount-button {
    text-align: center;
    border: none;
    background-color: #000000;
    width: 100%;
    padding: 6px;
    color: #fff;
}

section.cart-order a.btn-checkout {
    text-align: center;
    border: none;
    padding: 6px;
    color: #fff;
    background-color: var(--color-orange) !important;
}

.checkout-button {
    text-align: center;
    height: 50px;
    border: none;
    background-color: var(--color-orange);
    border-radius: 20px;
    width: 100%;
    margin: auto;
    padding: 13px;
    color: #fff;
    margin-top: 30px;
}

.ic-product i {
    margin-right: 10px;
    color: var(--color-orange);
    font-size: 17px;
}

.ic-product {
    margin-top: 30px;
}

.order-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.order {
    margin-top: 50px;
}

@media (max-width: 800px) {
    .cart_area {
        padding: 0px;
    }
    .thanhtoan {
        padding: 0px;
        padding-bottom: 30px;
    }
    .thanhtoan h3 {
        margin-top: 30px;
        text-align: center;
    }
    .cart_area .container {
        flex-direction: column;
    }
    .sp-cart,
    .thanhtoan {
        width: 100%;
    }
}


/* End Cart Area css
============================================================================================ */


/* End Cart Area css
============================================================================================ */

.check_title h2 {
    font-size: 14px;
    font-weight: normal;
    font-family: var(--font-text);
    background: #e8f0f2;
    line-height: 40px !important;
    padding-left: 30px;
    margin-bottom: 0px;
}

.check_title h2 a {
    color: #c5322d;
    text-decoration: underline;
}

.returning_customer p {
    margin-top: 15px;
    padding-left: 30px;
    margin-bottom: 25px;
}

.returning_customer .contact_form {
    max-width: 710px;
    margin-left: 15px;
}

.returning_customer .contact_form .form-group {
    margin-bottom: 20px;
}

.returning_customer .contact_form .form-group input {
    border: 1px solid #eeeeee;
    height: 40px;
    border-radius: 3px;
    font-size: 14px;
    font-family: var(--font-text);
    color: #777777;
    font-weight: normal;
}

.returning_customer .contact_form .form-group input.placeholder {
    font-size: 14px;
    font-family: var(--font-text);
    color: #777777;
    font-weight: normal;
}

.returning_customer .contact_form .form-group input:-moz-placeholder {
    font-size: 14px;
    font-family: var(--font-text);
    color: #777777;
    font-weight: normal;
}

.returning_customer .contact_form .form-group input::-moz-placeholder {
    font-size: 14px;
    font-family: var(--font-text);
    color: #777777;
    font-weight: normal;
}

.returning_customer .contact_form .form-group input::-webkit-input-placeholder {
    font-size: 14px;
    font-family: var(--font-text);
    color: #777777;
    font-weight: normal;
}

.returning_customer .contact_form .form-group .primary-btn {
    line-height: 38px;
    padding: 0px 38px;
    text-transform: uppercase;
    margin-right: 10px;
    border-radius: 2px;
    border: none;
}

.returning_customer .contact_form .form-group .creat_account {
    display: inline-block;
    margin-left: 15px;
}

.returning_customer .contact_form .form-group .creat_account input {
    height: auto;
    margin-right: 10px;
}

.returning_customer .contact_form .form-group .lost_pass {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    font-family: var(--font-text);
    color: #777777;
    font-weight: normal;
}

.p_star {
    display: inline-block;
    position: relative;
}

.p_star input {
    background: #fff;
}

.p_star input:focus+.placeholder {
    display: none;
}

.p_star .placeholder {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    z-index: 1;
}

.p_star .placeholder::before {
    content: attr(data-placeholder);
    color: #777;
}

.p_star .placeholder::after {
    content: " *";
    color: tomato;
}

.cupon_area {
    margin-bottom: 40px;
}

.cupon_area input {
    margin-left: 30px;
    max-width: 730px;
    width: 100%;
    display: block;
    height: 40px;
    border-radius: 3px;
    padding: 0px 15px;
    border: 1px solid #eeeeee;
    outline: none;
    box-shadow: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cupon_area .tp_btn {
    margin-left: 30px;
}

.tp_btn {
    border: 1px solid #eeeeee;
    display: inline-block;
    line-height: 38px;
    padding: 0px 40px;
    color: #222222;
    text-transform: uppercase;
    font-family: var(--font-text);
    font-weight: 500;
    border-radius: 3px;
}

.tp_btn:hover {
    background: var(--color-orange);
    color: #fff;
    border-color: var(--color-orange);
}

.billing_details h3 {
    font-size: 18px;
    color: #222222;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.billing_details .contact_form .form-group {
    margin-bottom: 20px;
}

.billing_details .contact_form .form-group input {
    border-radius: 3px;
    color: #777777;
}

.billing_details .contact_form .form-group input.placeholder {
    color: #777777;
}

.billing_details .contact_form .form-group input:-moz-placeholder {
    color: #777777;
}

.billing_details .contact_form .form-group input::-moz-placeholder {
    color: #777777;
}

.billing_details .contact_form .form-group input::-webkit-input-placeholder {
    color: #777777;
}

.billing_details .contact_form .form-group textarea {
    height: 150px;
    border-radius: 3px;
    margin-top: 15px;
}

.billing_details .contact_form .form-group .country_select {
    width: 100%;
}

.billing_details .contact_form .form-group .country_select span {
    color: #777777;
}

.billing_details .contact_form .form-group .country_select .list {
    width: 100%;
    border-radius: 0px;
}

.billing_details .contact_form .form-group .country_select .list li {
    font-size: 14px;
    font-family: var(--font-text);
    font-weight: normal;
}

.billing_details .contact_form .form-group .creat_account #f-option2 {
    margin-right: 5px;
}

.billing_details .contact_form .form-group .creat_account #f-option3 {
    margin-right: 5px;
}

.billing_details .contact_form .form-group .creat_account a {
    color: var(--color-orange);
}

.order_box {
    background: #e5ecee;
    padding: 30px;
}

.order_box h2 {
    border-bottom: 1px solid #dddddd;
    font-size: 18px;
    font-weight: 500;
    color: #222222;
    padding-bottom: 15px;
}

.order_box .list li a {
    font-size: 14px;
    color: #777777;
    font-weight: normal;
    border-bottom: 1px solid #eeeeee;
    display: block;
    line-height: 42px;
}

.order_box .list li a span {
    float: right;
}

.order_box .list li a .middle {
    float: none;
    width: 50px;
    text-align: right;
    display: inline-block;
    margin-left: 30px;
    color: #222222;
}

.order_box .list li:nth-child(4) a .middle {
    margin-left: 48px;
}

.order_box .list_2 li a {
    text-transform: uppercase;
    color: #222222;
    font-weight: 500;
}

.order_box .list_2 li a span {
    color: #777777;
    text-transform: capitalize;
}

.order_box .list_2 li:last-child a span {
    color: #222222;
}

.order_box .payment_item h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #222222;
    font-weight: 500;
    padding-left: 22px;
    position: relative;
    margin-bottom: 15px;
    margin-top: 15px;
}

.order_box .payment_item h4:before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #cdcdcd;
    background: #fff;
    display: block;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.order_box .payment_item h4:after {
    content: "";
    height: 4px;
    width: 4px;
    background: #fff;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 5px;
    top: 8px;
}

.order_box .payment_item h4 img {
    padding-left: 60px;
}

.order_box .payment_item p {
    background: #fff;
    padding: 20px;
}

.order_box .payment_item.active h4:before {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

.order_box .creat_account {
    margin-bottom: 15px;
}

.order_box .creat_account label {
    padding-left: 10px;
    font-size: 12px;
    color: #222222;
}

.order_box .creat_account a {
    color: #c5322d;
}

.order_box .primary-btn {
    display: block;
    line-height: 38px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 2px;
}

.order_box .primary-btn:hover:before {
    left: 310px;
}

.order_details .title_confirmation {
    text-align: center;
    color: #28d500;
    font-size: 18px;
    margin-bottom: 80px;
}

.order_d_inner .details_item h4 {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    font-size: 18px;
    color: #222222;
    padding-left: 18px;
}

.order_d_inner .details_item .list {
    padding-left: 18px;
}

@media (min-width: 767px) {
    .order_d_inner .details_item .list {
        margin-bottom: 30px;
    }
}

.order_d_inner .details_item .list li {
    margin-bottom: 8px;
}

.order_d_inner .details_item .list li:last-child {
    margin-bottom: 0px;
}

.order_d_inner .details_item .list li a {
    font-size: 14px;
    color: #222222;
    font-family: var(--font-text);
}

.order_d_inner .details_item .list li a span {
    width: 145px;
    display: inline-block;
    color: #777777;
}

.order_details_table {
    background: #e5ecee;
    padding: 30px;
    margin-top: 75px;
}

@media (min-width: 767px) {
    .order_details_table {
        margin-top: 45px;
    }
}

.order_details_table h2 {
    color: #222222;
    font-size: 18px;
    padding-bottom: 15px;
}

.order_details_table .table {
    margin-bottom: 0px;
}

.order_details_table .table thead tr th {
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-family: var(--font-text);
    font-weight: normal;
}

.order_details_table .table tbody tr td p {
    margin-bottom: 0px;
}

.order_details_table .table tbody tr td h5 {
    color: #222222;
    margin-bottom: 0px;
}

.order_details_table .table tbody tr td h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0px;
    color: #222222;
}

.order_details_table .table tbody tr:last-child td {
    border-top: 1px solid #ddd;
}

.order_details_table .table tbody tr:last-child td p {
    color: #222222;
}


/* End Cart Area css
============================================================================================ */


/* Login form Area css
============================================================================================ */

.login_box_area .login_box_img {
    margin-right: -30px;
    position: relative;
}

.login_box_area .login_box_img img {
    width: 100%;
}

.login_box_area .login_box_img:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: #000;
    opacity: .5;
}

.login_box_area .login_box_img .hover {
    position: absolute;
    top: 50%;
    left: 0px;
    text-align: center;
    width: 100%;
    transform: translateY(-50%);
}

.login_box_area .login_box_img .hover h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.login_box_area .login_box_img .hover p {
    max-width: 380px;
    margin: 0px auto 25px;
    color: #fff;
}

.login_box_area .login_box_img .hover .primary-btn {
    border-radius: 0px;
    line-height: 38px;
    text-transform: uppercase;
}

.login_box_area .login_box_img .hover .primary-btn:hover:before {
    left: 260px;
}

.hoac {
    display: flex;
    align-items: center;
    width: 100%;
    margin: auto;
}

.google-button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.google-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.google-text {
    font-size: 16px;
    color: #333;
}

.google-button:hover {
    background-color: #f0f0f0;
}

.fb-button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #0000AA;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fb-logo {
    width: 25px;
    height: 20px;
    margin-right: 10px;
}

.fb-text {
    font-size: 16px;
    color: #fff;
}

.fb-button:hover {
    background-color: #000077;
}

.line {
    flex-grow: 1;
    width: 100%;
    border-top: 1px solid black;
}

.login_form_inner {
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
    height: 100%;
    text-align: center;
    padding-top: 20px;
}

.login_form_inner h3 {
    margin-top: 30px;
    color: #222222;
    text-align: left;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 30px;
}

.login_form_inner .login_form {
    max-width: 385px;
    margin: auto;
}

.login_form_inner.reg_form {
    padding-top: 60px;
}

.login_form_inner.reg_form h3 {
    margin-bottom: 70px;
}

.login_form .form-group input {
    height: 54px;
    border: none;
    border-bottom: 1px solid #cccccc;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
}

.login_form .form-group .creat_account {
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.login_form .form-group .creat_account input {
    height: auto;
    margin-right: 10px;
}

.login_form .form-group .primary-btn {
    display: block;
    border-radius: 0px;
    line-height: 38px;
    width: 100%;
    text-transform: uppercase;
    border: none;
}

.login_form .form-group .primary-btn:hover:before {
    left: 370px;
}

.login_form .form-group a {
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
    margin-top: 20px;
    display: block;
}


/* End Login form Area css
============================================================================================ */


/* Tracking Form Area css
============================================================================================ */

.tracking_box_area .tracking_box_inner p {
    max-width: 870px;
    color: #222222;
    margin-bottom: 25px;
}

.tracking_box_area .tracking_box_inner .tracking_form {
    max-width: 645px;
}

.tracking_box_area .tracking_box_inner .tracking_form .form-group input {
    height: 40px;
    border: 1px solid #eee;
    padding: 0px 15px;
    outline: none;
    box-shadow: none;
    border-radius: 0px;
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
    font-weight: normal;
}

.tracking_box_area .tracking_box_inner .tracking_form .form-group input.placeholder {
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
    font-weight: normal;
}

.tracking_box_area .tracking_box_inner .tracking_form .form-group input:-moz-placeholder {
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
    font-weight: normal;
}

.tracking_box_area .tracking_box_inner .tracking_form .form-group input::-moz-placeholder {
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
    font-weight: normal;
}

.tracking_box_area .tracking_box_inner .tracking_form .form-group input::-webkit-input-placeholder {
    font-size: 14px;
    color: #777777;
    font-family: var(--font-text);
    font-weight: normal;
}

.tracking_box_area .tracking_box_inner .tracking_form .form-group:last-child {
    margin-bottom: 0px;
}

.tracking_box_area .tracking_box_inner .tracking_form .form-group .submit_btn {
    text-transform: uppercase;
}


/* End Tracking Form Area css
============================================================================================ */

.radion_btn input[type=radio] {
    position: absolute;
    visibility: hidden;
}

.radion_btn {
    position: relative;
    margin-top: 10px;
    margin-bottom: 15px;
}

.radion_btn img {
    position: absolute;
    right: 40px;
    top: 0px;
}

.radion_btn label {
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 1.35em;
    padding: 0px 25px 21px 25px;
    height: 14px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    font-family: var(--font-text);
    font-weight: 500;
    color: #222222;
    font-size: 13px;
    letter-spacing: .25px;
    text-transform: uppercase;
}

.radion_btn .check {
    display: block;
    position: absolute;
    border: 1px solid #cdcdcd;
    border-radius: 100%;
    height: 14px;
    width: 14px;
    top: 5px;
    left: 0px;
    background: #fff;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

.radion_btn .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 4px;
    width: 4px;
    top: 4px;
    left: 4px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

.radion_btn input[type=radio]:checked~.check {
    border: 1px solid var(--color-orange);
    background: var(--color-orange);
}

.radion_btn input[type=radio]:checked~.check::before {
    background: #fff;
}

.radion_btn input[type=radio]:checked~label {
    color: #000;
}


/* Latest Blog Area css
============================================================================================ */

.l_blog_item .l_blog_text .date {
    margin-top: 24px;
    margin-bottom: 15px;
}

.l_blog_item .l_blog_text .date a {
    color: #777777;
    font-size: 12px;
}

.l_blog_item .l_blog_text h4 {
    font-size: 18px;
    color: #222222;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 0px;
    padding-bottom: 20px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.l_blog_item .l_blog_text h4:hover {
    color: #c5322d;
}

.l_blog_item .l_blog_text p {
    margin-bottom: 0px;
    padding-top: 20px;
}


/* End Latest Blog Area css
============================================================================================ */


/* Causes Area css
============================================================================================ */

.causes_slider .owl-dots {
    text-align: center;
    margin-top: 80px;
}

.causes_slider .owl-dots .owl-dot {
    height: 14px;
    width: 14px;
    background: #eeeeee;
    display: inline-block;
    margin-right: 7px;
}

.causes_slider .owl-dots .owl-dot:last-child {
    margin-right: 0px;
}

.causes_slider .owl-dots .owl-dot.active {
    background: #c5322d;
}

.causes_item {
    background: #fff;
}

.causes_item .causes_img {
    position: relative;
}

.causes_item .causes_img .c_parcent {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
}

.causes_item .causes_img .c_parcent span {
    width: 70%;
    height: 3px;
    background: #c5322d;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.causes_item .causes_img .c_parcent span:before {
    content: "75%";
    position: absolute;
    right: -10px;
    bottom: 0px;
    background: #c5322d;
    color: #fff;
    padding: 0px 5px;
}

.causes_item .causes_text {
    padding: 30px 35px 40px 30px;
}

.causes_item .causes_text h4 {
    color: #222222;
    font-family: var(--font-text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
}

.causes_item .causes_text h4:hover {
    color: #c5322d;
}

.causes_item .causes_text p {
    font-size: 14px;
    line-height: 24px;
    color: #777777;
    font-weight: 300;
    margin-bottom: 0px;
}

.causes_item .causes_bottom a {
    width: 50%;
    border: 1px solid #c5322d;
    text-align: center;
    float: left;
    line-height: 50px;
    background: #c5322d;
    color: #fff;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 500;
}

.causes_item .causes_bottom a+a {
    border-color: #eeeeee;
    background: #fff;
    font-size: 14px;
    color: #222222;
}


/* End Causes Area css
============================================================================================ */


/*================= latest_blog_area css =============*/

.latest_blog_area {
    background: #f9f9ff;
}

.single-recent-blog-post {
    margin-bottom: 30px;
}

.single-recent-blog-post .thumb {
    overflow: hidden;
}

.single-recent-blog-post .thumb img {
    transition: all 0.7s linear;
}

.single-recent-blog-post .details {
    padding-top: 30px;
}

.single-recent-blog-post .details .sec_h4 {
    line-height: 24px;
    padding: 10px 0px 13px;
    transition: all 0.3s linear;
}

.single-recent-blog-post .details .sec_h4:hover {
    color: #777777;
}

.single-recent-blog-post .date {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.single-recent-blog-post:hover img {
    transform: scale(1.23) rotate(10deg);
}

.tags .tag_btn {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    border: 1px solid #eeeeee;
    display: inline-block;
    padding: 1px 18px;
    text-align: center;
    color: #222222;
}

.tags .tag_btn:before {
    background: #c5322d;
}

.tags .tag_btn+.tag_btn {
    margin-left: 2px;
}


/*========= blog_categorie_area css ===========*/

.blog_categorie_area {
    margin: auto;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.categories_post {
    position: relative;
    text-align: center;
    cursor: pointer;
}

.tomtat {
    width: 300px;
    text-align: left;
}

.loai {
    text-align: left;
}

.tieude {
    text-align: left;
    font-weight: bold;
}

.docthem {
    text-align: left;
    color: #E45F45;
    text-align: left;
    font-style: italic;
}

.categories_post img {
    width: 100%;
    height: 300px;
}

.categories_post .categories_details {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(34, 34, 34, 0.8);
    color: #fff;
    transition: all 0.3s linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories_post .categories_details h5 {
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}

.categories_post .categories_details p {
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0px;
}

.categories_post .categories_details .border_line {
    margin: 10px 0px;
    background: #fff;
    width: 100%;
    height: 1px;
}

.categories_post:hover .categories_details {
    background: rgba(255, 186, 0, 0.8);
}


/*============ blog_left_sidebar css ==============*/

.blog_item {
    margin-bottom: 40px;
}

.blog_info {
    padding-top: 30px;
}

.blog_info .post_tag {
    padding-bottom: 20px;
}

.blog_info .post_tag a {
    font: 300 14px/21px var(--font-text);
    color: #222222;
}

.blog_info .post_tag a:hover {
    color: #777777;
}

.blog_info .post_tag a.active {
    color: var(--color-orange);
}

.blog_info .blog_meta li a {
    font: 300 14px/20px var(--font-text);
    color: #777777;
    vertical-align: middle;
    display: flex;
    align-items: center;
    gap: 5px;
}

.text-justify {
    text-align: justify;
}

.blog_info .blog_meta li a i {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    vertical-align: middle;
}

.blog_info .blog_meta li a:hover {
    color: var(--color-orange);
}

.blog_post img {
    max-width: 100%;
}

.blog_post .white_bg_btn {
    border: 1px solid #eeeeee;
    text-transform: uppercase;
    font-size: 12px;
    padding: 0 30px;
    line-height: 34px;
    display: inline-block;
    color: #222222;
}

.blog_details {
    padding-top: 20px;
}

.blog_details h2 {
    font-size: 24px;
    line-height: 36px;
    color: #222222;
    font-weight: 600;
    transition: all 0.3s linear;
}

.blog_details h2:hover {
    color: #c5322d;
}

.blog_details p {
    margin-bottom: 26px;
}

.view_btn {
    font-size: 14px;
    line-height: 36px;
    display: inline-block;
    color: #222222;
    font-weight: 500;
    padding: 0px 30px;
    background: #fff;
}

.blog_right_sidebar {
    border: 1px solid #eeeeee;
    background: #fafaff;
    padding: 20px 15px;
}

.blog_right_sidebar .widget_title {
    font-size: 18px;
    line-height: 25px;
    background: var(--color-orange);
    text-align: center;
    color: #fff;
    padding: 8px 0px;
    margin-bottom: 30px;
}

.blog_right_sidebar .search_widget .input-group .form-control {
    font-size: 14px;
    line-height: 29px;
    border: 0px;
    width: 100%;
    font-weight: 300;
    color: var(--color-orange);
    padding-left: 20px;
    border-radius: 45px !important;
    z-index: 0;
    border: 1px solid var(--color-orange);
}

.blog_right_sidebar .search_widget .input-group .form-control.placeholder {
    color: var(--color-text);
}

.blog_right_sidebar .search_widget .input-group .form-control:-moz-placeholder {
    color: var(--color-text);
}

.blog_right_sidebar .search_widget .input-group .form-control::-moz-placeholder {
    color: var(--color-text);
}

.blog_right_sidebar .search_widget .input-group .form-control::-webkit-input-placeholder {
    color: var(--color-text);
    font-style: italic;
}

.blog_right_sidebar .search_widget .input-group .form-control:focus {
    box-shadow: none;
}

.blog_right_sidebar .search_widget .input-group .btn-default {
    position: absolute;
    right: 20px;
    background: transparent;
    border: 0px;
    box-shadow: none;
    font-size: 16px;
    color: var(--color-text);
    padding: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.blog_right_sidebar .author_widget {
    text-align: center;
}

.blog_right_sidebar .author_widget h4 {
    font-size: 18px;
    line-height: 20px;
    color: #222222;
    margin-bottom: 5px;
    margin-top: 30px;
}

.blog_right_sidebar .author_widget .avatar_author {
    height: 150px;
    width: 150px;
}

.blog_right_sidebar .author_widget p {
    margin-bottom: 0px;
}

.blog_right_sidebar .author_widget .social_icon {
    padding: 7px 0px 15px;
}

.blog_right_sidebar .author_widget .social_icon a {
    font-size: 18px;
    color: #222222;
    transition: all 0.2s linear;
}

.blog_right_sidebar .author_widget .social_icon a+a {
    margin-left: 20px;
}

.blog_right_sidebar .author_widget .social_icon a:hover {
    color: #c5322d;
}

.blog_right_sidebar .popular_post_widget .post_item .media-body {
    justify-content: center;
    align-self: center;
    padding-left: 20px;
}

.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
    font-size: 14px;
    line-height: 20px;
    color: #222222;
    margin-bottom: 4px;
    transition: all 0.3s linear;
}

.blog_right_sidebar .popular_post_widget .post_item .media-body h3:hover {
    color: var(--color-orange);
}

.blog_right_sidebar .popular_post_widget .post_item .media-body p {
    font-size: 12px;
    line-height: 21px;
    margin-bottom: 0px;
}

.blog_right_sidebar .popular_post_widget #scroller .post_item+.post_item {
    margin-top: 20px !important;
}

.blog_right_sidebar .post_category_widget .cat-list li {
    border-bottom: 2px dotted #eee;
    transition: all 0.3s ease 0s;
    padding-bottom: 12px;
}

.blog_right_sidebar .post_category_widget .cat-list li a {
    font-size: 14px;
    line-height: 20px;
    color: #777;
}

.blog_right_sidebar .post_category_widget .cat-list li a p {
    margin-bottom: 0px;
}

.blog_right_sidebar .post_category_widget .cat-list li+li {
    padding-top: 15px;
}

.blog_right_sidebar .post_category_widget .cat-list li:hover {
    border-color: var(--color-orange);
}

.blog_right_sidebar .post_category_widget .cat-list li:hover a {
    color: var(--color-orange);
}

.blog_right_sidebar .newsletter_widget .form-control {
    font-size: 12px;
    line-height: 24px;
    color: #cccccc;
    border: 1px solid #eeeeee;
    border-left: 0px;
    border-radius: 0px;
    padding-left: 10px !important;
}

.blog_right_sidebar .newsletter_widget .form-control.placeholder {
    color: #cccccc;
}

.blog_right_sidebar .newsletter_widget .form-control:-moz-placeholder {
    color: #cccccc;
}

.blog_right_sidebar .newsletter_widget .form-control::-moz-placeholder {
    color: #cccccc;
}

.blog_right_sidebar .newsletter_widget .form-control::-webkit-input-placeholder {
    color: #cccccc;
}

.blog_right_sidebar .newsletter_widget .form-control:focus {
    outline: none;
    box-shadow: none;
}

.blog_right_sidebar .newsletter_widget .form-group .input-group-text {
    border: 1px solid #eeeeee;
    border-right: 0px;
    border-radius: 0px;
    color: #cccccc;
}

.blog_right_sidebar .newsletter_widget .form-group .input-group .btn-newsletter_widget {
    background-color: var(--color-orange);
    border: none;
    outline: none;
    color: #fff;
}

.blog_right_sidebar .newsletter_widget .text-bottom {
    font-size: 14px;
    text-align: center;
}

.blog_right_sidebar .tag_cloud_widget ul li {
    display: inline-block;
}

.blog_right_sidebar .tag_cloud_widget ul li a {
    display: inline-block;
    border: 1px solid #eee;
    background: #fff;
    padding: 0px 13px;
    margin-bottom: 8px;
    transition: all 0.3s ease 0s;
    color: #222222;
    font-size: 12px;
}

.blog_right_sidebar .tag_cloud_widget ul li a:hover {
    background: var(--color-orange);
    color: #fff;
}

.blog_right_sidebar .br {
    width: 100%;
    height: 1px;
    background: #eeeeee;
    margin: 30px 0px;
}

.blog_area .single-post .br {
    width: 100%;
    height: 1px;
    background: #eeeeee;
    margin: 20px 0px;
}

.blog_area .single-post ul.item_share-social .btn-link-copy {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid #c3baba;
}

.blog-pagination {
    padding-top: 25px;
    padding-bottom: 95px;
}

.blog-pagination .page-link {
    border-radius: 0;
}

.blog-pagination .page-item {
    border: none;
}

.page-link {
    background: transparent;
    font-weight: 400;
}

.blog-pagination .page-item.active .page-link {
    color: #fff;
}

.blog-pagination .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #8a8a8a;
    border: none;
}

.blog-pagination .page-link .lnr {
    font-weight: 600;
}

.blog-pagination .page-item:last-child .page-link,
.blog-pagination .page-item:first-child .page-link {
    border-radius: 0;
}

.blog-pagination .page-link:hover {
    color: #fff;
    text-decoration: none;
    background-color: #c5322d;
    border-color: #eee;
}


/*============ Start Blog Single Styles  =============*/

.img-post img {
    width: 100%;
}

.single-post-area .social-links {
    padding-top: 10px;
}

.single-post-area .social-links li {
    display: inline-block;
    margin-bottom: 10px;
}

.single-post-area .social-links li a {
    color: #cccccc;
    font-size: 14px;
    transition: all 0.2s linear;
}

.single-post-area .social-links li a:hover {
    color: #222222;
}

.single-post-area .blog_details {
    padding-top: 26px;
}

.single-post-area .blog_details p {
    margin-bottom: 10px;
}

.single-post-area .quotes {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 24px 35px 24px 30px;
    background-color: white;
    box-shadow: -20.84px 21.58px 30px 0px rgba(176, 176, 176, 0.1);
    font-size: 14px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

.single-post-area .arrow {
    position: absolute;
}

.single-post-area .arrow .lnr {
    font-size: 20px;
    font-weight: 600;
}

.single-post-area .thumb .overlay-bg {
    background: rgba(0, 0, 0, 0.8);
}

.single-post-area .navigation-area {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 30px;
}

.single-post-area .navigation-area p {
    margin-bottom: 0px;
}

.single-post-area .navigation-area h4 {
    font-size: 18px;
    line-height: 25px;
    color: #222222;
}

.single-post-area .navigation-area .nav-left {
    text-align: left;
}

.single-post-area .navigation-area .nav-left .thumb {
    margin-right: 20px;
    background: #000;
}

.single-post-area .navigation-area .nav-left .thumb img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-post-area .navigation-area .nav-left .lnr {
    margin-left: 20px;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-post-area .navigation-area .nav-left:hover .lnr {
    opacity: 1;
}

.single-post-area .navigation-area .nav-left:hover .thumb img {
    opacity: .5;
}

@media (max-width: 767px) {
    .single-post-area .navigation-area .nav-left {
        margin-bottom: 30px;
    }
}

.single-post-area .navigation-area .nav-right {
    text-align: right;
}

.single-post-area .navigation-area .nav-right .thumb {
    margin-left: 20px;
    background: #000;
}

.single-post-area .navigation-area .nav-right .thumb img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-post-area .navigation-area .nav-right .lnr {
    margin-right: 20px;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-post-area .navigation-area .nav-right:hover .lnr {
    opacity: 1;
}

.single-post-area .navigation-area .nav-right:hover .thumb img {
    opacity: .5;
}

@media (max-width: 991px) {
    .single-post-area .sidebar-widgets {
        padding-bottom: 0px;
    }
}

.comments-area {
    background: #fafaff;
    border: 1px solid #eee;
    padding: 50px 15px;
    margin-top: 50px;
}

@media (max-width: 414px) {
    .comments-area {
        padding: 50px 8px;
    }
}

.comments-area h4 {
    text-align: center;
    margin-bottom: 50px;
    color: #222222;
    font-size: 18px;
}

.comments-area h5 {
    font-size: 16px;
    margin-bottom: 0px;
}

.comments-area a {
    color: #222222;
}

.comments-area .comment-list {
    padding-bottom: 48px;
}

.comments-area .comment-list:last-child {
    padding-bottom: 0px;
}

.comments-area .comment-list.left-padding {
    padding-left: 25px;
}

@media (max-width: 413px) {
    .comments-area .comment-list .single-comment h5 {
        font-size: 12px;
    }
    .comments-area .comment-list .single-comment .date {
        font-size: 11px;
    }
    .comments-area .comment-list .single-comment .comment {
        font-size: 10px;
    }
}

.comments-area .thumb {
    margin-right: 20px;
}

.comments-area .date {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 13px;
}

.comments-area .comment {
    color: #777777;
    margin-bottom: 0px;
}

.comments-area .btn-reply {
    background-color: #fff;
    color: #222222;
    border: 1px solid #eee;
    padding: 2px 18px;
    font-size: 12px;
    display: block;
    font-weight: 600;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.comments-area .btn-reply:hover {
    background-color: #c5322d;
    color: #fff;
}

.comment-form {
    background: #fafaff;
    text-align: center;
    border: 1px solid #eee;
    padding: 47px 15px 43px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.comment-form h4 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 22px;
    color: #222222;
}

.comment-form .name {
    padding-left: 0px;
}

@media (max-width: 767px) {
    .comment-form .name {
        padding-right: 0px;
        margin-bottom: 1rem;
    }
}

.comment-form .email {
    padding-right: 0px;
}

@media (max-width: 991px) {
    .comment-form .email {
        padding-left: 0px;
    }
}

.comment-form .form-control {
    padding: 8px 20px;
    background: #fff;
    border: none;
    border-radius: 0px;
    width: 100%;
    font-size: 14px;
    color: #777777;
    border: 1px solid transparent;
}

.comment-form .form-control:focus {
    box-shadow: none;
    border: 1px solid #eee;
}

.comment-form textarea.form-control {
    height: 140px;
    resize: none;
}

.comment-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 13px;
    color: #777;
}

.comment-form ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 13px;
    color: #777;
}

.comment-form :-ms-input-placeholder {
    /* IE 10+ */
    font-size: 13px;
    color: #777;
}

.comment-form :-moz-placeholder {
    /* Firefox 18- */
    font-size: 13px;
    color: #777;
}


/*============ End Blog Single Styles  =============*/


/*============== contact_area css ================*/

.mapBox {
    height: 420px;
    margin-top: 80px;
    margin-bottom: 100px;
}

.contact_info .info_item {
    position: relative;
    padding-left: 45px;
}

.contact_info .info_item i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 24px;
    color: var(--color-orange);
    font-weight: 600;
}

.contact_info .info_item h6 {
    font-size: 16px;
    line-height: 24px;
    color: var(--font-text);
    font-weight: bold;
    margin-bottom: 0px;
    color: #222222;
}

.contact_info .info_item h6 a {
    color: #222222;
}

.contact_info .info_item p {
    font-size: 14px;
    line-height: 24px;
    padding: 2px 0px;
}

.contact_form .form-group {
    margin-bottom: 10px;
}

.contact_form .form-group .form-control {
    font-size: 13px;
    line-height: 26px;
    color: #999;
    border: 1px solid #eeeeee;
    font-family: var(--font-text);
    border-radius: 0px;
    padding-left: 20px;
}

.contact_form .form-group .form-control:focus {
    box-shadow: none;
    outline: none;
}

.contact_form .form-group .form-control.placeholder {
    color: #999;
}

.contact_form .form-group .form-control:-moz-placeholder {
    color: #999;
}

.contact_form .form-group .form-control::-moz-placeholder {
    color: #999;
}

.contact_form .form-group .form-control::-webkit-input-placeholder {
    color: #999;
}

.contact_form .form-group textarea {
    resize: none;
}

.contact_form .form-group textarea.form-control {
    height: 134px;
}

.contact_form .primary-btn {
    background: var(--color-orange);
    color: #fff;
    margin-top: 20px;
    border: none;
    border-radius: 0;
}


/* Contact Success and error Area css
============================================================================================ */

.modal-message .modal-dialog {
    position: absolute;
    top: 36%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) !important;
    margin: 0px;
    max-width: 500px;
    width: 100%;
}

.modal-message .modal-dialog .modal-content .modal-header {
    text-align: center;
    display: block;
    border-bottom: none;
    padding-top: 50px;
    padding-bottom: 50px;
}

.modal-message .modal-dialog .modal-content .modal-header .close {
    position: absolute;
    right: -15px;
    top: -15px;
    padding: 0px;
    color: #fff;
    opacity: 1;
    cursor: pointer;
}

.modal-message .modal-dialog .modal-content .modal-header h2 {
    display: block;
    text-align: center;
    color: var(--color-orange);
    padding-bottom: 10px;
    font-family: var(--font-text);
}

.modal-message .modal-dialog .modal-content .modal-header p {
    display: block;
}


/* ==========================start wishlist=============================== */

.wish-list__page .card img.img-wish__page {
    height: 120px;
    width: 120px;
}

.wish-list__page .card-image__parent {
    height: 120px;
    width: 120px;
    border: 1px solid #ececec;
}

.wish-list__page .card .card-body button.delete-wish-list {
    background-color: #F24C3D;
    color: #ffffff;
}

.wish-list__page .card .card-body a.shopping-wish-list {
    background-color: #89cf53;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .wish-list__page .card img.img-wish__page {
        height: 100%;
        width: 100%;
    }
}


/* End Contact Success and error Area css
============================================================================================ */

.footer-area {
    padding-top: 40px;
    background-color: #222222;
}

.footer-area h6 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .footer-area h6 {
        margin-bottom: 15px;
    }
}

.footer-area .footer-link li a {
    color: var(--color-text);
    transition: .3s ease-out;
}

.footer-area .footer-link li a:hover {
    color: var(--color-orange);
}

.copy-right-text i,
.copy-right-text a {
    color: var(--color-text);
}

.instafeed {
    margin: -5px;
}

.instafeed li {
    overflow: hidden;
    width: 25%;
}

.instafeed li img {
    margin: 5px;
}

.footer-area .social-footer .social-item {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: var(--color-text);
    border: 2px solid var(--color-text);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s ease;
}

.footer-area .social-footer .social-item:hover {
    border-color: #fff;
}

.footer-area .footer-bottom a.link_team {
    color: var(--color-orange);
}

.footer-area .social-footer .social-item:hover .bi-facebook {
    color: #0F92F3;
    transition: .3s ease-in;
}

.footer-area .social-footer .social-item:hover .bi-youtube {
    color: #FF0000;
    transition: .3s ease-in;
}

.footer-area .social-footer .social-item:hover .bi-instagram {
    color: var(--color-orange);
    transition: .3s ease-in;
}

.footer-area .social-footer .social-item i {
    font-size: 20px;
}

@media (max-width: 991px) {
    .single-footer-widget {
        margin-bottom: 40px;
    }
    #section__social .social__info {
        padding-bottom: 1.5rem;
        margin-bottom: unset !important;
    }
}

@media screen and (max-width: 576px) {
    .footer-area .footer-gap {
        padding-left: 2.5rem !important;
    }
    .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .back-to-top {
        bottom: 95px;
    }
}


/*# sourceMappingURL=main.css.map */

#top-bar {
    padding: 8px 48px;
    background-color: var(--color-primary);
    gap: 10px;
}

#top-bar .top-bar_left {
    flex: 2;
    display: flex;
    align-items: center;
    position: relative;
}

#top-bar .top-bar_right {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
}

#top-bar .top-bar_right .top-right_info span.top-bar__user {
    position: relative;
}

#top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info {
    position: absolute;
    top: 35px;
    right: -20px;
    z-index: 999999;
    background-color: #FFB389;
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s;
}

#top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#top-bar .top-bar_right .top-right_info span.top-bar__user .bx-user {
    cursor: pointer;
}

#top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info ul {
    position: relative;
}

#top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info ul::before {
    content: "";
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #FFB389;
    bottom: 100%;
    right: 15px;
}

#top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info ul li {
    border-bottom: 1px dashed #fff;
}

#top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info ul li:hover {
    background-color: #FFCAAC;
}

#top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info ul li:first-child {
    padding: 8px 8px 8px 15px;
}

#top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info ul li a {
    display: block;
    padding: 8px 8px 8px 15px;
    font-size: 14px !important;
}

#top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info ul li:last-child {
    border-bottom: none;
}

#top-bar .top-bar_right .top-right_info a {
    color: #fff;
}

#top-bar .top-bar_right .top-right_info .top-right_line {
    height: 16px;
    width: 2px;
    background-color: #fff;
}

@media screen and (max-width: 1000px) {
    #top-bar {
        padding: 0.4rem 25px;
    }
    #top-bar .top-bar_left {
        flex: 1;
    }
    #top-bar .top-bar_right {
        flex: 2;
    }
    section.single-post-area .single-post .feature-img {
        height: 300px !important;
    }
}

@media screen and (max-width: 576px) {
    #top-bar .top-bar_left {
        display: none;
    }
    #top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info {
        width: 150px;
    }
    #top-bar .top-bar_right {
        flex: 1;
    }
    section.single-post-area .single-post .feature-img {
        height: 260px !important;
    }
}

@media screen and (max-width: 340px) {
    #top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info {
        right: -35px;
    }
    #top-bar .top-bar_right .top-right_info span.top-bar__user .top-bar_info ul::before {
        right: 30px;
    }
}

@media screen and (max-width: 320px) {
    #top-bar .top-bar_right .top-right_info {
        gap: 0.5rem !important;
    }
    #top-bar .top-bar_right .top-right_info a {
        font-size: 12px;
    }
}

@media screen and (max-width: 280px) {
    #top-bar {
        display: none !important;
    }
}

#header .menu-cart #icon__search {
    position: relative;
}

#header .menu-cart #icon__search #form_search {
    position: absolute;
    right: 0;
    top: 65px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: .5s ease-in-out;
}

#header .menu-cart #icon__search #form_search.activeSearch {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 9;
    transition: .5s ease-in-out;
}

#header #form_search input.input_search {
    height: 35px;
    width: 200px;
    border: 2px solid var(--color-orange);
    outline: none;
    padding: 0 35px 0 10px;
    position: relative;
    border-radius: 15px;
    caret-color: var(--color-red);
}

#header #form_search button.sub_search {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 15px;
    background-color: #ffffff;
}

#header #form_search input.input_search::placeholder {
    font-size: 14px;
}

@media (max-width: 456px) {
    .footer {
        text-align: center;
    }
    #top-bar {
        padding: 8px 25px;
    }
    #header .search-group {
        gap: 8px;
    }
    .blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
        font-size: 12px;
    }
    .single-post-area .single-post h2.title-blog__post {
        font-size: 20px;
    }
    .comments-area {
        padding: 50px 10px;
    }
    .comment-form {
        padding: 47px 10px 43px;
    }
    .blog_right_sidebar {
        padding: 15px 10px;
    }
}

.font__size {
    font-size: 15px;
}

#section__social #section__blog .img__blog {
    height: 198px;
    width: 297px;
    overflow: hidden;
}

section#brand-area {
    padding-bottom: 100px !important;
}

.zoom {
    transform: scale(1);
    transition: .5s;
}

.zoom:hover {
    transform: scale(1.1);
}

.text__truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    line-height: 1.6rem;
}

.title__truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
    line-height: 1.6rem;
}

.sort-des__truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    line-height: 1.6rem;
}

.containerhinhtron {
    display: flex;
}

.circle {
    display: none;
}

.circle+label {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 2px solid #ccc;
}

.circle:checked+label {
    border-color: #000;
}

.red {
    background-color: #e74c3c;
}

.green {
    background-color: #2ecc71;
}

.blue {
    background-color: #3498db;
}

.yellow {
    background-color: #f39c12;
}

.purple {
    background-color: #9b59b6;
}

.slick-prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-130%, -50%);
    box-shadow: 0px 4px 4px darkgray;
    z-index: 2;
    color: #000;
    border: none;
    padding: 0px 8px;
    border-radius: 50%;
    background-color: #f0f0f0;
    ;
    height: 30px;
    width: 30px;
}

.slick-prev:hover {
    background-color: #999;
    transition: 1.5s;
}

.slick-next:hover {
    background-color: #999;
    transition: 1.5s;
}

.slick-next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(130%, -50%);
    box-shadow: 0px 4px 4px darkgray;
    z-index: 2;
    color: #000;
    border: none;
    padding: 0px 8px;
    border-radius: 50%;
    background-color: #f0f0f0;
    height: 30px;
    width: 30px;
}

.size-option.selected {
    background-color: var(--color-orange);
    color: white;
    border-color: var(--color-orange);
}

.content-wrapper {
    transform: translateX(-4%);
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
}

.content-wrapper p {
    font-size: 20px;
}

.content {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.expanded {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 3s ease-in-out;
}

.hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 2s ease-in-out;
}

.expanded li {
    margin-bottom: 10px;
}

.expanded ul {
    margin-bottom: 10px;
    height: 30px;
    width: 30px;
}

#category-area .preview_pro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    row-gap: 20px;
    column-gap: 20px;
}

#category-area .preview_pro .preview_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#category-area .preview_pro .preview_img:first-child {
    grid-column: 1/3;
    grid-row: 1/2;
}

#category-area .preview_pro .preview_img:nth-child(5) {
    grid-column: 2/4;
}

#category-area .preview_pro .preview_img:nth-child(3) {
    grid-column: 4/5;
    grid-row: 1/3;
}

@media screen and (max-width: 1000px) {
    #category-area .preview_pro .preview_img:first-child {
        grid-column: unset;
    }
    #category-area .preview_pro .preview_img:nth-child(2) {
        grid-column: 2/4;
    }
    #category-area .preview_pro .preview_img:nth-child(3) {
        grid-row: unset;
    }
    #category-area .preview_pro .preview_img:nth-child(4) {
        grid-column: 1/3;
    }
    #category-area .preview_pro .preview_img:nth-child(5) {
        grid-column: 3/5;
    }
}

@media screen and (max-width: 900px) {
    #category-area .preview_pro .preview_img:first-child {
        grid-column: 1/3;
    }
    #category-area .preview_pro .preview_img:nth-child(4) {
        grid-column: 1/3;
        grid-row: 2/5;
    }
    #category-area .preview_pro .preview_img:nth-child(2),
    #category-area .preview_pro .preview_img:nth-child(3) {
        grid-column: 3/5;
    }
    #category-area .preview_pro .preview_img:nth-child(5) {
        grid-row: 3/5;
    }
}

@media screen and (max-width: 576px) {
    #category-area .preview_pro {
        grid-template-rows: repeat(5, 250px);
    }
    #category-area .preview_pro .preview_img:first-child,
    #category-area .preview_pro .preview_img:nth-child(2) {
        grid-column: 1/5;
    }
    #category-area .preview_pro .preview_img:nth-child(3) {
        grid-column: 1/5;
    }
    #category-area .preview_pro .preview_img:nth-child(4),
    #category-area .preview_pro .preview_img:nth-child(5) {
        grid-row: unset;
        grid-column: 1/5;
    }
}


/* Style round input check box */

.checkbox-wrapper-12 {
    position: relative;
}

.checkbox-wrapper-12>svg {
    position: absolute;
    top: -130%;
    left: -170%;
    width: 110px;
    pointer-events: none;
}

.checkbox-wrapper-12 * {
    box-sizing: border-box;
}

.checkbox-wrapper-12 input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    margin: 0;
}

.checkbox-wrapper-12 input[type="checkbox"]:focus {
    outline: 0;
}

.checkbox-wrapper-12 .cbx {
    width: 24px;
    height: 24px;
    top: calc(100px - 12px);
    left: calc(100px - 12px);
}

.checkbox-wrapper-12 .cbx input {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: #bfbfc0;
    border-radius: 50%;
}

.checkbox-wrapper-12 .cbx label {
    width: 24px;
    height: 24px;
    background: none;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: trasnlate3d(0, 0, 0);
    pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg {
    position: absolute;
    top: 5px;
    left: 4px;
    z-index: 1;
    pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg path {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 19;
    stroke-dashoffset: 19;
    transition: stroke-dashoffset 0.3s ease;
    transition-delay: 0.2s;
}

.checkbox-wrapper-12 .cbx input:checked+label {
    animation: splash-12 0.6s ease forwards;
}

.checkbox-wrapper-12 .cbx input:checked+label+svg path {
    stroke-dashoffset: 0;
}

@-moz-keyframes splash-12 {
    40% {
        background: var(--color-input);
        box-shadow: 0 -18px 0 -8px var(--color-input), 16px -8px 0 -8px var(--color-input), 16px 8px 0 -8px var(--color-input), 0 18px 0 -8px var(--color-input), -16px 8px 0 -8px var(--color-input), -16px -8px 0 -8px var(--color-input);
    }
    100% {
        background: var(--color-input);
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@-webkit-keyframes splash-12 {
    40% {
        background: var(--color-input);
        box-shadow: 0 -18px 0 -8px var(--color-input), 16px -8px 0 -8px var(--color-input), 16px 8px 0 -8px var(--color-input), 0 18px 0 -8px var(--color-input), -16px 8px 0 -8px var(--color-input), -16px -8px 0 -8px var(--color-input);
    }
    100% {
        background: var(--color-input);
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@-o-keyframes splash-12 {
    40% {
        background: var(--color-input);
        box-shadow: 0 -18px 0 -8px var(--color-input), 16px -8px 0 -8px var(--color-input), 16px 8px 0 -8px var(--color-input), 0 18px 0 -8px var(--color-input), -16px 8px 0 -8px var(--color-input), -16px -8px 0 -8px var(--color-input);
    }
    100% {
        background: var(--color-input);
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@keyframes splash-12 {
    40% {
        background: var(--color-input);
        box-shadow: 0 -18px 0 -8px var(--color-input), 16px -8px 0 -8px var(--color-input), 16px 8px 0 -8px var(--color-input), 0 18px 0 -8px var(--color-input), -16px 8px 0 -8px var(--color-input), -16px -8px 0 -8px var(--color-input);
    }
    100% {
        background: var(--color-input);
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

.box__shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.box__shadow-round {
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: none;
}

.bg-message-warning {
    background-color: #FFD56F;
}

.about-page a.icon-about-team {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin: 0 5px;
    color: var(--color-orange);
    transition: .3s;
}

.about-page a.icon-about-team:hover {
    color: #fff;
    background-color: var(--color-orange) !important;
}

.about-page .owl-team-about .owl-item {
    margin-bottom: 20px;
}

.about-page .owl-team-about img.img-auth-team {
    height: 330px;
    object-fit: cover;
}

.card_border {
    border: 1px solid #E6E6E6;
}

.btn-checkout {
    background-color: var(--color-orange) !important;
    padding: 8px 0;
}

.btn-primary:hover,
.btn-custom-pr:hover,
.btn-order:hover {
    transform: translateY(-1px);
    transition: .3s ease;
}


/* Button call */

.call-now-button p.call-text a:link {
    color: #ffffff;
    text-decoration: none;
}

.quick-call-button {
    display: none
}

.call-now-button {
    /* display:none; */
    z-index: 8;
    clear: both;
    margin: 0 auto;
    position: fixed;
    border-radius: 50px;
    bottom: 40px;
    background: var(--color-orange);
    left: 30px;
    color: #fff;
}

.call-now-button div {
    display: flex;
}

.call-now-button div p {
    color: #fff;
    display: table;
    padding: 10px;
    border-radius: 21px;
    height: 34px;
    line-height: 14px;
    font-size: 14px;
    margin: 8px 5px 8px 50px;
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
    box-sizing: content-box;
    text-decoration: none !important;
    box-sizing: border-box;
    font-weight: bold;
}

.quick-alo-ph-circle {
    width: 100px;
    height: 100px;
    top: -27px;
    left: -27px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 5px solid rgba(30, 30, 30, .4);
    opacity: 1;
    -webkit-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

.quick-alo-ph-circle-fill {
    width: 80px;
    height: 80px;
    top: -17px;
    left: -17px;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
    -webkit-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.quick-alo-ph-btn-icon {
    width: 50px;
    height: 50px;
    top: -2px;
    left: -2px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
    -webkit-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.quick-alo-ph-btn-icon i {
    color: #fff;
    font-size: 25px;
    background: var(--color-orange);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

@-moz-keyframes quick-alo-circle-anim {
    0% {
        -moz-transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: .1
    }
    30% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -webkit-opacity: .5;
        -o-opacity: .5
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6;
        -moz-opacity: .6;
        -webkit-opacity: .6;
        -o-opacity: .1
    }
}

@-webkit-keyframes quick-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }
    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-o-keyframes quick-alo-circle-anim {
    0% {
        -o-transform: rotate(0) kscale(.5) skew(1deg);
        -o-opacity: .1
    }
    30% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        -o-opacity: .5
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        -o-opacity: .1
    }
}

@-moz-keyframes quick-alo-circle-fill-anim {
    0% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -moz-transform: rotate(0) -moz-scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-webkit-keyframes quick-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-o-keyframes quick-alo-circle-fill-anim {
    0% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-moz-keyframes quick-alo-circle-img-anim {
    10% {
        transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes quick-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-o-keyframes quick-alo-circle-img-anim {
    0% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
}


/* contact page */

#product-detail_banner img {
    max-height: 400px;
    height: 100%;
    width: 100%;
}

.contact-page .icon-c {
    height: 40px;
    width: 40px;
    border: 1px dashed var(--color-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-orange);
    flex-shrink: 0;
}


/* style proudct detail page */


/* File: _product.scss */

.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (min-width: 768px) {
    .product-list {
        grid-template-columns: repeat(4, 1fr);
        /* Desktop view with 4 products per row */
    }
}


/* Điều chỉnh giao diện trang chi tiết sản phẩm */

.product-page_detail .product-detail_thumb .product-detail_image img {
    width: 100%;
    height: auto !important;
    cursor: pointer;
    object-fit: cover;
}

.product-page_detail .product-detail_gallery .product-gallery_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-page_detail .product-detail_gallery .product-gallery_image:not(.slick-current) img {
    opacity: 0.2;
    transition: .1s;
}


/*  */

section.cart-order .card img.img-cart__order {
    height: 150px !important;
    width: 150px !important;
}

section.cart-order .card .card-body h5 {
    color: var(--color-orange);
}


/* section.cart-order .card a.btn-del__cart {

} */

.btn-del__cart {
    position: relative;
    width: 180px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #cc0000;
    background-color: #e50000;
    overflow: hidden;
}

.btn-add__pro {
    background-color: #4ed326 !important;
    border: 1px solid #4ed326 !important;
}

.btn-add__pro .button__icon {
    background-color: #47a91d !important;
}

.btn-del__cart,
.button__icon,
.button__text {
    transition: all 0.3s;
}

.btn-del__cart .button__text {
    transform: translateX(15px);
    color: #fff;
    font-weight: 600;
}

.btn-del__cart .button__icon {
    position: absolute;
    transform: translateX(138px);
    height: 100%;
    width: 40px;
    background-color: #cc0000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-del__cart i {
    font-size: 1.2rem;
    color: #fff;
}

.btn-del__cart:hover {
    background: #cc0000;
}

.btn-del__cart:hover .button__text {
    color: transparent;
}

.btn-del__cart:hover .button__icon {
    width: 178px;
    transform: translateX(0);
}

.btn-del__cart:active .button__icon {
    background-color: #b20000;
}

.btn-del__cart:active {
    border: 1px solid #b20000;
}


/*  */

.product-page_detail .product-add_cart button.btn-cart_order {
    background-color: var(--color-orange);
    padding: 10px 0 !important;
    border-width: 0 !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.btn-load-more {
    background-color: var(--color-orange);
    color: #ffffff;
    transition: .25s;
}

.btn-load-more:hover {
    color: unset;
    background-color: unset;
    border-color: #7abfff !important;
}


/* favorite */

.product-page_detail .product-add_cart label.favorite {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    /* padding: 10px; */
    cursor: pointer;
    user-select: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    color: black;
    height: 42px !important;
}

.product-page_detail .product-add_cart input#favorite {
    display: none;
}

.product-page_detail .product-add_cart input#favorite:checked+label.favorite svg {
    fill: hsl(0deg 100% 50%);
    stroke: hsl(0deg 100% 50%);
    animation: heartButton 1s;
}

@keyframes heartButton {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.product-page_detail .product-add_cart input#favorite+label.favorite .action {
    position: relative;
    overflow: hidden;
    display: grid;
}

.product-page_detail .product-add_cart input#favorite+label.favorite .action span {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
    transition: all .5s;
    font-size: 14px;
    font-family: var(--font-text) !important;
    font-weight: bold;
}

.product-page_detail .product-add_cart input#favorite+label.favorite .action span.option-1 {
    transform: translate(0px, 0%);
    opacity: 1;
}

.product-page_detail .product-add_cart input#favorite:checked+label.favorite .action span.option-1 {
    transform: translate(0px, -100%);
    opacity: 0;
}

.product-page_detail .product-add_cart input#favorite+label.favorite .action span.option-2 {
    transform: translate(0px, 100%);
    opacity: 0;
}

.product-page_detail .product-add_cart input#favorite:checked+label.favorite .action span.option-2 {
    transform: translate(0px, 0%);
    opacity: 1;
}


/* #212529 */

.product-list__relate .product-relate_item {
    position: relative;
}

.product-list__relate .product-relate_item .arrow_prev {
    position: absolute;
    top: -10%;
    left: 93%;
}

.product-list__relate .product-relate_item .arrow_next {
    position: absolute;
    top: -10%;
    right: 7%;
}

.product-list__relate .product-relate_item .item__product {
    margin-right: 10px;
}

.product-list__relate .product-relate_item .item__product .product-details {
    padding-left: unset;
}

.product-list__relate .product-relate_item .item__product .product-details h6 {
    font-size: 14px;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.single-product .product-details h6:hover {
    color: var(--color-primary);
}

.product-list__relate .product-relate_item .item__product .product-details .price h6 {
    margin-top: 0;
}

.product-list__relate .product-relate_item .item__product .product-details .price .l-through {
    text-decoration: line-through;
    color: #cccccc;
}

.product-list__relate .product-relate_item .item__product .product-details .prd-bottom a {
    background-color: var(--color-orange);
}

.product-list__relate .product-relate_item .item__product .img_product-relate {
    height: 283px;
    /* width: 283px; */
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 0;
    font-size: 15px !important;
}


/* Star Rating */

small.error-text {
    color: red;
    display: none;
}

.form-control.input-error+small.error-text {
    display: block;
}

.form-control.input-success:focus,
.form-control.input-success {
    border-color: #27d716;
}

.form-control.input-error {
    border-color: red;
}

.form-control.input-error:focus {
    border-color: red;
}


/*  */

a.btn-next__pro {
    font-family: inherit;
    font-size: 16px;
    background: linear-gradient(129deg, rgba(101, 206, 244, 1) 16%, rgba(33, 129, 235, 1) 95%);
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
}

a.btn-next__pro span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

a.btn-next__pro svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

a.btn-next__pro:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

a.btn-next__pro:hover svg {
    transform: translateX(40px) rotate(45deg) scale(1.1);
}

a.btn-next__pro:hover span {
    transform: translateX(6em);
}

a.btn-next__pro:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }
    to {
        transform: translateY(-0.1em);
    }
}


/*  */

.product-detail_des .nav li.nav-item a.btn.active {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd !important;
}

.product-detail_des h5.color__price {
    color: var(--color-orange);
}

.product-detail_des .price-old {
    color: #c1b5b5;
}

#blog_right_sidebar {
    background-color: unset !important;
}

#blog_right_sidebar .popular_post_widget .media .media-body p.media-content {
    font-size: 15px;
}

#blog_right_sidebar .popular_post_widget .card {
    height: 140px;
}

section.blog-tag__page .img-blog_item__page,
section.section-blog__page .img-blog_item__page {
    height: 240px !important;
}

section.single-post-area .single-post .feature-img {
    height: 450px;
}

.cssbuttons-io-button {
    background: #FD7E14;
    color: white;
    font-family: inherit;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #fd7e14;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    width: 160px;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #eceef1;
    opacity: 1;
}

.cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #fd7e14;
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #FD7E14;
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}


/* Slideshow */

#homepage_slider {
    position: relative;
}

#homepage_slider .owl-dots .owl-dot.active span {
    background: #fff;
}

#homepage_slider .owl-nav button:hover {
    background: #2a7d2e;
    color: #fff;
}

#homepage_slider .owl-nav button:hover svg {
    fill: #fff;
    color: #fff;
}

#homepage_slider .item {
    position: relative;
}

#homepage_slider .content_slide {
    position: absolute;
    bottom: 30%;
    right: 0;
    left: 0;
    text-align: center;
    margin: 0 80px;
    max-width: 1200px;
}

#homepage_slider .content_slide .button_content_box {
    display: inline-block;
    left: 0;
    background: #fff;
    z-index: 999;
    color: #000;
    padding: 9px 16px;
    font-size: 14px;
    border-radius: 12px;
    transition: 0.3s;
}

#homepage_slider .content_slide .button_content_box:hover {
    background: var(--color-orange);
    color: #fff;
}

#homepage_slider .content_slide .button_content_box a {
    display: inline-block;
    background: #fff;
    color: #2a7d2e;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid #fff;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
}

#homepage_slider .content_slide .slide_btn_content {
    max-width: 600px;
    text-align: left;
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 5px;
}

#homepage_slider .content_slide .slide_btn_content h2 {
    font-size: 23px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

#homepage_slider .content_slide .slide_btn_content p {
    color: #fff;
    font-weight: normal;
    line-height: 1.5;
    font-size: 14px;
    margin: 15px 0px;
}

#homepage_slider .content_slide .slide_btn_content p.second-fade,
#homepage_slider .content_slide .button_content_box {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

#homepage_slider .content_slide .slide_btn_content h2.first-fade {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
}

#homepage_slider .owl-item.active .content_slide .slide_btn_content h2.first-fade {
    animation: 1s cubic-bezier(0.25, 0.75, 0.25, 1) 0.3s 1 forwards slideshowFade2;
}

#homepage_slider .owl-item.active .content_slide .slide_btn_content p.second-fade {
    animation: 1s cubic-bezier(0.25, 0.75, 0.25, 1) 0.6s 1 forwards slideshowFade;
}

#homepage_slider .owl-item.active .content_slide .button_content_box {
    animation: 1s cubic-bezier(0.25, 0.75, 0.25, 1) 0.9s 1 forwards slideshowFade;
}

@keyframes slideshowFade {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1
    }
}

@keyframes slideshowFade {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideshowFade2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px)
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1
    }
}

@keyframes slideshowFade2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px)
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1
    }
}

.control-slideshow {
    position: absolute;
    z-index: 2;
    top: calc(50% - 50px/2);
    width: 35px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    cursor: pointer;
    margin: 0px;
    background-color: #000000;
    border-radius: 3px;
    z-index: 999;
}

.control-slideshow i {
    color: #ffffff;
}

.prev-slideshow {
    left: 20px;
    padding-right: 3px;
}

.next-slideshow {
    right: 20px;
    padding-left: 3px;
}

.slideshow {
    position: relative;
}

.slideshow {
    position: relative;
}

.slideshow a {
    display: block;
    cursor: pointer;
}

.slideshow:hover .control-slideshow {
    opacity: 0.3;
}

.slideshow .control-slideshow:hover {
    opacity: 0.8;
}

.control-slideshow {
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: calc(50% - 50px/2);
    width: 35px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    cursor: pointer;
    margin: 0px;
    background-color: #000000;
    border-radius: 3px;
}

.control-slideshow i {
    color: #ffffff;
}

.prev-slideshow {
    left: 20px;
    padding-right: 3px;
}

.next-slideshow {
    right: 20px;
    padding-left: 3px;
}

.slideshow .item .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* -------------- */

.slideshow .active .item .bg {
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: banner_style;
    animation-name: banner_style
}

@-webkit-keyframes banner_style {
    from {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes banner_style {
    from {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

#homepage_slider .slideshow .item {
    display: block;
    width: 100%;
    padding-bottom: 37%;
    position: relative;
}

@media screen and (max-width: 856px) {
    #homepage_slider .content_slide {
        bottom: 30%;
    }
    #homepage_slider .slideshow .item {
        padding-bottom: 50%;
    }
}


/* --------- */

@media screen and (max-width: 756px) {
    #homepage_slider .content_slide .slide_btn_content {
        max-width: 500px;
        padding: 10px;
    }
    #homepage_slider .content_slide .slide_btn_content h2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    #homepage_slider .content_slide {
        bottom: 23%;
        margin: 0 70px;
    }
    #homepage_slider .content_slide .slide_btn_content h2 {
        font-size: 15px;
    }
    #homepage_slider .content_slide .slide_btn_content p {
        font-size: 13px;
    }
    .call-now-button {
        bottom: 100px !important;
    }
}

@media screen and (max-width: 500px) {
    #homepage_slider .content_slide {
        bottom: 15%;
        min-width: 300px;
        margin: 0 60px;
    }
    #homepage_slider .content_slide .slide_btn_content p {
        font-size: 12px;
        margin: 10px 0px;
    }
    #homepage_slider .content_slide .slide_btn_content h2 {
        font-size: 15px;
    }
    #homepage_slider .content_slide .button_content_box {
        padding: 0px 8px;
        font-size: 12px;
    }
    .control-slideshow {
        font-size: 16px;
        width: 30px !important;
        height: 40px !important;
        line-height: 40px !important;
    }
}

@media screen and (max-width: 400px) {
    #homepage_slider .content_slide {
        bottom: 12%;
        min-width: 200px;
        margin: 0 50px;
    }
    .prev-slideshow {
        left: 10px;
    }
    .next-slideshow {
        right: 10px;
    }
    section.single-post-area .single-post .feature-img {
        height: 220px !important;
    }
}

@media screen and (max-width: 360px) {
    #homepage_slider .content_slide {
        bottom: 15%;
    }
    #homepage_slider .content_slide .slide_btn_content h2 {
        font-size: 12px;
    }
    section.single-post-area .single-post .feature-img {
        height: 180px !important;
    }
}


/*End Slideshow*/


/* cart */

.btn-check.btn-radio:checked+.btn-style,
:not(.btn-check.btn-radio)+.btn-style:active {
    font-weight: bold;
    color: #FD7E14;
    border: 2px solid var(--color-orange);
}

.btn-style {
    --bs-btn-border-color: var(--color-orange) !important;
}

label#color-style {
    padding: 14px;
    width: 32px !important;
    height: 32px !important;
}

.btn-check.btn-radio+.btn-style,
.btn-check.btn-radio+.btn-style {
    border: 1px solid var(--grey);
}

.btn-style:hover {
    font-weight: bold;
    background-color: var(--color-orange);
    color: var(--color-orange) !important;
}


/* checkout */

.btn-cart_order {
    background-color: var(--color-orange);
    padding: 10px 0 !important;
    border-width: 0 !important;
}

.btn-cart_order:hover {
    background-color: var(--color-orange);
}

.btn-outline-light {
    --bs-btn-color: var(--color-secondary);
    --bs-btn-border-color: var(--grey);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--color-orange);
    border-color: var(--color-orange) !important;
    font-weight: bold;
}

.product-detail_des .tab-comment__detail:active {
    color: #fff;
    border-color: #0D6EFD !important;
    font-weight: bold;
}

.product-add_cart a.btn-add-pro__detail {
    background-color: #3AB0FF !important;
    font-size: 14px;
}

.product-add_cart a.btn-add-pro__detail:active {
    border-color: unset !important;
}

.btn-tst:checked+.btn span {
    padding-left: 10px;
    transition: padding-left .3s ease-in-out;
}

.pbt-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

button {
    background-color: transparent;
}

.img-payment__new {
    height: 100px;
    width: 100px;
    border: 1px solid #ececec;
}

.color-price__pay {
    color: var(--color-orange);
}

.vtrWey {
    height: 3px;
    width: 100%;
    background-position-x: -30px;
    background-size: 116px 3px;
    background-image: repeating-linear-gradient(45deg, #3DB2FF, #3DB2FF 33px, transparent 0, transparent 41px, #FD7E14 0, #FD7E14 74px, transparent 0, transparent 82px);
}

.uk7Wpm {
    padding: 2px 5px;
    /* color: #ee4d2d; */
    color: var(--color-red);
    border-radius: 1px;
    border: .5px solid;
    font-size: 10px;
    text-transform: capitalize;
    flex-shrink: 0;
}

.bt_hr {
    border-bottom: 1px dashed rgba(0, 0, 0, .09);
}

.bl_hr {
    border-left: 1px dashed rgba(0, 0, 0, .09);
}

.bd_hr {
    border: 1px dashed var(--color-orange);
}

.text-dvvc {
    color: var(--color-orange);
}

.mbr {
    margin-bottom: .8rem !important;
}

.bt_hr>div>a {
    color: var(--blue-d-1);
    font-weight: bold;
}

.text-button-ad {
    border: none;
    color: var(--blue-d-1);
    font-weight: bold;
}

.discount-button {
    background-color: var(--color-orange);
    color: var(--white);
}

.discount-button:hover {
    background-color: var(--color-orange-hover);
    color: var(--white);
}

.coupon_input {
    border: 1px dashed var(--color-orange);
}

.a {
    border: 1px dashed var(--blue-d-1);
}


/* css modal-dialog address at checkout template  */

.modal-backdrop {
    --bs-backdrop-zindex: 0;
}

.modal-content {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


/* css modal-dialog cancel order at success checkout template  */

.modal-background-cancel-order {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s;
    z-index: 9999 !important;
}

.modal-content-cancel-order {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 9999;
    max-width: 40%;
    max-height: 100%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

@media (max-width: 768px) {
    .modal-content-cancel-order {
        max-width: 70%;
    }
    #blog_right_sidebar .popular_post_widget .card {
        height: unset;
    }
    section.cart-order .card img.img-cart__order {
        height: unset !important;
        width: unset !important;
    }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}


/* end */

.btn-address {
    background-color: var(--color-orange);
    padding: 10px 20px 10px 12px;
    border: none;
}


/* ------------------------------------user info---------------------------- */

.button-userinfo {
    border-radius: 30px 0px 0px 30px;
}

.button-userinfo ul li {
    padding-left: 10px;
    transition: ease-in-out 0.5s;
}

.button-userinfo ul li a {
    width: 100%;
    max-height: 100%;
    font-size: 16px;
    color: var(--blue);
    transition: ease-in-out 0.2s;
}

.button-userinfos i:hover {
    color: var(--color-orange);
}

.button-userinfo ul li a:hover {
    color: var(--color-orange);
}

.button-userinfos.active i,
.button-userinfo ul li a.active {
    color: var(--color-orange);
}

.button-userinfo ul li:hover {
    background-color: var(--light);
}

.button-userinfos i {
    font-size: 18px;
    color: var(--blue);
    margin: auto;
}

.button-userinfos.active {
    background-color: var(--light);
}

@media (max-width: 768px) {
    .menu-info {
        display: none;
    }
    .button-userinfo ul li i {
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: center;
    }
    .button-userinfo ul li a:hover {
        color: var(--color-orange);
    }
    .button-userinfos.active {
        background-color: var(--light);
        height: 70px;
    }
    .button-userinfo ul li {
        padding-left: 0px;
        transition: ease-in-out 0.5s;
    }
}

.page-user {
    background-color: var(--light);
}

.page-user h3 {
    color: var(--color-primary2);
    text-transform: uppercase;
    font-weight: bold;
}

.img-user {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    position: relative;
}

.img-user img {
    width: 100%;
    height: 100%;
    border: 5px solid var(--color-primary2);
    border-radius: 50%;
    object-fit: cover;
}

.edit-button {
    position: absolute;
    background-color: var(--color-primary2);
    color: #fff;
    border-radius: 50%;
    padding: 1px 6px;
    right: -25px;
    cursor: pointer;
}

.file-input {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.btn-social {
    background-color: var(--color-primary2);
}

.btn-social i {
    margin: auto;
    font-size: 22px;
}

.btn-social:hover {
    background-color: var(--color-primary);
}

.img__cart {
    max-width: 100%;
    height: auto;
}


/* =========================== modal user info ================ */

.modal {
    background-color: rgba(64, 64, 64, 0.5);
}

.btn-address {
    background-color: var(--color-orange);
    border: none;
    padding: 10px 18px 10px 10px;
}

.h-60 {
    height: 60px !important;
}

.img-emptycart {
    width: 100px !important;
}

.bg-red {
    background-color: var(--color-red);
}

.h-60 {
    height: 60px !important;
}

.nav {
    --bs-nav-link-hover-color: var(--color-orange) !important;
}

.nav-link.active {
    color: var(--color-orange) !important;
}

.custom-btn {
    border-radius: 0;
    border: none;
    padding: .7em 1.5em;
}

.grey-hover:hover {
    background-color: rgba(0, 0, 0, .02) !important;
}

.bgc-o {
    background-color: var(--color-orange) !important;
}

.bgc-o:hover {
    background-color: var(--color-red) !important;
}

.bgc-o-disabled:hover {
    background-color: var(--color-orange) !important;
    cursor: no-drop;
}

.total-text {
    color: var(--color-red);
    font-size: 24px;
    line-height: 30px;
}

.fs17px {
    font-size: 17px !important;
}

.text-co {
    color: var(--color-orange) !important;
}

.nkmfr2 {
    text-decoration: none;
    color: rgba(0, 0, 0, .87);
    color: #26aa99;
    vertical-align: middle;
}

.bg-red:hover {
    background-color: var(--color-orange-hover) !important;
}

.description>p>img {
    max-width: 100%;
}

small.text-error-data,
small.text-error {
    visibility: hidden;
}

.form-select.input-success:focus,
.form-select.input-success,
.form-control.input-success:focus,
.form-control.input-success {
    border-color: #27d716 !important;
}

.form-control.input-error:focus,
.form-control.input-error {
    border-color: red !important;
}

.form-control.input-error+small.text-error {
    visibility: visible;
}

.form-select.input-error+small.text-error-data {
    visibility: visible;
}

.form-select.input-error:focus,
.form-select.input-error {
    border-color: red !important;
}

.form-control:focus {
    box-shadow: unset;
}

.border-contact {
    border: 1px solid #eee;
}

.bag-home {
    background: var(--color-orange);
    padding: 10px;
    border-radius: 50%;
    color: var(--light);
}

.eye-icon {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
}

.eye-icons {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
}
