.switch__wrapper {
  display: flex;
}
.switch__wrapper label {
  margin-bottom: 0;
}
.switch {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 40px;
  margin-right: 14px;
}
.switch_status {
  align-self: center;
}
.switch input {
  display: none;
}
.switch-inner {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F5F5F5;
  -webkit-transition: .4s;
  transition: .4s ease;
}
.switch-slide {
  position: absolute;
  content: "";
  height: 32px;
  width: 32px;
  left: 4px;
  bottom: 4px;
  background-color: #AFAFAF;
  -webkit-transition: .4s;
  transition: .4s;
}
.switch-slide--active {
  transform: translateX(40px);
  background-color: #F2C500;
}
.radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.radio-option input {
  -webkit-appearance: none;
  border: 5px solid #C4C4C4;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #E1E1E1;
  cursor: pointer;
  padding: 0;
}
.radio-option label {
  margin-bottom: 0;
  margin-left: 20px;
  font-size: 20px;
  color: #F2C500;
}
.table__duo-block .radio-option:last-child {
  margin-bottom: 0;
}
.radio-option input:checked {
  background-color: #284679;
}
