/* start radio__full */
.radio {
  border: 1px solid #dce2e1;
}
.radio__full {
  position: relative;
  width: 100%;
  background-color: #f6f6f5;
  border-radius: 5px;
  min-height: 36px;
  cursor: pointer;
  font-size: 14px;
}
@media screen and (min-width: 480px) {
  .radio__full {
    font-size: 16px;
  }
}

.radio__full:hover {
  background-color: #e3e8e4;
}
.radio__full > input {
  display: none;
}
.radio__full > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f9fafa;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (min-width: 480px) {
  .radio__full > div {
    padding: 10px 16px;
  }
}
.radio__full > .radio__check {
  border: 1px solid #dce2e1;
}
.radio__check_img {
  margin-right: 15px;
  max-width: 28%;
  width: 100%;
}
.radio__check_img img {
  max-width: 100%;
}
.radio__full > .radio__check::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  border: 5px solid #fff;
  outline: 1px solid #dadbdc;
  background-color: #fff;
  border-radius: 100%;
  margin-right: 15px;
}
.radio__full > input:checked + .radio__check::before {
  background-color: #05aa82;
  outline: 1px solid #05aa82;
}
.radio__full > input:not(:disabled):active + div {
  opacity: 0.7;
  pointer-events: none;
}
.radio__full > input:focus + div {
  border: 1px solid #05aa82;
}
.radio__full > input:focus:not(:checked) + div {
  border: 1px solid #05aa82;
}
.radio__full > input:checked + div {
  background-color: #d9f2ed;
}
.radio__full > input:checked + .radio__check {
  border-color: #05aa82;
}
.radio__full > input:disabled + div {
  background-color: #e9ecef;
}
/* end radio__full */
