/*----------------------------------
 Custom Modal Close
------------------------------------*/
.custom-modal-close {
  position: absolute;
  text-align: center;
  background-color: var(--primary) !important;
  border-radius: 50%;
  padding: 0;
  color: var(--white);
  border: none;
  z-index: 50;
  outline: none;
  text-decoration: none;
  right: 1.75rem;
  top: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1.075rem;
}

.custom-modal-close:after {
  content: "\f00d";
  font-family: FontAwesome;
}

.custom-modal-close span {
  display: none !important;
}

/*----------------------------------
 Modal Customization
------------------------------------*/
.modal {
  z-index: 99999999;
}

.modal .modal-dialog {
  width: 100%;
  max-width: 991px;
}

/*----------------------------------
 Fullscreen Modal
------------------------------------*/
.fullscreen-modal {
  z-index: 99999999;
  padding: 0 !important;
}

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

.fullscreen-modal .modal-body {
  padding: 30px;
  overflow-y: auto;
}

.fullscreen-modal .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
