/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
/* Colors */
/* Фильтры для svg иконок https://codepen.io/sosuke/pen/Pjoqqp */
/* Breakpoints */
/* Base heading style */
/* Base button style */
/* old colors */
/* Fonts */
/* variables */
/* filters https://codepen.io/sosuke/pen/Pjoqqp */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes button-loading {
  0% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
  50% {
    background-color: #717171;
    border-color: #717171;
  }
  100% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
}
.recaptcha {
  display: block;
  width: 100%;
  color: #9D9D9D;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 140%;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}
.recaptcha__link {
  color: inherit;
  text-decoration: none;
  transition: all 0.35s;
  font-weight: 400;
}
.recaptcha__link:hover {
  color: inherit;
  text-decoration: none;
}
.cms-page-view .std .recaptcha {
  display: none;
}
.grecaptcha-badge {
  visibility: hidden;
}
.recaptcha__link {
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
  color: #EF7D05;
  transition: all 0.35s;
}
.recaptcha__link:focus,
.recaptcha__link:hover {
  color: #CB6A04;
}

