/* ================================================
   Bamboo Coverage Slider
   ================================================ */

/* ---- Variables ---- */
:root {
  --bcs-font: "Rubik", sans-serif;
  --bcs-label-color: #2D7A4F;
  --bcs-card-bg: #FEFEFE;
  --bcs-card-radius: 20px;
  --bcs-flag-radius: 16.5px;
  --bcs-btn-gradient: linear-gradient(205.38deg, #E0F56A -71.39%, #AEEB3E 61.68%);
  --bcs-btn-color: #000;
}

/* ---- Empty state ---- */
.bcs-empty {
  text-align: center;
  color: #888;
  padding: 40px;
}

/* ---- Wrapper ---- */
.bcs-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 718px !important;
  margin-left: auto;
  padding: 20px 20px ;
  user-select: none;
  box-sizing: border-box;
  box-shadow: 0px 0px 80.02px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: var(--bcs-card-bg);
  border-radius: var(--bcs-card-radius);
}

/* ---- Slider track ---- */
.bcs-slider {
  width: 100%;
}

/* ---- Slide show/hide + animation ---- */
.bcs-slide {
  display: none;
}

.bcs-slide.bcs-active {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  animation: bcsIn .3s ease;
}

.bcs-slide.bcs-from-left.bcs-active {
  animation: bcsInLeft .3s ease;
}

@keyframes bcsIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes bcsInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- Card ---- */
.bcs-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  width: 100%;
  min-height: 159.5px;
}

/* ---- Flag image ---- */
.bcs-card__flag {
  width: 145px;
  border-radius: var(--bcs-flag-radius) !important;
  flex-shrink: 0;
  height: auto;
}

.bcs-card__flag--mobile {
  display: none;
}

/* ---- Body (right-side content) ---- */
.bcs-card__body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 33px;
  margin-top: -2px;
  flex: 1;
  min-width: 0;
}

/* ---- Sections (top / bottom) ---- */
.bcs-card__section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.bcs-card__section--bottom {
  align-items: flex-end;
}

.bcs-card__section--bottom .bcs-card__section-icons {
  flex: 1;
  width: auto;
}

/* ---- Section label ---- */
.bcs-card__section-label {
  width: 100%;
  font-family: var(--bcs-font);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.125rem;
  text-transform: uppercase;
  color: #6e6f71;
  margin: 0 0 -4px;
}

/* ---- Payment-method icon strips ---- */
.bcs-card__section-icons {
  width: 100%;
  display: flex;
}

.bcs-card__payment-img {
  display: block;
  max-width: 100%;
  margin-left: -6px;
  height: auto;
}

.bcs-card__payment-img--mobile {
  display: none;
}

/* ---- Text card (active / roadmap) ---- */
.bcs-card__text-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.bcs-card__headline {
  font-family: var(--bcs-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #26282b;
  padding-right: 26px;
  margin: 0;
}

.bcs-card--active .bcs-card__headline strong {
  color: #6d991c;
  font-weight: 600;
}

.bcs-card--roadmap .bcs-card__headline strong {
  color: #ff8500;
  font-weight: 600;
}

/* ---- CTA button ---- */
.bcs-card__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  margin-left: auto;
  padding: 9px 17px;
  font-family: var(--bcs-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.53px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bcs-btn-color);
  background: var(--bcs-btn-gradient);
  border-radius: 100px;
  white-space: nowrap;
  transition: filter .2s;
}

.bcs-card__cta:hover {
  /* filter: brightness(1.06); */
  color: var(--bcs-btn-color);
  text-decoration: none;
}

.bcs-card__text-body .bcs-card__cta{
  margin-right: auto;
  margin-left: 0px;
}

/* ---- Navigation arrows ---- */
.bcs-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -61px;
  margin-left: -538px;
  position: absolute;
}

.bcs-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #26282b;
  background-color: #FFFFFF !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #26282b !important;
  transition: background .2s, border-color .2s, color .2s;
  padding: 0 !important;
  flex-shrink: 0;
  display: flex;

}

.bcs-arrow:hover {
  background: #26282b;
  color: #fff;
}

.bcs-arrow:disabled {
  opacity: .3;
  cursor: default;
}

/* ================================================
   Tablet  (≤ 1024px)
   ================================================ */
@media (max-width: 1024px) {

  .bcs-card {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .bcs-card__flag--desktop {
    display: none;
  }

  .bcs-card__flag--mobile {
    display: block;
    width: 100%;
    border-radius: var(--bcs-flag-radius) !important;
  }

  .bcs-card__section--top {
    min-height: 113px;
  }

  .bcs-card__section--bottom {
    min-height: 140px;
    align-content: space-between;
  }
}

/* ================================================
   Mobile  (≤ 767px)
   ================================================ */
@media (max-width: 767px) {
  .bcs-slide {
    width: 100%;
  }

  .bcs-card {
    gap: 20px;
    min-height: 475.03px;
  }

  .bcs-card__body {
    flex-direction: column;
    gap: 13px;
    padding: 0 10.5px;
  }

  .bcs-card__payment-img--desktop {
    display: none;
  }

  .bcs-card__payment-img--mobile {
    display: block;
    width: 100%;
    margin-left: -5px;
  }

  .bcs-card__section--bottom {
    flex-direction: column;
    align-items: flex-start;
    min-height: 180px;
  }

  .bcs-card__section--bottom .bcs-card__section-icons {
    flex: unset;
    width: 100%;
  }

  .bcs-card__cta {
    align-self: center;
    margin-top: auto;
    margin-right: auto;
  }

  .bcs-nav {
    justify-content: center;
    margin-top: 50px;
    margin-left: 71px;
  }

  .bcs-arrow {
    border-radius: 50% !important;
  }

  .bcs-slider-wrap{
    max-width: 272px !important;
    margin-right: auto;
  }

  .bcs-card__headline {
    line-height: 27px;
    padding-right: 0px;
    text-align: justify;
  }

  .bcs-card__text-body .bcs-card__cta{
    margin-left: auto;
    margin-top: auto;
  }
}

/* our_coverage__desktop-main */
