/* Modal */
.modal {
  position: fixed;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(0.35rem);
  -webkit-backdrop-filter: blur(0.35rem);

}

.modal-overflow {
  overflow: hidden !important;
}

.modal-header {
  padding: 10px 0px;
  height: var(--ms-logo-height);
  cursor: pointer;
}

.modal-content {
  margin-top: 10vh;
  max-height: 100%;
  overflow: auto;
}
@media (max-width: 480px) {
  .modal-content {
      margin-top: 1vh !important;
  }
}
.close-button {
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 10px;
  cursor: pointer;

}

.close-button .bar {
  padding: 0;
  width: 30px;
  height: 4px;
  background-color: #fff;
  display: block;
  border-radius: 4px;
  transition: all .4s ease-in-out;
  position: absolute;
  z-index: 9998;

}

.bar1 {
  top: 13.5px;
}

.bar2 {
  bottom: 13.5px;
}

.close-button.show>.bar1 {
  transform: rotate(45deg);
  transform-origin: 5%;
  width: 41px;
  top: 0;
}


.close-button.show>.bar2 {
  transform-origin: 5%;
  transform: rotate(-45deg);
  width: 41px;
  bottom: 0;
}
/* Animations */

.fade5-enter-active {
  transition: opacity 1s;
}

.fade5-leave-active {
  transition: opacity 0.7s;
}

.fade5-enter,
.fade5-leave-to {
  opacity: 0;
}