/* CSS Document */

body {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    color: #2c2c4c;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    width: 100%;
}

.scrollup {
    position: fixed;
    right: 10px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #282731;
    text-align: center;
    line-height: 40px;
    font-weight: 900;
    font-size: 20px;
    z-index: 99999;
    display: none;
    border-radius: 7px;
}

.scrollup:hover {
    color: #fff;
    background: #2e2a4f;
}

.overflow {
    overflow: hidden;
}

.light-bg {
    background: #eeede9;
}

.wrapper {
    position: relative;
}

.padding-1 {
    padding: 70px 0px;
}

.padding-2 {
    padding: 20px 0px 20px 0px;
}

.padding-3 {
    padding: 150px 30px;
}

.btn {
    font-size: 13px;
    font-weight: 600;
}

.br-btn {
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    color: #2c2c4c;
    font-weight: 600;
    padding: 10px 35px;
    border: 2px solid #2c2c4c;
    border-radius: 5px;
}

.br-btn:hover {
    color: #2c2c4c;
    text-decoration: none;
    background: #ffce16;
}

.br-btn-2 {
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    color: #2c2c4c;
    font-weight: 600;
    padding: 10px 35px;
    border: 2px solid #2c2c4c;
    border-radius: 5px;
    background: #ffce16;
}

.br-btn-2:hover {
    color: #2c2c4c;
    text-decoration: none;
    background: #fff;
}

.br-btn-y {
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    color: #ffce16;
    font-weight: 600;
    padding: 10px 35px;
    border: 2px solid #ffce16;
    border-radius: 5px;
}

.br-btn-y:hover {
    color: #2c2c4c;
    text-decoration: none;
    background: #FFF;
}

.bg-dark-blue {
    color: #FFF;
    background: #2c2c4c;
}

.bg-yellow {
    background: #ffce16;
}

@media screen and (max-width: 992px) {
    .padding-1 {
        padding: 40px 0px;
    }
    .padding-2 {
        padding: 40px 0px 40px 0px;
    }
    .padding-3 {
        padding: 50px 30px;
    }
}


/*header Default CSS*/

.header-wrapper {
    position: relative;
    z-index: 999999;
    width: 100%;
    top: 0px;
    left: 0px;
    background: #2e2a4f;
    transition: 400ms;
}

.nav-header {
    position: relative;
    width: 100%;
    padding: 15px 0px;
    background: #FFF;
}

.subheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
}

.logo a img {
    height: 70px;
}

.top-contact {
    display: inline-block;
}

.top-contact ul {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.top-contact ul li {
    display: inline-block;
    width: auto;
    padding: 0px;
    margin: 0px 10px;
}

.top-contact ul li a {
    color: #5d5b70;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: 400ms;
}

.top-contact ul li a:hover {
    color: #2e2a4f;
}

.login-btns {
    display: inline-block;
}

.login-btns ul {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.login-btns ul li {
    display: inline-block;
    width: auto;
    padding: 0px;
    margin: 0px;
}

.login-btns ul li a {
    color: #2e2a4f;
    text-decoration: none;
    display: inline-block;
    padding: 10px 30px;
    font-weight: 600;
    transition: 400ms;
    border-radius: 5px;
}

.loginbtn {
    border: 2px solid #2c2c4c;
    margin: 0px 0px 0px 10px;
}

.loginbtn:hover {
    background: #ffce16;
}

.registerbtn {
    background: #ffce16;
    border: 2px solid #ffce16;
}

.registerbtn:hover {
    color: #ffce16;
    border: 2px solid #2e2a4f;
    background: #2e2a4f;
}

.navbar {
    padding: 0px !important;
}

.nav-item {
    margin: 0px;
    padding: 0px;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 600;
    padding: 20px 15px;
    color: #FFF;
}

.navbar-light .navbar-nav .nav-link.active {
    background: #ffce16;
}

.navbar-light .navbar-nav .nav-link:hover {
    background: #ffce16;
}

.fixed-dropdown {
    position: fixed !important;
    left: 0px;
    top: 59px !important;
    width: 100%;
    border-radius: 0px !important;
    padding: 40px 20px 20px 20px;
    z-index: 9999;
    background: #f9f8ff;
    box-shadow: 0px 3px 3px rgb(226 221 243 / 60%);
    border: 1px solid #fff;
    -webkit-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.top-menu-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.menuitem {
    position: relative;
    width: 16%;
    margin: 0px 15px 15px;
}

.menuitem-header {
    display: inline-block;
    margin: 0px 0px 10px;
    padding: 0px 5px 0px 0px;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 2px solid #ffce16;
    color: #2e2a4f;
    text-decoration: none;
}

.menuitem-header:hover {
    color: #ffce16;
}

.menuitem-a {
    display: block;
    margin: 0px 0px 7px;
    padding: 0px;
    font-size: 15px;
    font-weight: 600;
    color: #282731;
    text-decoration: none;
}

.menuitem-a:hover {
    color: #2e2a4f;
}

.menuitem ul {
    position: relative;
    margin: 0px;
    padding: 0px;
}

.menuitem ul li {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px !important;
}

.menuitem ul li a {
    display: inline-block;
    padding: 0px;
    font-size: 13px;
    line-height: normal;
    font-weight: 400;
    color: #282731;
    margin: 0px 0px 7px 0px;
    text-decoration: none;
}

.menuitem img {
    width: 100%;
    display: block;
    margin: 0px 0px 10px;
    padding: 15px 0px;
    height: 120px;
    object-fit: contain;
    background: #FFF;
    border: 1px solid #e7e5f2;
    box-shadow: 0px 2px 3px #edebf7;
}

.dropdown:hover .fixed-dropdown {
    display: block !important;
}

@media screen and (max-width: 992px) {
    .subheader {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }
    .top-contact {
        margin: 10px 0px;
    }
    .navbar-brand img {
        width: 190px;
    }
    .fixed-dropdown {
        position: relative !important;
        left: 0px;
        top: 0px !important;
        width: 100%;
        border-radius: 0px !important;
        min-height: 300px;
        padding: 20px;
        z-index: 9999;
        box-shadow: 0px 3px 3px rgb(0 0 0 / 10%);
        border: none !important;
    }
    .top-menu-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .menuitem {
        position: relative;
        width: 35%;
        margin: 0px 15px 15px;
    }
    .navbar {
        padding: 10px 0px !important;
    }
    .navbar-toggler {
        outline: none !important;
    }
    .navbar-toggler svg {
        color: #ffce16;
    }
    .navbar-toggler p {
        display: inline-block;
        color: #FFF;
        margin: 0px;
        padding: 0px;
    }
}


/*end header */

.slider-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
}

.slider-container {
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

.slider-content {
    display: inline-block;
    width: auto;
    padding: 30px;
    background: #ffce16;
}

.slider-content h1 {
    display: block;
    font-size: 36px;
    font-weight: 200;
    padding: 0px;
    margin: 0px 0px 10px;
}

.slider-content p {
    display: block;
    font-size: 16px;
    font-weight: 400;
    padding: 0px;
    margin: 0px 0px 10px;
}

.card-box-1 {
    position: relative;
    width: 100%;
}

.card-box-1 h2 {
    display: block;
    width: 100%;
    padding: 0px;
    margin: 0px 0px 15px 0px;
    font-size: 26px;
    font-weight: 300;
}

.card-box-1 h2 span {
    font-weight: 600;
}

.card-box-1 h3 {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px 0px 15px 0px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.card-box-1 h4 {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px 0px 15px 0px;
}

.card-box-1 h5 {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px 0px 15px 0px;
}

.card-box-1 h6 {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px 0px 15px 0px;
}

.card-box-1 p {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px 0px 15px 0px;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}

.card-box-1 p span {
    font-weight: 600;
}

.card-box-svg-1 {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #ffce16;
    color: #2c2c4c;
    line-height: 40px;
    top: 0px;
    right: 20px;
    text-align: center;
}

.min-logo {
    width: 100px !important;
    display: inline !important;
}

.br-box {
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.bg-pattern-1 {
    background: url(../images/bg-pattern-1.svg) center center;
    background-size: 50%;
}

.web-title {
    position: relative;
    width: 100%;
    margin: 0px 0px 40px;
    text-align: center;
}

.web-title h2 {
    display: inline-block;
    width: 100%;
    margin: 0px 0px 5px;
    padding: 0px;
    font-weight: 400;
}

.web-title h2 span {
    font-weight: 600;
}

.web-title p {
    display: block;
    padding: 0px;
    margin: 0px;
}

.web-title-bg {
    position: absolute;
    z-index: -1;
    width: 200px;
    height: 15px;
    margin: 0px auto;
    left: 0;
    right: 0;
    top: 20px;
    background: #ffd43a;
}

@media screen and (max-width: 992px) {
    .card-box-1 {
        display: block;
        width: 100%;
        margin: 0px 0px 30px;
    }
}

.footer-wrapper {
    display: block;
    width: 100%;
    padding: 100px 0px;
}

.footer {
    position: relative;
    width: 100%;
}

.footer-logo {
    width: 200px;
}

.footer h5 {
    position: relative;
    width: 100%;
    padding: 0px;
    margin: 0px 0px 15px;
    font-size: 16px;
    font-weight: 600;
}

.footer a {
    font-weight: 600;
    color: #2e2a4f;
    text-decoration: none;
}

.footer ul {
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.footer ul li {
    display: inline-block;
    width: 100%;
    margin: 0px 0px 15px 0px;
    padding: 0px;
}

.footer ul li a {
    font-weight: 500;
}

@media screen and (max-width: 992px) {
    .footer {
        position: relative;
        width: 100%;
        margin: 0px 0px 30px;
    }
}


/*end home page*/

.breadcrumb {
    padding: 0px;
    margin: 0px;
}

.breadcrumb-item a {
    color: #2e2a4f;
    font-weight: 600;
    text-decoration: none;
    transition: 400ms;
}

.breadcrumb-item a:hover {
    color: #ffce16;
}

.root-header {
    display: block;
    width: 100%;
    margin: 0px 0px 30px;
    text-align: center;
}

.root-header h3 {
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.card-product {
    position: relative;
    display: block;
    margin: 0px 0px 40px;
    padding: 30px 20px;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: rgb(148 144 178 / 24%) 0px 12px 28px 0px, rgb(243 242 255 / 28%) 0px 2px 4px 0px;
    background: rgb(255 255 255);
    text-align: center;
}

.card-product img {
    height: 140px;
    object-fit: contain;
    margin: 0px 0px 15px 0px;
}

.card-product h4 {
    display: block;
    margin: 0px 0px 10px;
    padding: 0px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.5px;
    text-align: center;
}

.card-product h5 {
    display: block;
    margin: 0px 0px 10px;
    padding: 0px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.5px;
    text-align: center;
}

.card-product h6 {
    display: inline-block;
    margin: 0px 0px 15px;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    color: #454447;
    border-radius: 7px;
    border: 2px solid #f0e2ad;
}

.card-product a {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #ffce16;
    border-radius: 15px;
    color: #2e2a4f;
    text-align: center;
    line-height: 44px;
    left: 0;
    right: 0;
    margin: auto;
    transition: 400ms;
    bottom: -20px;
}

.card-product a:hover {
    box-shadow: 0px 10px 25px #f2c524d0;
}

.featured {
    position: absolute;
    width: auto;
    padding: 10px 20px;
    background: #ffce16;
    top: 5px;
    left: 5px;
    font-weight: 600;
}

.product-image {
    display: block;
    padding: 30px;
    border-radius: 7px;
    background: #FFF;
}

.product-image img {
    height: 380px;
    object-fit: contain;
}

.box-title {
    display: block;
    width: 100%;
    padding: 5px 10px;
    background: #e8e6f3;
    margin: 0px 0px 10px;
    border-bottom: 1px solid #afa9dc;
}

.box-title h4 {
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.check-text {
    vertical-align: middle;
    font-weight: 600;
    font-size: 15px;
}

.select-box-link {
    display: block;
    width: 100%;
}

.select-box-link h5 {
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 13px;
    padding: 0;
    margin: 0px 0px 5px;
}

.select-box-link ul {
    display: flex;
    width: 100%;
    margin: 0px;
    padding: 0px;
    flex-wrap: wrap;
}

.select-box-link ul li {
    display: inline-block;
    width: auto;
    margin: 0px 0px 10px 0px;
    padding: 5px;
    text-align: center;
}

.select-box-link ul li a {
    background: #FFF;
    border-radius: 7px;
    display: inline-block;
    padding: 5px;
    box-shadow: 0px 3px 6px rgb(236 234 243);
    border: 2px solid #FFF;
    transition: 400ms;
    text-align: center;
    color: #636175;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: -0.5px;
    border: 2px solid #e9e7f1;
}

.select-box-link ul li a:hover {
    border: 2px solid #ffce16;
}

.select-box-link ul li a.active {
    border: 2px solid #ffce16;
}

.select-box-link ul li a span {
    font-size: 12px;
    font-weight: 400;
    display: block;
    text-align: center;
    padding: 0px;
    margin: 4px 0px 0px 0px;
}

.select-box-link ul li a img {
    display: inline-block;
    width: 110px;
    height: 70px;
    object-fit: contain;
}

.select-box-link ul li span {
    font-size: 12px;
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0px 0px;
    line-height: 16px;
}

.default-card {
    position: relative;
}

.default-card ul {
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.default-card ul li {
    display: inline-block;
    width: 100%;
    margin: 0px;
    padding: 0px;
    line-height: 26px;
    list-style: none;
    font-size: 13px;
}

.dropdown-item {
    font-size: 14px;
}

.product-page-cart {
    display: flex;
}

.product-page-cart {
    display: flex;
    justify-content: space-between;
}

.form-control {
    font-size: 14px;
    font-weight: 500;
}

.form-select {
    font-size: 14px;
    font-weight: 500;
}

.cart-message {
    display: block;
    text-align: center;
    margin: 0px 0px 30px;
}

.modal-title {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -1px;
}

.cart-message h5 {
    display: inline-block;
    font-weight: 600;
    font-size: 40px;
    width: 70px;
    height: 70px;
    line-height: 68px;
    text-align: center;
    background: #ffce16;
    padding: 0px;
    margin: 0px 0px 7px;
    border-radius: 100%;
}

.cart-message p {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.hidden-details-card {
    position: relative;
    padding: 20px;
    background: #eceaf3;
    border-radius: 7px;
}

.hidden-details-card p {
    display: block;
    width: 100%;
    font-weight: 400;
    padding: 0px;
    margin: 0px;
}

.hidden-details-card p span {
    font-weight: 600;
}

.box-highlight {
    background: rgb(255, 228, 120);
    background: linear-gradient(318deg, rgba(255, 228, 120, 1) 0%, rgba(255, 250, 230, 1) 30%, rgba(255, 250, 230, 1) 58%, rgba(255, 224, 106, 1) 100%);
}

.card-formbox {
    position: relative;
    display: block;
    margin: 0px 0px 40px;
    padding: 30px 20px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: rgb(148 144 178 / 24%) 0px 12px 28px 0px, rgb(243 242 255 / 28%) 0px 2px 4px 0px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    margin: 0px 0px 3px;
}


/*cart css new css updated > may 27*/

.cart-container {
    padding: 15px;
    background: #FFF;
    border: 1px solid #dddbec;
    align-items: center;
    justify-content: space-between;
}

.cart-right {
    display: flex;
    padding: 10px 0px;
}

.delete-cart {
    position: absolute;
    width: 24px;
    height: 24px;
    color: #2c2c4c;
    background-color: #ffce16;
    cursor: pointer;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.cart-image {
    position: relative;
}

.cart-image img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
    padding: 10px;
    background: #FFF;
    border: 1px solid #dddbec;
}

.cart-details {
    display: block;
}

.cart-details h4 {
    display: block;
    padding: 0px;
    margin: 0px 0px 4px;
    font-size: 14px;
    font-weight: 700;
}

.cart-details h6 {
    display: block;
    padding: 0px;
    margin: 0px;
    font-size: 12px;
    font-weight: 400;
}

.cart-details a {
    color: #2e2a4f;
    font-weight: 600;
    margin: 0px 0px 5px;
}

.cart-quantity {
    display: inline-block;
}

.cart-quantity input {
    width: 60px;
    text-align: center;
}

.cart-price {
    display: inline-block;
    border-radius: 5px;
}

.cart-total-price {
    padding: 5px 10px;
}

.align-center {
    align-items: center;
}

.title-card {
    display: block;
    margin: 0px 0px 10px 0px;
}

.title-card h5 {
    display: block;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    font-weight: 700;
}

.listings-details {
    display: block;
    padding: 20px;
    margin: 20px 0px 0px 0px;
}

.listings-details h5 {
    display: block;
    text-align: center;
    padding: 0px;
    margin: 0px 0px 10px 0px;
    font-size: 14px;
    color: #2E2E2E;
    font-weight: 600;
    font-family: 'Bitter', serif;
}

.listings-details ul {
    display: flex;
    padding: 0px;
    margin: 0px;
    justify-content: space-between;
}

.listings-details ul li {
    display: inline-block;
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    color: #2E2E2E;
    font-weight: 600;
}

.listings-details ul li i {
    color: #ff4c26;
    margin: 0px 5px 0px 0px;
}

.coupon-code {
    display: flex;
    margin: 0px 0px 15px;
}

.coupon-code ul {
    display: block;
    padding: 0px;
    margin: 0px;
}

.coupon-code ul li {
    display: block;
    padding: 0px;
    margin: 0px 0px 10px;
    list-style: none;
}

.address-cards {
    display: block;
}

.address-cards h5 {
    display: block;
    padding: 0px;
    margin: 0px 0px 5px;
    font-weight: 600;
    font-size: 16px;
}

.address-cards ul {
    display: block;
    margin: 15px 0px 0px 0px;
    padding: 0;
}

.address-cards ul li {
    display: inline-block;
    margin: 0px 0px 5px;
    padding: 0;
}

.address-cards ul li a {
    display: inline-block;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.address-cards ul li a.edit {
    color: #2c2c4c;
    border: 2px solid #d7d4e4;
    background-color: #f5f4fb;
}

.address-cards ul li a.delete {
    background-color: #ff5050;
    border: 2px solid #ff4141;
    color: #FFF;
    margin: 0px 0px 0px 5px;
}

.my-profile-tabs {
    display: block;
    padding: 15px;
    background: #FFF;
    border: 1px solid #dddbec;
}

.my-profile-tabs .nav-link {
    margin: 0px 0px 15px;
    color: #282731;
    font-weight: 600;
    text-align: left;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    color: #282731;
    background-color: #ffce16;
}

.my-profile-tabs .nav-link svg {
    margin: 0px 10px 0px 0px;
    display: inline-block;
}

.cards-1 {
    display: block;
}

.cards-1 h6 {
    display: block;
    padding: 0px;
    margin: 0px 0px 7px;
    font-size: 15px;
    font-weight: 600;
}

.fs-7 {
    font-size: 13px;
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    .cart-container {
        flex-direction: column;
    }
    .cart-image {
        margin: 0px 0px 15px;
    }
    .cart-right {
        flex-direction: column;
    }
    .align-center {
        width: 100%;
        margin: 20px 0px 0px;
        justify-content: center;
    }
    .clearcards {
        flex-direction: column;
        margin: 0px 0px 30px !important;
    }
}

.cart-btn {
    border: 2px solid #e1dfd8;
    margin: 0px 0px 0px 10px;
    padding: 10px 15px !important;
    background-color: #f7f5ed;
}

.cart-btn:hover {
    background: #e1dfd8;
}

.pickup-store-title-1 {
    font-size: 14px;
    padding: 0px;
    margin: 0px 0px 3px;
    color: #5d5b70;
}

.pickup-store-title-2 {
    font-size: 12px;
    padding: 0px;
    margin: 0px;
    font-weight: 400;
    color: #5d5b70;
}

.cart-table {
    font-size: 13px;
}

.pointer {
    cursor: pointer;
}

.cancel-item {
    margin: 0px 9px 0px -18px;
}

.final-cart {
    font-size: 13px;
}

@media screen and (max-width: 992px) {
    .cart-table {
        display: block;
        width: 100%;
        overflow-y: hidden;
        overflow-x: scroll;
    }
}

.abosolute-cards {
    position: sticky;
    bottom: 0px;
    background-color: #FFF;
    padding: 10px;
    border-top: 2px solid #e1dfd8;
    z-index: 9999;
}

.alert-messages {
    position: fixed;
    right: 5px;
    top: 10px;
    width: auto;
    z-index: 9999999;
}

.alert-messages ul {
    display: inline-block;
    margin: 0px;
    padding: 0px;
}

.alert-messages ul li {
    display: block;
    margin: 0px 0px 5px;
    padding: 10px 15px;
    color: #FFF;
    border-radius: 5px;
    text-align: center;
    -webkit-animation: fade-in-bck 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-bck 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


/* ----------------------------------------------
 * Generated by Animista on 2022-5-27 16:8:26
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */


/**
 * ----------------------------------------
 * animation fade-in-bck
 * ----------------------------------------
 */

@-webkit-keyframes fade-in-bck {
    0% {
        -webkit-transform: translateZ(80px);
        transform: translateZ(80px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes fade-in-bck {
    0% {
        -webkit-transform: translateZ(80px);
        transform: translateZ(80px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

.total-price {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 7px;
    color: #2e2a4f;
    background: #ffce16;
}

.total-price h4 {
    display: flex;
    justify-content: space-between;
    margin: 0px 0px 4px;
    padding: 0px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.total-price h4 span {
    font-weight: 700;
}

.form-check-input:checked {
    background-color: #ffce16;
    border-color: #ffce16;
}

.saved-message {
    margin: 0px 0px 15px 0px;
    display: inline-block;
}

.saved-message p {
    display: flex;
    margin: 0px;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    align-items: center;
    background-color: #FFF;
}

.saved-price {
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    border: 2px solid #d7d4e4;
    margin-left: 10px;
    background-color: #f5f4fb;
}

@media screen and (max-width: 992px) {
    .product-page-cart {
        flex-direction: column;
    }
    .product-page-cart button {
        margin: 10px 0px 0px;
    }
}

.img-height {
    position: relative;
    height: 100%;
    overflow: hidden;
    width: 100%;
    min-height: 100%;
}

@media screen and (max-width: 992px) {
    .img-height {
        height: auto;
        min-height: 250px;
    }
}


/*loader css*/

.loader-wrapper {
    --primary: #ffce16;
    min-height: 100vh;
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2e2a4f;
    z-index: 9999999999;
}

.loader {
    margin: 50px;
}

.push-pop {
    --duration: 0.85;
    height: 100px;
    width: 100px;
    position: relative;
    overflow: hidden;
}

.push-pop>div:nth-of-type(1) {
    height: 20px;
    width: 20px;
    position: absolute;
    -webkit-animation: push-pop-slide calc(var(--duration) * 1s) infinite alternate ease-in-out;
    animation: push-pop-slide calc(var(--duration) * 1s) infinite alternate ease-in-out;
    transform: translate(0, -100%);
    top: 100%;
    left: 0;
}

.push-pop>div:nth-of-type(1):after {
    -webkit-animation: push-pop-flip calc(var(--duration) * 1s) infinite alternate ease-in-out;
    animation: push-pop-flip calc(var(--duration) * 1s) infinite alternate ease-in-out;
    background: var(--primary);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
}

.push-pop>div:nth-of-type(2) {
    background: var(--primary);
    height: 30px;
    left: 50%;
    position: absolute;
    top: 100%;
    transform: translate(-50%, -100%);
    width: 20px;
}

.push-pop:after,
.push-pop:before {
    -webkit-animation: push-pop-pushed calc(var(--duration) * 1s) alternate infinite ease;
    animation: push-pop-pushed calc(var(--duration) * 1s) alternate infinite ease;
    background: var(--primary);
    bottom: 0;
    content: "";
    height: 40px;
    position: absolute;
    width: 20px;
}

.push-pop:before {
    animation: push-pop-pushed calc(var(--duration) * 1s) alternate-reverse infinite ease;
    left: 0;
}

.push-pop:after {
    right: 0;
}

@-webkit-keyframes push-pop-pushed {
    0%,
    72.5% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(0, 100%);
    }
}

@keyframes push-pop-pushed {
    0%,
    72.5% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(0, 100%);
    }
}

@-webkit-keyframes push-pop-flip {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(0, -80px) rotate(90deg);
    }
    100% {
        transform: translate(0, 0) rotate(180deg);
    }
}

@keyframes push-pop-flip {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(0, -80px) rotate(90deg);
    }
    100% {
        transform: translate(0, 0) rotate(180deg);
    }
}

@-webkit-keyframes push-pop-slide {
    to {
        transform: translate(0, -100%) translate(80px, 0);
    }
}

@keyframes push-pop-slide {
    to {
        transform: translate(0, -100%) translate(80px, 0);
    }
}

.push-out {
    --duration: 0.85;
    height: 100px;
    width: 100px;
    position: relative;
    overflow: hidden;
}

.push-out>div:nth-of-type(1) {
    height: 20px;
    width: 20px;
    position: absolute;
    -webkit-animation: push-out-slide calc(var(--duration) * 1s) infinite alternate ease-in-out;
    animation: push-out-slide calc(var(--duration) * 1s) infinite alternate ease-in-out;
    transform: translate(0, -100%);
    top: 100%;
    left: 0;
}

.push-out>div:nth-of-type(1):after {
    -webkit-animation: push-out-flip calc(var(--duration) * 1s) infinite alternate ease-in-out;
    animation: push-out-flip calc(var(--duration) * 1s) infinite alternate ease-in-out;
    background: var(--primary);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
}

.push-out>div:nth-of-type(2) {
    background: var(--primary);
    height: 30px;
    left: 50%;
    position: absolute;
    top: 100%;
    transform: translate(-50%, -100%);
    width: 20px;
}

.push-out:after,
.push-out:before {
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: calc(var(--duration) * 4s);
    animation-duration: calc(var(--duration) * 4s);
    background: var(--primary);
    bottom: 0;
    content: "";
    height: 40px;
    position: absolute;
    width: 20px;
}

.push-out:after {
    -webkit-animation-name: push-out-pushed-1;
    animation-name: push-out-pushed-1;
    right: 0;
}

.push-out:before {
    -webkit-animation-name: push-out-pushed-2;
    animation-name: push-out-pushed-2;
    left: 0;
}

@-webkit-keyframes push-out-pushed-1 {
    0%,
    18.125%,
    50%,
    68.125%,
    100% {
        transform: translate(0, 0);
    }
    25%,
    43.125%,
    75%,
    93.125% {
        transform: translate(0, 100%);
    }
}

@keyframes push-out-pushed-1 {
    0%,
    18.125%,
    50%,
    68.125%,
    100% {
        transform: translate(0, 0);
    }
    25%,
    43.125%,
    75%,
    93.125% {
        transform: translate(0, 100%);
    }
}

@-webkit-keyframes push-out-pushed-2 {
    0%,
    18.125%,
    50%,
    68.125%,
    100% {
        transform: translate(0, 100%);
    }
    25%,
    43.125%,
    75%,
    93.125% {
        transform: translate(0, 0);
    }
}

@keyframes push-out-pushed-2 {
    0%,
    18.125%,
    50%,
    68.125%,
    100% {
        transform: translate(0, 100%);
    }
    25%,
    43.125%,
    75%,
    93.125% {
        transform: translate(0, 0);
    }
}

@-webkit-keyframes push-out-flip {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(0, -80px) rotate(90deg);
    }
    100% {
        transform: translate(0, 0) rotate(180deg);
    }
}

@keyframes push-out-flip {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(0, -80px) rotate(90deg);
    }
    100% {
        transform: translate(0, 0) rotate(180deg);
    }
}

@-webkit-keyframes push-out-slide {
    to {
        transform: translate(0, -100%) translate(80px, 0);
    }
}

@keyframes push-out-slide {
    to {
        transform: translate(0, -100%) translate(80px, 0);
    }
}
.error-message {
  color: red;
  padding-bottom: 15px;
  font-size: 13px;
}
.loading-mask .loader img {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  z-index: 100;
  width: 50px;
}
.loading-mask {
  bottom: 0;
  left: 0;
  margin: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999999;
  background: white;
  opacity: 0.9;
}
.loader p {
  text-align: center;
  position: relative;
  top: 270px;
  font-size: 15px;
}
.modal {
  z-index: 99999999 !important;
}
.cart-summary {
  display: none;
}
.page.messages {
  opacity: 0;
  position: absolute;
}
.zip-btn{
    cursor: pointer;
}