/* Стили для модальтных окон */
.container_for_modal_change_user_region{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    display: none;
    /* display: flex; */
    justify-content: center; 
    align-items: center;     
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;

    border: 1px solid black;
}

.container_for_modal_change_user_region .custom-modal {   
    margin: 50px 15px;
    padding: 24px;
    background: #F9F9F9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.container_for_modal_change_user_region .custom-modal .container_for_bitton_close{
    display: flex;
    justify-content: flex-end;
}

.container_for_modal_change_user_region .custom-modal .close-button{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background-color: #F9F9F9;
    color: #181717;
    opacity: 0.6;
    border: none;
    cursor: pointer;
}

.container_for_modal_change_user_region .custom-modal h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.container_for_modal_change_user_region .custom-modal .material-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.container_for_modal_change_user_region .custom-modal .container_for_label_and_input{
    display: flex;
    flex-direction: column;
}

.container_for_modal_change_user_region .custom-modal .container_for_label_and_input.hidden{
    display: none;
}

/* .modal_add_material .material-form label {
  font-size: 14px;
  color: #444;
} */

.container_for_modal_change_user_region .custom-modal .material-form input[type="text"],
.container_for_modal_change_user_region .custom-modal .material-form input[type="number"],
.container_for_modal_change_user_region .custom-modal .material-form input[type="url"],
.container_for_modal_change_user_region .custom-modal .material-form input[type="time"],
.container_for_modal_change_user_region .custom-modal .material-form select,
.container_for_modal_change_user_region .custom-modal .material-form textarea {
  padding: 10px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  opacity: 0.7;
  font-size: 14px;
  /* font-weight: 200; */
  outline: none;
  font-family: 'Involve', sans-serif;
}

.container_for_modal_change_user_region .custom-modal .material-form select {
  background-color: white;
}

.container_for_modal_change_user_region .custom-modal .submit-button {
  margin-top: 10px;
  padding: 12px;
  background-color: #ED8C33;
  color: white;
  font-size: 16px;
  font-weight: 400;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.container_for_modal_change_user_region .custom-modal .submit-button:hover {
  background-color: #e17b10;
}

.container_for_modal_change_user_region .worhing_hours{
    display: flex;
    justify-content: flex-start;
}

.container_for_modal_change_user_region .custom-modal .container_for_label_and_input.worhing_hours_container_for_label_and_input{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.container_for_modal_change_user_region .custom-modal .container_for_label_and_input.worhing_hours_container_for_label_and_input input{
    margin-left: 5px;
    width: 60px;
    margin-right: 10px;
    display: flex;
}

.container_for_modal_change_user_region .custom-modal .container_for_label_and_input.worhing_hours_container_for_label_and_input_2{
    padding-left: 10px;
}