.common-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 13, 20, 0.84);
  width: 100%;
  height: 100%;
  transition: all 0.25s ease-in;
  z-index: 99999;
  overflow-y: auto;
  opacity: 0;
  display: none;
}
.common-modal-wrapper * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.common-modal-wrapper.active {
  display: block;
  opacity: 1;
}

.common-modal-container {
  width: 100%;
  max-width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 40px 0;
}

.common-modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.common-modal-close-btn:before {
  content: "";
  width: 2px;
  height: 32px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  transform: rotate(45deg);
}
.common-modal-close-btn:after {
  content: "";
  width: 2px;
  height: 32px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  transform: rotate(-45deg);
}

.common-modal-media {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: relative;
  margin: 12px auto 0;
}
.common-modal-media img {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  border: none;
  margin: auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.common-modal-media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.form-closed {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  cursor: none;
}
.form-closed .event-closed-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 10;
}
.form-closed .event-closed-label {
  position: absolute;
  top: 40px;
  right: -45px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  background: #e3132a;
  color: #ffffff;
  padding: 8px 24px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 15;
}