#contact-source,
.av_default_container_wrap.container_wrap {
  display: none;
}

.modal {
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 999999999999;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.41, 0.99);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.41, 0.99);
  -o-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.41, 0.99);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.41, 0.99);
}

.modal.visible {
  opacity: 1;
  visibility: visible;
}

.modal-inner {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%) scale(0.5);
  max-height: 80vh;
  z-index: 9999999999999;
  /* -webkit-transition: all 1s .5s easeOutElastic; */
  /* -moz-transition: all 1s easeOutElastic; */
  /* -o-transition: all 1s easeOutElastic; */
  transition: all 0.2s 0.1s cubic-bezier(0.14, 0.7, 0.465, 1.215);
}

.modal.visible .modal-inner {
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  background: #ee217c;
  border: 6px solid #fff;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  transform: translate(50%, -50%);
  -webkit-transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
  -moz-transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
  -o-transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
  transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
}

.modal-close::before {
  content: '';
  border-top: 3px solid #fff;
  height: 34px;
  width: 34px;
  transform: rotate(-45deg);
  transform-origin: 50% 0;
  position: absolute;
  filter: drop-shadow(0 2px 2px #47aad4);
  left: 11px;
  top: 27px;
  -webkit-transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
  -moz-transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
  -o-transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
  transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
}

.modal-close::after {
  content: '';
  border-top: 3px solid #fff;
  height: 34px;
  width: 34px;
  transform: rotate(45deg);
  transform-origin: 50% 0;
  position: absolute;
  filter: drop-shadow(0 2px 2px #47aad4);
  left: 14px;
  top: 27px;
  -webkit-transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
  -moz-transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
  -o-transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
  transition: all 300ms cubic-bezier(0.55, 0.085, 0.41, 0.99);
}

.modal-close:hover {
  background: #d10e64;
}

.modal-close:hover::before {
  /* border-top: 4px solid #fff; */
  /* transform: rotate(-70deg); */
  animation: pulsate-before 1s cubic-bezier(0.55, 0.085, 0.41, 0.99) infinite;
}

.modal-close:hover::after {
  /* border-top: 4px solid #fff; */
  /* transform: rotate(70deg); */
  animation: pulsate-after 1s cubic-bezier(0.55, 0.085, 0.41, 0.99) infinite;
}

@keyframes pulsate-before {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(-75deg);
  }
  100% {
    transform: rotate(-45deg);
  }
}

@keyframes pulsate-after {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(75deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

.modal-content {
  max-height: 80vh;
  overflow: auto;
  padding: 80px;
  width: 700px;
}

.modal-inner h1 {
  color: #ed217c;
  font-family: 'Kumiz FY';
  font-size: 40px;
  font-weight: bold;
}

.modal-inner p {
  font-size: 18px;
  line-height: 28px;
}

.modal-inner #scrubbedLocation {
  background-image: linear-gradient(-180deg, #97f78f 0%, #5deb56 100%);
  border: 1px solid #84de7f;
  border-radius: 6px;
  color: #692f91;
  font-size: 16px;
  margin: 0;
  padding: 12px;
  position: relative;
  text-shadow: 0 1px 2px #ffffff;
}

.modal-inner #scrubbedLocation.pending {
  background: #eee;
  border: 1px solid #e0e0e0;
  color: #999;
  text-shadow: none;
}

.modal-inner #scrubbedLocation a {
  position: absolute;
  top: 12px;
  right: 10px;
}

.modal-inner #cxcLocationFields {
  margin-top: 40px;
}

.modal-inner #cxcLocationFields.good {
  /* Rectangle 5: */
  background-image: linear-gradient(-180deg, #97f78f 0%, #5deb56 100%);
  border: 1px solid #84de7f;
  border-radius: 6px;
}

.modal-inner #cxcRequestFields {
  margin: 0px 0;
}

.modal-inner #cxcRequestFields h2 {
  margin: 40px 0;
  text-align: center;
}

.modal-inner #event-request .radios {
  margin-bottom: 20px;
}

.modal-inner #event-request textarea {
  min-height: 100px;
}

.modal-inner #event-request label {
  font-size: 16px;
  font-weight: bold;
  font-weight: normal;
}

.modal-inner fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
#contact.modal .modal-inner form h3 {
  display: none;
}
#contact.modal .modal-inner fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.modal-content .nf-form-cont {
  margin: 40px 0;
}

/* General (Contact) Form */

.modal-inner .nf-field-label {
  font-size: 16px;
  font-weight: bold;
  font-weight: normal;
  margin: 0;
}

#top .modal-inner .nf-field-container {
  margin: 0;
}

#top .modal-inner .nf-field-label label {
  font-size: 16px;
  font-weight: bold;
  font-weight: normal;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .modal-inner #scrubbedLocation a {
    display: block;
    position: static;
    text-align: right;
    margin: 8px 0 0;
    color: rgb(51, 12, 51);
  }
  .cxcWrapper form label {
    font-size: 1.15em !important;
  }
}
