.mx-modal-open {
  overflow: hidden;
}

.mx-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .4);
  align-items: center;
  justify-content: center;
}

.mx-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .175);
  border-radius: .5rem;
  outline: 0;
  -webkit-animation-name: mx-animatetop;
  -webkit-animation-duration: .4s;
  animation-name: mx-animatetop;
  animation-duration: .4s;
}

@-webkit-keyframes mx-animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes mx-animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

.mx-modal-body {
  padding: 2px 15px;
  min-height: 250px;
}

.mx-modal-footer {
  margin: 10px 0;
  padding: 2px 15px;
}

@media (min-width: 768px) {
  .mx-modal-content {
    max-width: 1140px;
  }
}

#closeModalBtn {
  color: #fff;
  background-color: #6c757d;
  border: 1px solid #6c757d;
  display: block;
  /* width: 100%; */
  margin-left: auto;
  /* height: 40px; */
  padding: 5px 10px;
  border-radius: unset;
}