/* == Hero Slider Styles == */

.pricingBlock__headingRow{
  padding-bottom: 32px;
}

.pricingBlock__blockContentWrapper ul{
  margin-top: 0px;
}

.pricingBlock__topButton{
  text-align: center;
}

.pricingBlock__tabWrapper{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 64px;
}

.pricingBlock__tabText{
  font-size: 24px;
  text-align: center;
  cursor: pointer;
}
.pricingBlock__tabText::after{
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  bottom: -5px;
  content: "";
  width: 45%;
  height: .125rem;
  background-color: #20a2b6;
  transform-origin: center;
  transition: all .2s ease-out;
  opacity: 0;
}
.pricingBlock__tabText.active::after,
.pricingBlock__tabText:hover::after{
  transform: translateX(-50%) translateY(0);
  width: 50%;
  opacity: 1;
  transition: all .2s ease-out;
}

.pricingBlock__slideWrapper{
  padding-top: 16px;
  padding-bottom: 16px;
}

.pricingBlock__navButton{
  background-color: var(--FC-dark-blue);
  color: #fff !important;
  font-size: 24px;
  border-radius: 50%;
  width: 30px !important;
  height: 30px !important;
  top: 63% !important;
  user-select: none;
}
.pricingBlock__navButton::after{
  font-size: var(--t4-font-size) !important;
}
.pricingBlock__navButton.swiper-button-prev{
  left: 0;
}
.pricingBlock__navButton.swiper-button-next{
  right: 0;
}

.pricingBlock__priceWrapper{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.pricingBlock__price{
  font-size: 32px;
  margin-top: 0px;
  margin-bottom: var(--t4-margin-bottom);
}

.pricingBlock__tabOuterWrapper{
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(90deg, #b2d235 0, #11917c 100%);
    position: relative;
    z-index: 0;
}
.pricingBlock__tabOuterWrapper::after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    margin: .0625rem;
    border-radius: .9375rem;
    background: #ffffff;
    border-radius: 1.5rem;
}


@media screen and (max-width: 767px){
  .pricingBlock__topButton{
    text-align: left;
    padding-top: 16px;
  }
  .pricingBlock__blockContentWrapper{
    padding-bottom: 32px;
  }
}
