/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 27 2023 | 19:25:45 */
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 26 2023 | 20:20:09 */
/************/
/*  Colors  */
/************/
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 22 2022 | 20:38:52 */
/* Variables  */
:root {
  --bg-overlay: rgba(0, 0, 0, 0.75);
  --popup-bg: #0098C5;
  --popup-button-bg: rgba(255, 171, 46, 1);
  --popup-button-hover: #F77C24;
  --close-button-bg: #bdc3c7;
  --close-button-hover: #8A9094;
}
/* External popup */
#external_link_popup {
  background-color: var(--bg-overlay);
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  overflow-y: scroll;
  padding: 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50000;
}
#external_link_popup .popup_container {
  align-items: center;
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  left: 0;
  margin: 0 auto;
  max-width: 55%;
  padding: 0 50px 50px 50px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 100%;
  z-index: 50001;
}
#external_link_popup img {
  display: block;
  margin: 0 auto 30px auto;
  max-width: 200px;
  width: 100%;
}
#external_link_popup h2 {
  font-size: clamp(28px, 2.5vw, 40px) !important;
}
#external_link_popup h2, #external_link_popup p {
  display: block;
  text-align: center;
}
#external_link_popup h2 {
  color: #06254A !important;
  margin-bottom: 15px !important;
  padding: 55px 0 0 0;
  text-transform: none !important;
}
#external_link_popup p {
  color: #3C3C3C !important;
  display: block;
  font-size: 18px !important;
  line-height: 1.5 !important;
  margin-top: 0 !important;
  padding: 0 30px;
  text-align: center;
  width: 100%;
}
#external_link_popup span:not(.close_popup) {
  display: block !important;
  font-style: italic !important;
  font-weight: 400 !important;
  line-height: 1em !important;
  margin-top: 15px;
}
#external_link_popup .close_popup {
  cursor: pointer;
  height: 70px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100px;
}
#external_link_popup .close_popup:before {
  background: #06254A !important;
  content: "";
  height: 4px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(45deg);
  width: 30px;
}
#external_link_popup .close_popup:after {
  background: #06254A !important;
  content: "";
  height: 4px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-45deg);
  width: 30px;
}
#external_link_popup a.popup_button {
  background-color: #1C71ED !important;
  border-radius: 0px !important;
  border: solid 2px #ffffff !important;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.2);
  color: #fff !important;
  display: inline-block;
  margin: 30px 15px 0 15px !important;
  padding: 8px 20px !important;
  text-align: center;
  transition: 0.3s ease background-color;
  width: 150px;
}
#external_link_popup a.popup_button:hover {
  text-decoration: none;
}
#external_link_popup .lower_close {
  background-color: #06254A !important;
  background-image: url("/wp-content/uploads/arrow_left.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
  border: solid 2px #ffffff !important;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: inline-block;
  height: 46px;
  margin: 30px 15px 0 15px !important;
  transition: 0.3s ease background-color;
  width: 46px;
}
#external_link_popup .lower_close:hover {
  background-color: var(--close-button-hover);
}
@media only screen and (max-width: 767px) {
  #external_link_popup .popup_container {
    max-width: 80%;
  }
  #external_link_popup p {
    padding: 0;
  }
}
@media only screen and (max-width: 484px) {
  #external_link_popup .popup_container {
    max-width: 100%;
  }
}
