/* line 1, app/assets/stylesheets/pricing/card_toggle.scss */
.toggle input {
  display: none;
}

/* line 5, app/assets/stylesheets/pricing/card_toggle.scss */
.toggle_text {
  display: flex;
  align-items: center;
}

/* line 10, app/assets/stylesheets/pricing/card_toggle.scss */
.toggle input:checked + label {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

/* line 16, app/assets/stylesheets/pricing/card_toggle.scss */
.toggle input[id$="annually"]:checked ~ .monthly-content {
  display: none;
}

/* line 20, app/assets/stylesheets/pricing/card_toggle.scss */
.toggle input[id$="annually"]:checked ~ .annually-content {
  display: inline;
}

/* line 24, app/assets/stylesheets/pricing/card_toggle.scss */
.toggle {
  display: flex;
  gap: 10px;
}

/* line 29, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox {
  display: none;
}

/* line 33, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleContainer::before {
  content: '';
  position: absolute;
  width: calc(46% - 5px);
  height: calc(100% - 10px);
  left: 5px;
  border-radius: 9999px;
  background: white;
  transition: all 0.3s;
  margin: 5px 0 5px 0;
  border: 1px solid #1574D2;
}

/* line 46, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox:checked + .toggleContainer::before {
  left: 50%;
  width: calc(50% - 5px);
}

/* line 51, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox:checked + .toggleContainer::before {
  left: 50%;
}

/* line 55, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleContainer div {
  padding: 6px;
  text-align: center;
  z-index: 1;
}

/* line 61, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox:checked + .toggleContainer div:first-child {
  color: #2d3035;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
}

@media screen and (min-width: 768px) {
  /* line 61, app/assets/stylesheets/pricing/card_toggle.scss */
  .toggleCheckbox:checked + .toggleContainer div:first-child {
    font-size: 14px;
  }
}

/* line 73, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox:checked + .toggleContainer div:last-child {
  color: #1574D2;
  transition: color 0.3s;
  font-weight: 700;
  font-size: 14px;
  line-height: 23px;
}

@media screen and (min-width: 768px) {
  /* line 73, app/assets/stylesheets/pricing/card_toggle.scss */
  .toggleCheckbox:checked + .toggleContainer div:last-child {
    font-size: 14px;
  }
}

/* line 85, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox + .toggleContainer div:first-child {
  color: #1574D2;
  transition: color 0.3s;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
}

@media screen and (min-width: 768px) {
  /* line 85, app/assets/stylesheets/pricing/card_toggle.scss */
  .toggleCheckbox + .toggleContainer div:first-child {
    font-size: 14px;
  }
}

/* line 97, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox + .toggleContainer div:last-child {
  color: #2d3035;
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  transition: color 0.3s;
}

@media screen and (min-width: 768px) {
  /* line 97, app/assets/stylesheets/pricing/card_toggle.scss */
  .toggleCheckbox + .toggleContainer div:last-child {
    font-size: 14px;
  }
}

/* line 109, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox:checked ~ .content .monthly-content {
  display: none;
}

/* line 113, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox:checked ~ .content .annually-content {
  display: block;
}

/* line 117, app/assets/stylesheets/pricing/card_toggle.scss */
.content .annually-content {
  display: none;
}

/* line 121, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox + .toggleContainer div:last-child::after {
  content: " Save 30%";
  background-color: #2D3035;
  padding: 2px 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  color: white;
  border-radius: 30px;
  margin-left: 4px;
}

@media screen and (min-width: 768px) {
  /* line 121, app/assets/stylesheets/pricing/card_toggle.scss */
  .toggleCheckbox + .toggleContainer div:last-child::after {
    font-size: 10px;
  }
}

/* line 138, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleCheckbox:checked + .toggleContainer div:last-child::after {
  content: "";
  background-color: transparent;
}

/* line 143, app/assets/stylesheets/pricing/card_toggle.scss */
.toggleContainer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  background: #E1E1E1;
  font-weight: bold;
  color: #343434;
  cursor: pointer;
  border-radius: 9999px;
  place-items: center;
  box-sizing: border-box;
  height: 47px;
  margin-bottom: 16px;
}
