/* prod.css */

.example-switchbox {
    position: relative;
    display: inline-block;
    min-width: 5em;
    height: 2em;
    padding: 0.125em;
    overflow: hidden;
    box-sizing: content-box;
    border: 2px solid black;
    outline: none !important;
    border-radius: 50px;
    background-color: white;
    font-size: 1.25em;
    vertical-align: middle;
    cursor: pointer;
    transition: 0.15s ease-out;
    z-index: 0;
  }
  .example-switchbox::before {
    position: relative;
    z-index: 2;
    display: block;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background-color: black;
    content: "";
    transition: 0.15s ease-out;
  }
  .example-switchbox + label {
    vertical-align: middle;
  }
  .example-switchbox-yes,
  .example-switchbox-no {
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    font-size: 1em;
    text-transform: uppercase;
    pointer-events: none;
    transition: inherit;
  }
  .example-switchbox-yes {
    left: 1.1em;
    color: white;
    font-size: 0.9em;
    font-weight: bold;
  }
  .example-switchbox-no {
    right: 1.1em;
    color: gray;
    font-weight: bold;
    opacity: 1;
    font-size: 0.9em;
  }
  
  .example-switchbox.is-pressed {
    border-color: black; /* You probably need to change this! */
    background-color: black; /* You probably need to change this too! */
  }
  .example-switchbox.is-pressed .example-switchbox-yes {
    opacity: 1;
  }
  .example-switchbox.is-pressed .example-switchbox-no {
    opacity: 0;
  }
  .example-switchbox.is-pressed::before {
    transform: translateX(3em);
    background-color: white;
  }
  
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  }
  .accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color: gray;
  }
  .accordion button:hover::after, .accordion button:focus::after {
    cursor: pointer;
    color: gray;
    border: 1px solid gray;
  }
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
  }
  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  .accordion button[aria-expanded=true] {
    color: gray;
  }
  .accordion button[aria-expanded=true] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded=true] + .accordion-content {
    opacity: 1;
    max-height: fit-content;
    transition: all 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
  }
  
  
  
  .hiw-sec1{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 20px;
  }
  .hiw-sec1__content1{
    width: 60%;
  }
  .hiw-sec1__content2{
    width: 40%;
    text-align: right;
  }
  .hiw-sec1__content1 p{
    font-size: 3em;
    color: black;
  }
  .hiw-sec1__content2 video{
    width: 80%;
    height: 200px;
  }
  
  @media(max-width: 576px){
    .hiw-sec1{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      padding: 50px 0px;
    }
    .hiw-sec1__content1{
      width: 100%;
    }
    .hiw-sec1__content2{
      width: 100%;
      text-align: right;
    }
    .hiw-sec1__content1 p{
      font-size: 2.3em;
      text-align: center;
      padding-bottom: 40px;
      color: black;
    }
    .hiw-sec1__content2 video{
      width: 100%;
      height: 200px;
    }
  }
  
  .hiw-sec2__heading{
    padding: 50px 20px 0px 20px;
    text-align: center;
  }
  .hiw-sec2__heading p{
    font-size: 3em;
    color: black;
  }
  
  @media(max-width: 576px){
    .hiw-sec2__heading{
      padding: 0px 20px 0px 20px;
      text-align: center;
    }
    .hiw-sec2__heading p{
      font-size: 2.5em;
      color: black;
    }
  }
  
  .hiw-sec3{
    width: 100%;
    padding: 50px 20px 0px 20px;
  }
  .hiw-sec3__content1{
    display: flex;
    flex-direction: row;
    justify-content: between;
    align-items: center;
  }
  .hiw-sec3__content1-left{
    width: 50%;
    text-align: center;
  }
  .hiw-sec3__content1-left img{
    height: 140px;
  }
  .hiw-sec3__content1-right{
    width: 50%;
  }
  .hiw-sec3__content1-right p:first-child {
    font-size: 1.8em;
    font-weight: 500;
    color: black;
  }
  .hiw-sec3__content1-right p:nth-child(2) {
    font-size: 1.5em;
    font-weight: 400;
  }
  
  @media(max-width: 576px){
    .hiw-sec3{
      width: 100%;
      padding: 50px 20px 0px 20px;
    }
    .hiw-sec3__content1{
      display: flex;
      flex-direction: column;
      justify-content: between;
      align-items: center;
    }
    .hiw-sec3__content1-left{
      width: 100%;
      text-align: center;
    }
    .hiw-sec3__content1-left img{
      height: 140px;
      padding-bottom: 30px;
    }
    .hiw-sec3__content1-right{
      width: 100%;
      text-align: center;
    }
    .hiw-sec3__content1-right p:first-child {
      font-size: 1.7em;
      font-weight: 500;
      color: black;
    }
    .hiw-sec3__content1-right p:nth-child(2) {
      font-size: 1.4em;
      font-weight: 400;
    }
  }
  
  
  .hiw-sec4{
    width: 100%;
    padding: 50px 20px 0px 20px;
  }
  .hiw-sec4__content1{
    display: flex;
    flex-direction: row-reverse;
    justify-content: between;
    align-items: center;
  }
  .hiw-sec4__content1-left{
    width: 50%;
    text-align: center;
  }
  .hiw-sec4__content1-left img{
    height: 140px;
  }
  .hiw-sec4__content1-right{
    width: 50%;
    text-align: right;
  }
  .hiw-sec4__content1-right p:first-child {
    font-size: 1.8em;
    font-weight: 500;
    color: black;
  }
  .hiw-sec4__content1-right p:nth-child(2) {
    font-size: 1.5em;
    font-weight: 400;
  }
  
  @media(max-width: 576px){
    .hiw-sec4{
      width: 100%;
      padding: 50px 20px 0px 20px;
    }
    .hiw-sec4__content1{
      display: flex;
      flex-direction: column;
      justify-content: between;
      align-items: center;
    }
    .hiw-sec4__content1-left{
      width: 100%;
      text-align: center;
    }
    .hiw-sec4__content1-left img{
      height: 140px;
      padding-bottom: 30px;
    }
    .hiw-sec4__content1-right{
      width: 100%;
      text-align: center;
    }
    .hiw-sec4__content1-right p:first-child {
      font-size: 1.7em;
      font-weight: 500;
      color: black;
    }
    .hiw-sec4__content1-right p:nth-child(2) {
      font-size: 1.4em;
      font-weight: 400;
    }
  }
  
  .hiw{
    padding-bottom: 100px;
  }
  @media (max-width: 576px) {
    .hiw{
      padding-bottom: 60px;
    }
  }
  .product-modall .vid{
    width: 100%;
    text-align: center;
    padding-top: 25px;
  }
  .product-modall video{
    width: 90%;
    height: 200px;
  }
  
  @media(max-width: 756px){
    .login-page__left{
      display: none !important;
    }
    .login-page__right{
      width: 100% !important;
    }
  
    .register-page__left{
      display: none !important;
    }
    .register-page__right{
      width: 100% !important;
    }
  
  }
  
  .sizeyou-login, .mothers-login{
    width: 100% !important;
  }
  
  .cart-form-wrapper{
    width: 50%;
    margin: 40px auto 0px;
  }
  
  @media (max-width: 576px) {
    .cart-form-wrapper{
      width: 80%;
      margin: 40px auto 0px;
    }
  }
  
  
  .cart-login-page_name{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  @media (max-width: 576px) {
    .cart-login-page_name{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0px;
      width: 100%;
    }
    .cart-login-page__first-name{
      width: 100% !important;
    }
    .cart-login-page__last-name{
      width: 100% !important;
    }
  }
  
  .cart-login-page__first-name{
    width: 50%;
  }
  .cart-login-page__last-name{
    width: 50%;
  }
  
  .form-wrapper{
    width: 80%;
    margin: 0 auto;
  }
  .login-page{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .login-page__left{
    width: 60%;
  }
  
  .login-page__left img{
    width: 100%;
  }
  
  .login-page__right{
    width: 40%;
    padding: 40px 20px;
  
  }
  
  .login-page__right-name{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .login-page__right-name__first{
    width: 50%;
  }
  
  .login-page__right-name__last{
    width: 50%;
  }
  
  .login-page__right-email, .login-page__right-phone, .login-page__right-otp{
    width: 100%;
  }
  
  .login-page__heading{
    padding: 20px 30px; 
  }
  
  .login-page__submit-btn{
    width: 100%;  
    text-align: center;
  }
  
  .required:after {
    content:" *";
    color: rgb(203, 0, 0);
  }
  .register-text, .login-text{
    width: 100%; 
    text-align: center; 
    margin-top: 10px; 
    font-size: 1.2em;
  }
  
  
  .register-page{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .register-page__left{
    width: 60%;
  }
  
  .register-page__left img{
    width: 100%;
  }
  
  .register-page__right{
    width: 40%;
    padding: 40px 20px;
  
  }
  
  .register-page__right-name{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .register-page__right-name__first{
    width: 50%;
  }
  
  .register-page__right-name__last{
    width: 50%;
  }
  
  .register-page__right-email, .login-page__right-phone, .login-page__right-otp{
    width: 100%;
  }
  
  .register-page__heading{
    padding: 20px 30px; 
  }
  
  .register-page__submit-btn{
    width: 100%;  
    text-align: center;
  }
  
  .shop-page-heading-container{
    margin-top: 10px;
  }
  .shop-page-heading-1{
    border-top: 1px solid gray;
    padding-top: 40px;
    font-size: 2em;
  }
  .shop-page-heading-2{
    margin-top: 15px;
    font-size: 1.4em;
  }
  .shop-page-heading-3{
    width: 100%; 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center;
    border-bottom: 1px solid gray;
    padding: 0 10% 40px;
    margin-top: 30px;
    gap: 20px;
  
  }
  .shop-page-heading-3 h5{
    font-size: 1.4em !important;
    font-weight: 500;
    padding-left: 7px;
    margin: 0px !important;
  }
  .shop-page-heading-3 img{
    width: 25px;
  }
  .shop-page-content-3{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .test-shop{
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  @media (max-width: 576px){
    .first-heading{
      padding: 0px !important;
    }
    .first-content{
      margin-bottom: 5px !important;
    }
    .shop-page-heading-3 h5{
      font-size: 1.4em !important;
      font-weight: 500;
      padding-left: 7px;
      margin: 0px !important;
      text-align: left !important;
    }
    .test-shop{
      display: flex;
      flex-direction: row;
      width: 100%;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding-bottom: 30px;
    }
  
    .shop-page-heading-3{
      width: 100%; 
      display: flex; 
      flex-direction: column !important; 
      align-items: center; 
      justify-content: space-between;
      border-bottom: 1px solid gray;
      padding: 0 10% 40px;
      margin-top: 30px;
      gap: 0 !important;
    }
    .shop-page-heading-1{
      font-size: 2em;
      padding-top: 40px;
      border-top: 1px solid gray;
    }
    .shop-page-heading-2{
      font-size: 1.4em;
      margin-top: 20px;
    }
    .shop-page-heading-3{
      width: 100%; 
      display: flex; 
      flex-direction: row; 
      align-items: center; 
      justify-content: space-between;
      border-bottom: 1px solid gray;
      padding-bottom: 40px;
    }
  }
  
  .cart-page-heading-container{
    margin-top: 50px;
  }
  .cart-page-heading-1{
    margin-bottom: 30px;
    font-size: 24px;
  }
  .cart-page-heading-2{
    border-top: 1px solid gray;
    padding-top: 30px;
    margin-top: 15px;
    font-size: 20px;
  }
  .cart-page-heading-3{
    margin-top: 15px;
    font-size: 14px;
    line-height: 20px;
  }
  .cart-page-heading-4{
    margin-top: 15px;
    font-size: 13px;
    border-bottom: 1px solid gray;
    padding-bottom: 30px;
  
  }
  
  @media(max-width: 576px){
    .cart-page-heading-container{
      margin-top: 50px;
    }
    .cart-page-heading-1{
      font-size: 24px;
    }
    .cart-page-heading-2{
      border-top: 1px solid gray;
      padding-top: 40px;
      margin-top: 15px;
      font-size: 18px;
    }
    .cart-page-heading-3{
      margin-top: 18px;
      font-size: 12px;
      line-height: 16px;
    }
    .cart-page-heading-4{
      margin-top: 18px;
      font-size: 12px;
      border-bottom: 1px solid gray;
      padding-bottom: 40px;
    }
  }
  
  
  
  
  .category-section{
    padding-top: 40px !important;
  }
  @media(max-width: 576px){
    .category-section{
      padding-top: 30px !important;
    }
  }
  
  
  .customization-text{
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    font-size: 1.3em;
    padding: 15px 0;
    margin: 10px 0;
    text-align: center;
  }
  
  #accordion-cart-login{
    width: 100%;
    margin-bottom: 50px;
  }
  
  #collapseOne-cart-login{
    width: 70%;
    margin: 30px auto 0px;
  }
  
  #headingOne-cart-login{
    text-align: center;
    margin: 0 auto;
    width: 50%;
  }
  
  @media(max-width: 576px){
    #collapseOne-cart-login{
      width: 100%;
      margin: 30px auto 0px;
    }
  }

/* gallery.css  */
.product__gallery {
    display: flex;
    padding: 15px;
    transition: 0.3s;
    gap: 15px;
}
.gallery__column {
    display: flex;
    flex-direction: column;
    width: 33%;
    gap: 15px;
}
@media (max-width: 576px) {
    .product__gallery {
        display: flex;
        padding: 10px;
        transition: 0.3s;
        gap: 7px;
    }
    .gallery__column {
        display: flex;
        flex-direction: column;
        width: 33%;
        gap: 7px;
    }
}
.gallery__thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery__image {
    display: block;
    width: 100%;
    transition: 0.3s;
}
.gallery__image:hover {
    transform: scale(1.1);
}

.gallery_buy{
    width: 100%;
    z-index: 1;
    position: absolute;
    bottom: 0;
    padding: 0;
    left: 0;
    text-align: center;
}
.gallery_buy > .aaa{
    margin: 10px 0;
    color: black;
    width: 90%;
    background: white;
    font-weight: 600;
}
@media (max-width: 576px) {
    .gallery_buy{
        width: 100%;
        z-index: 1;
        position: absolute;
        bottom: 0;
        padding: 0;
        left: 0;
        text-align: center;
    }
    .gallery_buy > .aaa{
        margin: 6px 0;
        color: black;
        width: 90%;
        padding: 8px 0;
        font-size: 0.9em;
        background: white;
    }
}


.gallery__heading{
    width: 100%;
    text-transform: uppercase;
    font-size: 3.5em;
    margin: 30px 0;
    font-weight: 600;
    text-align: center;
}


.cust-images{
    width: 100%;
    border-bottom: 1px solid gray;
    border-top: 1px solid gray;
    margin: 40px 0 20px;
    padding: 10px 0;
    font-size: 1.5em;
    text-align: center;
    text-transform: uppercase;
}

#product__gallery__image-modal, #product__customisation-modal, 
#gift-carousal-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgb(0 0 0 / 59%); /* Black w/ opacity */
    z-index: 9999;
}
  
/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    max-width: 450px;
}

/* The Close Button */
.image-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 9999;
}

.image-close:hover,
.image-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

.zoom-container{
    width: 100%;
    z-index: 9999;
    width: 500px;
}

/* summary.css  */
.summary-wrapper{
    width: 80%;
    margin: 30px auto;
}

.measure-section,
.sizing-section,
.bodyshape-section,
.measurements-section,
.mybodytype-section
{
    border: 1px solid black;
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
}

.measure-section{
    width: 40%;
    min-height: 280px;
}
.sizing-section{
    width: 60%;
    min-height: 280px;
}
.bodyshape-section{
    width: 50%;
    min-height: 260px;
}
.measurements-section{
    width: 50%;
    min-height: 260px;
}
.mybodytype-section {
    width: 100%;
    min-height: 260px;
}
.section1{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.section2{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.measure-heading,
.sizing-heading,
.bodyshape-heading,
.measurements-heading,
.mybodytype-heading
{
    font-size: 2.2em;
    font-weight: 500;
    margin: 0 !important;
}

.heading-wrapper,
.sizing-wrapper,
.bodyshape-wrapper,
.measurements-wrapper,
.mybodytype-wrapper
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.edit-btn{
    font-size: 1.2em;
    cursor: pointer;
    text-decoration: underline;
}
.measure-section > p,
.sizing-section > p
{
    margin: 0;
}

.bodyshape-image{
    width: 50%;
}

@media (min-width: 577px) {
    .bodyshape-content{
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
    }
    .bodyshape-image img{
        width: 100%;
        height: 300px;
    }
  }

.rowise{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.rowise > p:nth-child(1){
    min-width: 50%;
}
.rowise > p:nth-child(2){
    min-width: 50%;
}
.bbolder{
    font-weight: 600;
}


@media (max-width: 576px) {
    .section1 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .measure-section {
        width: 100%;
        min-height: auto;
    }
    .sizing-section {
        width: 100%;
        min-height: auto;
    }
    .rowise {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        width: 100%;
    }
    .section2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .bodyshape-section {
        width: 100%;
        min-height: auto;
    }
    .bodyshape-content {
        width: 100%;
        display: flex;
        flex-direction: row;
        min-height: auto;
        justify-content: space-around;
    }
    .bodyshape-image img {
        width: 100%;
        height: 150px;
        margin: 20px 0;
    }
    .measurements-section, .mybodytype-section {
        width: 100%;
        min-height: auto;
    }
    .measure-heading, .sizing-heading, .bodyshape-heading, .measurements-heading, .mybodytype-heading {
        font-size: 2.2em;
        font-weight: 500;
        margin-bottom: 20px;
    }
}


.size-btn-container{
    width: 100%;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    font-size: 13px;
}
.size-btn-text{
    margin: 0;
    font-size: 14px; 
    font-weight: 700;
}
.size-btn-span{
    text-align: center;
    cursor: pointer; 
    color: #282c3f;
}
.size-btn-m{
    margin: 0px 8px 8px 0px;
}
@media (max-width: 576px) {
    .size-btn-container{
        width: 100%;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
        font-size: 13px;
    }
    .size-btn-text{
        margin: 0;
        font-size: 12px; 
        font-weight: 700;
    }
    .size-btn-m{
        margin: 0px 3px 5px 0px;
    }
    .size-btn{
        min-width: 40px !important;
        height: 40px !important;
    }
}
.top-size-btn,
.bottom-size-btn,
.onesize-size-btn
{
    position: relative;
    background-color: #fff;
    border: 1px solid #bfc0c6;
    border-radius: 10px;
    padding: 0;
    min-width: 35px;
    height: 35px;
    text-align: center;
    cursor: pointer;
    color: #282c3f;
    -webkit-box-flex: 0;
}

.top-size-btn:focus,
.bottom-size-btn:focus
.onesize-size-btn:focus
{
    outline: none !important;
}

.active-size-btn{
    transition: ease-in;
    border-color: #3d3d3d;
    background-color: #f1f1f1;
}
.active-size-btn > p {
    color: #1f1f1f;
}

/* styling.css  */
.styling-prof{
    font-size: 30px;
}
.styling-content{
    padding: 30px 0 10px 0px;
}

.styling-content__text1{
    font-size: 14px;
}



.styling-btn{
    margin: 25px ;
}

@media (max-width: 576px) {
    .styling-prof{
        font-size: 28px;
    }
    .styling-content__text1{
        font-size: 13px;
    }
}

.styling-measure{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.styling-measure__heading{
    font-size: 30px;
    margin: 40px 0 20px 0;
}
.styling-measure__form{
    box-shadow: none;
    margin: 0 !important;
    width: 100%;
    max-width: 600px;
    justify-content: center;
}

@media (max-width: 576px) {
    .styling-measure__heading{
        font-size: 28px;
        margin: 40px 0 20px 0;
    }
    .styling-measure__form{
        box-shadow: none;
        margin: 0 !important;
        width: 100%;
        justify-content: center;
    }
}


.size3-heading{
    font-size: 30px; 
    text-align: center;
    padding: 50px 15px 25px;
}

.size3-subheading{
    margin-top: 20px; 
    font-size: 2.3em;
    text-align: center;
    padding: 25px 15px;
}

  
@media (max-width: 576px) {
    .size3-heading{
        font-size: 28px;
    }
    .size3-subheading{
        font-size: 2em;
    }
}

.size-pg-heading{
    font-size: 30px;
    margin: 40px 0 10px 0px;
}

@media (max-width: 576px) {
    .size-pg-heading{
        font-size: 28px;
        margin: 40px 0 40px 0px;
    }
}

.summary-content{
    margin: 10px 0 40px 0;
    text-align: center;
}

.summary-content__heading{
    font-size: 30px;
}
.summary-content__text1{
    font-size: 16px;
    margin-top: 15px;
}

.summary-bottom-text{
    font-size: 15px;
    margin: 20px 0;
    text-align: center;
}

.ms, .fs{
    min-height: 230px;
    width: 50%;
}

@media (max-width: 576px) {
    .summary-content{
        margin: 10px 0 20px 0;
        text-align: center;
    }
    .ms, .fs{
        width: 100%;
        min-height: auto !important;
    }
    .shipping-text-before{
        margin-top: 30px;
        font-size: 14px !important;
    }
}

.shipping-text-before{
    font-size: 16px;
    background: #ededed;
    padding: 10px;
    border: 1px solid black;
    border-radius: 10px;
}

#ord-summary{
    width: 60%;
    margin: 20px auto;
    font-size: 14px;
}

@media (max-width: 576px) {
    #ord-summary{
        width: 90%;
        margin: 10px auto;
        font-size: 14px;
    }
}

#ord-summary td{
    padding: 5px 10px; 
    width: 50%;
}

/* product.css  */
.review-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    margin: 0 auto;
}
.write-review{
    color: black; 
    font-weight: 400; 
    padding: 6px 0px; 
    border: 1px solid #cdcdcd; 
    border-radius: 7px;
    width: 250px; 
    font-size: 12px; 
    text-align: center; 
    box-shadow: 0 2px 5px 0 rgba(213,217,217,.5); 
    margin: 20px auto 0px;
    cursor: pointer;
}
.write-review:hover{
    background-color: #f0f0f0;
    border: 1px solid #cdcdcd;
    box-shadow: 0 2px 5px 0 rgba(213,217,217,.5);
}

.view-reviews{
    font-size: 14px; 
    text-transform: capitalize; 
    border-bottom: 1px solid rgba(0,0,0,0.15); 
    padding: 10px 0px; 
    color: rgb(150, 113, 108); 
    font-weight: 500; 
    cursor: pointer;
}

.view-reviews:focus, .view-reviews:hover, .view-reviews:active {
    text-decoration: underline;
    text-underline-offset: 1px;
}

.add-product-review-btn {
    padding: 8px 30px;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 7px;
    transition: background-color 0.3s;
}
.add-product-review-btn:hover {
    background-color: #ddd;
}
.add-product-review-btn:active, add-product-review-btn:focus {
    background-color: #ddd;
    outline: none !important;
    border: 1px solid #ccc !important;
}
.create-review-div {
    width: 100%;
}
.create-review-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
}
.review-form {
    width: 100%;
    margin: 30px auto;
    padding: 20px;
    background-color: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.create-review-div > hr {
    margin: 2rem auto;
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.15);
}
.create-review-div > h1 {
    font-size: 18px !important;
}
.form-control {
    width: 100%;
    padding: 0px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.form-control::placeholder {
    color: #888;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px #cce5ff;
}
.rate-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}
.rate {
    display: flex;
    flex-direction: row-reverse;
    height: 46px;
    padding: 0 10px;
}
.rate > input {
    display: none;
}
.rate > label {
    display: inline-block;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

.rate:not(:checked) > label:before {
    content: '★ ';
}
.rate > input:checked ~ label {
    color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}


.btn-submit {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 13px;
    color: #fff;
    background-color: #23272b;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #353638;
}
.btn-submit:disabled {
    background-color: #959595;
    cursor: not-allowed;
}
/* Review Card */
.review-display-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
    margin: 0 auto;
}
.review-card {
    width: 100%;
}

.user-image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin-right: 10px;
}

.user-name {
    font-weight: 600;
    font-size: 13px;
}

.review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.review-rate {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    margin: 0; 
    color: white; 
    padding: 2px 6px; 
    font-size: 11px; 
    border-radius: 2px;
}

.review-title{
    display: flex; 
    align-items: center; 
    flex-direction: row; 
    justify-content: space-between;
    padding-top: 20px;
}

.review-title > div:first-child {
    font-size: 18px;
    font-weight: 400;
}

.review-content {
    font-size: 12px;
    margin-bottom: 8px;
}

.review-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    padding-bottom: 20px;
}

.helpful-btn {
    margin-left: 5px;
    border-radius: 4px;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    width: -webkit-fill-available;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #333;
    background-color: #fff;
    cursor: pointer;
    margin: 0 4px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1.1rem;
}

.page-btn:hover {
    background-color: #f0f0f0;
}

.page-btn.current-page {
    color: #fff;
    background-color: #333;
    cursor: default;
}
.form-label::after {
    content: ' *';
    color: red;
}
.page-btn.prev-next[disabled] {
    background-color: #f2f2f2; /* Change this to your preferred color */
    color: #a0a0a0; /* Change this to your preferred color */
    cursor: not-allowed;
}
.flash-message-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    width: -webkit-fill-available;
    z-index: 9999;
    text-align: center;
}
.loading {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #004073;
    border-radius: 50%;
    width: 50px;
    margin: 10px auto 30px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#page1{
    background: #3a3a3a !important;
    color: white !important;
    border: 2px solid black !important;
    border-radius: 5px !important;
}

.flash-message {
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    opacity: 0;
    animation: fadeInOut 3s ease-in-out;
}

.resend-otp-status-message {
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
}
.success {
background-color: #32a852 !important;
display: inherit !important;
font-size: 15px;
}
.resending-class:enabled {
    background-color: green;
}
.resend-otp-sms-div {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 4px;
}
.flash-message.error {
background-color: #e74c3c ; /* Error message color */
}
.flash-message.success {
  background-color: #4CAF50; /* Green */
}
.flash-message.warning {
  background-color: #ff9800; /* Orange */
}
.flash-message.info {
  background-color: #2196F3; /* Blue */
}

@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
}
}

.loading-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
}

.review-rate > img {
    width: 11px !important;
    margin-left: 3px !important;
    height: 11px !important;
}

/* For screen widths between 577px and 767px */
@media (min-width: 577px) and (max-width: 767px) {
    .review-row {
        margin-left: 16px;
    }
}
@media (max-width: 576px) {
    .review-rate {
        font-size: 13px !important;
    }
    .review-rate > img {
        width: 13px !important;
        height: 13px !important;
    }
    .review-title > div:first-child {
        font-size: 17px !important;
    }
    .add-product-review-btn {
        font-size: 1.5rem;
    }
    .user-name {
        font-size: 10px;
    }
    .page-btn {
        font-size: 1rem;
    }
}

.test-s3cmd-conf-run-check-example-class {
  display: none;
}
/* End */