.style-wrap,
.form {
  border-radius: 4px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.302);
  background: #fff;
  padding: 30px;
}
.style-wrap:last-child,
.form:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 425px) {
  .style-wrap,
  .form {
    padding: 30px 10px;
  }
}
.link[href] {
  color: #242424;
  text-decoration: none;
}
.link[href]:hover {
  color: #ec1751;
  text-decoration: underline;
}
.link {
  color: #ec1751;
  text-decoration: underline;
}
.link:hover {
  text-decoration: underline;
}
.link-btn,
.form__btn {
  background: #ec1751;
  border-radius: 4px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-size: 16px;
}
.link-btn:hover,
.form__btn:hover {
  color: #242424;
  cursor: pointer;
}
.logo {
  display: flex;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: #ec1751;
  font-weight: 800;
  font-size: 29px;
  line-height: 39px;
}
@media screen and (max-width: 375px) {
  .logo {
    font-size: 24px;
  }
}
.logo .dark-part {
  color: #242424;
}
.form-box__title {
  margin: 48px 0 24px;
}
.form {
  margin: 24px 0 48px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 629px) {
  .form {
    flex-direction: column;
  }
}
@media screen and (max-width: 425px) {
  .form {
    padding: 30px 10px;
  }
}
.form__select-box {
  width: 48%;
  box-sizing: border-box;
  margin-bottom: 12px;
}
@media screen and (max-width: 629px) {
  .form__select-box {
    width: 100%;
  }
}
.form__text {
  width: 100%;
  margin-bottom: 20px;
}
.form__input {
  border-radius: 4px;
  border: 1px solid #b4b4b4;
  padding: 9px 10px;
  font-size: 16px;
  color: _dark-theme;
  width: 48%;
  box-sizing: border-box;
  margin-bottom: 12px;
}
.form__input._indent-right {
  margin-right: 12px;
}
@media screen and (max-width: 629px) {
  .form__input._indent-right {
    margin-right: 0;
  }
}
.form__input._width {
  width: 100%;
}
.form__input._align {
  width: auto;
  margin-right: 12px;
  margin-bottom: 0;
  flex-grow: 1;
}
@media screen and (max-width: 629px) {
  .form__input {
    width: 100%;
  }
}
.form__textarea {
  border-radius: 4px;
  border: 1px solid #b4b4b4;
  padding: 9px 10px;
  font-size: 16px;
  resize: unset;
  color: gray-main;
  width: 100%;
  box-sizing: border-box;
  max-height: 140px;
}
.form__check-box {
  width: 100%;
  margin: 13px 0 0;
  display: flex;
  justify-content: center;
}
.form__btn-box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
.form__btn-box._align {
  width: auto;
  margin-top: 0;
}
@media screen and (max-width: 629px) {
  .form__btn-box._align {
    margin-top: 24px;
  }
}
.form__btn {
  border: none;
  width: 200px;
  padding: 10px 12px;
  font-size: 16px;
}
.form__warning-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
  align-items: center;
  display: none;
}
.form__warning {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  box-sizing: border-box;
  width: 312px;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.4);
  background: #fbfbfb;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.form__warning-top {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  text-align: center;
  padding: 8px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #242424;
}
.form__warning-top._color-dark {
  background: #242424;
  color: #fbfbfb;
}
.form__warning-top._color-light {
  background: #b4b4b4;
}
.form__warning-top._color-main-theme {
  background: #ec1751;
}
.form__warning-close-btn {
  background: transparent;
  padding: 0;
  border: none;
  position: absolute;
  right: 12px;
  top: 9px;
}
.form__warning-close-btn:hover {
  cursor: pointer;
}
.form__warning-close-svg {
  fill: #242424;
}
.form__warning-close-svg:hover {
  fill: rgba(54,56,59,0.761);
}
.form__warning-close-svg._color-light {
  fill: #fbfbfb;
}
.form__warning-close-svg._color-light:hover {
  fill: rgba(251,251,251,0.529);
}
.form__warning-info {
  text-align: center;
  padding: 12px;
}
.form__warning-btnbox {
  display: flex;
  justify-content: center;
  padding: 0 12px 12px 12px;
}
.form__warning-btn {
  background: #b4b4b4;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.3);
  padding: 4px;
  border-radius: 4px;
  border: none;
  width: 69px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #242424;
}
.form__warning-btn:last-child {
  margin-right: 0;
}
.form__warning-btn:hover {
  cursor: pointer;
  background: #ec1751;
}
.show-up {
  display: flex;
}
.form__evaluate {
  display: flex;
  width: 48%;
  margin-bottom: 12px;
  align-items: center;
}
.form__evaluate._full-width {
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 425px) {
  .form__evaluate._full-width {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 629px) {
  .form__evaluate {
    width: 100%;
  }
}
.form__evaluate-label {
  margin-right: 8px;
}
.vote {
  display: flex;
  justify-content: flex-end;
}
.vote:hover {
  cursor: pointer;
}
.vote__info {
  font-size: 20px;
  font-weight: 600;
}
.vote__hearts {
  display: flex;
  justify-content: center;
  margin-right: 8px;
  align-items: center;
}
.vote__hearts-item {
  padding-right: 4px;
}
.vote__hearts-item._full {
  background: url("/img/heart-full.svg") no-repeat;
  width: 20px;
  height: 20px;
}
.vote__hearts-item._empty {
  background: url("/img/heart-empty.svg") no-repeat;
  width: 20px;
  height: 20px;
}
.vote__hearts-item._half {
  background: url("/img/heart-half.svg") no-repeat;
  width: 20px;
  height: 20px;
}
.vote__hearts-item:last-child {
  padding-right: 0;
}
.label-check {
  padding-left: 24px;
}
@media screen and (max-width: 425px) {
  .label-check {
    font-size: 14px;
  }
}
@media screen and (max-width: 372px) {
  .label-check {
    text-align: left;
  }
}
@media screen and (max-width: 372px) {
  .label-check > span {
    margin-left: 10px;
  }
}
.label-check__link {
  position: relative;
  font-weight: 600;
  transition: all 150ms ease;
}
.input-check:checked,
.input-check:not(:checked) {
  position: absolute;
  left: -9999px;
}
.input-check:checked + .label-check,
.input-check:not(:checked) + .label-check {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.input-check:checked + .label-check::before,
.input-check:not(:checked) + .label-check::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fbfbfb;
  border-radius: 4px;
  box-shadow: inset 0px 2px 4px rgba(0,0,0,0.2);
  border: 1px solid #b4b4b4;
}
.input-check:checked + .label-check::after,
.input-check:not(:checked) + .label-check::after {
  content: url("/img/check.svg");
  position: absolute;
  left: 2px;
  top: -4px;
  border-radius: 4px;
}
.input-check:checked + .label-check::after {
  opacity: 1;
}
.input-check:not(:checked) + .label-check::after {
  opacity: 0;
}
.form__radio-box {
  width: 100%;
  margin: 12px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 425px) {
  .form__radio-box {
    font-size: 14px;
  }
}
.form-radio-label {
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 50%;
  margin: 0 8px;
}
.form-radio-label:hover {
  cursor: pointer;
}
.form-radio-input:checked,
.form-radio-input:not(:checked) {
  position: absolute;
  left: -9999px;
}
.form-radio-input:checked + .form-radio-label {
  background: #ec1751;
  box-shadow: none;
}
.form-radio-input:checked + .form-radio-label > .svg {
  fill: #242424;
}
.form-radio-input:not(:checked) + .form-radio-label {
  background: #fbfbfb;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.3);
}
.form-radio-input:not(:checked) + .form-radio-label > .svg {
  fill: #ec1751;
}
.entrance-forms__caption {
  width: 100%;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 425px) {
  .entrance-forms__caption {
    font-size: 14px;
  }
}
.entrance-forms__wrap-input {
  position: relative;
  width: 48%;
  box-sizing: border-box;
}
@media screen and (max-width: 629px) {
  .entrance-forms__wrap-input {
    width: 100%;
  }
}
.entrance-forms__link-forgot {
  display: block;
  position: absolute;
  top: 9px;
  right: 12px;
}
@media screen and (max-width: 425px) {
  .entrance-forms__link-forgot {
    font-size: 14px;
  }
}
