.modal {
  padding-right: 0 !important;
  z-index: 10000;
}

.modal-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.modal-header-title {
  font-size: 24px;
  color: var(--primary);
  font-weight: bold;
}

.modal-header-icons i {
  font-size: 22px;
}

.modal-header-variants .btn {
  border-radius: 25px;
  background: transparent;
}

.modal-header-variants .btn:disabled  {
  border: 1px solid black;
  margin-inline: 5px ;
  opacity: 1;
  color: black !important;
}

.modal-header-button .btn {
  border-radius: 25px;
  background: var(--primary-dark);
  color: white;
  text-decoration: none;
  border-color: var(--primary-dark);
}

.modal-header .close {
  margin: 0;
}

@media screen and (max-width: 576px) {
  .modal-header-icons {
    display: none;
  }
  .modal-header-title {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .modal-header .close {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .modal-header-variants {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
  }
  .modal-header-button {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.modal-dialog {
  max-width: none;
  margin: 0;
  height: 100%;
}

.modal-body {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-body iframe {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.modal-body iframe.mobile {
  width: 440px;
  max-width: 100%;
}

.modal-body .spinner-border {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
}

.modal-content {
  height: 100%;
}

.btn.disabled, .btn:disabled {
  color: rgba(16, 16, 16, 0.3) !important;
}
/*# sourceMappingURL=modal.css.map */