.modal-open {
  overflow: hidden;
}
.modal-open .cms2go-site.top .container {
  -webkit-transform: none;
          transform: none;
  padding-top: 60px;
}
.modal-enter-active {
  opacity: 0;
}
.modal-enter-active .block {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.modal-leave-active {
  opacity: 0;
}
.modal-leave-active .block {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  transition: opacity 0.3s ease;
  padding: 50px;
  overflow-x: hidden;
  overflow-y: auto;
}
.CMS2GO .modal-mask {
  height: calc(100vh - 60px);
}
.modal-mask .modal-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 50px;
}
.modal-mask .block {
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
}
@media (max-width: 56em) {
  .modal-mask .block {
    max-width: 100%;
    margin: 0;
  }
}
.modal-mask .block .header {
  padding: 0 60px 0 var(--padding);
  height: 50px;
  background: var(--color1);
  position: relative;
}
.modal-mask .block .header .formTitle {
  color: #fff;
  font-family: var(--basicfont);
  font-weight: 600;
  font-size: var(--fontsize);
  padding: 0;
  line-height: 50px;
}
.modal-mask .block .header .close {
  font-size: 2rem;
  color: #fff;
  background: none;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  text-decoration: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  border: 0;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
}
@media (hover: hover) {
  .modal-mask .block .header .close:hover {
    border: 0;
    background: var(--buttonHover);
    color: #fff;
  }
}
.modal-mask .block .content {
  padding: var(--padding) !important;
  background: var(--grey1);
  color: var(--fontcolor);
}
.modal-mask .block .footer-buttons {
  display: flex;
  padding: 0 var(--padding) var(--padding) !important;
  background: var(--grey1);
  gap: var(--gutter);
}
.modal-mask .block .footer-buttons .button {
  border: 0;
  cursor: pointer;
  width: 100%;
}
.modal-mask .block .footer-buttons .button.cancel {
  background: none;
  color: var(--color1);
  box-shadow: 0 0 0 2px var(--color1);
}
.modal-mask .block .footer-buttons .button.submit {
  background: var(--color2);
  color: #fff;
}
.modal-mask .block .footer-buttons .button.submit:disabled {
  cursor: default;
  background: var(--grey1);
  color: var(--grey2);
}
@media (hover: hover) {
  .modal-mask .block .footer-buttons .button.submit:disabled:hover {
    background: var(--grey1);
    color: var(--grey2);
  }
}
.podcast-popup.modal-mask {
  padding: 0;
}
.podcast-popup.modal-mask .modal-wrapper {
  padding: 0;
}
.podcast-popup.modal-mask button {
  position: absolute;
  top: var(--padding);
  right: var(--padding);
  border: 0;
}
