.meta-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modal-container {
  align-items: center;
  background: #000;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.modal-wrap {
  position: relative;
  width: 95%;
}

.modal-close {
  background: #000;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 8;
}

.modal-close:hover {
  cursor: pointer;
}

.modal-content {
  background: #fff;
  padding: 10% 5%;
}

@media screen and (max-width: 600px) {
  .modal-content {
	padding: 20px 20px 20px 20px;
    }
}

.meta-modal .h2 {
  font-family: inherit;
  font-size: 16px;
  font-weight: bold;
}

.meta-modal p {
  font-family: inherit;
}

.meta-modal span {
  font-family: inherit;
}

.meta-modal label.input {
  clear: both;
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

.meta-modal label a {
  color: #EA5A50;
  text-decoration: underline;
}

.meta-modal select,
.meta-modal input[type='text'] {
  border: solid 1px #f1f1f1;
  box-shadow: none;
  box-sizing: border-box;
  height: 60px;
  margin-bottom: 10px;
  padding: 0 40px 0 20px;
  width: 100%;
}

.meta-modal .modal-content__button {
  background: #000;
  border: none;
  color: #fff;
  padding: 20px 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  width: 100%;
  text-transform: capitalize;
}

.meta-modal .modal-content__button.loading {
  align-items: center;
  display: flex;
  justify-content: center; 
}

.meta-modal .modal-content__button[disabled] {
  background: #777; 
}

.meta-modal .modal-content__button .spin-wrapper {
  position: relative;
  width: 35px;
}

/* Complete */

.modal-wrap.complete {
  text-align: center;
}

.modal-wrap.complete i.fa-check-circle {
  color: #EA5A50;
  font-size: 60px;
  margin-bottom: 30px;
}

.modal-content__date {
  font-weight: bold;
}


@media (min-width: 1200px) {

  .modal-wrap {
    width: 50%;
    position: absolute;
  }
  
  .modal-content {
    padding: 40px;
  }

  .meta-modal .modal-content__button span {
    padding: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .meta-modal .modal-content__button:hover > span {
    padding-left: 10px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .meta-modal .modal-content__button {
    padding: 40px;
  }
}

@media screen and (min-width: 1024px) {

  .modal-wrap {
    width: 90%;
    position: absolute;
    max-width: 1024px;
  }
  
}  


.modal-content .accordion {
	border-bottom: solid 1px #e6e6e6;
}

.modal-content .accordion-title {
    position: relative;
    display: block;
    padding: 15px 20px;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    line-height: 1;
    color: #1B2255;
    font-size: 1rem;
}

.meta-modal .modal-content__row .button {
	margin: 20px 0 0 0;
}

.accordion-title:focus, .accordion-title:hover {
    background-color: transparent; cursor: default;