<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#destModal .sample-window {
width: 350px;
padding: 5px;
border: 2px solid #186db4;
background-color: #fff;
display: none;
}
#destModal .plainmodal-close {
cursor: pointer;
}
#destModal .sample-window .plainmodal-close {
display: inline-block;
padding: 1px 3px;
color: #fff;
background-color: #224388;
}
#destModal .sample-window .plainmodal-close:hover {
background-color: #1f99e2;
}
#destModal {
position:relative;
padding: 20px 40px;
color: #010203;
background-color: #87CEEB;
border-radius: 10px;
display: none;
padding-bottom: 50px;
}
#destModal:after { /* clearfix */
content: "";
clear: both;
display: block;
}
#destModal p {
font-size: 18px;
}
#destModal a {
color: #3d5a80;
}
#destModal a:hover {
text-decoration: underline;
color: #ee6c4d;
}
#destModal .sample-head {
margin: 0 0 15px;
font-size: 36px;
font-weight: bold;
}
#destModal img {
float: left;
margin-right: 10px;
box-shadow: none;
}
#destModal .plainmodal-close {
position: absolute;
width: 45px;
height: 45px;
right: -15px;
}
#destModal .plainmodal-close:after {
  content: "âœ–";
  color: #3d5a80;
  font-size: 18px;
}
#destModal .plainmodal-close:hover {
background-position: -45px 0;
}

/* INPUT fields */
/* Animation webkit */
@-webkit-keyframes airplane
{
  0% {margin-left: -235px}
  90% {margin-left: 100%;}
  100% {margin-left: 100%;}
}

/* Animation */
@keyframes airplane
{
  0% {margin-left: -235px}
  70% {margin-left: 100%;}
  100% {margin-left: 100%;}
}

#destModal .airplane{
  background-image: url('airplane.png');
  width: 137px;
  height: 104px;
  margin-left: -235px;
  position: absolute;
  animation: airplane 24s;
  -webkit-animation: airplane 24s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
}

#destModal #airplane{
  top: 120px;
}

#destModal #airplane{
  top: 260px;
  animation-delay: 12s;
  -webkit-animation-delay: 12s;
}

#destModal #form{
  height: 100%;
  overflow: hidden;
  position: relative;

}
#destModal form{
  margin: 0 auto;
  width: 582px;
  padding-top: 40px;
  color: #293241;
  position: relative;


}
#destModal label, #destModal input, #destModal textarea, #destModal select{
  display: block;
}
#destModal input, #destModal textarea, #destModal select {
  width: 500px;
  border: none;
  border-radius: 20px;
  outline: none;
  padding: 10px;
  font-size: 1em;
  color: #676767;
  transition: border 0.5s;
  -webkit-transition: border 0.5s;
  -moz-transition: border 0.5s;
  -o-transition: border 0.5s;
  border: solid 3px #98d4f3;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;

}
#destModal input:focus, #destModal textarea:focus, #destModal select:focus {
  border: solid 3px #77bde0;
}

#destModal textarea{
  height: 100px;
  resize: none;
  overflow: auto;
}
#destModal input[type="submit"]{
  background-color: #F90;
  color: white;
  height: 50px;
  cursor: pointer;
  margin-top: 30px;
  font-size: 1.29em;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
#destModal input[type="submit"]:hover{
  background-color: #e58f0e;

}
#destModal label{
  font-size: 1.5em;
  padding-left: 20px;
}
#destModal .update-price-map {
  position: relative;
}
#destModal .update-price-map button {
  position: absolute;
  bottom: 7px;
}

#destModal .modal-price-map label {
  font-size: 16px;
  padding-left: 10px;
}
#destModal .formgroup, #destModal .formgroup-active, #destModal .formgroup-error{
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 10.5%;
  transition: background-image 0.7s;
  -webkit-transition: background-image 0.7s;
  -moz-transition: background-image 0.7s;
  -o-transition: background-image 0.7s;
  width: 566px;
  padding-top: 2px;
}

#destModal .labels {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

#destModal .label1 { grid-area: 1 / 1 / 2 / 2; }
#destModal .label2 { grid-area: 1 / 2 / 2 / 3; }

#destModal #geomap {
  display: none;
  width: 100%;
  height:100%;
}

#destModal .center {
  position:absolute !important;
  top:18%;
  left:30%;
}

#destModal .loading2 {
  left:40%;
}

#regions_div {
  width: 100%;
  height: 70%;
  background-color: #87CEEB;
}

.custom-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marker-icon {
  position: relative;
  background-image: url(../images/marker.png); /* Update with your marker image path */
  background-size: cover;
  background-position: center;
}

.marker-price {
  color: white;
  font-weight: bold;
  font-size: 12px;
  z-index: 1;
  background-color: #c0392b; /* Update with desired underline color */
  padding: 4px 8px;
  margin-top: 4px;
  border-radius: 4px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

#destModal .field-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#destModal .field-container &gt; div {
  flex: 1;
  margin-right: 10px;
}

#destModal .field-container &gt; div:last-child {
  margin-right: 0;
}

#destModal input[type="text"],
#destModal select {
  width: 100%;
}

#destModal .currency select {
  width: auto;
}

#destModal .currency label {
  margin-bottom: 2px;
}

body #ui-datepicker-div.my-datepicker {
  z-index: 9999 !important;
}

#destModal a.modal-nav-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: navy;
  color: lightblue;
  text-decoration: none;
  border-radius: 5px;
}

#destModal .roundtrip-toggle {
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 2.2rem;
  border-radius: 1.5rem;
  background-color: transparent;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  bottom: 5px;
  margin-left: 20px;
}

#destModal .roundtrip-toggle::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

#destModal .roundtrip-toggle.active {
  background-color: #007bff;
  border-color: #007bff;
}

#destModal .roundtrip-toggle.active::before {
  transform: translateX(2.5rem);
}

#destModal .roundtrip-toggle:focus {
  outline: none;
}

#destModal .roundtrip-toggle:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}


#destModal a.show-for-anytime {
  margin-left: 20px;
}

.modal-note {
  background-color: skyblue;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: right;
}


/* Media query for mobile devices */
@media only screen and (max-width: 767px) {
  #destModal {
    position: fixed !important;
    right: 0;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px;
  }

  #destModal #form {
    left: 5%;
    right: 8%;
  }
  #destModal form {
    width: 100%;
  }

  #waterform &gt; p {
    display: none;
  }

  #choose-region-form {
    display: none;
  }

  #destModal input[type="text"] {
    width: 55%;
  }
}
</pre></body></html>