/* Local styles - start */

.fw-container {
  margin: 40px 0;
}

/* Local styles - end */

/* Dynamic styles - start */

.fw-mb-auto {
  margin-bottom: auto;
}

/* Dynamic styles - end */

/* Grid - start */
.fw-container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .fw-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .fw-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .fw-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .fw-container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .fw-container {
    max-width: 1320px;
  }
}

.fw-row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  row-gap: 24px;
}

.fw-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .fw-row-overflow {
    overflow: auto;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
}

.fw-col-card {
  width: 260px;
  scroll-snap-align: center;
}

@media (min-width: 992px) {
  .fw-col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .fw-col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .fw-col-card {
    flex: 0 0 auto;
    width: 50%;
    scroll-snap-align: center;
  }
}

@media (min-width: 1200px) {
  .fw-col-card {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

@media (min-width: 1400px) {
  .fw-col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .fw-col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .fw-col-card {
    flex: 0 0 auto;
    width: 25%;
  }
}

/* Grid - end */

.fw-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 0;
}

.fw-title--main {
  margin-bottom: 40px;
}

.fw-title-img {
  margin-right: 5px;
  max-width: 15px;
  height: auto;
}

@media (min-width: 992px) {
  .fw-title {
    font-size: 30px;
  }
  .fw-title-img {
    margin-right: 15px;
    max-width: 20px;
  }
}

.fw-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.fw-tab-button {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  border: none;
  cursor: pointer;
  background-clip: text;
  padding: 0;
  background-image: linear-gradient(137.47deg, #359fd9 17.16%, #153a4e 89.2%);
  transition: 0.2s color;
}

@media (min-width: 992px) {
  .fw-tabs {
    gap: 40px;
  }
  .fw-tab-button {
    font-size: 20px;
  }
}

.fw-tab-button:hover,
.fw-tab-button--active {
  color: transparent;
}

.fw-tab-button::after {
  content: "";
  display: block;
  clear: both;
  height: 1px;
  width: 100%;
  margin-top: 10px;
  background-image: linear-gradient(137.47deg, #359fd9 17.16%, #153a4e 89.2%);
  opacity: 0;
  transition: opacity 0.2s;
}

.fw-tab-button--xl::after {
  margin-top: 20px;
}

.fw-tab-button:hover::after,
.fw-tab-button--active::after {
  opacity: 1;
}

.fw-tab-button .fw-tab-button-img--active {
  display: none;
}

.fw-tab-button .fw-tab-button-img--inactive {
  display: inline;
}

.fw-tab-button--active .fw-tab-button-img--active {
  display: inline;
}

.fw-tab-button--active .fw-tab-button-img--inactive {
  display: none;
}

.fw-tab-button:hover .fw-tab-button-img--active {
  display: inline !important;
}

.fw-tab-button:hover .fw-tab-button-img--inactive {
  display: none !important;
}

.fw-tab-button-img {
  vertical-align: middle;
  margin-right: 20px;
  max-width: 24px;
  height: auto;
}

.fw-tab-button-label {
  vertical-align: middle;
}

.fw-hr {
  margin: 0;
  margin-top: 35px;
  border-color: rgba(230, 230, 230, 1);
  border-width: 0;
  border-top-width: 1px;
}

@media (min-width: 992px) {
  .fw-hr {
    margin-top: 70px;
  }
}

.fw-package {
  margin-top: 70px;
}

.fw-card {
  height: 100%;
  padding: 40px 28px;
  background: rgba(242, 242, 242, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  box-sizing: border-box;
  border: 2px solid rgba(242, 242, 242, 1);
  transition: 0.2s background, 0.2s border;
}
.fw-card--active,
.fw-card:hover {
  background: #fff;
  border: 2px solid rgba(188, 207, 0, 1);
}
.fw-card--active .fw-card-button,
.fw-card:hover .fw-card-button {
  background: rgba(188, 207, 0, 1);
}

.fw-card--active .fw-card-button-img {
  display: inline;
  margin-right: 10px;
  vertical-align: text-top;
}

.fw-card .fw-card-button--selected {
  display: none;
}

.fw-card--active .fw-card-button--selected {
  display: block;
}

.fw-card--active .fw-card-button--select {
  display: none;
}

.fw-card--active .fw-card- {
  display: inline;
  margin-right: 10px;
  vertical-align: text-top;
}

.fw-card-img {
  max-width: 100%;
  height: auto;
}

.fw-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fw-card-title {
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(137.47deg, #bccf00 17.16%, #359fd9 89.2%);
  margin: 0;
  text-align: center;
}

.fw-card-title--base {
  font-size: 30px;
  color: rgba(21, 58, 78, 1);
}

.fw-card-title--sm {
  font-size: 20px;
  color: rgba(21, 58, 78, 1);
}

.fw-card-title-sub {
  font-size: 20px;
  display: inline-block;
}

.fw-card-subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.fw-card-price {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.fw-card-button {
  padding: 15px;
  background: rgba(21, 58, 78, 1);
  border: 0;
  border-radius: 0.25rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  cursor: pointer;
  width: 100%;
  transition: 0.2s background;
}

.fw-card-button--selected > button {
  left: 0;
  bottom: -1.4rem;
  font-size: .85rem;
}

.fw-card-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.fw-card-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.fw-card-text--primary {
  color: rgba(53, 159, 218, 1);
}

.fw-card-description {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.fw-info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

@media (min-width: 1400px) {
  .fw-info {
    flex-direction: row;
    align-items: center;
  }
}

.fw-info p {
  margin: 0;
}

.fw-summary-wrapper {
  padding: 2px;
  background: linear-gradient(137.47deg, #359fd9 17.16%, #153a4e 89.2%);
  box-sizing: border-box;
  position: sticky;
  top: 120px;
}

.fw-summary {
  padding: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.fw-summary--details {
  border-bottom: 1px solid #e6e6e6;
  gap: 30px;
  max-height: 55vh;
  overflow-y: auto;
}

.fw-summary--details .fw-summary-packages {
  padding-right: 25px;
  margin-right: -25px;
}

.fw-summary-tile {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 5px;
}

.fw-summary-packages {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.fw-summary-packages--total {
  margin-bottom: 10px;
}

.fw-summary-packages--discount {
  margin-bottom: 20px;
}

.fw-summary-submit {
  margin-top: 20px;
}

.fw-summary-submit .fw-card-button:not(:disabled):hover,
.fw-summary-submit .fw-card-button:not(:disabled):focus {
  background: #bccf00;
}

.fw-summary-submit .fw-card-button:disabled  {
  opacity: .50;
  cursor: not-allowed;
}

.fw-summary-package {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.fw-summary-package p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.fw-summary-package--main p {
  font-size: 14px;
}

.fw-summary-package--subtitle p {
  color: #999999;
}

.fw-summary-package--discount {
  color: #359fda;
}

.fw-summary-price {
  font-size: 25px !important;
  font-weight: 700 !important;
  display: inline-block;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(137.47deg, #359fd9 17.16%, #153a4e 89.2%);
}

.fw-summary-remove-from-cart-btn {
  display: flex;
  position: absolute;
  top: -4px;
  right: 0;
  width: 13px;
  /*height: 100%;*/
  box-sizing: content-box;
  fill: #dc3545;
  border: 0;
  background: transparent;
  padding: 6px;
  align-items: flex-start;

  @media (min-width: 768px) {
    display: none;
  }
}

.fw-summary-packages:hover .fw-summary-remove-from-cart-btn {
  display: flex !important;
}

.fw-loader {
  position: fixed;
  z-index: 9999999;
  top: 0;
  height: 100vh;
  width: 100vw;
  left: 0;
  cursor: wait;
}

.fw-loader.fw-loader--backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.fw-loader > span {
  width: 48px;
  height: 48px;
  border: 5px solid #359fda;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: fw-loader-rotation 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes fw-loader-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cursor-pointer {
  cursor: pointer !important;
}

.card-circle-container-outer {
  position: relative;
}

.card-circle-nav,
.card-circle-icon {
  display: none;
}

@media (max-width: 992px) {
  .card-circle-nav {
    background-color: rgba(21, 58, 78, 0.05); /* #153a4e */
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
    fill: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 5em;
    padding: 1.5em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.4s;
    z-index: 4;
    
  }

  .card-circle-nav:hover {
         background-color: rgba(21, 58, 78, 0.05);
  }
  .card-circle-nav:focus,
  .card-circle-nav:active {
          background-color: rgba(21, 58, 78, 0.2); /* #153a4e */
          transition: none;
  }

  .card-circle-nav-right {
    right: 13px;
  }

  .card-circle-nav-left {
   left: 13px;
   display: none;
  }

  .card-circle-icon {
    display: block;
    width: 4em;
    height: 4em;
    vertical-align: -3.5em;
  }

  .card-circle-icon-left {
    transform: scaleX(-1);
  }
}
