/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.mfp-wrap.itinerary-download-fade {
  z-index: 999999;
}

.itinerary-download-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}


/* overlay animate in */

.itinerary-download-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}


/* overlay animate out */

.itinerary-download-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.itinerary-download-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.4s ease-out;
}

.itinerary-download-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.itinerary-download-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.wte-itinerary-downloader-outer-wrap {
  box-shadow: 0px 40px 40px -40px #00000029;
  border: 1px solid #0F1D231A;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  margin-bottom: 32px;
}

.wte-itinerary-downloader-inn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.wte-itinerary-downloader-inn-wrap .itinerary-downloader-icon {
  align-self: flex-start;
  flex: 0 0 40px;
}

.wte-itinerary-downloader-inn-wrap .itinerary-downloader-icon img {
  vertical-align: top;
  width: 40px;
  height: auto;
}

.wte-itinerary-downloader-inn-wrap .itinerary-downloader-dwnld-text-wrap {
  flex: 1;
}

.download-itinerary-main-label {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  margin: 0 0 4px;
}

.download-itinerary-main-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(15, 29, 35, .64);
}

.wte-itinerary-downloader-inn-wrap .main-button-itinerary-download {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 100px;
  padding: 15px 32px;
  background-color: var(--wpte-primary-color, var(--primary-color));
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  transition: 0.6s all;
  cursor: pointer;
}

.wte-itinerary-downloader-inn-wrap .main-button-itinerary-download.disabled {
  opacity: 0.5;
  pointer-events: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.wte-itinerary-downloader-inn-wrap .main-button-itinerary-download.is-loading::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #ffffffab;
  border-right-color: transparent;
  animation: spin 1s linear infinite;
}

.wte-itinerary-downloader-inn-wrap .main-button-itinerary-download:hover {
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
}

.widget .wte-itinerary-downloader-inn-wrap .main-button-wrap {
  width: 100%;
}

#wte-id-button-message {
  display: inline-block;
  margin-top: 10px;
  padding-left: 102px;
  padding-right: 30px;
  font-style: italic;
  position: relative;
}

#wte-id-button-message::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid blue;
  border-right: none;
  border-bottom: none;
  border-left: none;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 auto;
  -webkit-animation-name: loader-rotate;
  animation-name: loader-rotate;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes loader-rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wte-itinerary-dwnld-form {
  padding: 4%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.wte-itinerary-dwnld-form .wte-itinerary-dwnld-form-inner {
  max-width: 768px;
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 40px;
  left: -20px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.wte-itinerary-dwnld-form .wte-itinerary-dwnld-close {
  cursor: pointer;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: calc(100% + 20px);
  overflow: hidden;
  text-indent: 40px;
  white-space: nowrap;
}

.wte-itinerary-dwnld-form .wte-itinerary-dwnld-close::before,
.wte-itinerary-dwnld-form .wte-itinerary-dwnld-close::after {
  content: "";
  background: #999;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.wte-itinerary-dwnld-form .wte-itinerary-dwnld-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.wte-itinerary-dwnld-form .wte-itinerary-dwnld-close:hover::before,
.wte-itinerary-dwnld-form .wte-itinerary-dwnld-close:hover::after {
  background: #ddd;
}

.download-itinerary-popup-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.download-itinerary-popup-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #566267;
}

.itinerary-download-popup-wrap-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
}

.itinerary-download-popup-wrap-2 .wte-itinerary-downloader-email {
  width: 100%;
  margin-bottom: 24px;
  padding: 14px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
}

.itinerary-download-popup-wrap-2 .wte-itinerary-downloader-send-mail {
  order: 3;
  padding: 14px 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375;
  border-radius: 100px;
  background-color: var(--wpte-primary-color, var(--primary-color));
  color: #fff;
  text-decoration: none;
  transition: 0.6s all;
  cursor: pointer;
  border: none;
}

.itinerary-download-popup-wrap-2 .wte-itinerary-downloader-msg {
  order: 5;
  margin-top: 15px;
  width: 100%;
  background: #f5f5f5;
  padding: 5px 15px;
  border-left: 5px solid #333;
}

.itinerary-download-popup-wrap-2 .wte-itinerary-downloader-msg.error{
  border-left-color: #F04438;
  color: #F04438;
}

.itinerary-download-popup-wrap-2 .wte-itinerary-downloader-msg.success{
  border-left-color: #00A854;
  color: #00A854;
}


.itinerary-download-popup-wrap-2 .wte-itinerary-downloader-msg:empty {
  display: none;
}

.itinerary-download-popup-wrap-2 .itinerary-consent-check-wrap {
  order: 2;
  margin-bottom: 25px;
  position: relative;
  display: flex;
}

.itinerary-download-popup-wrap-2 .itinerary-consent-check-wrap input[type="checkbox"] {
  transform: translateY(2px);
}

.itinerary-download-popup-wrap-2 .itinerary-consent-check-wrap label {
  position: relative;
  padding-left: 8px;
  display: block;
  line-height: 1.6;
}

.itinerary-download-user-consent-label{
  display: block;
  margin: 0 0 8px;
  font-weight: 500;
}

.required {
  color: #F04438;
}

.itinerary-download-popup-wrap-2 .itinerary-consent-check-wrap .error+label {
  -webkit-animation-name: color-blink;
  animation-name: color-blink;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes color-blink {
  from {
    background: red;
  }

  to {
    background: none;
  }
}

@keyframes color-blink {
  from {
    background: red;
  }

  to {
    background: none;
  }
}

.itinerary-download-popup-wrap-2 .itinerary-consent-check-wrap label:focus {
  outline: 1px dotted;
}

.mfp-close-btn-in .wte-itinerary-dwnld-form .mfp-close {
  display: none;
}

@media screen and (max-width: 1024px) {
  .wte-itinerary-downloader-inn-wrap .itinerary-downloader-dwnld-text-wrap {
    padding-left: 15px;
  }

  #wte-id-button-message {
    padding-left: 87px;
  }

  .wte-itinerary-dwnld-form .wte-itinerary-dwnld-form-inner {
    left: 0;
    padding: 0 20px;
    overflow: auto;
    min-height: auto;
    max-height: 80vh;
  }

  .wte-itinerary-dwnld-form .wte-itinerary-dwnld-close {
    left: auto;
    right: 12px;
    top: 5px;
  }

  .wte-itinerary-dwnld-form .wte-itinerary-dwnld-close:hover::before,
  .wte-itinerary-dwnld-form .wte-itinerary-dwnld-close:hover::after {
    background: #333;
  }

  .itinerary-download-popup-wrap-1 {
    margin-top: 30px;
  }

  .itinerary-download-popup-wrap-2 {
    margin-bottom: 30px;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .wte-itinerary-downloader-outer-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wte-itinerary-downloader-inn-wrap .itinerary-downloader-icon {
    align-self: center;
  }

  .wte-itinerary-downloader-inn-wrap {
    flex-direction: column;
    text-align: center;
  }

}

.test-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

/*# sourceMappingURL=wte-itinerary-downloader-public-css.css.map*/