.radio-ed {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -7px;
}
.radio-ed__item {
  width: calc(16.6666666667% - 14px);
  position: relative;
  margin: 0 7px;
}
.radio-ed__button {
  position: relative;
  min-width: 115px;
  height: 168px;
}
.radio-ed__button--center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.radio-ed__label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #D9E1EB;
  border-radius: 12px;
  font-size: 14px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
}
.radio-ed__label:hover {
  border-color: transparent;
  background-color: #fff;
  box-shadow: 0 0 12px #0D79FA;
}
.radio-ed__hint {
  position: absolute;
  right: 8px;
  bottom: 8px;
}
.radio-ed input {
  display: none;
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.radio-ed input:checked + .radio-ed__label {
  color: #fff;
  border: none;
  background: url(/res/images/icons/form/radio-ed.svg) no-repeat center;
  background-size: cover;
}
.radio-ed input:checked + .radio-ed__label:hover {
  border: none;
  box-shadow: none;
}
.radio-ed input:checked + .radio-ed__label + .dropdown-c .dropdown-c__title {
  color: #fff;
}
.radio-ed input:checked:disabled + .radio-ed__label {
  color: #fff;
  background: url(/res/images/icons/form/radio-ed.svg) no-repeat center;
  background-size: cover;
  opacity: 0.6;
}
.radio-ed input:disabled + .radio-ed__label {
  color: #A5B8CE;
  background: #F2F5FA;
  border-color: #C5D2DF;
  cursor: default;
}
.radio-ed input:disabled + .radio-ed__label:hover {
  box-shadow: none;
}
.radio-ed input.error + .radio-ed__label {
  box-shadow: 0 0 0 2px #ff5252;
}
.radio-ed input.error + .radio-ed__label:hover {
  box-shadow: 0 0 0 2px #ff5252;
}
.radio-ed__rec {
  position: absolute;
  top: 16px;
  left: -6px;
  width: calc(100% + 12px);
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FA8500 0%, #DEE407 107.14%);
  border-radius: 6px 6px 0 0;
  padding: 4px 10px;
}
.radio-ed__rec::before, .radio-ed__rec::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
}
.radio-ed__rec::before {
  left: 0;
  border-top: 6px solid #DF7700;
  border-left: 7px solid transparent;
}
.radio-ed__rec::after {
  right: 0;
  border-top: 6px solid #DF7700;
  border-right: 7px solid transparent;
}
@media (max-width: 1599px) {
  .radio-ed__item {
    width: 150px;
  }
}
@media (max-width: 991px) {
  .radio-ed {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .radio-ed__item {
    max-width: 135px;
  }
}
/*# sourceMappingURL=../../maps/blocks/forms/radio-ed.css.map */
