.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 6;
  padding: 16px;
  padding-top: 75px;
}
.modal__content {
  background-color: #fff;
  z-index: 3;
  padding: 16px;
  height: fit-content;
  margin-top: 100px;
  border-radius: 5px;
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
}
.modal__content-header {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 32px;
}
.modal__content-header svg {
  width: 75px;
  height: 75px;
}
.modal__content-header svg path {
  fill: #03a868;
}
.modal__content-header h4 {
  color: #777;
  font-size: 16px;
}
.modal__content-body {
  text-align: center;
  font-size: 16px;
  color: #777;
}
.modal__content-body .contact-list {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.modal__content-body .contact-list li a {
  display: flex;
  color: #777;
  gap: 16px;
  font-size: 16px;
}
.modal__content-body .form__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.modal__content-body .form__group label {
  font-size: 14px;
}
.modal__content-body .form__group input {
  padding: 8px;
  width: 150px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
}
.modal__content-body ul, .modal__content-body ol {
  margin-left: 16px;
  padding: 8px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal__content-body ul a, .modal__content-body ol a {
  font-weight: bold;
  color: #03a868;
  text-decoration: underline;
}
.modal__content-body ul p, .modal__content-body ol p {
  color: #f95003;
}
.modal__content-footer {
  display: flex;
  justify-content: space-around;
  margin-top: 32px;
}
.modal__content-footer .btn {
  border: 1px solid #777;
  padding: 12px 32px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.modal__content-footer .btn-default {
  border-color: #777;
  color: #777;
}
.modal__content-footer .btn-default:hover {
  background-color: #eee;
}
.modal__content-footer .btn-success {
  border-color: #03a868;
  background-color: #03a868;
  color: #fff;
}
.modal__content-footer .btn-success:hover {
  background: #038f58;
}
.modal__content-footer .btn-danger {
  border-color: #f95003;
  background-color: #f95003;
  color: #fff;
}
.modal__content-footer .btn-danger:hover {
  background: #e04803;
}
.modal-delete .modal__content-header path {
  fill: #f95003;
}
.modal.contacts .modal__content-header, .modal__app .modal__content-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal.contacts .modal__content-header h3, .modal__app .modal__content-header h3 {
  color: #777;
  text-align: center;
  font-weight: normal;
}
.modal.contacts .contact-list a, .modal__app .contact-list a {
  display: flex;
  align-items: center;
}
.modal.contacts .contact-list a .icon svg, .modal__app .contact-list a .icon svg {
  width: 64px;
  height: 64px;
}
.modal.contacts .contact-list a .icon svg path, .modal__app .contact-list a .icon svg path {
  fill: #03a868;
}

@media only screen and (max-device-width: 584px) {
  .modal__content-footer .btn {
    padding: 12px 16px;
    font-size: 12px;
  }
}

/*# sourceMappingURL=modal.css.map */
