/*-----модальное окно обратной связи-----*/
.popup__content {
	height: auto;
	padding: 7px;
}
.popup__content-border {
    border: 1px solid var(--border);
    border-radius: 10px;
}
.popup__title {
    border-bottom: 1px solid var(--border);
    border-radius: 10px;
}
.popup__content-form {
	
}

.popup__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 1rem 1rem 1rem;
}
.form__field input {
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 10px; 
    width: 100%;
    background-color: #f1f1f1;
    padding-left: 15px;
}
.form__field {
    display: flex;
    margin: 1rem 0px 1rem 0px;
    min-width: 100%;
}
.form__field__receive {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 15px;
    border-radius: 15px;
    font-size: 12px !important;
}
.form__field__receive input {
    width: 25px;
    height: 25px;
    accent-color: var(--accent);  
}
.form__footer {
    border-top: 1px solid #e5f5fd;
}
.btn-modal {
    height: 50px;
    background: #D05700;
    box-shadow: 0px 5px 0px #7D3500;
    box-shadow: 1px 1px 7px #7D3500;
    border-radius: 10px;
    font-size: 16px;
    color: #ffffff;
    border: none;
    padding: 0 30px;

}
.btn-close {
    height: 50px;
    padding: 0 30px;
    border-radius: 10px;
    font-size: 16px;
    color: #ffffff;
    background: #777;
    border: none;

}
