/*=========================================================================== 
General style
==============================================================================*/
body{
    font-family: 'Albert Sans', sans-serif;
    font-size: 18px;
    background-color: #F2F2F2;
    z-index: 1;
}
a:hover{
    text-decoration: unset;
}
button:focus, a:focus{
    outline: none;
}
html{
    scrollbar-color: rgba(204, 57, 139, 1) rgba(204, 57, 138, 0.481);
    scrollbar-width: thin;
}
html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: rgba(204, 57, 138, 0.481);
}

html::-webkit-scrollbar-thumb {
    background: rgba(204, 57, 139, 1);
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
    background: rgba(204, 57, 138, 0.863);
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb:active {
    background: rgba(204, 57, 138, 0.863);
    border-radius: 10px;
}
/* whatsapp floating btn */
.whatsapp-icon-container{
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 99;
}
.whatsapp-icon-container .whatsapp-icon{
    background-color: #fff;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
}
.whatsapp-icon-container .whatsapp-icon a{
    color: #25D366;
    font-size: 30px;
}
/* Loader */
.loader-container{
    position: fixed;
    z-index: 999;
    background-color: #F291C7;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
/* Heading */
.heading h1{
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}   
.heading span{
    color: #fddb94;
}
/* heading 2 */
.heading-2 {
    position: relative;
    display: flex;
    margin: auto;
    justify-content: center;
    margin-bottom: 20px;
}
.heading-2 h1 {
    font-family: ''"Lato", Arial, sans-serif'';
    position: relative;
    font-size: 75px;
    color: rgba(0, 0, 0, 0.04);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.heading-2 h2 {
    font-size: 45px;
    font-weight: 700;
    position: absolute;
    text-transform: uppercase;
    letter-spacing: 6px;
    display: flex;
    align-self: center;
    margin-top: 10px;
    margin-left: 100px;
    margin-right: 100px;
}
/* notifications */
.error-container{
    position: fixed;
    display: flex;
    max-width: 640px;
    margin: auto;
    left: 0;
    right: 0;
    justify-content: center;
    bottom: 0;
    z-index: 2;
}
/* input */
.input-container{
    margin-bottom: 20px;
}
.input-container input, .input-container textarea{
    background-color: #eaeaea;
    border-radius: 0;
    border: none;
    height: unset;
    padding: 15px 15px;
    color: #000;
}
.input-container input:focus, .input-container textarea:focus{
    outline: none;
    background-color: #f0f0f0;
    box-shadow: none;
}
/* theme-btn */
.theme-btn{
    background-color: #F291C7;
    border: 2px solid #F291C7;
    color: #fff;
    padding: 10px 20px;
}
.theme-btn-o-white{
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}
.theme-btn-o-white:hover{
    background-color: #fff;
    color: #b2449a;
}
.theme-btn-o{
    background-color: transparent;
    border: 2px solid #F291C7;
    color: #F291C7;
    padding: 10px 20px;
    font-weight: 700;
}
/* Breadcrumb */
.breadcrumb-section{
    background-color: #F291C7;
    padding: 20px 0px;
    height: 400px;
    display: flex;
}
.breadcrumb-section .container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcrumb-section .breadcrumb-content-container{
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}
.breadcrumb-section .breadcrumb-content-container h1{
    font-size: 40px;
    color: #fff;
}
.breadcrumb-section .breadcrumb-content-container h4{
    color: #fff;
}
/* product Card */
.each-product-card-container .notification{
    position: absolute;
    top: 0;
    padding: 5px 0px;
}
.each-product-card-container .notification div{
    display: flex;
}
.each-product-card-container .notification p{
    border-radius: 10px;
    font-size: 12px;
    padding: 2px 8px;
    margin: 2px 5px;
}
.each-product-card-container .notification p.out_of_stock{
    background-color: gray;
    color: #fff;
}
.each-product-card-container .notification p.on_sale{
    background-color: red;
    color: #fff;
}
.each-product-card-container .products-info-container{
    margin-top: 10px;
    color: #000;
}
.each-product-card-container .products-info-container span{
    color: #B3B3B3;
    text-transform: capitalize;
}
.each-product-card-container .products-info-container .name{
    margin-bottom: 0px;
    text-transform: capitalize;
}
.each-product-card-container .products-info-container .price{
    font-weight: 600;
}
.each-product-card-container .products-info-container .price span{
    color: red;
    margin-left: 5px;
    text-decoration: line-through;
}
/* NAvigation */
.navigation-section nav{
    padding: 10px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.navigation-section .is-sticky nav{
    background-color: #F2F2F2;
    box-shadow: 0px -2px 9px rgba(0,0,0,0.7);
}
.navigation-section .img-container{
    width: 90px;
    height: 70px;
    background-image: url('../img/logo-icons/blush\ wear\ logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.nav-links-container{
    display: flex;
    margin: auto;
}
.nav-links-container .each-link-container{
    margin: 0px 15px;
    position: relative;
}
.nav-links-container .each-link-container a{
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
}
.nav-links-container .each-link-container a.active{
    font-weight: 600;
}
.white .nav-links-container .each-link-container a{
    color: #ffffff;
}
.is-sticky .nav-links-container .each-link-container a{
    color: #000;
}
.is-sticky .nav-links-container .each-link-container.active a.each-link{
    color: #EEB731;
}
.nav-links-container .each-link-container a:hover{
    text-decoration: none;
}
.nav-btn-container{
    display: flex;
    align-items: center;
}
.nav-btn-container .cart-btn-container{
    height: 40px;
    width: 40px;
}
.nav-btn-container .cart-btn-container a{
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    color: #fff;
}
.is-sticky .nav-btn-container .cart-btn-container a{
    color: #000;
}
.nav-btn-container .cart-btn-container a span.lnr-cart{
    font-size: 30px;
}
.nav-btn-container .cart-btn-container a span.cart-qty{
    position: absolute;
    height: 22px;
    width: 22px;
    font-size: 15px;
    border-radius: 50%;
    border: 1px solid #fff;
    top: -10px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F291C7;
    color: #fff;
}

.burger-btn{
    padding: 10px;
    border: none;
    background-color: transparent;
    width: auto;
    margin-left: 5px;
    display: none;
    border-left: 2px solid #fff;
}
.burger-btn:focus{
    outline: none;
}
.burger-btn span{
    display: block;
    background-color: #ffffff;
    width: 25px;
    margin: 5px 0px;
    height: 2px;
}
.white .burger-btn span{
    background-color: #fff;
}
.is-sticky .burger-btn{
    border-left-color: #F291C7;
}
.is-sticky .burger-btn span{
    background-color: rgb(0, 0, 0);
}
.mobile-nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F291C7;
    color: #fff;
    z-index: 16;
    display: none;
    align-items: center;
    justify-content: center;
}
.mobile-nav.show{
    display: flex;
}
.mobile-nav .links ul{
    list-style: none;
    padding: 0px;
}
.mobile-nav .links ul li{
    text-align: center;
}
.mobile-nav .links ul li a{
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}
.mobile-nav .close-btn{
    position: absolute;
    top: 18px;
    right: 122px;
}
.mobile-nav .close-btn button{
    font-size: 30px;
    color: #fff;
}
/* footer */
.footer-section {
    padding: 40px 0px 0px 0px;
    background-color: #CC398B;
    color: #fff;
}
.footer-section .each-footer-section .logo-container{
    width: 100px;
    margin-bottom: 10px;
}
.footer-section .each-footer-section h5{
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 30px;
}
.footer-section .each-footer-section ul{
    padding-left: 0;
    list-style: none;
}
.footer-section .each-footer-section ul li{
    margin-bottom: 10px;
}
.footer-section .each-footer-section ul li a{
    color: inherit;
}
.footer-section .each-footer-section .social-media-container{
    display: flex;
}
.footer-section .each-footer-section .social-media-container .each-social-icon:first-child{
    margin-left: 0px;
}
.footer-section .each-footer-section .social-media-container .each-social-icon{
    margin: 10px;
}
.footer-section .each-footer-section .social-media-container .each-social-icon a{
    color: #fff;
}
.footer-section .copy-right{
    border-top: 1px solid rgb(255, 255, 255);
}
.footer-section .copy-right p{
    margin-bottom: 0px;
    padding: 10px 0px;
}
.footer-section .copy-right p a{
    color: #000000;
}
/*=========================================================================== 
Home Page style
==============================================================================*/
/* Hero */
.hero-section{
    height: 100vh;
}
.hero-section .hero-container{
    height: 100%;
}
.hero-section .hero-container .carousel{
    height: 100%;
}
.hero-section .hero-container .carousel-inner, .hero-section .hero-container .carousel-item{
    height: 100%;
}
.hero-section .hero-container .carousel-item:nth-child(2){
    background-color: #00cdc4;
}
.hero-section .hero-container .carousel-item:nth-child(1){
    background-color: #F291C7;
}
.hero-section .carousel-indicators li{
    height: 15px;
    width: 15px;
    border-radius: 100%;
}
.hero-section .carousel-indicators li.active{
    /* width: 30px; */
    border-radius: 50%;
}
.hero-section .carousel-item .side-text-container{

    /*! width: ; */
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    display: block;
}
.hero-section .carousel-item .side-text{
    /*! position: absolute; */
    color: #fff;
    text-transform: uppercase;
    transform: rotate(-90deg);
}
.hero-section .carousel-item .side-text::after{
    content: "";
    position: absolute;
    background-color: #fff;
    height: 5px;
    width: 100px;
    top: 50%;
    transform: translateY(-50%);
    right: -130px;
}
.hero-section .carousel-item .side-text::before{
    content: "";
    position: absolute;
    background-color: #fff;
    height: 5px;
    width: 100px;
    top: 50%;
    transform: translateY(-50%);
    left: -130px;
}
.hero-section .each-slider-content-container{
    width: 100%;
}
.hero-section .each-slider-content-container .text-content-side-wrap{
    display: flex;
    align-items: center;
}
.hero-section .each-slider-content-container .text-content-side-container{
    width: 100%;
}
.hero-section .each-slider-content-container .text-content-side-container h1{
    color: #fff;
    text-transform: uppercase;
    font-size: 90px;
    font-weight: bold;
    line-height: .9;
    word-wrap: break-word;
}
.hero-section .each-slider-content-container .text-content-side-container p{
    color: #fff;
    margin-top: 10px;
    margin-bottom: 40px;
    text-transform: capitalize;
    font-size: 25px;
}

.hero-section .container{
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section .nav-btn-container{
    position: absolute;
    right: 50px;
    z-index: 2;
    top: 50%;
    display: block;
    transform: translateY(-50%);
}
.hero-section .carousel-control-next, .hero-section .carousel-control-prev{
    position: relative;
    display: flex;
    height: 50px;
    width: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1;
    margin: 40px 0px;
}

/* home category */
.clothing-category-section{
    padding-top: 30px;
    padding-bottom: 20px;
}
.clothing-category-section .each-clothing-category-container .each-clothing-category{
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 1px 0px 3px rgba(0, 0, 0, 49%);
    position: relative;
    z-index: 0;
}
.clothing-category-section .img-overlayer{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.29);
    z-index: 2;
}
.clothing-category-section .each-clothing-category-container .each-clothing-category .inner-clothing-category{
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    border: 10px solid rgba(255, 255, 255, 0.676);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    z-index: 3;
}
.clothing-category-section .each-clothing-category-container .each-clothing-category .inner-clothing-category .content h2{
    color: #fff;
    font-size: 32px;
}
.clothing-category-section .each-clothing-category-container .each-clothing-category .inner-clothing-category .content a{
    color: #F291C7;
    font-weight: 600;
}
.clothing-category-section .mid-clothing-category .each-clothing-category-container{
    padding: 0px;
    height: 47%;
}.clothing-category-section .mid-clothing-category .each-clothing-category-container:first-child{
    margin-bottom: 30px;
}
.clothing-category-section .mid-clothing-category .each-clothing-category{
    height: 100%;
}
/* featured products */
.featured-products-section{
    margin-top: 30px;
}
/* subscribe */
.subscribe-section{
    margin-top: 20px;
    position: relative;
    padding: 30px 0px;
    /* margin-bottom: 20px; */
    width: 100%;
    overflow: hidden;
    /* background-color: #b2449a; */
    z-index: 1;
}
.subscribe-section::before{
    content: "";
    background-color: #F291C7;
    position: absolute;
    top: 0px;
    /* left: -43%; */
    left: 0;
    bottom: 0px;
    /* right: 20%; */
    right: 0;
    /* transform: skewX(35deg); */
    z-index: 1;
}
.subscribe-section .subscribe-container{
    position: relative;
    z-index: 2;
    color: #fff;
}
.subscribe-section .subscribe-container .text-side{
    align-items: center;
    display: flex;
    /* justify-content: center; */
}
.subscribe-section .heading span{
    font-size: 40px;
}
.subscribe-section .heading h1{
    font-size: 100px;
    margin-bottom: 10px;
}
.subscribe-section .content p{
    margin-bottom: 0px;
}
.subscribe-section .content a{
    margin-top: 25px;
    display: inline-block;
}

/*=========================================================================== 
Products Page style
==============================================================================*/
.products-section{
    padding: 30px 0px;
}
.products-section .filter-container{
    margin-bottom: 50px;
}
.products-section .filter-container .searching-section form{
    position: relative;
}
.products-section .filter-container .searching-section input{
    position: relative;
    left: 0;
    right: 0;
    padding-right: 30px;
    background-color: transparent;
}
.products-section .filter-container .searching-section button{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    border: none;
    background-color: transparent;
}
.products-section .filter-container h4{
    font-weight: bold;
}
.products-section .filter-container h4 span{
    display: none;
}
.products-section .filter-container ul{
    list-style: none;
    padding-left: 15px;
    height: 300px;
    overflow-y: auto;
    scrollbar-color: rgba(204, 57, 139, 1) rgba(204, 57, 138, 0.481);
    scrollbar-width: thin;
}
.products-section .filter-container ul::-webkit-scrollbar {
    width: 10px;
}

.products-section .filter-container ul::-webkit-scrollbar-track {
    background: rgba(204, 57, 138, 0.481);
}

.products-section .filter-container ul::-webkit-scrollbar-thumb {
    background: rgba(204, 57, 139, 1);
    border-radius: 10px;
}

.products-section .filter-container ul::-webkit-scrollbar-thumb:hover {
    background: rgba(204, 57, 138, 0.863);
    border-radius: 10px;
}

.products-section .filter-container ul::-webkit-scrollbar-thumb:active {
    background: rgba(204, 57, 138, 0.863);
    border-radius: 10px;
}
.products-section .filter-container ul li{
    cursor: pointer;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.products-section .filter-container ul li.active{
    color: #b2449a;
    position: relative;
}
.products-section .filter-container ul li.active::before{
    content: "";
    background-color: #b2449a;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}
.products-section .filter-container .category-section, .products-section .filter-container .size-section{
    margin-top: 15px;
    border-top: 2px solid #B3B3B3;
    padding-top: 10px;
}
.products-section .filter-container .size-section .price-range{
    padding-left: 15px;
}
/*  */
.slider-labels {
    margin-top: 10px;
  }
  
  /* Functional styling;
   * These styles are required for noUiSlider to function.
   * You don't need to change these rules to apply your design.
   */
  .noUi-target,.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .noUi-target {
    position: relative;
    direction: ltr;
  }
  
  .noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  /* Fix 401 */
  }
  
  .noUi-origin {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
  }
  
  .noUi-handle {
    position: relative;
    z-index: 1;
  }
  
  .noUi-stacking .noUi-handle {
  /* This class is applied to the lower origin when
     its values is > 50%. */
    z-index: 10;
  }
  
  .noUi-state-tap .noUi-origin {
    -webkit-transition: left 0.3s,top .3s;
    transition: left 0.3s,top .3s;
  }
  
  .noUi-state-drag * {
    cursor: inherit !important;
  }
  
  /* Painting and performance;
   * Browsers can paint handles in their own layer.
   */
  .noUi-base,.noUi-handle {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
  
  /* Slider size and handle placement;
   */
  .noUi-horizontal {
    height: 4px;
  }
  
  .noUi-horizontal .noUi-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    left: -7px;
    top: -7px;
    background-color: #b2449a;
  }
  
  /* Styling;
   */
  .noUi-background {
    background: #D6D7D9;
  }
  
  .noUi-connect {
    background: #b2449a;
    -webkit-transition: background 450ms;
    transition: background 450ms;
  }
  
  .noUi-origin {
    border-radius: 2px;
  }
  
  .noUi-target {
    border-radius: 2px;
  }
  
  .noUi-target.noUi-connect {
  }
  
  /* Handles and cursors;
   */
  .noUi-draggable {
    cursor: w-resize;
  }
  
  .noUi-vertical .noUi-draggable {
    cursor: n-resize;
  }
  
  .noUi-handle {
    cursor: default;
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
  }
  
  .noUi-handle:active {
    border: 8px solid #345DBB;
    border: 8px solid rgba(53,93,187,0.38);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    left: -14px;
    top: -14px;
  }
  
  /* Disabled state;
   */
  [disabled].noUi-connect,[disabled] .noUi-connect {
    background: #B8B8B8;
  }
  
  [disabled].noUi-origin,[disabled] .noUi-handle {
    cursor: not-allowed;
  }

  /* read more */
  .products-section .readMore-container{
    margin-top: 20px;
  }
/*=========================================================================== 
Contact Page style
==============================================================================*/
/* .contact-us-section{
    padding: 30px 0px 0px;
}
.contact-us-section h1{
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
}
.contact-us-section .map-container{
    margin-top: 30px;
} */

/* 2nd style */
.contact-us-section {
    padding: 60px 0px;
}
.contact-details-wrap {
    margin-bottom: 35px;
}
.contact-details-card {
    background-color: #F291C7;
    color: #fff;
    padding: 30px;
}
.contact-details-card p{
    font-weight: 600;
    font-size: 20px;
}
.each-contact-detail{
    text-align: center;
    position: relative;
}
.each-contact-detail.center::before, .each-contact-detail.center::after{
    content: "";
    background-color: #c6519f;
    position: absolute;   
    left: 0;
    height: 100%;
    width: 3px;
}
.each-contact-detail.center::after{
    left: unset;
    right: 0;
    top: 0;
}
.each-contact-detail .icon-container {
    border: 1px solid #c6519f;
    height: 70px;
    width: 70px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 15px;
}
.each-contact-detail .icon-container span{
    font-size: 30px;
}
.map-container{
    position: relative;
    z-index: 1;
    /* border-radius: 20px; */
    overflow: hidden;
    padding: 0;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
}
.contact-us-container .contact-form-container-wrap{
    flex-direction: row-reverse;
}
.contact-form-wrap h3{
    font-weight: 600;
    font-size: 30px;
}
.contact-form-container{
    position: relative;
    z-index: o;
    margin-left: -15px;
    padding: 30px 40px 30px 60px;
    background-color: #F291C7;
    color: #fff;
}
.input-container{
    margin-bottom: 10px;
    color: #fff;
}
.contact-form-container .input-container input, .contact-form-container .input-container textarea{
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.contact-form-container .input-container input::placeholder, .contact-form-container .input-container textarea::placeholder{
    color: rgba(255, 255, 255, 0.57);
}
/*=========================================================================== 
Cart Page style
==============================================================================*/
.cart-section{
    padding: 50px 0px 40px;
}

.cart-section .table tbody tr td:nth-child(1), .table thead th:nth-child(1){
    padding: 5px;
}
.cart-section .table tbody tr td{
    vertical-align: unset;
    border-bottom: 1px solid #dee2e6;
}
.cart-section .table tbody tr td button{
    border-radius: 50%;
    height: 30px;
    width: 30px;
    color: #fff;
    border: none;
    background-color: #B3B3B3;
}
.cart-section .table tbody tr td .product-cell{
    display: flex;
    align-items: center;
}
.cart-section .table tbody tr td .product-cell p{
    line-height: 1;
}
.cart-section .table tbody tr td .product-cell .price{
    display: none;
    font-weight: 600;
    margin-top: 10px;
}
.cart-section .table tbody tr td .img-container{
    width: 60px;
    min-width: 50px;
    margin-right: 10px;
}
.qty-container{
    display: flex;
    border: 2px solid #817D7D;
    width: 90px;
    justify-content: center;
}
.qty-container span{
    width: 25px;
    cursor: pointer;
    padding: 5px;
    text-align: center;
}
.qty-container input{
    width: 35px;
    text-align: center;
    border-color: #817D7D;
    border-top: unset;
    border-bottom: unset;
    background-color: transparent;
}
.cart-section .button-container button{
    margin-left: 10px;
}
.cart-checkout-card{
    background-color: transparent;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 1px 0px 12px rgba(0, 0, 0, 0.16);
}
.cart-checkout-card h5{
    font-size: 20px;
    font-weight: bold;
}
.cart-checkout-card .costs-section{
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    padding: 15px 0px;
}
.cart-checkout-card .order-products-container {
    padding: 15px 0px;
    border-top: 1px solid #000;
}
.cart-checkout-card .costs-section p, .cart-checkout-card .order-products-container p{
    display: flex;
    margin-bottom: 5px;
}
.cart-checkout-card .costs-section p span.value, .cart-checkout-card .order-products-container p span.value{
    margin-left: auto;
}
.cart-checkout-card .total-cost p{
    display: flex;
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
    font-weight: bold;
}
.cart-checkout-card .total-cost p span.value{
    margin-left: auto;
}
.cart-checkout-card .submit-button-container a, .cart-checkout-card .submit-button-container button{
    padding: 15px 20px;
    width: 100%;
    display: block;
    text-align: center;
}
.cart-checkout-card .terms-and-condition label a{
    color: rgba(0, 0, 0, 0.468);
}
/*=========================================================================== 
Product preview Page style
==============================================================================*/

.product-view-section{
    margin: 30px 0px;
}
.product-view-section .product-preview-img-side-container{
    position: relative;
}
.product-view-section .product-preview-img-side-container .owl-nav button{
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: #F291C7;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    top: 50%;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.31);
}
.product-view-section .product-preview-img-side-container .owl-nav button:first-child{
    left: -15px;
}
.product-view-section .product-preview-img-side-container .owl-nav button:last-child{
    right: -15px;
}
.product-view-section .product-preview-img-side-container .other-imgs-container {
    display: flex;
}
.product-view-section .product-preview-img-side-container .other-imgs-container .each-img-container{
    width: 60px;
    margin: 10px 5px;
}
.product-view-section .product-preview-info-side-container span{
    color: #B3B3B3;
    text-transform: capitalize;
}
.product-view-section .product-preview-info-side-container h1{
    text-transform: capitalize;
    font-weight: bold;
    margin-top: 15px;
}
.product-view-section .product-preview-info-side-container h2{
    font-size: 35px;
    font-weight: lighter;
}
.product-view-section .product-preview-info-side-container h2 span{
    color: red;
    margin-left: 5px;
    text-decoration: line-through;
}

.size{
    margin-bottom: 20px;
}
.size .radio-tile-group {
    display: -webkit-box;
    flex-wrap: wrap;
}
.size .radio-tile-group .input-container {
    position: relative;
    margin: 0.2rem;
}
.size .radio-tile-group .input-container:first-child{
    margin-left: 0px;
}
.size .radio-tile-group .input-container .radio-button {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
}
.size .radio-tile-group .input-container .radio-button:checked + .radio-tile {
    background-color: #F291C7;
    border-color: #F291C7;
    color: white;
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.size .radio-tile-group .input-container .radio-tile {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 2px solid #0b0b0b;
    padding: 7px 11px;
    -webkit-transition: -webkit-transform 300ms ease;
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
}
.size .radio-tile-group .input-container .radio-tile-label {
    text-align: center;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b0b0b;
    margin-bottom: 0px;
}
.size .radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
    color: white;
}

.quantity-container{
    margin-bottom: 10px;
}
.quantity-container .quantity{
    display: flex;
    border: 2px solid #000000;
    width: 90px;
}
.quantity-container .quantity span{
    cursor: pointer;
    width: 28%;
    text-align: center;
    padding: 5px;
    color: #000;
}
.quantity-container .quantity input{
    width: 47%;
    border: 2px solid #000000;
    border-top: none;
    border-bottom: none;
    text-align: center;
    color: #000;
    background-color: transparent;
}
/*=========================================================================== 
Checkout Page style
==============================================================================*/
.checkout-section{
    margin: 20px 0px;
}
.checkout-section .delivery-info-section{
    display: none;
}
.checkout-section .delivery-info-section.show{
    display: block;
}
/*=========================================================================== 
Shipping policy Page style
==============================================================================*/
.shipping-policy-section{
    margin: 30px 0px;
}
/* ===================================
    Payment success Page Style
=======================================*/
.payment-section{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.payment-section .payment-wrap{
    text-align: center;
}
.payment-section .payment-wrap .icon-container{
    margin-bottom: 23px;
}
.payment-section.success .payment-wrap .icon-container span{
    color: green;
    font-size: 130px;
}
.payment-section.failed .payment-wrap .icon-container span{
    color: red;
    font-size: 130px;
}
.payment-section .payment-wrap h1{
    margin-bottom: 20px;
}
.payment-section .payment-wrap a{
    display: inline-block;
    margin: 0px 5px;
}