.form__group {
  margin-bottom: 14px;
}

.form__control {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  height: 32px;
  padding: 0 10px;
  box-sizing: border-box;
}

.form__control option{
  color: #0a0a0a;
}

.form__control option:disabled {
  color: #5f5f5f;
}

.form__control.error {
  border-color: #f03347;
}

label {
  display: block;
  margin-bottom: 3px;
}

.checkbox {
  position: absolute;
  opacity: 0;
}

.checkbox+label {
  position: relative;
  cursor: pointer;
  padding: 1px 0 5px 26px;
}

.checkbox+label:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
}

.checkbox:checked+label::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  background: #fff;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio-custom {
  opacity: 0;
  position: absolute;
}

.radio-custom,
.radio-custom-label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  padding: 1px 0 1px 20px;
}

.radio-custom-label {
  position: relative;
}

.radio-custom+.radio-custom-label:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
}

.radio-custom:checked+.radio-custom-label::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  background: white;
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border-radius: 5px;
  background: #183b59;
  border: 1px solid #fff;
  background-image: none;
}

select::-ms-expand {
  display: none;
}

.select {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #2c3e50;
  overflow: hidden;
  border-radius: 5px;
}

select {
  height: 33px;
  width: 100%;
  padding: 0 10px;
  color: #fff;
  cursor: pointer;
}

.select::after {
  content: "";
  background-image: url("../../images/main/select-triangle.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px 8px;
  background-color: #fce923;
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 31px;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
  border: 1px solid #fff;
  border-radius: 5px;
}

.select:hover::after {
  color: #f39c12;
}

::-webkit-input-placeholder {
  color: #4d6983;
}

::-moz-placeholder {
  color: #4d6983;
}

:-ms-input-placeholder {
  color: #4d6983;
}

:-moz-placeholder {
  color: #4d6983;
}

.form__control-edit {
  border-width: 1px;
  border-color: rgb(255, 255, 255);
  border-style: solid;
  border-radius: 5px;
  background-color: rgb(252, 233, 35);
  background-image: url("../../images/main/edit.svg");
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 45px;
  height: 40px;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .form__control-edit {
    background-size: 24px 24px;
    width: 33px;
    height: 30px;
  }
}