/*
@version 1.1.0
*/

.exclusive-offer-block {
  min-height: 828px;
  padding-bottom: 0;
  background-image: linear-gradient(-180deg, #DAF6F9 0%, #F3F5F1 45%, #FACBA5 95%);
}

.exclusive-offer-block p {
  margin-bottom: 0;
}

.exclusive-offer-block__background--image {
  position: absolute;
  min-width: 450px;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.exclusive-offer-block__image--bubble {
  float: right;
  position: absolute;
  right: 5%;
  top: 148px;
  width: 163px;
}

.exclusive-offer-block__container {
  position: relative;
  min-height: 850px;
  padding-top: 28px;
  margin-bottom: -1px;
}

.exclusive-offer-block__main-row {
  z-index: 1;
}

.exclusive-offer-block__headline--secondary {
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  color: #228288 !important;
}

.exclusive-offer-block__headline {
  font-size: 28px;
  margin-bottom: 48px;
  line-height: 36px;
}

.exclusive-offer-block__horizontal-card {
  height: 168px;
  background: white;
  margin: 14px 0px;
  border-radius: 4px;
  display: flex;
}

.exclusive-offer-block__horizontal-card-body {
  padding: 14px 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  transition: all 300ms ease-in;
}

.exclusive-offer-block__horizontal-card-body-header {
  min-width: 268px;
  display: flex;
  align-items: center;
}

.exclusive-offer-block__horizontal-card-body--details__text {
  font-size: 14px;
  line-height: 20px;
}

.exclusive-offer-block__horizontal-card-body--details__text a {
  color: #fff;
}

/* hide and show the cards - based on toggle show-details class*/
.exclusive-offer-block__horizontal-card.show-details {
  height: auto;
}

.exclusive-offer-block__horizontal-card-body--details {
  z-index: -1;
  height: 100%;
  width: 100%;
  position: absolute;
  visibility: hidden;
  transition: all 100ms ease-in;
  overflow: hidden;
  padding: 28px 36px;
  background: #228288;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
}

.show-details
.exclusive-offer-block__horizontal-card-body--details {
  z-index: 8;
  opacity: 1;
  position: static;
  transition: all 100ms ease-out;
  width: 100%;
  color: white;
  overflow: visible;
  visibility: visible;
  border-radius: 4px;
}

.exclusive-offer-block__horizontal-card__button {
  font-size: 14px;
  align-self: normal;
  line-height: 36px;
  letter-spacing: 1.1px;
  color: #ffffff;
  text-decoration: none;
  height: 36px;
  padding: 0px 11px;
  text-align: center;
  border-radius: 4px;
  background-color: #770358;
  width: 170px;
  margin-top: 7px;
}

.exclusive-offer-block__horizontal-card__button:hover {
  color: white;
  opacity: .9;
}

.exclusive-offer-block__horizontal-card-body--details__button {
  display: inline-block;
  margin: 10px 0;
  width: 170px;
  height: 36px;
  border: none;
  vertical-align: middle;
  color: #228288;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  line-height: 36px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.show-details
.exclusive-offer-block__horizontal-card-body {
  z-index: -1;
  position: absolute;
  width: 0px;
  visibility: hidden;
  transition: all 300ms ease-in-out;
  overflow: hidden;
}

.exclusive-offer-block__horizontal-card-body__icon {
  margin: 14px;
  width: 48px;
}

.exclusive-offer-block__horizontal-card-info-link--close {
  position: absolute;
  right: -14px;
  top: 14px;
  font-size: 21px;
  color: white;
  margin: 14px;
  width: 48px;
  cursor: pointer;
}

.exclusive-offer-block__horizontal-card-body__headline {
  font-size: 28px;
  line-height: 36px;
  color: #228288;
  margin-left: 4px;
}

.exclusive-offer-block__horizontal-card-body__headline--bold {
  font-size: 36px;
  line-height: 41px;
  font-weight: bold;
  color: #228288;
  min-width: 80px;
}

.exclusive-offer-block__horizontal-card-text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.exclusive-offer-block__horizontal-card-info-link {
  color: #228288;
  font-weight: bold;
  cursor: pointer;
}

.exclusive-offer-block__cta-button {
  border: none;
  width: 300px;
  height: 36px;
  margin: 14px 0px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  margin: 10px 0;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 36px;
  transition: 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  background: #228288;
}

.exclusive-offer-block__cta-button:hover {
  color: white;
  opacity: 0.9;
}

@media(max-width: 1024px) {
  .exclusive-offer-block__container {
    padding-bottom: 148px;
  }

  .exclusive-offer-block__image--bubble {
    position: relative;
    float: none;
    right: 0%;
    top: 0px;
    width: 163px;
  }
}

@media(max-width: 768px) {
  .exclusive-offer-block {
    height: auto;
    padding-bottom: 0px;
    text-align: center;
  }

  .exclusive-offer-block__container {
    height: auto;
    padding-bottom: 186px;
    padding-top: 0px;
  }

  .exclusive-offer-block__content {
    padding-left: 0;
    text-align: center;
  }

  .exclusive-offer-block__main-row {
    position: relative;
  }

  .exclusive-offer-block__main-row {
    margin-right: 0px !important;
    margin-left: 0px !important;
    padding-right: 0px;
    padding-left: 14px;
  }

  .exclusive-offer-block__headline--secondary {
    padding: 0px 28px 0px 28px;
    text-align: center;
    width: 100%;
  }

  .exclusive-offer-block__cta-button {
    max-width: 300px;
  }

  /* cards style fom mobile */
  .exclusive-offer-block__horizontal-card {
    height: auto;
  }

  .exclusive-offer-block__horizontal-card-body,
  .exclusive-offer-block__horizontal-card-body--detalis {
    flex-direction: column;
    text-align: center;
  }

  .exclusive-offer-block__headline {
    font-size: 28px;
    margin: 14px 0px;
    line-height: 36px;
  }

  .exclusive-offer-block__horizontal-card__button {
    align-self: center
  }
}

@media(max-width: 375px) {
  .exclusive-offer-block__background--image {
    min-width: 486px;
  }

  .exclusive-offer-block__cta-button {
      max-width: 259px;
  }

  .exclusive-offer-block__horizontal-card-body {
    min-width: 268px;
  }
}
