[v-cloak] {
  display: none;
}

.plans__disclaimer {
  padding: 35px;
  margin: 35px 0;
  border-radius: 1rem;
  border: 1px solid #8bb4f4;
  background: #ecf3fb;
}

.plans__disclaimer a {
  display: inline;
  color: #73a6f8;
  text-decoration: underline;
}

.plans__disclaimer a:hover {
  color: #8bb4f4;
  text-decoration: none;
}

.plan__price_yearly,
.plan__price_monthly {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.3s ease;
}

.plan__price_yearly.is-visible,
.plan__price_monthly.is-visible {
  position: static;
  opacity: 1;
  visibility: visible;
}

.tarifs__text {
  color: #676d73;
}

.plans__block {
  font-size: 1rem;
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  gap: 15px;
}
.plan__wrapper {
  /*flex: 0 0 275px;
        min-width: 275px;*/
  width: 100%;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background: #fff;
  position: relative;
}

@keyframes planPulse2 {
  0%,
  100% {
    border-color: rgba(252, 155, 36, 0);
    box-shadow: 0 0 10px rgba(252, 155, 36, 0);
  }
  50% {
    border-color: rgba(252, 155, 36, 1);
    box-shadow: 0 0 10px rgba(252, 155, 36, 0.71);
  }
}

.plan__wrapper.hover {
  animation: planPulse2 1.8s ease-in-out infinite;
  will-change: box-shadow, border-color;
  background: #ecf3fb;
  box-shadow: 0 0 10px rgba(252, 155, 36, 0.71);
}

.plan__wrapper.active {
  border-color: #92bdff;
  background: #ecf3fb;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

@media (hover: none) {
  .plan__wrapper.hover {
    border-color: transparent;
  }
}

.plan__wrap_mark {
  width: 100%;
  display: flex;
  justify-content: center;
}
.plan__mark {
  position: absolute;
  top: -17px;
  background: #92bdff;
  border-radius: 17px;
  padding: 4px 17px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 24px;
  z-index: 8;
}

.plan__label {
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}

.plan__description {
  text-align: center;
  margin-top: 5px;
  color: #676d73;
}

.plan__price_paid,
.plan__price_title {
  margin-top: 35px;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}

.plans__diff .plan__price_paid {
  margin-top: 5px;
  font-size: 18px;
}

.plan__price {
  text-align: center;
  font-weight: bold;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plans__diff .plan__price {
  height: 100px;
  padding: 0 10px;
}

.plan__price_full_year {
  color: #676d73;
  text-decoration: line-through;
  -webkit-margin-end: 4px;
  margin-inline-end: 4px;
}
.plan__price_discoun {
}
.plan__price_discoun_color {
  color: green;
}
.plan__price_small {
  color: #676d73;
  font-size: 1rem;
}

.plan__button {
  margin: 40px 0px;
  background: #e1ebf6;
  color: #4b4b4b;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  border-radius: 8px;
}

.plans__diff .plan__button {
  margin: 5px 0px;
}

.plan__wrapper.active .plan__button,
.plan__wrapper.hover .plan__button {
  color: #fff;
  background: #92bdff;
}

.plan__list li {
  line-height: 2rem;
  font-weight: bold;
}

.plan__check_icon {
  margin-right: 5px;
  color: #92bdff;
}

.plan-toggle {
  display: flex;
  justify-content: center;
  margin: 75px 0 45px;
  align-items: center;
  gap: 12px;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #676d73;
}

.plan-toggle__checkbox {
  position: relative;
  width: 60px;
  height: 30px;
  display: inline-block;
}

.plan-toggle__checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
}

.plan-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.plan-toggle__slider::before {
  content: '';
  position: absolute;
  height: 24px !important;
  width: 24px !important;
  left: 3px;
  bottom: 3px;
  background-color: white !important;
  border-radius: 50% !important;
  transition: transform 0.3s !important;
  transform: translate(0, 0) !important;
  border: none !important;
}

.plan-toggle__checkbox input:checked + .plan-toggle__slider {
  background-color: #92bdff;
}

.plan-toggle__checkbox input:checked + .plan-toggle__slider::before {
  transform: translateX(30px) !important;
}

.plan__list .icon.icon-info {
  display: inline-block;
  line-height: 18px;
  width: 22px;
  height: 22px;
  margin-left: 5px;
  background: #e1ebf6;
}

.plan__list .icon.icon-info:hover {
  background: #e3e3e3;
}

/* modal */
#contactModalLabel {
  text-align: center;
  width: 100%;
}

#charCount {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 0.85rem;
  color: #6c757d;
  background: rgba(255, 255, 255, 0.8);
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
}

#charCount.warning {
  color: #dc3545;
  font-weight: bold;
}
#submitBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-dynamic .loader::before {
  width: 1rem !important;
  border-top: 2px solid !important;
  border-bottom: 2px solid !important;
}

.message-form-plan {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.message-form-plan .alert-success {
  color: green;
}

.message-form-plan .alert-danger {
  color: red;
}

.message-form-plan.danger {
  color: red;
}

/* fix - copy */
.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/12px auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled,
.btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.25;
}

/*.message-success {
    display: none;
}*/

@media (max-width: 1300px) {
  .plans__block {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .plans__block {
    /*flex-wrap: nowrap; 
        overflow-x: auto;  */
    flex-direction: column;
    -webkit-overflow-scrolling: touch; /* плавный скролл на iOS */
    gap: 10px;
    padding-bottom: 0.5rem;
  }

  .plans__block::-webkit-scrollbar {
    height: 6px;
  }

  .plans__block::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
  }

  .plans__block::-webkit-scrollbar-track {
    background: transparent;
  }

  .message-form-plan {
    grid-column: 1/2;
  }

  .plans__grid {
    flex-direction: column;
  }
  .plans__grid .plan__wrapper__grid {
    margin-bottom: 30px;
  }
}

#loginModal .btn-close {
  width: 1em !important;
  height: 1em !important;
  background-image: none !important;
}
#contactModal .modal-content,
#loginModal .modal-content {
  box-shadow: none;
}

/* аккордион */

.accordion-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 15px;
  background-color: #f9f9f9;
  transition: height 0.5s ease, padding 0.3s ease, opacity 0.3s ease;
  margin-bottom: 1.3rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  color: #343942;
}

.accordion-content a {
  display: inline-block;
  color: #73a6f8;
  text-decoration: underline;
}

.accordion-content a:hover {
  color: #8bb4f4;
  text-decoration: none;
}

.x-collapse {
  cursor: pointer;
  font-weight: bold;
  color: #606773;
  padding: 10px;
  background-color: #ecf3fb;
  border: 1px solid #8bb4f4;
  border-radius: 4px;
  display: inline-block;
  width: 100%;
}

.x-collapse:hover {
  background-color: #d7e3f0;
}

.modal-dialog .position-relative {
  position: relative;
}
.star-required {
  display: inline-block;
  position: absolute;
  left: -10px;
  top: 5px;
}
