/* Модальное окно */
.gbu-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gbu-modal[style*="display:none"] {
  pointer-events: none;
}
.gbu-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 4, 4, 0.60);
  opacity: 0.85;
}
.gbu-modal__content {
  position: relative;
  background: var(--color-white);
  border-radius: 10px;
  padding: 40px 20px;
  max-width: 500px;
  z-index: 1;
}
.gbu-modal__header{
  display: flex;
justify-content: space-between;
align-items: center;
align-self: stretch;
margin-bottom: 20px;
}
.gbu-modal__title {
  font-family: var(--font-involve-bold);
  color: #3a1a1a;
  font-size: 32px;
  line-height: 100%;
} 
.gbu-modal__close {
  cursor: pointer;
  line-height: 1;
  width: 50px;
}
.gbu-modal__success {
  text-align: center;
  padding-top: 10px;
}
.gbu-modal__success-title {
 color: var(--color-dark_red);
text-align: center;
font-family: var(--font-involve-semibold);
font-size: 24px;
line-height: 120%; /* 28.8px */
margin-bottom: 20px;
}
.gbu-modal__success-desc {
 color: var(--color-dark_red);
text-align: center;
font-family: var(--font-aa-stetica-regular);
font-size: 16px;
line-height: 140%; /* 22.4px */
margin-bottom: 20px;
}
.gbu-modal form{
  text-align: center;
}
@media(max-width:500px){
  .gbu-modal__content {max-width:95vw;padding:20px;}
  .gbu-modal__title {font-size:26px;}
}