@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&display=swap");
:root {
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
}

body {
  padding-top: 24px;
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw;
  color: #555;
  background: #f0eee9;
  position: relative;
  min-height: 100vh;
}

.body-full {
  height: 100vh;
  max-height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}
.body-full main {
  height: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  overflow-y: scroll;
}

main {
  max-width: 992px;
  padding: 18px 0 10px 0;
  min-height: 100vh;
}

.navbar {
  height: 45px;
}
.navbar .container-fluid {
  max-width: 992px;
  position: relative;
}
.navbar-collapse {
  flex-grow: 0 !important;
}
.navbar-back {
  width: 50px;
}
.navbar-back img {
  width: 24px;
  max-width: 24px;
  margin: 0 auto;
}
.navbar-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.navbar-brand img {
  width: 70px;
}
.navbar-buttons img {
  width: 24px;
  max-width: 24px;
}

h1,
h2,
h3,
h4,
h5 {
  color: #444;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-primary {
  color: rgb(159, 155, 116) !important;
}

.cursor-pointer {
  cursor: pointer;
}

.bg-primary {
  background-color: rgb(159, 155, 116) !important;
}

.form-check-input:checked {
  background-color: rgb(159, 155, 116) !important;
  border-color: rgb(159, 155, 116) !important;
}

.btn-primary {
  color: #ffffff;
  background-color: rgb(159, 155, 116) !important;
  border-color: rgb(159, 155, 116) !important;
}

.btn-outline-primary {
  color: rgb(159, 155, 116) !important;
  border-color: rgb(159, 155, 116) !important;
}
.btn-outline-primary:hover {
  background-color: rgb(159, 155, 116) !important;
  color: #ffffff !important;
}

.btn-primary:hover {
  color: rgb(159, 155, 116) !important;
  background-color: #000 !important;
  border-color: #000 !important;
}

.border-primary {
  border-color: rgb(159, 155, 116) !important;
}

.text-primary {
  color: rgb(159, 155, 116) !important;
}

.bg-primary {
  background-color: rgb(159, 155, 116) !important;
}

.bg-primary-light {
  background-color: rgba(159, 155, 116, 0.15) !important;
}

.guestTypes div img {
  /*max-width: 20px;*/
}

.alert-icon {
  width: 32px;
}

.ban-icon {
  position: relative;
  width: 100%;
  min-width: 100%;
  aspect-ratio: 1;
}
.ban-icon .icon,
.ban-icon .ban {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ban-icon .icon {
  transform: translate(-50%, -50%) scale(0.7);
}
.ban-icon img {
  max-width: 100%;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
}

.select2-container--bootstrap-5 .select2-selection {
  border-color: #dee2e6;
}

#loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99998;
  width: 100vw;
  height: 100vh;
  background-color: rgba(159, 155, 116, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#loading img {
  max-width: 30vw;
}

.card .card-body .card-title-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-start;
  column-gap: 10px;
  align-items: center;
}
.card .card-body .card-title-icon span {
  flex-grow: 1;
}
.card .card-body .card-title .card-icon {
  max-height: 40px;
}

.DisplayPrice {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 2px;
}
.DisplayPrice .price-decimal,
.DisplayPrice .price-currency {
  font-size: 0.6em;
  font-weight: 400;
  padding-top: 2px;
}

.navbar .navbar-buttons {
  display: flex;
  column-gap: 20px;
}
.navbar .language-selector {
  position: relative;
}
.navbar .language-selector .language-selector-dropdown {
  position: relative;
}
.navbar .language-selector .language-selector-trigger {
  display: flex;
  align-items: center;
  column-gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #a09b74;
  font-size: inherit;
}
.navbar .language-selector .language-selector-trigger .language-selector-current {
  font-weight: 500;
}
.navbar .language-selector .language-selector-trigger .language-selector-chevron {
  font-size: 0.7em;
  transition: transform 0.2s ease;
}
.navbar .language-selector .language-selector-trigger:hover {
  opacity: 0.8;
}
.navbar .language-selector .language-selector-dropdown.open .language-selector-chevron {
  transform: rotate(180deg);
}
.navbar .language-selector .language-selector-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-width: 120px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}
.navbar .language-selector .language-selector-menu.show {
  display: flex;
}
.navbar .language-selector .language-selector-option {
  display: block;
  padding: 8px 16px;
  color: #a09b74;
  text-decoration: none;
  transition: background-color 0.2s ease;
  text-align: left;
  white-space: nowrap;
}
.navbar .language-selector .language-selector-option:hover {
  background-color: #f8f9fa;
  color: #a09b74;
}
.navbar .language-selector .language-selector-option.active {
  background-color: #f0f0f0;
  font-weight: 600;
  color: #8b8758;
}
.navbar .language-selector .language-selector-option:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.navbar .language-selector .language-selector-option:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.navbar .navbar-toggler {
  font-size: 24px;
}

.language-side-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.language-side-panel.open {
  pointer-events: auto;
  opacity: 1;
}
.language-side-panel .language-side-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.language-side-panel .language-side-panel-content {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  min-width: 200px;
  max-width: 90vw;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.language-side-panel.open .language-side-panel-content {
  transform: translateX(0);
}
.language-side-panel .language-side-panel-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.language-side-panel .language-side-panel-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #a09b74;
}
.language-side-panel .language-side-panel-header .language-side-panel-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #a09b74;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.language-side-panel .language-side-panel-header .language-side-panel-close:hover {
  background-color: #e9ecef;
}
.language-side-panel .language-side-panel-menu {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.language-side-panel .language-side-panel-option {
  display: block;
  padding: 16px 24px;
  color: #a09b74;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.language-side-panel .language-side-panel-option:hover {
  background-color: #f8f9fa;
  color: #8b8758;
}
.language-side-panel .language-side-panel-option.active {
  background-color: #f0f0f0;
  font-weight: 600;
  color: #8b8758;
  border-left: 4px solid #a09b74;
}
.language-side-panel .language-side-panel-option:last-child {
  border-bottom: none;
}

.Login {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
.Login input {
  text-align: center;
  font-size: 1.5rem;
}

.Dashboard a, .Dashboard a:link, .Dashboard a:visited, .Dashboard a:hover, .Dashboard a:active {
  text-decoration: none;
  cursor: pointer;
}
.Dashboard .your-stay {
  background-position: 0 50%;
  background-size: cover;
}
.Dashboard h2 {
  margin-bottom: 0;
}
.Dashboard a.disabled {
  filter: blur(3px);
  cursor: default;
}

.YourStay .progress-bar {
  background-color: rgb(159, 155, 116);
}
.YourStay .LittleCalendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* 7 equal columns */
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.YourStay .LittleCalendar > div {
  text-align: center;
  font-family: sans-serif;
  aspect-ratio: 1/1; /* square boxes */
  display: flex;
  align-items: center;
  justify-content: center;
}
.YourStay .LittleCalendar div.LittleCalendar__header {
  aspect-ratio: unset;
  border: 0;
  color: #666;
  border-bottom: 1px solid #ccc;
}
.YourStay .LittleCalendar div.LittleCalendar__day--selected {
  background-color: #eee;
  font-weight: bold;
}
.YourStay .LittleCalendar div.LittleCalendar__day--selected:first-of-type {
  border-radius: 50%;
}
.YourStay .LittleCalendar div.LittleCalendar__day--in-progress {
  background-color: rgb(159, 155, 116);
}
.YourStay .LittleCalendar div.LittleCalendar__day--start {
  border-radius: 80% 0 0 0%;
}
.YourStay .LittleCalendar div.LittleCalendar__day--end {
  border-radius: 0 0% 80% 0;
}

.CheckIn .isSpainYes,
.CheckIn .isNifYes {
  display: none;
}
.CheckIn .isAdultNo {
  display: none;
}
.CheckIn .dobAdultYes,
.CheckIn .dobAdultNo {
  display: none;
}
.CheckIn .viewField {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.CheckIn .viewField + .CheckIn .viewField {
  border-top: 1px solid #cecece;
}
.CheckIn .viewField span {
  font-size: 60%;
  text-transform: uppercase;
  padding-bottom: 0.25rem;
}
.CheckIn .viewField strong {
  font-weight: bold;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.CheckIn .dob-adult,
.CheckIn .dob-child {
  display: none;
}
.CheckIn .dob-tag {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  align-self: flex-end;
  padding-right: 5px;
}
.CheckIn .signature {
  height: 30vh;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
}
.CheckIn .select2-container--bootstrap-5 .select2-selection--single {
  height: 48px;
}
.CheckIn .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  line-height: 2;
  padding-left: 5px;
  color: var(--bs-body-color);
}
.CheckIn .select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
  height: 2;
}
.CheckIn .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  color: var(--bs-body-color);
}

.MapMarker {
  background-color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 8px;
  border: 2px solid black;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
}
.MapMarker img {
  max-width: 100%;
}

.MapMarker2 {
  background-image: url(/resources/images/apps/guests/nearby/pin.png);
  width: 60px;
  height: 60px;
  position: relative;
  background-size: cover;
}
.MapMarker2 img {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  width: 44%;
}

.select2-results__group {
  display: block;
  line-height: 1;
  padding: 1em 0.375em 0.375em !important;
}

.Wifi {
  display: flex;
  flex-direction: column;
}
.Wifi img {
  max-width: 20%;
}

.wifi-info {
  width: 100%;
}

.wifi-details {
  display: flex;
  flex-direction: column;
}

.wifi-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wifi-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.wifi-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  font-family: "Courier New", monospace;
  letter-spacing: 0.5px;
  word-break: break-all;
}

.wifi-value-container {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 0.3rem 1rem;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.wifi-value-container:hover {
  background-color: #f1f3f5;
  border-color: #dee2e6;
}

.wifi-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
@media (min-width: 576px) {
  .wifi-actions {
    flex-direction: row;
  }
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-copy svg {
  flex-shrink: 0;
}
.btn-copy.copied {
  background-color: #d4edda !important;
  border-color: #c3e6cb !important;
  color: #155724 !important;
}
.btn-copy.copied svg {
  stroke: #155724;
}

.Letter {
  padding: 3rem 1rem;
  min-height: 100vh;
  background: radial-gradient(circle at 30% 40%, rgba(255, 240, 245, 0.6) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(255, 250, 250, 0.5) 0%, transparent 50%), linear-gradient(135deg, #fff8f5 0%, #fff5f0 25%, #fffaf7 50%, #fff8f5 75%, #fffbf8 100%);
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Letter .letter-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  padding: 4rem 4.5rem;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E"), linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 252, 250, 0.98) 20%, rgba(255, 250, 248, 0.97) 40%, rgba(255, 252, 250, 0.98) 60%, rgba(255, 255, 255, 0.95) 80%, rgba(255, 253, 251, 0.96) 100%);
  background-size: 60px 60px, 100% 100%;
  border-radius: 8px 12px 10px 14px/10px 8px 12px 9px;
  box-shadow: 0 2px 20px rgba(200, 180, 170, 0.15), 0 8px 40px rgba(200, 180, 170, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 -1px 0 rgba(240, 230, 220, 0.3);
  border: 1px solid rgba(240, 230, 220, 0.5);
  filter: none;
}
.Letter .letter-content::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 200, 200, 0.2) 50%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.Letter .letter-content::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  background: radial-gradient(circle, rgba(255, 220, 220, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.Letter h1 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #5a4a42;
  text-align: center;
  margin: 0 0 2.5rem 0;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  position: relative;
}
.Letter h1::after {
  content: "❦";
  display: block;
  font-size: 1.2rem;
  color: rgba(200, 160, 160, 0.4);
  margin: 1rem auto 0;
  letter-spacing: 0.3em;
}
.Letter p {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.35rem;
  line-height: 1.85;
  color: #6a5a52;
  margin-bottom: 1.6rem;
  text-align: left;
  letter-spacing: 0.02em;
  word-spacing: 0.08em;
  font-weight: 300;
}
.Letter p:first-of-type {
  margin-top: 0;
}
.Letter p:first-of-type::first-letter {
  font-size: 4rem;
  font-weight: 400;
  float: left;
  line-height: 0.8;
  margin: 0.12em 0.12em 0.05em 0;
  color: #8a6a5a;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}
.Letter .closing {
  margin-top: 3.5rem;
  margin-bottom: 0.8rem;
  text-align: right;
  font-style: italic;
  font-size: 1.25rem;
  color: #7a6a62;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.Letter .closing::before {
  content: "~";
  margin-right: 0.5em;
  color: rgba(200, 160, 160, 0.5);
}
.Letter .signature {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: right;
  font-family: "Dancing Script", "Brush Script MT", cursive;
  font-size: 2rem;
  font-weight: 600;
  color: #6a5a52;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
  position: relative;
}
.Letter .signature::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 160, 160, 0.4), transparent);
}
@media (max-width: 768px) {
  .Letter {
    padding: 2rem 0.75rem;
  }
  .Letter .letter-content {
    padding: 3rem 3rem;
    max-width: 95%;
  }
  .Letter h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .Letter h1::after {
    font-size: 1rem;
  }
  .Letter p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .Letter p:first-of-type::first-letter {
    font-size: 3.2rem;
  }
  .Letter .closing {
    font-size: 1.15rem;
  }
  .Letter .signature {
    font-size: 1.7rem;
  }
  .Letter .signature::after {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .Letter {
    padding: 1.5rem 0.5rem;
  }
  .Letter .letter-content {
    padding: 2.5rem 2rem;
  }
  .Letter h1 {
    font-size: 1.75rem;
  }
  .Letter p {
    font-size: 1.1rem;
  }
  .Letter p:first-of-type::first-letter {
    font-size: 2.8rem;
  }
  .Letter .closing {
    font-size: 1.05rem;
  }
  .Letter .signature {
    font-size: 1.5rem;
  }
  .Letter .signature::after {
    width: 80px;
  }
}

.Letter .letter-content {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E"), linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 252, 250, 0.98) 20%, rgba(255, 250, 248, 0.97) 40%, rgba(255, 252, 250, 0.98) 60%, rgba(255, 255, 255, 0.95) 80%, rgba(255, 253, 251, 0.96) 100%);
}

.QA {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.QA h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
.QA p {
  font-size: 1rem;
}
.QA a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}
.QA a img {
  display: block;
  flex-shrink: 0;
}
.QA a span {
  display: inline-block;
}
.QA a:hover {
  background-color: #000;
  color: #fff;
}

.swing {
  animation: AnimateSwing 1s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite normal forwards;
}

@keyframes AnimateSwing {
  0%, 100% {
    transform: rotate(0deg) scale(1);
    transform-origin: 50% 50%;
  }
  10% {
    transform: rotate(8deg);
  }
  20%, 40%, 60% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg) scale(1.1);
  }
  30%, 70% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-8deg);
  }
  90% {
    transform: rotate(8deg);
  }
}
.animate-shake-bottom {
  animation: AnimateshakeBottom 1s ease 0s infinite normal forwards;
}

@keyframes AnimateshakeBottom {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
.animate-pulse {
  animation: AnimatePulse 1s ease 0s infinite normal forwards;
}

@keyframes AnimatePulse {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}
