.container {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 auto;
  position: relative;
  width: auto;
}

.banner-pricing {
  padding: 50px 0px;
}

.banner-pricing--title {
  font-size: 58px;
  margin-bottom: 20px;
}
.banner-pricing--sub-title {
  font-size: 32px;
  margin-bottom: 10px;
}
.banner-pricing--text {
}

.banner-pricing__content-box {
  text-align: center;
}

/* The switch - the box around the slider */

.banner-pricing__switch-box {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 30px;
}

.slider-pink {
  background-color: #000;
}

.slider-inner {
  height: 26px;
  width: 26px;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: all 0.7s;
}

.slider-inner.active {
  height: 26px;
  width: 26px;
  position: absolute;
  left: 38px;
  top: 4px;
  background-color: #f7f7f7;
}

.banner-pricing--monthly {
  color: #000;
  font-weight: 700;
}
.banner-pricing--yearly {
  color: #7d7d7d;
  font-weight: 700;
}

.banner-pricing--monthly.active {
  color: #7d7d7d;
}
.banner-pricing--yearly.active {
  color: #000;
}

.pricing-card--monthly {
  display: block;
}

.pricing-card--yearly {
  display: none;
}

.pricing-card--yearly.active {
  display: block;
}

.pricing-card--monthly.active {
  display: none;
}

.pricing-cards-section {
  padding: 50px 0px;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.pricing-card {
  position: relative;
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.pricing-card--most-popular {
  display: flex;
  position: absolute;
  left: 0px;
  top: -30px;
  background-color: purple;
  color: #ccc;
  width: 100%;
  height: 30px;
  align-items: center;
  padding: 0px 20px;
  color: #fff;
}

.pricing-card--additional-info {
  color: #2f80ed;
}
.pricing-card--title {
  margin-bottom: 20px;
}
.pricing-card--title p {
  font-size: 1.4rem;
  font-weight: 700;
}
.pricing-card--text {
  margin: 30px 0px;
}
.pricing-card--options {
  position: relative;
}

.pricing-card--options--title {
}

.pricing-card--options--box {
  margin-bottom: 20px;
  display: block;
  background-color: purple;
  cursor: pointer;
  position: relative;
}

.pricing-card--options--text {
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
  top: 0;
  left: 0;
  z-index: 9999;
  transition: all 2s;
  background-color: black;
  display: block;
  color: #fff;
}

/* .pricing-card--icon:hover {} */

.pricing-card--options--box:hover .pricing-card--options--text {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 1024px) {
  .pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .container {
    max-width: 960px;
  }

  .banner-pricing--title {
    font-size: 64px;
  }

  .banner-pricing--sub-title {
    font-size: 40px;
  }
  .banner-pricing--text {
    max-width: 600px;
    margin: auto;
  }
}

@media (min-width: 1216px) {
  .banner-pricing--title {
    font-size: 72px;
  }

  .banner-pricing--sub-title {
    font-size: 56px;
  }

  .container {
    max-width: 1152px;
  }
}

.tws-url-table > thead > tr > th[data-sort].asc .sort-arrow::after {
    content: "▲";
}
.tws-url-table > thead > tr > th[data-sort].desc .sort-arrow::after {
    content: "▼";
}

