@charset "UTF-8";
.pop-up {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.7);
}
.pop-up .pop-up-area {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: auto;
  background-color: white;
  border-radius: 5px;
  padding: 15px 0 40px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .pop-up .pop-up-area {
    width: 90vw;
    max-height: 90vh;
  }
  .pop-up .pop-up-area::-ms-clear {
    display: none;
  }
  .pop-up .pop-up-area::-webkit-scrollbar-track {
    display: none;
    position: absolute;
    background: transparent !important;
  }
  .pop-up .pop-up-area::-webkit-scrollbar {
    width: 8px;
    background: transparent repeat-y !important;
  }
  .pop-up .pop-up-area::-webkit-scrollbar-thumb {
    background-color: rgba(102, 102, 102, 0.3);
    opacity: 0.6;
    border-radius: 4px;
  }
}
.pop-up .pop-up-area .close-button {
  position: absolute;
  top: 17px;
  right: 15px;
}
.pop-up .pop-up-area .close-button:before {
  display: inline-block;
  font-family: "Font Awesome Regular";
  font-size: 16px;
  content: "";
  color: #1f78b4;
  cursor: pointer;
}
.pop-up .pop-up-area .info-title {
  padding: 0 30px;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 35px;
  line-height: 56px;
  color: #1f78b4;
  padding-bottom: 20px;
}
.pop-up .pop-up-area .map-div {
  width: 100%;
  height: 250px;
}
.pop-up .pop-up-area .info-text {
  padding: 20px 30px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  color: #333333;
}
.pop-up .pop-up-area .info-text p {
  margin-bottom: 0;
}
.pop-up .pop-up-area .info-email {
  padding: 0 30px;
}
.pop-up .pop-up-area .info-email a {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  color: #00a3ff;
}
.pop-up .pop-up-area .info-email a:hover {
  text-decoration: none;
}
