.my-modal {
  z-index: 500;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
}

.my-modal * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.my-modal-wrap {
  z-index: 510;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.my-modal-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.my-modal-container {
  position: relative;
  z-index: 520;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  text-align: left;
  vertical-align: middle;
  white-space: normal;
  outline: none !important;

  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

#loading .lity-content {
  border: 0 !important;
  overflow: hidden;
  background: transparent;
}

#loading .lity-content .msg_box {
  width: 400px;
  height: 400px;
  text-align: center;
  padding-top: 50px;
}
#loading .lity-content .msg_box h1,
#loading .lity-content .msg_box p {
  color: white;
}

.modal-leave,
.modal-enter-to {
  opacity: 1;
}

.modal-enter-active,
.modal-leave-active {
  transition: opacity 0.3s;
}

.modal-leave-to,
.modal-enter {
  opacity: 0;
}

.modal-enter .my-modal-container,
.modal-leave-active .my-modal-container {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.my-modal-close,
.my-modal-close:hover,
.my-modal-close:focus,
.my-modal-close:active,
.my-modal-close:visited {
  /* width: 100%;
  height: 21px;
  position: absolute;
  display: block;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 176px;
  top: -30px;
  background-image: url("https://twskyimg.akamaized.net/gameweb/hit2/event/2023/0707_qrav0e7gzn/lightbox/close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-text-emphasis: none;
          text-emphasis: none;
  cursor: pointer; */
  width: auto;
  height: auto;
  font-size: 35px;
  font-weight: 450;
  line-height: 0;
  letter-spacing: 1;
  position: absolute;
  display: block;
  right: 1rem;
  top: 1rem;
  border-radius: 3px;
  border: solid 2px #c8c1bc;
  color: #c8c1bc;
  padding: 15px 3px 17px 3px;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
}

/* .my-modal-close::-moz-focus-inner {
  border: 0;
  padding: 0;
} */