@charset "UTF-8";
/*Форма обратнойсвязи дополнения для кнопкиотправки*/
.c-button {
  appearance: none;
  border: 0;
  border-radius: 6px;
  background: #478ac9;
  color: #ffffff;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.9375rem;
}
.c-button:hover {
  background: #77aad9;
}

/*Модальное окно*/

.modal1 {
    font-family: "Calibri";
    position: fixed;
    display: none;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    
    
    
}
.modal1 .modal_content1 {
    background-color: #ffffff;
    opacity: 1;
    z-index: 1001;
    padding: 10px;
    border: 2px solid #478ac9;
    border-radius: 25px;
     position: absolute;
    top: 80%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -20%)
   
}
.modal1 .modal_content1 .close_modal_window1 {
    color: #aaa;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    
}
.modal_inner1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.modal_title1 {
    font-size: 25px;
    font-weight: bold;
}