.radioGroupS {
  display: inline-flex;
  position: relative;
  background-color: #fde9c9;
  color: black;
  overflow: hidden;
  border-radius: 0.4rem;
  /*
  // When hovering over non-checked buttons, darken the button.
  input[type="radio"]:not(:checked) {
    & + label:hover {
      cursor: pointer;
      background-color: darken($background, 5%);
    }
  }
  */
}
.radioGroupS .radioS {
  display: none;
}
.radioGroupS .radioS + label {
  font-weight: bold;
  padding: 10px 30px;
  display: inline-flex;
  z-index: 2;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
}
.radioGroupS .indicator {
  display: inline-flex;
  position: absolute;
  height: 90%;
  width: 25%;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  top: 3px;
  bottom: 0;
  z-index: 1;
  transition: all ease 200ms;
  left: -25%;
}
.radioGroupS .radioS:nth-child(1):checked ~ .indicator {
  left: 0%;
}
.radioGroupS .radioS:nth-child(1):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}
.radioGroupS .radioS:nth-child(3):checked ~ .indicator {
  left: 25%;
}
.radioGroupS .radioS:nth-child(3):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}
.radioGroupS .radioS:nth-child(5):checked ~ .indicator {
  left: 50%;
}
.radioGroupS .radioS:nth-child(5):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}
.radioGroupS .radioS:nth-child(7):checked ~ .indicator {
  left: 75%;
}
.radioGroupS .radioS:nth-child(7):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}

.radioGroupM {
  display: inline-flex;
  position: relative;
  background-color: #fde9c9;
  color: black;
  overflow: hidden;
  border-radius: 0.4rem;
  /*
  // When hovering over non-checked buttons, darken the button.
  input[type="radio"]:not(:checked) {
    & + label:hover {
      cursor: pointer;
      background-color: darken($background, 5%);
    }
  }
  */
}
.radioGroupM .radioM {
  display: none;
}
.radioGroupM .radioM + label {
  font-weight: bold;
  padding: 10px 30px;
  display: inline-flex;
  z-index: 2;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
}
.radioGroupM .indicatorM {
  display: inline-flex;
  position: absolute;
  height: 90%;
  width: 25%;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  top: 3px;
  bottom: 0;
  z-index: 1;
  transition: all ease 200ms;
  left: -25%;
}
.radioGroupM .radioM:nth-child(1):checked ~ .indicatorM {
  left: 0%;
}
.radioGroupM .radioM:nth-child(1):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}
.radioGroupM .radioM:nth-child(3):checked ~ .indicatorM {
  left: 25%;
}
.radioGroupM .radioM:nth-child(3):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}
.radioGroupM .radioM:nth-child(5):checked ~ .indicatorM {
  left: 50%;
}
.radioGroupM .radioM:nth-child(5):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}
.radioGroupM .radioM:nth-child(7):checked ~ .indicatorM {
  left: 75%;
}
.radioGroupM .radioM:nth-child(7):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}

.radioGroupPayType {
  display: inline-flex;
  position: relative;
  background-color: #fde9c9;
  color: black;
  overflow: hidden;
  border-radius: 0.4rem;
  /*
  // When hovering over non-checked buttons, darken the button.
  input[type="radio"]:not(:checked) {
    & + label:hover {
      cursor: pointer;
      background-color: darken($background, 5%);
    }
  }
  */
}
.radioGroupPayType .radioPayType {
  display: none;
}
.radioGroupPayType .radioPayType + label {
  font-weight: bold;
  padding: 10px 30px;
  display: inline-flex;
  z-index: 2;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
}
.radioGroupPayType .indicatorPayType {
  display: inline-flex;
  position: absolute;
  height: 90%;
  width: 25%;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  top: 3px;
  bottom: 0;
  z-index: 1;
  transition: all ease 200ms;
  left: -25%;
}
.radioGroupPayType .radioPayType:nth-child(1):checked ~ .indicatorPayType {
    width: 22%;
  left: 3%;
}
.radioGroupPayType .radioPayType:nth-child(1):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}
.radioGroupPayType .radioPayType:nth-child(3):checked ~ .indicatorPayType {
    width: 30%;
  left: 32%;
}
.radioGroupPayType .radioPayType:nth-child(3):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}
.radioGroupPayType .radioPayType:nth-child(5):checked ~ .indicatorPayType {
    width: 29%;
  left: 68%;
}
.radioGroupPayType .radioPayType:nth-child(5):checked + label {
  color: rgb(0, 0, 0);
  transition: color 200ms;
}

.table_pricing {
  display: flex;
  gap: 30px;
}/*# sourceMappingURL=style-table-pricing.css.map */