/* text error message */
/* Popup Wrapper */
/* Overlay */
/* Popup content container box */
/* Title */
/* Content */
/* Url */
/* Input field */
/* Button Group */
/* Popup Animation */
/* Keyframe animation */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.2);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.2);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  to {
    opacity: 0;
    transform: scale(0.3);
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  to {
    opacity: 0;
    transform: scale(0.3);
  }
}
html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}
*::before {
  box-sizing: inherit;
}
*::after {
  box-sizing: inherit;
}

.everest-form-sc-error {
  color: #f03;
  font-size: 12px;
  margin-top: 4px;
}

.error {
  border-color: #f03 !important;
}

.evf-sc-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -4;
}
.evf-sc-wrapper .popup {
  color: #208e4e;
  padding: 15px;
  display: inline-block;
  background: #ecf0f1;
  cursor: default;
  position: relative;
  top: 45%;
  left: 45%;
}
.evf-sc-wrapper .evf_sc_popup_box {
  background: #ecf0f1;
  max-width: 45em;
  margin: 0 auto;
  position: fixed;
  display: none;
  padding: 30px 24px;
  z-index: 999;
}
.evf-sc-wrapper .evf_sc_popup_box .boom-in {
  display: block;
  -webkit-animation: 0.4s zoomIn;
  animation: 0.4s zoomIn;
}
.evf-sc-wrapper .sc-modal-title {
  line-height: auto;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.evf-sc-wrapper .sc-modal-title::before {
  display: none;
}
.evf-sc-wrapper .sc-modal-content {
  margin: 14px 0;
  line-height: 1.8em;
}
.evf-sc-wrapper .sc-short-code-url {
  word-break: break-all;
  text-decoration: underline;
}
.evf-sc-wrapper .email-input {
  margin: 0;
  height: 52px;
  width: 100%;
  display: flex;
}
.evf-sc-wrapper .email-input::placeholder {
  font-size: 14px;
  padding-left: 4px;
}
.evf-sc-wrapper .everest-forms-save-and-continue {
  margin-top: 12px;
  margin-bottom: 12px;
}
.evf-sc-wrapper .group .evf-sc-btn-confirm,
.evf-sc-wrapper .group .evf-sc-btn-close {
  padding: 10px 20px;
}
.evf-sc-wrapper .group .evf-sc-btn-confirm {
  margin-right: 8px;
}
.evf-sc-wrapper .group {
  margin: 0;
  margin-top: 15px;
  text-align: left;
}
.evf-sc-wrapper .boom-out {
  display: none;
  -webkit-animation: 0.4s zoomOut;
  animation: 0.4s zoomOut;
}

.overlay {
  background: rgba(0, 0, 0, 0.67);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
}

.z-index-1 {
  z-index: 1000;
}

@media only screen and (max-width: 480px) {
  .evf_sc_popup_box {
    width: 90%;
  }
}