/*
* rti-newsletter overlay
*/
.rti-newsletter-test {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
}
.rti-news-popup-email-error {
  width: 414px;
  padding-left: 24px;
  padding-right: 24px;
}

.rti-newsletter-button {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  position: fixed;
  right: 17px;
  bottom: 200px;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right center;
  padding: 0px 10px;
  background-color: #cc33ad;
  color: #fff;
  border: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  cursor: pointer;
  margin: 0px;
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 1px;
}

.rti-popnews-close-btn {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 100%;
  margin: 0px;
  padding-bottom: 2px;
}

/* POPUP MODAL*/

.rti-popup-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.rti-popup-content {
  background-color: #fff;
  width: 478px;
  height: 368px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 4px;
}

.rti-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.rti-circle-container {
  width: 108px;
  height: 108px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: -54px;
  left: 18%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.rti-coupon-circle {
  transform: rotate(-10deg);
  background-color: #3275d7;
  color: white;
  width: 108px;
  height: 108px;
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4px;
}

.rti-coupon-circle-price {
  font-weight: bold;
}

.rti-close-button {
  width: 40px;
  height: 40px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-size: 2rem;
}

.rti-popup-content-container {
  margin-top: 54px;
}

.rti-popup-text-outer-container {
  display: flex;
  justify-content: center;
}

.rti-popup-text-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 414px;
  margin-top: 16px;
}

.rti-popup-content-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #0d0d0d;
  padding-left: 24px;
  padding-right: 24px;
}

.rti-popup-content-price-description {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5%;
  color: #0d0d0d;
  padding-left: 24px;
  padding-right: 24px;
}

.rti-popup-content-text-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0d0d0d;
  padding-left: 24px;
  padding-right: 24px;
}

.rti-popup-input-outer-container {
  background-color: #f8f7f7;
  /* max-height: 104px;   */
  padding: 32px;
  height: fit-content;
}

.rti-popup-content-text-description {
  margin-bottom: 16px;
}

.rti-popup-input-container {
  width: 414px;
  height: 40px;
  display: flex;
  flex-direction: row;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 20px;
}

.rti-popup-input-wrapper {
  display: flex;
  flex: 1;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.rti-popup-signup-input-email {
  width: 100%;
  height: 40px;
  border: none;
  padding-left: 10px;
  box-sizing: border-box;
  outline: none;
}

.rti-popup-signup-input-email:focus {
  border-color: #ccc;
}

.rti-popup-signup-btn {
  width: 110px;
  height: 40px;
  border: none;
  background-color: #cc33ad;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  margin-left: -1px;
}

@media (max-width: 900px) {
  .rti-popup-content {
    width: 343px;
    height: 392px;
    padding: 72px, 0px, 0px, 0px;
  }

  .rti-circle-container {
    left: 22%;
  }
  .rti-popup-input-container {
    width: 279px;
  }

  .rti-news-popup-email-error {
    width: fit-content;
    padding: 0px;
    padding-top: 5px;
  }
}

/*
* rti-overlay-button
*/
.rti-overlay-sticky-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  position: fixed;
  right: 17px;
  bottom: 200px;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right center;
  padding: 0px 10px;
  background-color: #cc33ad;
  color: #fff;
  border: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  cursor: pointer;
  margin: 0px;
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 1px;
}

.rti-overlay-sticky-close-button {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 100%;
  margin: 0px;
  padding-bottom: 2px;
}

.rti-overlay-sticky-button-text {
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 100%;
  margin: 0px;
  padding-bottom: 2px;
}

/*
* rti-aktivierungs-popup
*/
.rti-aktivierungs-popup-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.rti-aktivierungs-popup-content {
  background-color: #fff;
  width: 380px;
  box-shadow: 24px 24px 44px rgba(0, 0, 0, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.rti-aktivierungs-popup-close-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: none;
  padding: 0px;
  height: 25px;
  font-size: 2.4rem;
  margin-bottom: -20px;
}

.rti-aktivierungs-popup-close-button {
  position: absolute;
  right: 1px;
  background: none;
  border: none;
  cursor: pointer;
  color: gray;
  width: 40px;
  height: 40px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

.rti-aktivierungs-popup-content-cta-container {
  color: white;
  background-color:  #CC33AD;
  height: 34px; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right:22px;
  padding-bottom: 1px !important;
  cursor: pointer;
  border-radius: 17px;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  margin-bottom: 0.5rem;
}

.rti-aktivierungs-popup-content-cta-title {
  font-size: 1.2rem;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  color: white;
}

.rti-aktivierungs-popup-content-cta-title:hover {
  color: white;
}

.rti-aktivierungs-popup-content-cta-svg svg {
  color: white;
  height: 18px !important;
  width: 18px !important;
  font-weight: 800;
}

.rti-aktivierungs-popup-content-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.rti-ktivierungs-popup-content-title {
  text-align: center;
  color: #cc33ad;
  font-size: 1.4rem;
  font-weight: 600;
  width: 86%;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  line-height: 1.2;
}

/*
* rti-aktivierungs-upselling-popup
*/
.rti-aktivierungs-upselling-popup-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.rti-aktivierungs-upselling-popup-content {
  background-color: #fff;
  width: 380px;
  box-shadow: 24px 24px 44px rgba(0, 0, 0, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.rti-aktivierungs-upselling-popup-close-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: none;
  height: 25px;
  font-size: 2.4rem;
  margin-bottom: -20px;
}

.rti-aktivierungs-upselling-popup-close-button {
  position: absolute;
  right: 1px;
  background: none;
  border: none;
  cursor: pointer;
  color: gray;
  width: 40px;
  height: 40px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

.rti-aktivierungs-upselling-popup-content-cta-container {
  color: white;
  background-color:  #CC33AD;
  height: 34px; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right:22px;
  padding-bottom: 1px !important;
  cursor: pointer;
  border-radius: 17px;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  margin-bottom: 0.5rem;
}

.rti-aktivierungs-upselling-popup-content-cta-title {
  font-size: 1.2rem;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  color: white;
}

.rti-aktivierungs-upselling-popup-content-cta-title:hover {
  color: white;
}

.rti-aktivierungs-upselling-popup-content-cta-svg svg {
  color: white;
  height: 18px !important;
  width: 18px !important;
  font-weight: 800;
}

.rti-aktivierungs-upselling-popup-content-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.rti-aktivierungs-upselling-popup-content-title {
  text-align: center;
  color: #cc33ad;
  font-size: 1.4rem;
  font-weight: 600;
  width: 86%;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  line-height: 1.2;
}

/*
* rti-basket-abandon
*/
.rti-basketAbandon-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.rti-basketAbandon-content {
  background-color: #fff;
  width: 380px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  padding-top: 2px;
}

.rti-basketAbandon-close-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: none;
  padding: 0px;
  height: 25px;
  font-size: 2.4rem;
  margin-bottom: -8px;
}

.rti-basketAbandon-close-button {
  text-align: center;
}

.rti-basketAbandon-content-cta-container {
  color: white;
  background-color: #cc33ad;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
}

.rti-basketAbandon-content-cta-title {
  font-size: 1.8rem;
}

.rti-basketAbandon-content-cta-svg svg {
  color: white;
  height: 18px !important;
  width: 18px !important;
  font-weight: 800;
}

.rti-basketAbandon-content-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.rti-basketAbandon-content-title {
  color: rgb(18 165 72);
  font-size: 1.28rem;
  font-weight: 600;
}

.rti-basketAbandon-content-title-container {
  width: 84%;
  text-align: center;
  margin-top: -15px;
}

.rti-basketAbandon-content-sub-title {
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

.rti-basketAbandon-email-field-container {
  border: 1px solid #cc33ad;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 20px;
  background-color: white;
  z-index: 999;
}

.rti-basketAbandon-email-field {
  flex: 1;
  margin-left: 5px;
  height: 30px;
}

.rti-basketAbandon-email-field input {
  width: 100%;
  border: none;
  outline: none;
  height: 100%;
}

.rti-basketAbandon-email-submit-btn {
  margin-right: 5px;
  margin-left: 5px;
  background-color: #cc33ad;
  color: white;
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.rti-basketAbandon-mainText-container {
  background-color: #e0b4d8;
  width: 100%;
  margin-top: -34px;
  height: 130px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.rti-basketAbandon-mainText {
  color: black;
}

.rti-basketAbandon-mainText-btn {
  background-color: rgb(40, 38, 38);
  color: white;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 18px;
}

.rti-basketAbandon-benefits-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 94%;
  gap: 2rem;
}

.rti-basketAbandon-benefit-text {
  font-size: 0.8rem;
  text-align: center;
}

.rti-basketAbandon-benefit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
}

.rti-basketAbandon-benefit-svg {
  color: #cc33ad;
}

.rti-basketAbandon-data-policy {
  font-size: 0.8rem;
  width: 84%;
  margin-bottom: 1.4rem;
}

/*
* rti-begrussungs-popup
*/
.rti-begrüssungs-popup-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.rti-begrüssungs-popup-content {
  background-color: #fff;
  width: 550px;
  height: fit-content;
  box-shadow: 24px 24px 44px rgba(0, 0, 0, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 10px;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
}

.rti-begrüssungs-popup-close-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: none;
  padding: 0px;
  max-height: 30px;
  padding-right: 5px;
  color: gray;
}

.rti-begrüssungs-popup-close-button {
  max-height: 30px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
}

.rti-begrüssungs-popup-content-cta-container {
  color: white;
  background-color:  #CC33AD;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right:22px;
  padding-bottom: 1px !important;
  cursor: pointer;
  border-radius: 17px;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}

.rti-begrüssungs-popup-content-cta-title {
  font-size: 1.2rem;
  color: white;
  text-align: center;
}

.rti-begrüssungs-popup-content-cta-title:hover {
  color: white;
}

.rti-begrüssungs-popup-content-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.rti-begrüssungs-popup-content-title {
  color: #cc33ad;
  font-size: 1.28rem;
  font-weight: 600;
}

.rti-begrüssungs-top-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: fit-content;
  width: 100%;
  gap: 0.6rem;
}

.rti-begrüssungs-image-top-container {
  min-width: 180px;
  min-height: 100%;
}


.rti-begrüssungs-image-top-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rti-begrüssungs-conditions-info {
  font-size: 0.8rem;
  padding-left: 14px;
  padding-right: 14px;
}

.rti-begrüssungs-info-container {
  display: flex;
  flex:1 !important;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 14px;
  height: 100%;
  gap: 1rem;  
}

.rti-begrüssungs-info-title {
  color: #cc33ad;
  font-weight: 800;
  font-size: 2.04rem;
  line-height: 1;
  text-align: center;
}

.rti-begrüssungs-info-subtitle {
  font-weight: 400;
  color: #cc33ad;
  font-size: 1rem;
  text-align: center;
  line-height: 1.2;
}

.rti-begrüssungs-info-discount-container {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #cc33ad;
  position: relative;
}

.rti-begrüssungs-info-discount {
  display: flex;
  align-items: baseline;
}

.rti-begrüssungs-info-discount-minus {
  font-weight: 900;
  font-size: 4rem;
}

.rti-begrüssungs-info-discount-amount {
  font-weight: 900;
  font-size: 6rem;
}

.rti-begrüssungs-info-discount-pencentile {
  font-weight: 900;
  font-size: 2rem;
  height: 1.5rem;
}

.rti-begrüssungs-info-discount-asterik {
  font-size: 1rem;
  position: absolute;
  right: 32%;
  top: 60%;
  font-weight: 900;
}

.rti-begrüssungs-info-code {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rti-begrüssungs-info-code-innerContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  height: 30px;
  font-size: 1.6rem;
  padding: 4px;
  background-color: lightgray;
  width: fit-content;
}

.rti-begrüssungs-info-auf-mode {
  color: #cc33ad;
  display: flex;
  gap: 0.5rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}

.rti-begrüssungs-info-mode {
  font-weight: 800;
}

.rti-begrüssungs-info-code-text {
  font-weight: 400;
}

.rti-begrüssungs-info-code-word {
  font-weight: 800;
}

@media screen and (max-width: 540px) {
  .rti-begrüssungs-popup-close-btn-container {
    min-height: 40px;
    max-height: 40px;
  }
  
  .rti-begrüssungs-popup-content {
    width: 96%;
    height: fit-content;
  }

  .rti-begrüssungs-top-container {
    height: 340px;
  }

  .rti-begrüssungs-info-discount-asterik {
    right: 10%;
  }

  .rti-begrüssungs-top-container {
    flex-direction: column;
    justify-content: space-between;
    height: fit-content;
    width: 100%;
    gap: 0.6rem;
  }
  
  .rti-begrüssungs-image-top-container {
    margin-top: 14px;
    min-height: 10px;
  }
  
  .rti-begrüssungs-image-top-container img {
    min-width: 100%;
    height: 140px;
    object-fit: cover;
  }

  .rti-begrüssungs-info-discount-asterik {
    right: 18%;
  }

}

/* Image only */

.rti-begrüssungs-popup-content-imageOnly {
  background-color: #fff;
  width: 400px;
  height: fit-content;
  box-shadow: 24px 24px 44px rgba(0, 0, 0, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 10px;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
}

.rti-begrüssungs-popup-content-imageOnly-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rti-begrüssungs--imageOnly-image-container {
  margin-top: 0px;
}

.rti-begrüssungs--imageOnly-image-container img {
  width: 100%;
  height: 100%;
}

.rti-begrüssungs-popup-content-imageOnly-cta-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rti-begrüssungs-popup-content-imageOnly-cta-title {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cc33ad;
  height: 34px;
  padding-left: 22px;
  padding-right: 22px;
  padding-bottom: 1px !important;
  cursor: pointer;
  border-radius: 17px;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
}


.rti-begrüssungs-popup-content-imageOnly-cta-title:hover {
  color: white;
}

/*
* rti-icross-selling-element
*/
.rti-cross-selling-element-container {
    width: 100%;
    position: absolute;
    z-index: 999;
    top: 80%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.rti-cross-selling-element {
    background-color: gray;
    color: white;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    font-size: 1rem;
        padding-bottom: 10px;
}

.rti-cross-selling-element-closeBtn-container {
    height: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.rti-cross-selling-element-title {
    padding-left: 10px;
    padding-right: 10px;
}

.rti-cross-selling-element-subTitle {
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 500px) {
    .rti-cross-selling-element {
        width: 70%;
        height: 100%;
    }

    .rti-cross-selling-element-container {
        top: 88%;
        height: fit-content;
    }
  
  .rti-begrüssungs-popup-content-imageOnly {
    background-color: #fff;
    width: 380px;
  }
  
  .rti-begrüssungs-popup-content-imageOnly-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0px;
  }
}
/*
* rti-cross-selling-addToCart-warekorb
*/
.rti-crossSelling-addToCart-element-container {
  width: 100%;
  /* position: absolute; */
  z-index: 999;
  top: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.rti-crossSelling-addToCart-element {
  color: black;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  font-size: 1rem;
}

.rti-crossSelling-addToCart-element-closeBtn-container {
  height: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.rti-crossSelling-addToCart-element-title {
  font-size: 1.6rem;
  font-weight: bold;
  text-align:center;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;  
} 

.rti-crossSelling-addToCart-element-subTitle {
  padding-left: 10px;
  font-size: 0.9rem;
}

.rti-crossSelling-addToCart-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.rti-crossSelling-addToCart-color {
  background-color: white;
  height: 20px;
  min-width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%
}

.rti-crossSelling-addToCart-color img{
  height: 10px;
  width: 10px;
  border-radius: 50%
}

.rti-crossSelling-addToCart-qauntity-container {
  display: flex;
  flex-direction: row;
}

.rti-crossSelling-addToCart-btn-container {
  display: flex;
}

.rti-crossSelling-addToCart-element-top-container {
  background-color: gray;  
  color: white;
  padding: 5px;
  
}

.rti-crossSelling-addToCart-element-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: -15px;
}

.rti-crossSelling-addToCart-bottom-container {
  border: 1px solid gray;
  background-color: lightgray;
  display: flex;
  flex-direction: row;
}

.rti-crossSelling-addToCart-bottom-container {
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.rti-crossSelling-addToCart-colors-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.rti-crossSelling-addToCart-sizes-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.rti-crossSelling-addToCart-sizes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.rti-crossSelling-addToCart-size {
  min-width: fit-content;
  background-color: white;
  height: 26px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 11px;
  padding-right: 11px;
  border-radius: 13px ;  
}

.rti-crossSelling-addToCart-container {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
}

.rti-crossSelling-addToCart-qauntity-container {
  background-color: white;
  width: 80px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 10px;  
}

.rti-crossSelling-addToCart-decreaseQuantity {
  color: lightgray;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
}

.rti-crossSelling-addToCart-increaseQuantity {
  color: rgb(204 51 173);
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
}

.rti-crossSelling-addToCart-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 20px;
  background-color: rgb(204 51 173);
  color: white;
  height: 36px;
  border-radius: 20px;
  width: 200px;
  cursor: pointer;
}

.rti-crossSelling-addToCart-quantity {
  font-size: 0.8rem;
  font-weight: 400;
}



@media (max-width: 500px) {
  .rti-crossSelling-addToCart-element {
    width: 100%;
    height: 100%;
  }

  .rti-crossSelling-addToCart-element-container {
    top: 88%;
    height: fit-content;
  }

  .rti-crossSelling-addToCart-bottom-container {
   flex-direction: column;
  }
}

/*
* rti-crossSelling-addToCart
*/
.rti-crossSelling-addToCart-element-container {
  width: 100%;
  position: absolute;
  z-index: 999;
  top: 90%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}

.rti-crossSelling-addToCart-element {
  color: black;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  font-size: 1rem;
}

.rti-crossSelling-addToCart-element-closeBtn-container {
  height: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 5px;
  font-size: 2rem;
  cursor: pointer;
}

.rti-crossSelling-addToCart-element-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  width:98%;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;  
}

.rti-crossSelling-addToCart-element-subTitle {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1rem;
}

.rti-crossSelling-addToCart-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.rti-crossSelling-addToCart-color {
  background-color: white;
  height: 20px;
  min-width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%
}

.rti-crossSelling-addToCart-color img{
  height: 10px;
  width: 10px;
  border-radius: 50%
}

.rti-crossSelling-addToCart-qauntity-container {
  display: flex;
  flex-direction: row;
}

.rti-crossSelling-addToCart-btn-container {
  display: flex;
}

.rti-crossSelling-addToCart-element-top-container {
  background-color: gray;  
  /* height: 70px; */
  color: white;
}

.rti-crossSelling-addToCart-element-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: -20px;
}

.rti-crossSelling-addToCart-bottom-container {
  border: 1px solid gray;
  background-color: lightgray;
}

.rti-crossSelling-addToCart-bottom-container {
  padding: 10px;
}

.rti-crossSelling-addToCart-colors-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.rti-crossSelling-addToCart-sizes-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.rti-crossSelling-addToCart-sizes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.rti-crossSelling-addToCart-size {
  min-width: fit-content;
  background-color: white;
  height: 26px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 11px;
  padding-right: 11px;
  border-radius: 13px ;  
}

.rti-crossSelling-addToCart-container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.rti-crossSelling-addToCart-qauntity-container {
  background-color: white;
  width: 80px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 10px;  
}

.rti-crossSelling-addToCart-decreaseQuantity {
  color: lightgray;
  font-weight: 600;
  font-size: 1.2rem;
}

.rti-crossSelling-addToCart-increaseQuantity {
  color: rgb(204 51 173);
  font-weight: 600;
  font-size: 1.2rem;
}

.rti-crossSelling-addToCart-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 20px;
  background-color: rgb(204 51 173);
  color: white;
  height: 36px;
  border-radius: 20px;
  width: fit-content;
}

.rti-crossSelling-addToCart-quantity {
  font-size: 0.8rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .rti-crossSelling-addToCart-element {
    width: 100%;
    height: 100%;
  }

  .rti-crossSelling-addToCart-element-container {
    top: 88%;
    height: fit-content;
  }
}

/*
* rti-leintucher-popup
*/
.rti-exitIntent-leintucher-popup-background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.rti-exitIntent-leintucher-popup-content {
  background-color: #fff;
  width: 540px;
  height: fit-content;
  box-shadow: 24px 24px 44px rgba(0, 0, 0, 1);
  position: fixed;
  gap: 0.5rem;
  bottom: 10px;
  right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.rti-exitIntent-leintucher-popup-close-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: none;
  padding: 0px;
  height: 25px;
  font-size: 2.4rem;
  padding-top: 14px;
}

.rti-exitIntent-leintucher-popup-title-container {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.rti-exitIntent-leintucher-popup-content-title {
  color: #cc33ad;
  font-size: 1.5rem;
  font-weight: 600;
  width: 98%;
  text-align: center;
}

.rti-exitIntent-leintucher-popup-content-sub-title {
  color: #cc33ad;
  font-size: 1rem;
  font-weight: 400;
  text-wrap: wrap;
  text-align: center;
}

.rti-exitIntent-leintucher-popup-products {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 4px);
  gap: 4px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.rti-exitIntent-leintucher-popup-product {
  height: 280px;
  border: 1px solid rgba(229, 231, 235, 1);
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 1rem;
  position: relative;
  color: black;
  cursor: default;
}

.rti-exitIntent-leintucher-popup-product:hover {
  color: black;
}

.rti-exitIntent-leintucher-popup-product-image {
  height: 100px;
  width: 100%;
}

.rti-exitIntent-leintucher-popup-product-image img {
  height: 100%;
  width: 100%;
}

.rti-exitIntent-leintucher-popup-product-colors {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 8px;
  flex: 1;
}

.rti-exitIntent-leintucher-popup-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 5px;
  padding-right: 5px;
  flex: 1;
}

.rti-exitIntent-leintucher-popup-price-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rti-exitIntent-leintucher-popup-new-price-container {
  display: flex;
  gap: 1px;
}

.rti-exitIntent-leintucher-popup-old-price-container {
  display: flex;
  gap: 1px;
}

.rti-exitIntent-leintucher-popup-new-price {
  font-weight: 800;
}

.rti-exitIntent-leintucher-popup-old-price-container {
  color: lightslategray;
  text-decoration: line-through;
}

.rti-exitIntent-leintucher-popup-product-colors-img-container {
  display: flex;
  gap: 0.5rem;
  padding-left: 10px;
}

.rti-exitIntent-leintucher-popup-product-colors-img {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.rti-exitIntent-leintucher-popup-product-colors-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.rti-exitIntent-leintucher-popup-product-additional-colors {
  color: rgb(204 51 173);
  font-weight: 600;
  font-size: 0.875;
}

.rti-exitIntent-leintucher-popup-product-description {
  font-size: 0.8rem;
  color: rgb(13, 13, 13);
  cursor: pointer;
}

.rti-exitIntent-leintucher-popup-content-cta-outer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.rti-exitIntent-leintucher-popup-content-cta-container {
  color: white;
  background-color: #cc33ad;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  border-radius: 17px;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
}

.rti-exitIntent-leintucher-popup-content-cta-title {
  font-size: 1.2rem;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  color: white;
}

.rti-exitIntent-leintucher-popup-content-cta-svg svg {
  color: white;
  height: 18px !important;
  width: 18px !important;
  font-weight: 800;
}

.rti-exitIntent-leintucher-popup-content-cta-svg svg {
  color: white;
  height: 18px !important;
  width: 18px !important;
  font-weight: 800;
}

.rti-exitIntent-leintucher-popup-discount-product {
  background-color: red;
  color: #fff;
  min-height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}

@media (max-width: 600px) {
  .rti-exitIntent-leintucher-popup-background {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .rti-exitIntent-leintucher-popup-content {
    width: 90%;
    position: relative;
    bottom: 0px;
    right: 0px;
  }

  .rti-exitIntent-leintucher-popup-products {
    grid-auto-columns: calc((100% / 2) - 10px);
  }

  .rti-exitIntent-leintucher-popup-content-cta-container {
    width: 80%;
    height: 40px;
  }
}

/*
* rti-exitIntent-popup
*/
.rti-exitIntent-popup-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.rti-exitIntent-popup-content {
  background-color: #fff;
  width: 380px;
  box-shadow: 24px 24px 44px rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: column;
  gap: 0rem;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  position: fixed;
  top: 10px;
  right: 10px;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
}

.rti-exitIntent-popup-close-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: none;
  padding: 0px;
  height: 25px;
  font-size: 2.4rem;
  margin-bottom: -10px;
}

.rti-exitIntent-popup-content-cta-container {
  color: white;
  background-color: #cc33ad;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  border-radius: 17px;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
}

.rti-exitIntent-popup-content-cta-title {
  font-size: 1.2rem;
  color: white;
}

.rti-exitIntent-popup-content-cta-title:hover {
  color: white;
}

.rti-exitIntent-popup-content-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.rti-exitIntent-popup-close-button {
  text-align: center;
}

.rti-exitIntent-popup-content-title {
  text-align: center;
  color: #cc33ad;
  font-size: 1.4rem;
  font-weight: 600;
  width: 86%;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  line-height: 1.4rem;
}

.rti-exitIntent-popup-content-code-container {
  background-color: lightgray;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 1.6rem;
  padding: 6px;
}

.rti-exitIntent-popup-content-code-title {
  font-weight: 400;
}

.rti-exitIntent-popup-content-code {
  font-weight: 800;
}

.rti-exitIntent-popup-content-cta-condition {
  font-size: 0.8rem;
  line-height: 1.5;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  margin-bottom: 0.5rem;
}

/*
* rti-intro-banner-popup
*/
.rti-exitIntent-upselling-popup-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.rti-exitIntent-upselling-popup-content {
  background-color: #fff;
  width: 380px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0rem;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  position: fixed;
  top: 10px;
  right: 10px;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
}

.rti-exitIntent-upselling-popup-close-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: none;
  padding: 0px;
  height: 25px;
  font-size: 2.4rem;
  margin-bottom: -10px;
}

.rti-exitIntent-upselling-popup-close-button {
  text-align: center;
}

.rti-exitIntent-upselling-popup-content-cta-container {
  color: white;
  background-color: #cc33ad;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  border-radius: 17px;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  margin-bottom: 0.5rem;
}

.rti-exitIntent-upselling-popup-content-cta-title {
  font-size: 1rem;
  color: white;
}

.rti-exitIntent-upselling-popup-content-cta-title:hover {
  color: white;
}

.rti-exitIntent-upselling-popup-content-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.rti-exitIntent-upselling-popup-content-title {
  text-align: center;
  color: #cc33ad;
  font-size: 1.4rem;
  font-weight: 600;
  width: 86%;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  line-height: 1.6rem;
}

/*
*rti-leintucher-popup
*/
.rti-leintucher-popup-background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.rti-leintucher-popup-content {
  background-color: #fff;
  width: 540px;
  height: fit-content;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: fixed;
  gap: 0.5rem;
  bottom: 10px;
  right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
}

.rti-leintucher-popup-close-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: content;
  background: none;
  padding: 0px;
  height: 25px;
}

.rti-leintucher-popup-close-button {
  text-decoration: none;
  border: none;
  background-color: white;
  font-size: 25px;
  cursor: pointer;
  color: gray;
}

.rti-leintucher-popup-title-container {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.rti-leintucher-popup-content-title {
  color: #cc33ad;
  font-size: 1.8rem;
  font-weight: 600;
  width: 82%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rti-leintucher-popup-content-sub-title {
  color: #cc33ad;
  font-size: 1rem;
  font-weight: 400;
  text-wrap: wrap;
  width: 82%;
}

.rti-leintucher-popup-products {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3)-2px);
  gap: 8px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.rti-leintucher-popup-product {
  height: 240px;
  border: 1px solid rgba(229, 231, 235, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.rti-leintucher-popup-product-image {
  height: 100px;
  width: 100%;
}

.rti-leintucher-popup-product-image img {
  height: 100%;
  width: 100%;
}

.rti-leintucher-popup-product-colors {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rti-leintucher-popup-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 5px;
  padding-right: 5px;
}

.rti-leintucher-popup-price-container {
  display: flex;
  gap: 6px;
}

.rti-leintucher-popup-new-price-container {
  display: flex;
  gap: 1px;
}

.rti-leintucher-popup-old-price-container {
  display: flex;
  gap: 1px;
}

.rti-leintucher-popup-new-price {
  font-weight: 600;
}

.rti-leintucher-popup-old-price-container {
  color: lightslategray;
  text-decoration: line-through;
}

.rti-leintucher-popup-product-colors-img-container {
  display: flex;
  gap: 0.5rem;
}

.rti-leintucher-popup-product-colors-img {
  width: 1rem;
  height: 1rem;
}

.rti-leintucher-popup-product-colors-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.rti-leintucher-popup-product-additional-colors {
  color: rgb(204 51 173);
  font-weight: 600;
  font-size: 0.875;
}

.rti-leintucher-popup-product-description {
  font-size: 0.8rem;
  color: rgb(13, 13, 13);
}

.rti-leintucher-popup-content-cta-outer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.rti-leintucher-popup-content-cta-container {
  color: white;
  background-color: #cc33ad;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
  width: 240px;
  height: 36px;
}

.rti-leintucher-popup-content-cta-title {
  font-size: 1.8rem;
}

.rti-leintucher-popup-content-cta-svg svg {
  color: white;
  height: 18px !important;
  width: 18px !important;
  font-weight: 800;
}

.rti-leintucher-popup-discount-product {
  background-color: red;
  color: #fff;
  min-height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}

@media (max-width: 600px) {
  .rti-leintucher-popup-background {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .rti-leintucher-popup-content {
    width: 90%;
    position: relative;
    bottom: 0px;
    right: 0px;
  }

  .rti-leintucher-popup-products {
    grid-auto-columns: calc((100% / 2) - 10px);
  }

  .rti-leintucher-popup-content-cta-container {
    width: 80%;
    height: 40px;
  }
}

/* POPUP MODAL*/
.rti-popup-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.rti-popup-content {
  background-color: #fff;
  width: 478px;
  height: 368px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 4px;
}

.rti-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.rti-circle-container {
  width: 108px;
  height: 108px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: -54px;
  left: 18%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.rti-coupon-circle {
  transform: rotate(-10deg);
  background-color: #3275d7;
  color: white;
  width: 108px;
  height: 108px;
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4px;
}

.rti-coupon-circle-price {
  font-weight: bold;
}

.rti-close-button {
  width: 40px;
  height: 40px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-size: 2rem;
}

.rti-popup-content-container {
  margin-top: 54px;
}

.rti-popup-text-outer-container {
  display: flex;
  justify-content: center;
}

.rti-popup-text-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 414px;
  margin-top: 16px;
}

.rti-popup-content-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #0d0d0d;
  padding-left: 24px;
  padding-right: 24px;
}

.rti-popup-content-price-description {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5%;
  color: #0d0d0d;
  padding-left: 24px;
  padding-right: 24px;
}

.rti-popup-content-text-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0d0d0d;
  padding-left: 24px;
  padding-right: 24px;
}

.rti-popup-input-outer-container {
  background-color: #f8f7f7;
  /* max-height: 104px;   */
  padding: 32px;
  height: fit-content;
}

.rti-popup-content-text-description {
  margin-bottom: 16px;
}

.rti-popup-input-container {
  width: 414px;
  height: 40px;
  display: flex;
  flex-direction: row;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 20px;
}

.rti-popup-input-wrapper {
  display: flex;
  flex: 1;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.rti-popup-signup-input-email {
  width: 100%;
  height: 40px;
  border: none;
  padding-left: 10px;
  box-sizing: border-box;
  outline: none;
}

.rti-popup-signup-input-email:focus {
  border-color: #ccc;
}

.rti-popup-signup-btn {
  width: 110px;
  height: 40px;
  border: none;
  background-color: #cc33ad;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  margin-left: -1px;
}

@media (max-width: 900px) {
  .rti-popup-content {
    width: 343px;
    height: 392px;
    padding: 72px, 0px, 0px, 0px;
  }

  .rti-circle-container {
    left: 22%;
  }
  .rti-popup-input-container {
    width: 279px;
  }

  .rti-news-popup-email-error {
    width: fit-content;
    padding: 0px;
    padding-top: 5px;
  }
}

/*
* rti-intro-banner-popup
*/
.rti-intro-banner.columns {
  position: relative;
  min-height: 20px;
  max-height: 20px;
  margin-top: 8px !important;
  margin-bottom: -28px;
}

.rti-intro-banner-content {
  position: absolute;
  top: 10;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #cc33ad;
  color: white;
  display: flex;
  gap: 1rem;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  width: 100%;
}

.rti-intro-banner-title {
  text-align: center;   
  flex: 1;
}

.rti-intro-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem !important;
}

.rti-intro-banner-title a {
  color:white;
  cursor: pointer;
  font-weight: bold;
}

.rti-intro-banner-code-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.rti-intro-banner-code-input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  background-color: white;
}

.rti-intro-banner-code-input-container input {
  border: none;
  height: 100%;
  padding: 0px;
  color: black;
  border-radius: 0;
  font-size: 0.8rem;
}

.rti-intro-banner-code-plus {
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 500px) {
  .rti-intro-banner.columns {
    position: relative;
    min-height: fit-content !important;
    margin-top: 10px;
    margin-bottom: -10px;
  }

  .rti-intro-banner-content {
    position: absolute;
    top: 0;
    bottom: 0;
    height: fit-content;
    padding: 8px;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .rti-intro-banner.columns {
    position: relative;
    min-height: 30px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important; 
  }
}

/*
* rti-bounce-vermeidungs-overlay
*/

.rti-bounce-Vermeidungs-content-container {
  margin-top: 54px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.rti-bounce-Vermeidungs-content-title-description {
  color:  #CC33AD;
  font-weight: 400;
  font-size: 1rem;
  line-height:1.2;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  width: 94%;
  text-align: center !important;
}

.rti-bounce-Vermeidungs-content-code-container {
  background-color: lightgray;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 1.6rem;
  padding: 6px;  
}

.rti-bounce-Vermeidungs-content-code-title {
  font-weight: 400;
}
.rti-bounce-Vermeidungs-content-code {
  font-weight: 800;
}

.rti-bounce-Vermeidungs-content-condition {
  font-size: 0.8rem;
  line-height: 1.5;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}

.rti-bounce-Vermeidungs-content-cta-container {
  color: white;
  background-color:  #CC33AD;
  height: 34px; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right:22px;
  padding-bottom: 1px !important;
  cursor: pointer;
  border-radius: 17px;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}

.rti-bounce-Vermeidungs-content-cta-title {
  font-size: 1rem;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  color: white;  
  text-align: center;
}

.rti-bounce-Vermeidungs-content-cta-title:hover {
  color: white;
}

.rti-bounce-Vermeidungs-test {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
}

.rti-bounce-Vermeidungs-button {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  position: fixed;
  left: 0px;
  bottom: 110px;
  transform: rotate(-90deg) translateY(50%);
  transform-origin: left center;
  padding: 0px 10px;
  background-color:  #CC33AD;
  color: #fff;
  border: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
  margin: 0px;
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 1px;
}

.rti-bounce-Vermeidungs-close-btn {
  font-size: 2rem;
  display: none;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 100%;
  margin: 0px;
  padding-bottom: 2px;
}

/* POPUP MODAL*/

.rti-bounce-Vermeidungs-background {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  padding-top: 45px;
  padding-left: 20px;
  z-index: 999;
}

.rti-bounce-Vermeidungs-content {
  background-color: #fff;
  width: 380px;
  height: fit-content;
  box-shadow: 24px 24px 44px rgba(0, 0, 0, 1);
  position: relative;
  padding-bottom: 10px;
}

.rti-bounce-Vermeidungs-circle-container {
  width: 68px;
  height: 68px;
  background-color:  #CC33AD;
  border-radius: 50%;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
}

.rti-bounce-Vermeidungs-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: rotate(-10deg);
  background-color:  #CC33AD;
  color: white;
  width: 68px;
  height: 68px;
  border-radius: 50%;
}

.rti-bounce-Vermeidungs-circle-percentile {
  font-weight: bold;
  font-size: 2rem;
}

.rti-bounce-Vermeidungs-close-button {
  position: absolute;
  right: 0px;
  background: none;
  border: none;
  cursor: pointer;
  color: gray;
  width: 10px;
  height: 30px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: normal;
}

.rti-bounce-Vermeidungs-content-container {
  margin-top: 24px;
}

.rti-bounce-Vermeidungs-text-outer-container {
  display: flex;
  justify-content: center;
}

.rti-bounce-Vermeidungs-text-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 414px;
  margin-top: 16px;
}

.rti-bounce-Vermeidungs-content-title {
  font-weight: bold;
  line-height: 1.0;
  padding:0px;
  color:  #CC33AD;
  font-size: 2.04rem;
  letter-spacing:0.2px;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  text-align: center;
}

@media (max-width: 900px) {
  .rti-bounce-Vermeidungs-background {
    justify-content:center;
    align-items:center;    
    padding-top: 0px;
    padding-left: 0px;
  }
  
  .rti-bounce-Vermeidungs-content {
    height: fit-content;
    padding-bottom: 10px;
  } 

  .rti-bounce-Vermeidungs-content-title-description {
    font-size: 1.4rem;
  }

  .rti-bounce-Vermeidungs-content-condition {
    font-size: 0.8rem;
  }
}
