.search__input {
    border-radius: 6px;
    padding: 12px 15px;
    border: 1px solid rgba(237, 185, 185, 1);
    color: rgba(237, 185, 185, 1);
    display: flex;
    column-gap: 7px;
    align-items: center;
}

.search__input input{
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: rgba(237, 185, 185, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;

}

.search__input input::placeholder, search__input input:focus {
    background: transparent;
    outline: none;
    color: rgba(237, 185, 185, 1);
}

.input {
    width: 100%;
    font-size: 16px;
    padding: 14px 15px;
    background: transparent;
    outline: none;
    color: rgba(237, 185, 185, 1);
    font-weight: 400;
    border-radius: 6px;
    line-height: 19.5px;
    border: 1px solid rgba(237, 185, 185, 1);
}

.input::placeholder, .input:focus {
    background: transparent;
    outline: none;
    color: rgba(237, 185, 185, 1);
}

.radio__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label связанного с .radio__input */
.radio__input+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

/* создание в label псевдоэлемента  before со следующими стилями */
.radio__input+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid rgba(237, 185, 185, 1);
    border-radius: 50%;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
}

/* стили при наведении курсора на радио */
.radio__input:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
}

/* стили для активной радиокнопки (при нажатии на неё) */
.radio__input:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

/* стили для радиокнопки, находящейся в фокусе */
.radio__input:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(234, 31, 128, 20%);
}

/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
.radio__input:focus:not(:checked)+label::before {
    border-color: rgba(237, 185, 185, 1)
}

/* стили для радиокнопки, находящейся в состоянии checked */
.radio__input:checked+label::before {
    border-color: rgba(237, 185, 185, 1);
    background-color: transparent;
    background-image: url("../img/radio-checked.svg");
}

/* стили для радиокнопки, находящейся в состоянии disabled */
.radio__input:disabled+label::before {
    background-color: #e9ecef;
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.07px;
    color: #484848;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid rgba(237, 185, 185, 1);
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
}

/* стили при наведении курсора на checkbox */
/*.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {*/
/*    border-color: #b3d7ff;*/
/*}*/

/* стили для активного чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active+label::before {
    /*background-color: #b3d7ff;*/
    border-color: rgba(237, 185, 185, 1);
}


/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked)+label::before {
    border-color: rgba(237, 185, 185, 1);
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox:checked+label::before {
    border-color: rgba(237, 185, 185, 1);
    /*background-color: #0b76ef;*/
    background-image: url("../img/checked.svg");
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled+label::before {
    background-color: #e9ecef;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 39px;
    height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    border: 1px solid  rgba(237, 185, 185, 1);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 3px;
    background: rgba(237, 185, 185, 1);

    -webkit-transition: .4s;
    transition: .4s;
}

.switch__input:checked + .slider {
    background-color: white;
    border: 1px solid rgba(234, 31, 128, 1)
    /*background-color:rgba(237, 185, 185, 1);
    /*background-color: #2196F3;*/
}

.switch__input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.switch__input:checked + .slider:before {
    background: var(--pink);
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.textarea {
    padding: 15px;
    max-width: 490px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(237, 185, 185, 1);
    color: rgba(237, 185, 185, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
}

.textarea::placeholder {
    color:  rgba(237, 185, 185, 1);
}

.textarea:focus {
    border: 1px solid rgba(237, 185, 185, 1);
    outline: none;
    color:  rgba(237, 185, 185, 1);
}


.input-number {
    border-radius: 6px;
    padding: 10px 15px;
    border: 1px solid rgba(237, 185, 185, 1);
    color: rgba(237, 185, 185, 1);
    display: flex;
    column-gap: 7px;
    align-items: center;
}
.input-number input::placeholder {
    color: rgba(237, 185, 185, 1);
}

.input-number input {
    -moz-appearance: textfield;
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 16px;
    color: rgba(237, 185, 185, 1);
    font-weight: 400;
    line-height: 19.5px;
}

.input-number input::-webkit-outer-spin-button,
.input-number input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}


.up-btn, .down-btn {
    cursor: pointer;
}