/** Shopify CDN: Minification failed

Line 463:19 Unexpected "{"

**/
body {
    overflow-x: hidden;
}

.quantity {
  display: block;               /* Block seviyesinde eleman */
  font-weight: 500;
  margin-top: 5px;              /* Üstten hafif bir boşluk ekleyin */
  color: #888;
  text-align: center;           /* Metni ortalayın */
}

.progress-bar {
  display: flex;
  justify-content: center; /* Ortalanır */
  align-items: center;
  background-color: transparent;
  margin: 20px 0;
  padding-top: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 13px;
}

.icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.icon-item {
  margin: 20px;
  text-align: center;
  position: relative;
}

.icon-item img {
    transition: all 0.3s ease; /* Yumuşak geçiş efekti */
}

.icon-item img:hover {
    filter: grayscale(20%); /* Grileştirme efekti */
    opacity: 0.8; /* Saydamlık efekti */
    cursor: pointer; /* El simgesi */
}

.info-icon-inc {
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%); /* Daha esnek konumlandırma */
  width: 20px; /* Butonun genişliği */
  height: 20px; /* Butonun yüksekliği */
  border-radius: 50%; /* Yuvarlak yapmak için */
  background-color: #49746d; /* Butonun arka plan rengi */
  display: flex; /* Flexbox kullanarak merkezleme */
  align-items: center; /* Dikey merkezleme */
  justify-content: center; /* Yatay merkezleme */
  line-height: 1; /* Satır yüksekliği */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
  color: #ffffff; /* Metin rengi */
  text-align: center; /* Metni ortalamak için */
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  max-width: 600px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
  position: relative; /* Kapatma düğmesi için gerekli */
  display: flex;
  flex-direction: column;
   align-items: center;
}

.popup-content img {
  width: 30%;
  height: auto;
  margin-bottom: 20px;
}

.popup-content h3 {
  text-align: center;
  margin-top: 10px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
}

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

/* Mobil ekranlar için 3x3 düzenleme */
@media (max-width: 767px) {
  .popup-content {
  width: 80%;
}
  .icon-item {
    width: 20%; /* 3x3 düzen için genişlik */
    margin: 20px; /* Mobilde daha az boşluk */
  }

  .icon-item img {
    display: block;
    margin: 0 auto 10px auto; /* Görseli ve başlığı ortalamak için */
  }

   .info-icon-inc {
    transform: translateY(-75%);
  }

  .item-title-class {
    text-align: center;
    font-size: 15px;
    font-family: Lato;
    margin-top: 10px; /* Görsel ile başlık arasına boşluk eklemek için */
    letter-spacing: 0px;
  }
 .selection-title-class {
    text-align: center;
    font-size: 24px;
    color: #49746D;
  }
}

/* Daha küçük cihazlar için 1x1 düzenleme */
@media (max-width: 480px) {

  .popup-content {
  width: 80%;
}

  .icon-item {
    width: 20%; /* Tam genişlik */
    margin: 20px; /* Dikey boşluk */
  }

  .icon-item img {
    display: block;
    margin: 0 auto 10px auto; /* Görseli ve başlığı ortalamak için */
  }

  .info-icon-inc {
    transform: translateY(-75%);
}

  .item-title-class {
    text-align: center;
    font-size: 15px;
    font-family: Lato;
    margin-top: 10px; /* Görsel ile başlık arasına boşluk eklemek için */
    letter-spacing: 0px;
  }
  
 .selection-title-class {
    text-align: center;
    font-size: 24px;
    color: #49746D;
  }
}

.step {
  flex: none;
  height: 40px;
  width: 40px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 0 10px; /* Aralarındaki boşluk */
  position: relative;
}

.step.completed {
  background-color: #49746d;
}

.step::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 20px; /* Çizgi uzunluğu */
  height: 4px;
  background-color: #e0e0e0;
  transform: translateY(-50%);
  z-index: -1;
}

.step.completed::after {
  background-color: #49746d;
}

.step:last-child::after {
  content: none;
}

.container-c {
    max-width: 960px !important;
    width: 100%;
    margin: auto;
}
p.one,
p.two,
p.three,
p.four {
    border: 2px solid;
    width: 60px;
    line-height: 25px;
    font-size: 27px;
    font-weight: 400;
    text-align: center;
    padding: 16px 22px;
    margin: auto;
    border-radius: 50%;
}
.row-c {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-right: -15px;
    margin-left: -15px;
}
.col-md-12-c {
    width: 100%;
}
.mb-4-c {
    margin-bottom: 18px !important;
    margin-top: 18px !important;
}

.mb-6-c {
    margin-bottom: 18px !important;
}
.h1-c {
    font-size: 20px;
    margin-bottom: 4px;
    line-height: 30px;
    color: #49746d;
}
.h2-c {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 26px;
    letter-spacing: 1px;
}

.h3-c {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 26px;
    letter-spacing: 0.5px;
}

.h4-c {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 26px;
    letter-spacing: 0.5px;
}

.small-text {
    font-size: 14px;
    line-height: 1.4; /* Satır yüksekliği, okunabilirliği artırmak için */
    color: #333; /* Metin rengi */
}

.step1-c {
    display: flex;
    flex-wrap: wrap;
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Standard syntax */
}

/* Mobil Ekranlar */
@media (max-width: 767px) {
    .step1-c {
        justify-content: space-between;
    }
}

/* Masaüstü Ekranlar */
@media (min-width: 768px) {
    .step1-c {
        justify-content: space-around;
    }
}

.grayscale {
        color: gray; /* veya istediğin gri tonu */
        line-height: 1.2;
  }

.buttons-container {
    display: flex;           /* Flexbox düzeni */
    justify-content: center; /* Butonları yatayda ortalar */
    gap: 10px;               /* Butonlar arasında boşluk bırakır */
}

.step1-child {
    margin-bottom: 5px;
    width: 30%;
    transition: all .2s ease-out;
    border: 1px solid black;
    cursor: pointer;
    height: 100px;
    border-radius: 10%;
    align-items: center;
    text-align: center;
    /*padding-top: 9px;*/
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: -.022em;
    filter: grayscale(100%); /* Gri tonları uygulandı */
    opacity: .6;             /* Şeffaflık ayarlandı */
}

/* .step1-child kutusuna hover yapıldığında */
.step1-child:hover {
    background-color: #FFFFFF; /* Üzerine gelindiğinde arka plan rengi */
    border-color: #000000;     /* Kenarlık rengi */
}

/* Seçilen .step1-child kutusu için stil */
.step1-child.selected {
    background-color: #ffffff; 
    border: 2px solid #4CAF50; /* İstenen kenarlık rengi */
    color: #000;               /* Metin rengi siyah */
    opacity: 1;                /* Tam opaklık */
    filter: none;              /* Grayscale filtresini kaldır */
}

/* Seçilmeyen .step1-child kutuları için stil */
.step1-child:not(.selected) {
    border: 1px solid #000000;  /* Gri kenarlık */
    filter: grayscale(10%);    /* Gri tonları uygulandı */
    opacity: .6;                /* Şeffaflık ayarlandı */
}

/* Ürün başlığı için stil */
.product-title {
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0;
    padding: 5px 0;
    color: #000; /* Varsayılan metin rengi */
    font-weight: 500;
}

/* Ürün fiyatı için stil */
.product-price {
    font-size: 14px;
    color: #4c4b4b; /* İkinci metin rengi */
    margin: 0;
    padding: 5px 0;   
}

.step1-5child {
    margin-bottom: 5px;
    width: 150px;
    transition: all .2s ease-out;
    border: 1px solid black;
    cursor: pointer;
    height: 100px;
    border-radius: 10%;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: -.022em;
    filter: grayscale(100%);
    opacity: .6;
}

/* .step1-child kutusuna hover yapıldığında */
.step1-5child:hover {
    background-color: #FFFFFF; /* Üzerine gelindiğinde arka plan rengi */
    border-color: #000000;     /* Kenarlık rengi */
}

/* Seçilen .step1-child kutusu için stil */
.step1-5child.selected1 {
    background-color: #ffffff; 
    border: 2px solid #4CAF50; /* İstenen kenarlık rengi */
    color: #000;               /* Metin rengi siyah */
    opacity: 1;                /* Tam opaklık */
    filter: none;              /* Grayscale filtresini kaldır */
}

/* Seçilmeyen .step1-child kutuları için stil */
.step1-5child:not(.selected1) {
    border: 1px solid #000000;  /* Gri kenarlık */
    filter: grayscale(100%);    /* Gri tonları uygulandı */
    opacity: .6;                /* Şeffaflık ayarlandı */
    background: #ffffff;
}

.step2-child,
.step2-child-selected {
    width: 23%;
    margin: 1%;
    /* height:120px; */
    transition: all 0.2s ease-out;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
    border-radius: 10px;
    min-height: 118px;
    touch-action: manipulation;
}

.step3-child:hover,
.step2-child:hover,
.step1-child:hover,{
    border: 2px solid #eab3d1 !important;
}

.step3-child {
    width: 23%;
    margin: 1%;
    transition: all 0.2s ease-out;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
    /*border-radius: 10px;*/
}

.step3-c {
    display: flex;
    flex-wrap: wrap;
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Standard syntax */
}

.step4-5child {
    margin-bottom: 5px;
    width: 150px;
    transition: all .2s ease-out;
    border: 1px solid black;
    cursor: pointer;
    height: 100px;
    border-radius: 10%;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: -.022em;
    filter: grayscale(100%);
    opacity: .6;
}

/* .step1-child kutusuna hover yapıldığında */
.step4-5child:hover {
    background-color: #FFFFFF; /* Üzerine gelindiğinde arka plan rengi */
    border-color: #000000;     /* Kenarlık rengi */
}

/* Seçilen .step1-child kutusu için stil */
.step4-5child.selected2 {
    background-color: #ffffff; 
    border: 2px solid #4CAF50; /* İstenen kenarlık rengi */
    color: #000;               /* Metin rengi siyah */
    opacity: 1;                /* Tam opaklık */
    filter: none;              /* Grayscale filtresini kaldır */
}

/* Seçilmeyen .step1-child kutuları için stil */
.step4-5child:not(.selected2) {
    border: 1px solid #000000;  /* Gri kenarlık */
    filter: grayscale(100%);    /* Gri tonları uygulandı */
    opacity: .6;                /* Şeffaflık ayarlandı */
    background: #ffffff;
}

.card-img-c {
    width: 90%;
    border-radius: 10px;
    min-height: 75px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 12px;

}

.card-img-d {
    width: 100%;
    /*border-radius: 10px;*/
    min-height: 75px;
    transition: all 0.3s ease; /* Geçiş efektini yumuşatır */
}

.card-img-d:hover {
    filter: grayscale(20%); /* İmajı grileştirir */
    opacity: 0.8; /* Biraz saydamlaştırır */
    cursor: pointer; /* İmleci el simgesine dönüştürür */
}

.card-img-e {
    width: 100%;
    /*border-radius: 10px;*/
    min-height: 75px;
}


.font-heading {
    font-size: 14px;
    margin-bottom: 6px;
    padding: 0 3px;
}
.choose-image {
    background-size: 100% 100%;
    background-image: url("/cdn/shop/files/velg2.png?v=1716242676");
}

#step2,
#step3,
#step4,
#gift-message-div,
#add-to-card-div {
    margin-top: 20px;
    display: none;
    padding-top: 20px;
}
.step2-main {
    display: flex;
    justify-content: space-between;
    margin: 0px;
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Standard syntax */
}
.step2-main1,
.step2-main2 {
    width: 49%;
}
.macron-name {
    position: absolute;
    text-align: center;
    bottom: -3px;
    font-size: 13px;
    left: 50%;
    transform: translate(-50%, 0%);
    line-height: 15px;
    margin: 0;
    width: 100%;
}
.info-icon-div {
    /*position: fixed;*/
    top: 0px;
    right: 0px;
}
.info-icon {
    /*background: #49746D;*/
    /*width: 20px;*/
    color: #49746d;
    border-radius: 14px;
    font-size: 14px;
    cursor: pointer;
    /*font-family: auto;*/
    /*font-weight: 900;*/
    text-align: center;
    height: 15px;
    text-decoration: underline;
    line-height: 26px;
  
}

.cross-icon-div {
    position: absolute;
    top: 1px;
    right: 7px;
}
.cross-icon {
    background: transparent;
    color: black;
    border-radius: 11px;
    font-size: 18px;
    cursor: pointer;
    font-family: "circular";
    font-weight: 900;
    text-align: center;
    height: 17px;
}
.step2-c,
.step2-selected-c {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}
.d-none-c {
    display: none !important;
}
.full-basket {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    background-image: url(/cdn/shop/files/Untitled-3.png?v=1714409722);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    border-radius: 10px;
    z-index: 1;
}
#reset-btn {
    padding: 0.5rem 1rem;
    margin-top: 10px;
    border: 1px solid !important;
    color: color;
    border-color: #49746D;
    display: inline-block;
    font-weight: 300;
    line-height: 1.4;
    color: #49746D;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border-radius: 4px;

    font-size: 1rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#reset-btn:hover {
    color: #fff;
    background-color: #49746D;
    border-color: #49746D;
}

.change-box-div {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}
#change_box_size {
    display: none !important;
    padding: 0.5rem 1rem;
    margin-top: 10px;
    border: 1px solid !important;
    color: color;
    border-color: #49746D;
    display: inline-block;
    font-weight: 300;
    line-height: 1.4;
    color: #49746D;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border-radius:4px;

    font-size: 1rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#change_box_size:hover {
    color: #fff;
    background-color: #49746D;
    border-color: #49746D;
}


.selected-macron-div {
    background-color: #faf8f9;
    padding: 20px;
}

div#gift-message-main-div {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.gift-meesgae-div1 {
    width: 50%;
    padding-top: 25px;
    padding-left: 4px;
    padding-right: 4px;
}
.gift-meesgae-div2 {
    width: 50%;
}

.add-to-card-div {
}

div#add-to-card-div {
    justify-content: center;
}
button#change_btn {
    color: #fff;
    padding: 0.8rem 2.4rem;
    font-size: 1rem;
    border-radius: 0rem;
    background-color: #999;
    border-color: #999;
    margin-right: 4px;
}
button#add_box_to_card {
    color: #fff;
    margin-left: 4px;
    padding: 0.8rem 2.4rem;
    font-size: 1rem;
    border-radius: 0rem;
    background-color: #49746d;
    border-color: #49746d;
}

.add-to-card-div2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 20px;
}

.selected-macron-div {
    background-color: #E0ECEA;
    padding: 20px;
}

.selected-cover-box {
    color: white !important;
    background: #49746D !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}
.selected-cover-box p,
.selected-cover-box span,
.selected-cover-box h3 {
    color: white !important;
}

.selected-macron-div {
    background-color: #E0ECEA;
    padding: 20px;
}

.selected-card-box {
    color: white !important;
    background: #49746D !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}
.selected-card-box p,
.selected-card-box span,
.selected-card-box h3 {
    color: white !important;
}

.macron-qty-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
    margin-top: 6px;
}

.macron-qty-div1,
.macron-qty-div3 {
    padding: 11px 2px 10px;
    font-weight: 400;
    font-size: 20px;
    width: 40px;
    /* background: #fbf9f9; */
    line-height: 15px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #00000073;
}
.macron-qty-div2.macron-qty {
    padding: 11px 2px 10px;
    font-weight: 400;
    font-size: 14px;
    width: 28px;
    line-height: 15px;
    text-align: center;
    border: 1px solid #00000073;
    border-left: 0px;
    border-right: 0px;
}

.remaining-characters-top-right {
  text-align: right;
  font-size: 14px;
}

.survey-submission-div {
    text-align: right;
}
.modal-c {
    background: lightgray !important;
    border-color: gray !important;
    border-radius: 20px !important;
}

.modal-header,
.close-btn path {
    fill: black !important;
    border-color: gray !important;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999 !important;
}

.modal-macron-img {
    border: 0;
    width: 40%;
}

.modal-c {
    background-color: #fff;
    padding: 20px;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: auto;
    margin-top: 5%;
    width: 100%;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
    padding-bottom: 13px;
    border-bottom: 1px solid black;
}

.modal-header h2 {
    margin: 0;
}

.close-btn {
    cursor: pointer;
}

.email-heading-c,
.thankyou-c {
    margin: 0;
    padding: 0;
}

.email-heading-c {
    padding-right: 27px !important;
}



.modal-content.active {
    display: block;
}
.cross-c {
    position: absolute;
    right: 20px;
    top: 14px;
}
.modal-content {
    min-height: 250px;
}

.container-c2 {
    height: 100vh;
    width: 100vw;
    background: #000000a1 !important;
    font-family: Helvetica;
    z-index: 9999999 !important;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
}

.loader-c {
    height: 20px;
    width: 250px;
    position: absolute;
    top: 0;
    z-index: 99999999 !important;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.loader--dot {
    z-index: 999999999 !important;
    animation-name: loader-c;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    border: 2px solid white;
}
.loader--dot:first-child {
    background-color: #8cc759;
    animation-delay: 0.5s;
    z-index: 9999999 !important;
}
.container-c div {
    /* display: block !important; */
}
.loader--dot:nth-child(2) {
    background-color: #8c6daf;
    animation-delay: 0.4s;
    z-index: 9999999 !important;
}
.loader--dot:nth-child(3) {
    background-color: #ef5d74;
    animation-delay: 0.3s;
    z-index: 9999999 !important;
}
.loader--dot:nth-child(4) {
    background-color: #f9a74b;
    animation-delay: 0.2s;
    z-index: 9999999 !important;
}
.loader--dot:nth-child(5) {
    background-color: #60beeb;
    animation-delay: 0.1s;
    z-index: 9999999 !important;
}
.loader--dot:nth-child(6) {
    background-color: #fbef5a;
    animation-delay: 0s;
    z-index: 9999999 !important;
}
.loader--text {
    position: absolute;
    top: 200%;
    left: 0;
    right: 0;
    width: 4rem;
    margin: auto;
}
.loader--text:after {
    content: "Submitting";
    color: white !important;
    font-weight: bold;
    animation-name: loading-text;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}



@keyframes loader-c {
    15% {
        transform: translateX(0);
    }
    45% {
        transform: translateX(230px);
    }
    65% {
        transform: translateX(230px);
    }
    95% {
        transform: translateX(0);
    }
}
@keyframes loading-text {
    0% {
        content: "Submitting";
    }
    25% {
        content: "Submitting.";
    }
    50% {
        content: "Submitting..";
    }
    75% {
        content: "Submitting...";
    }
}


@media only screen and (max-width: 1024px) {
    #step1{
        margin:20px;
    }
    .step1-child {
      margin-bottom: 10px;
      width: 32%;
      height: unset;
    }
}


@media only screen and (max-width: 768px) {
  .step2-main {
    display: block;
  }
  .step2-child, .step2-child-selected{
    min-height: 150px;
  }
  .col-md-12-c{
      padding:20px;
  }
  
  .step2-main1, .step2-main2 {
      width: 100%;
  }
  
}

@media only screen and (max-width: 550px) {
 .h2-c {
    font-size: 18px;
    margin-bottom: 4px;
    line-height: 22px;
}
.gift-meesgae-div1, .gift-meesgae-div2 {
    width: 100%;
}
  div#gift-message-main-div {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
    padding: 5px;
}
  textarea {
    min-height: 95px;
    padding: 15px 9px;
}
  button#change_btn {
    padding: 10px 20px;
    width: 100%;
    font-size: 16px;
  }
  button#add_box_to_card {
    width: 50%;
    color: #fff;
    margin-left: 0;
    margin-top: 6px;
    padding: 10px 20px;
    /* padding: 1rem 3rem; */
    font-size: 16px;
    border-radius: 0rem;
    background-color: #49746d;
    border-color: #49746d;
}
  .mb-4-c {
    margin-bottom: 5px!important;
}
    .mb-6-c {
    margin-bottom: 5px!important;
}
  .step2-child, .step2-child-selected {
    width: 31%;
}
  .step3-child {
    width: 48%;
  }
  
 /* #change_box_size {
  
    padding: 10px 28px;
  }*/
  .h1-c {
    font-size: 24px;
    margin-bottom: 4px;
    line-height: 24px;
}
  .mb-4-c {
    margin-bottom: 14px!important;
}

    .mb-6-c {
    margin-bottom: 14px!important;
}
  .step1-child {
    /*margin-bottom: 10px;*/
    width: 48%;
  }
  .step2-child, .step2-child-selected {
    min-height: 125px;
}

  div#add-to-card-div {
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: baseline;
}
  .add-to-card-div1 {
    width: 45%;
}
  .add-to-card-div2 {
    /*width: 45%;*/
}
}

@media only screen and (max-width: 375px) {
 .step2-child, .step2-child-selected {
      width: 48%;
  }
  #step2, #step3, #step4, #gift-message-div, #add-to-card-div {
    margin-top: 10px;
  }
  .step3-child {
    width: 48%;
  }
  .h2-c {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 16px;
}
  .mb-4-c {
    margin-bottom: 6px!important;
}

  .mb-6-c {
    margin-bottom: 6px!important;
}

    div#add-to-card-div {
    justify-content: center;
    flex-wrap: wrap;
}
.add-to-card-div1 {
    width: 50%;
}
  .add-to-card-div2 {
    /*width: 50%;*/
}
}



/* modal-css */
.require-msg {
            color: red;
            margin: 0 !important;
            margin-bottom: 10px !important;
            margin-top: 10px !important;
            padding: 0 !important;
            display: none;
        }

        .survey-button {
            background: white;
            color: black;
            border: 1px solid black;
            padding: 12px 22px;
            cursor: pointer;
            outline: none;
            font-weight: 600;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 999999 !important;
        }

        .modal-c {
            background-color: #fff;
            padding: 20px;
            border-radius: 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            max-width: 600px;
            margin: auto;
            margin-top: 5%;
            width: 100%;
            position: relative;
        }

.modal-body-c {
    padding: 20px;
  max-height: 550px;
    overflow-y: auto;
}
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 15px;
            padding-bottom: 13px;
            border-bottom: 1px solid black;
        }

        .modal-header h2 {
            margin: 0;
        }

        .close-btn {
            cursor: pointer;
        }

        .email-heading-c, .thankyou-c {
            margin: 0;
            padding: 0;
        }

        .email-heading-c {
            padding-right: 27px !important;
        }

       

        .modal-content.active {
            display: block;
        }

        .survey-input {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            box-sizing: border-box;
        }

        .survey-options {
            display: none;
        }

        .survey-options.active {
            display: block;
        }

        .copy-view {
            text-align: center;
        }

        .copy-input {
            width: 82%;
            padding: 10px;
            margin: auto;
            margin-bottom: 10px;
        }

        .copy-btn {
            padding: 10px;
            cursor: pointer;
        }

      

        div#center-c {
            display: flex;
            margin: 0 3px 5px 5px;
        }

       
        .cross-c {
            position: absolute;
            right: 20px;
            top: 14px;
        }

        .modal-content {
            min-height: 250px;
        }


      


     


h2#headingOnePistachio,h2#headingTwo{
    cursor:pointer;
  position:relative;
}
.data-action-c {
    position: absolute;
    top: -11px;
    right: 0px;
    color: #868282;
    font-size: 36px;
}
#collapseTwo,#collapseOne{
  display:none;
  padding-left: 6px;
}
button.accordion-button.collapsed {
    background: white;
}
div#question-1 {
    background: white;
    max-width: 500px;
    margin: auto;
  margin-top: 40px;
  border-radius: 10px;
}
  .modal-macron-text{
    text-align:center;
        font-size: 24px;
    margin-bottom:6px;
    padding:0;
  }
.modal-macron-description{
  
    margin-bottom:6px;
    padding:0;
  line-height: 17px;
    font-size: 16px;
}

        @media only screen and (max-width: 768px) {
            .modal-c {
                max-width: unset;
                width: 90%;
                /*background: red;*/
            }
        }

        @media only screen and (max-width: 510px) {
            label.scale-option {
                width: 10%;
            }

            .scale-parent-div {
                flex-wrap: wrap;
            }

            .survey-btn-c {
                display: grid;
            }

            button.cotinue-btn-c {
                width: 100%;
                margin-bottom: 10px;
            }

            button.checkout-btn-c {
                width: 100%;
                margin:0 !important;
            }
            .survey-submission-btn{
                width: 101px !important;
                margin-left: 0px !important;
                font-size: 16px !important;
                padding: 7px !important;
                cursor: pointer !important;
            }
            .copy-input {
                width: 100% !important;
                font-size: 16px !important;
            }

            .cotinue-btn-c, .checkout-btn-c {
                width: 100% !important;
                padding: 10px !important;
                font-size: 16px !important;
            }

            .survey-btn-c {
                display: block !important;
            }

            .description-c, .survey-input, .survey-input:focus-visible, .survey-input:focus, .copy-input, .copy-input:focus-visible, .copy-input:focus, .cotinue-btn-c {
                font-size: 16px !important;
            }

            label.single-option, label.multiple-option, label.scale-option, label.single-option, label.multiple-option, label.scale-option {
                font-size: 16px !important;
                padding: 6px !important;
            }

            .email-heading-c, .description-c, .enter-email-heading-c, .require-msg, .description-c, .enter-email-heading-c, .require-msg {
                font-size: 16px !important;
            }

            .survey-input, .survey-input:focus-visible, .survey-input:focus, .copy-input, .copy-input:focus-visible, .copy-input:focus, .cotinue-btn-c,
            .copy-text,
            .description-c, .enter-email-heading-c, .require-msg,
            .survey-button,
            label.single-option.active, label.multiple-option.active, label.scale-option.active, .cotinue-btn-c,
            label.single-option, label.multiple-option, label.scale-option {
                font-size: 16px !important;
            }

/* ── CMB15 MACARON INFO MODAL ───────────────────────────────── */
.cmb15-modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  align-items: center;
  justify-content: center;
}

.cmb15-modal-content {
  background: #faf7f2;
  max-width: 700px;
  width: 92%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 88vh;
  max-height: 88vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}

.cmb15-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(250,247,242,0.92);
  border: none; border-radius: 50%;
  cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; color: #1f6044;
  font-family: 'Jost', sans-serif; font-weight: 300; line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.cmb15-modal-close:hover { background: #1f6044; color: white; }

.cmb15-modal-img-side {
  background: #f0ece4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; min-height: 360px;
}
#cmb15-modal-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 32px; box-sizing: border-box; border: 0;
}

.cmb15-modal-info-side {
  padding: 44px 32px 32px;
  overflow-y: auto; height: 100%; box-sizing: border-box;
  display: flex; flex-direction: column;
}

.cmb15-modal-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200; font-size: 9px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(31,96,68,0.45); margin: 0 0 12px;
}

.cmb15-modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; color: #1f6044;
  margin: 0 0 20px; line-height: 1.15; letter-spacing: -0.01em;
  text-align: left;
}

.cmb15-acc-item { border-bottom: 0.5px solid rgba(31,96,68,0.15); }
.cmb15-acc-item:first-child { border-top: 0.5px solid rgba(31,96,68,0.15); }

.cmb15-acc-header {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; padding: 12px 0; margin: 0;
}

.cmb15-acc-btn {
  font-family: 'Jost', sans-serif;
  font-weight: 300; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #1f6044; background: none; border: none;
  padding: 0; cursor: pointer; pointer-events: none;
}

.cmb15-acc-icon {
  font-family: 'Jost', sans-serif;
  font-size: 20px; font-weight: 200;
  color: #1f6044; line-height: 1; pointer-events: none;
}

.cmb15-acc-body { display: none; padding: 6px 0 14px; }

.cmb15-acc-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 300;
  color: rgba(73,116,109,0.8); line-height: 1.6; margin: 0;
}
.cmb15-acc-text p { margin: 0; }

@media (max-width: 600px) {
  .cmb15-modal-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto; max-height: 92vh;
    overflow-y: auto; overflow-x: hidden;
    width: 96%;
  }
  .cmb15-modal-img-side { min-height: 200px; max-height: 240px; }
  .cmb15-modal-info-side { height: auto; overflow-y: visible; padding: 24px 20px 28px; }
}

        }