* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: rgba(0, 0, 0, .8);
}

p {
    font-weight: 400;
}

ul{
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #623C8B;
}

a:focus, a:hover {
    color: #b93c44;
}

body.shop-page-body{
    font-size: 18px;
    line-height: 1.5;
}


/* header */
/* .header .header-container {
    background-color: #fff;
    border-top: 4px solid #623C8B;
    border-bottom: 1px solid #ccc;
}

.header .header-container .header-wrapper>nav {
    height: 70px;
}

.header .header-container .header-wrapper .featured-link>a,
.header .header-container .header-wrapper .menu-button {
    font-weight: 500;
}

.header .header-container .header-wrapper .featured-link,
.header .header-container .header-wrapper .header-logo,
.header .header-container .header-wrapper .menu-button {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.header .header-container .header-wrapper .logo {
    width: 165px;
}

.header .header-container .header-wrapper .featured-link>a:before,
.header .header-container .header-wrapper .menu-button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #623C8B;
    width: 100%;
    height: 0;
    transition: height .2s ease-in-out 0s;
}

.header .header-container .header-wrapper .featured-link>a:focus:before,
.header .header-container .header-wrapper .featured-link>a:hover:before,
.header .header-container .header-wrapper .menu-button:focus:before,
.header .header-container .header-wrapper .menu-button:hover:before {
    height: 4px;
}

.header .header-container .header-wrapper .main-menu-container {
    width: 33.33vw;
    z-index: 9999999999;
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out;
}

.header .header-container .header-wrapper .main-menu-container .main-menu-body {
    flex-grow: 1;
    padding: 3rem 5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.header .header-container .header-wrapper .main-menu-container .main-menu-body .main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .header-container .header-wrapper .main-menu-container .main-menu-body .main-menu li {
    margin-bottom: 1rem;
}

.header .header-container .header-wrapper .main-menu-container .main-menu-body .main-menu li a {
    letter-spacing: 0;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 500;
    transition: opacity .2s ease-in-out 0s;
}

.header .header-container .header-wrapper .main-menu-container .main-menu-body .main-menu .current a {
    font-weight: 700;
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: 400px;
    border-right: 1px solid rgba(0, 0, 0, .2);
    transform: translateX(-100%);
}
.offcanvas.show {
    transform: none;
}

.header .header-container .header-wrapper .offcanvas-backdrop {
    z-index: -1;
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.offcanvas-backdrop.show {
    opacity: .5;
    z-index: 9999999!important;
}

.fade {
    transition: opacity .15s linear;
} */

/* ---------------- */

h3 {
    font-size: 30px;
}

h4 {
    font-size: 28px;
}


.btn-primary {
    color: #000;
    background-color: #623C8B;
    border-color: #623C8B;
    font-weight: 700;
}

.btn.btn-primary{
    color: #FFFFFF;
    }

.btn-primary:hover {
    color: #FFFFFF;
    background-color: #9b21dd;
    border-color: #7f11ba;
}

div.product-item .btn-primary {
    width: 100%;
    margin-top: 2rem;
}

div.product-item .btn-primary:hover,
div.product-item .btn-primary:focus{
    color: #ffffff;
    background: #9b21dd;
    box-shadow: none;
}

.btn-group-lg>.btn, .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.375rem;
    border-radius: 0.3rem;
}

/* package section */

div.product-item {
    padding: 4rem 2rem 1rem;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, .2);
    position: relative;
    font-size: .9rem;
    cursor: pointer;
    background: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
    /* border: 5px solid transparent; */
}
div.product-item.active{
    border: 5px solid #623C8B;
}

div.product-item .last-sale {
    border-radius: 0 10px 0 0;
    position: absolute;
    top: 0;
    right: 0;
    background: #ccc;
    font-size: .8rem;
    padding: 0.5rem 1rem;
}

div.product-item.active .last-sale{
    background: #623C8B;
    color: #FFFFFF;
    border-radius: 0 4px 0 0;
}

.product-item-image {
    width: 100%;
    height: 220px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
}

div.product-item ul {
    padding: 0;
    margin: 1rem 0 0;
}

div.product-item ul li {
    text-align: left;
    list-style: none;
    padding: 0.5rem;
    margin: 0 0 1rem 2rem;
    position: relative;
}

div.product-item ul li:before {
    content: "\f058";
    font-size: 1.6rem;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 0;
    left: -2rem;
}

div.product-item .highlighted li {
    background: #fcca25;
    color: #000;
    font-weight: 700;
}

div.product-item .product-price {
    font-size: .8rem;
}

div.product-item .product-price .big {
    font-size: 1.8rem;
    font-weight: 700;
}

div.product-item .old-price span {
    position: relative;
}

div.product-item .old-price span:before {
    content: "";
    border-top: 4px solid #dc3545;
    width: 100%;
    position: absolute;
    transform: rotate(-15deg);
    bottom: 1.2rem;
    border-radius: 15px;
}

div.product-item .product-price .product-price-total {
    font-size: 1rem;
}

.klarna-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 14px;
    border: 1px solid #eae7e4;
    background-color: #FFFFFF;
    text-align: left;
    color: #17120f;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
.klarna-container .text-wrapper {
    margin-left: 14px;
    margin-right: 0px;
}

.klarna-container .text-wrapper p {
    color: #17120f;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
}

.klarna-container .text-wrapper .link{
    text-decoration: underline;
    white-space: nowrap;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    padding-top: 3px;
}

.klarna-container .text-wrapper .legal{
    color: #787471;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 4px;
    margin-bottom: 0;
}

div.product-item .btn-primary {
    width: 100%;
    margin-top: 2rem;
    color: #FFFFFF;
}

div.product-item-review-summary {
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

div.product-item-review-summary .rating-stars, .review-title {
    margin-bottom: 1rem!important;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.rating-stars li {
    color: #ff8f00;
}

div.product-item-review-summary .rating-stars li i {
    font-size: 25px;
}

/* Form section */

.form-control{
    padding: 0.379rem 0.75rem;
    font-size: 1.1rem;
}
.form-check-input:checked {
    background-color: #623C8B;
    border-color: #623C8B;
}

.form-control:focus, .form-select:focus {
    color: rgba(0,0,0,.8);
    background-color: #fff;
    border-color: #ddcfec;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(221, 207, 236, .25);
}

select.form-select{
background-image: url(../images/caret-down.png);
background-size: 10px 12px;
}

.checkout-form .form-label{
    font-weight: 700;
}

ul.payment-options li {
    display: block;
    border-bottom: 1px #e6e9ec solid;
    padding: 1rem 0;
}

ul.payment-options li label {
    height: 100%;
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

ul.payment-options li label img{
    width: 101px;
}

ul.payment-options li .payment-option-description {
    font-size: .9rem;
    font-weight: 400;
}

#payment-options-details input::placeholder{
    font-size: 14px;
    font-weight:200;
    color: #13395e;
    letter-spacing: -.03rem;
}

#payment-options-details label{
    font-size: 0.9rem;
}

#payment-options-details input:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.2rem rgba(0,0,0,.25);
}

.cvv-help {
    background: #000;
    color: #fff;
    padding: 0.5rem;
    margin-top: 1rem;
    font-size: .8rem;
}

.payment-options li.card-check label img{
    width: 32px;
}

.btn-block{
    color: #FFFFFF;
}

.btn-outline-secondary:hover {
    color: #000;
    background-color: #13aa80;
    border-color: #13aa80;
}

.btn-secondary {
    background-color: #13aa80;
    border-color: #13aa80;
}

.btn-outline-secondary {
    color: #13aa80;
    border-color: #13aa80;
}

.btn-secondary:hover{
    background-color: #42bb99;
    border-color: #2bb38d;
}

.btn-check:focus+.btn-outline-secondary, .btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.25rem rgba(19,170,128,.5);
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: .9625rem;
    border-radius: 0.2rem;
}

/* #payment-options-details{
    display: none;
} */

/* review section */

.rating-stars.big li i{
    font-size: 32px;
}

hr:not([size]) {
    height: 0.5px;
}

.review-list p{
    line-height: 1.6;
}

/* .review-list img {
    cursor: zoom-in;
} */

.img-thumbnail, .img-fluid{
width: auto;
max-width: 100%;
height: auto;
}

.rating-stars.medium li i{
    font-size: 20px;
    cursor: pointer;
}

/* footer section */
/* .footer .footer-top {
    margin-top: 3rem;
    padding: 4rem 0;
    border-top: 4px solid #623C8B;
}

footer .logo{
    width: 155px;
}

.footer-top p{
    line-height: 1.6;
    font-size: 18px;
}

.footer .footer-top .h3, .footer .footer-top h3 {
    font-size: .8rem;
    text-transform: uppercase;
    color: rgba(231,75,85,.56);
}

.footer .footer-top .footer-menu-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-menu-links ul li a {
    display: block;
    line-height: 2.5rem;
    font-weight: 500;
    transition: opacity .2s ease-in-out 0s;
}

.footer .footer-bottom {
    padding: 1rem;
    border-top: 1px solid #623C8B;
    text-align: center;
}

.footer .footer-bottom .copy-rights p{
    color:#000000;
    font-weight: 500;
    line-height: 1.6;
} */

.review-sum{
    font-weight: 400;
}

#discount-btn{
    font-size: 1.1rem;
    padding: 0.388rem 0.75rem;
}

/* ---------------------------------- */
.sec-gap{
    padding: 80px 0;
}

.purchasebtn{

    display: block;
    padding: 15px;
    color: #535353;
    background: #cccccc;
    text-align: center;
    border-radius: 4px;
    transition: all 0.4s;
    font-size: 18px;
    box-shadow: inset 2px 1px 6px rgba(0,0,0,0.2);
}

.purchasebtn.active{
    color: #fff;
    background: #b93c44;
    box-shadow: inset 1px 2px 5px rgba(0,0,0,0.2);
}

.common-heading {
    font-size: 40px;
    color: #282b2c;
    font-weight: 800;
}

.common-para {
    font-size: 16px;
    line-height: 26px;
    color: #101010;
    letter-spacing: 0.5px;
    margin-top: 18px;
}
.image-box-ingredients{
    max-width: 100%;
    margin: 0 auto;
}

.procced-box{
    border: 2px dashed rgba(0, 0, 0, .2);
    border-radius: 4px;
    padding: 30px;
}
.proceed-btn{
    background-color: #623C8B;
    border-color: #623C8B;
    font-weight: 500;
    color: #FFFFFF;
    display: inline-block;
    padding: 15px 35px;
    max-width: 320px;
    border-radius: 4px;
    transition: 0.4s all;
}
.proceed-btn i{
    margin-right: 10px;
}
.proceed-btn:hover,
.proceed-btn:focus{
    background: #787471;
    color: #FFFFFF;
}
.terms-text{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: baseline;
    text-align: left;
    position: relative;
    margin-top: 20px;
    cursor: pointer;
}

.terms-text input{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
}

.terms-text label{
    flex: 1;
    padding-left:28px;
    position: relative;
    cursor: pointer;
    font-size: 15px;
}

.terms-text input[type="checkbox"]+span.checkicon {
    position: absolute;
    cursor: pointer;
    font-size: 14px;
    top: 14px;
}
.terms-text input[type="checkbox"]+span:before {
    content: "";
    height: 19px;
    width: 19px;
    border-radius: 4px;
    border: 1px solid #cac9c9;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.terms-text input[type="checkbox"]:checked+span:before {
    border: 1px solid #623C8B;
    background: #623C8B;
}
.terms-text input[type="checkbox"]:checked+span:after {
    content: '\f00c';
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    color: #ffffff;
    left: 4px;
    top: 53%;
    transform: translateY(-50%);
    font-size: 10px;
}

/* ----Footer------- */
.main_footer .footer_top{
	background-color: #242424;
	padding: 40px 0;
    text-align: center;
}
.main_footer .footer_top p{
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}
.main_footer .footer_top p+p{
	margin-top: 15px;
}
.main_footer .copyright_sec{
	background-color: #111111;
	padding: 12px 0;
}
.main_footer .copyright_sec ul {
    margin-bottom: 0;
    padding-left: 0;
    text-align: center;
}
.main_footer .copyright_sec ul li{
	display: inline-block;
	font-size: 12px;
    letter-spacing: 1px;
    font-weight: 400;
	text-transform: uppercase;
}
.main_footer .copyright_sec ul li+li{
	padding-left: 15px;
}
.main_footer .copyright_sec ul li a{
	color: #fff;
}

@media (min-width: 1200px) {
    .h4,
    h4 {
        font-size: 1.65rem;
    }

    .h5,
    h5 {
        font-size: 1.375rem;
    }
}

@media (max-width: 992px) {
    /* .header .header-container .container {
        max-width: 100%;
    } */

    .rating-stars.big li i {
        font-size: 29px;
    }

    div.product-item-review-summary .rating-stars li i {
        font-size: 21px;
    }
    div.product-item{
        margin-bottom: 30px;
    }
    .image-box-ingredients{
        margin: 0 auto 30px;
    }
}

@media (max-width: 767px) {
    /* .header .header-container .header-wrapper .main-menu-container {
        width: 100%;
    }

    .page-header .container,
    .section .container {
        max-width: 100%;
    }
    .header .header-container .header-wrapper .main-menu-container .main-menu-body {
        padding: 2rem;
    } */

    #checkout-form .small {
        font-size: .75rem;
    }
    
    div.product-item-review-summary {
        margin-bottom: 1.5rem;
    }

    /* .footer .footer-top .footer-menu-links {
        margin-top: 1.5rem;
    } */
    .sec-gap {
        padding: 40px 0;
    }

    

}

@media (max-width: 575px) {
    /* .header .header-container .header-wrapper .featured-link {
        display: none;
    } */

    .checkout-form .form-label {
        font-size: .9rem;
    }
    .common-heading {
        font-size: 28px;
    }
    .purchasebtn{
        margin-top: 10px;
        padding: 8px 10px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.product-item-image+h4+p {
    min-height: 69px;
}
.total-price-left-block {
    position: absolute;
    top: 0;
    left: 0;
    background: #cccccc;
    padding: 0.7rem 1rem;
    border-radius: 0 4px 0 0;
    border-top-right-radius: 0;
    border-top-left-radius: 10px;
}
.total-price-left-block p:first-child {
    font-weight: bold;
    font-size:1rem;
}
.total-price-left-block p{
    margin:0;

}

div.product-item.active .total-price-left-block {
    background: #623C8B;
    color: #FFFFFF;
    border-radius: 0 4px 0 0;
    border-top-right-radius: 0;
}
div.product-item.active .total-price-left-block p{
    color:#fff;
}
div.product-item{
    min-height:727px;
}

.terms-text.has-error{
    border: 1px solid red;
    padding: 10px;
}
.terms-text.has-error input[type="checkbox"]+span.checkicon{
    top:20px
}
.total-price-left-block p:last-child {
    font-size: 0.8rem;
}

.email_n_mob a {
    color: #333;
}