.loader.loader-fixed {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1071;
  display: none;
  justify-content: center;
  align-items: center;
}
.loader .spinner-border {
  color: var(--bs-primary);
  height: 3rem;
  width: 3rem;
  font-size: 24px;
  animation-duration: 1s;
}

.loader-backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1070;
  background: black;
  opacity: 0.1;
  display: none;
}

body.loading .loader {
  display: flex;
}
body.loading .loader-backdrop {
  display: block;
}

#alerts {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 22em;
  max-width: calc(100% - 40px);
  z-index: 1063;
}
#alerts .toast {
  color: black;
  font-size: 14px;
  padding: 0.5rem 1rem;
  margin: 0 0 10px;
  /*box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 1;*/
}
#alerts .toast .toast-body {
  display: flex;
  align-items: center;
  padding: 0;
}
#alerts .toast i {
  font-size: 2rem;
  padding-right: 1rem;
}
#alerts .toast .btn-close {
  color: inherit !important;
}

.article-header {
  position: relative;
}
@media (min-width: 1200px) {
  .article-header {
    margin-top: 30px;
  }
}
.article-header .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: -1px 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.article-header .image-wrapper img {
  margin: 0;
}
.article-header .col-right {
  display: flex;
  align-items: center;
}
.article-header .col-right h1 {
  margin: 1rem 0 0.5rem;
}
@media (max-width: 1199px) {
  .article-header .dots-3 {
    display: none;
  }
}
@media (min-width: 1200px) {
  .article-header .image-wrapper-bg {
    position: relative;
    overflow: visible;
    margin: 0 70px 120px 0;
  }
  .article-header .image-wrapper-bg::before {
    position: absolute;
    content: "";
    height: 180px;
    width: 90%;
    background: var(--bs-primary);
    bottom: -50px;
    left: 0;
    z-index: -1;
  }
  .article-header .image-wrapper-bg .image-wrapper {
    left: 50px;
    top: 0;
    bottom: 0;
    margin: 40px 0 0 0;
    width: 96%;
  }
}

.calendar.calendar-primary .calendar-month {
  border: 1px solid var(--color-primary) !important;
}
.calendar.calendar-primary .calendar-header,
.calendar.calendar-primary .day-of-week {
  background: var(--color-primary) !important;
  color: white !important;
}
.calendar.calendar-primary .disabled {
  background: var(--bs-gray-200) !important;
  opacity: unset !important;
}
.calendar.calendar-primary .disabled .name {
  color: #aaa !important;
}
.calendar .bg-available {
  background: #BFFFBF;
}
.calendar .bg-unavailable {
  background: #FFBFBF;
  background: repeating-linear-gradient(-45deg, #FFBFBF, #FFBFBF 10px, #FF9F9F 10px, #FF9F9F 20px);
}
.calendar .bg-partially-available {
  background: #FFFCBF;
}
.calendar .month-name {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 10px 0 5px;
  display: flex;
  justify-content: center;
}
.calendar .month-name a {
  color: var(--bs-gray-500);
  margin: 0 1rem;
}
.calendar .month-name a.disabled {
  color: var(--bs-gray-200);
  cursor: not-allowed;
}
.calendar .calendar-month {
  border: 1px solid var(--bs-gray-500);
  width: 100%;
}
.calendar .calendar-month .calendar-row {
  display: flex;
}
.calendar .calendar-month .calendar-row .day {
  text-align: center;
  flex: 1;
  border: 1px solid white;
}
.calendar .calendar-month .calendar-row .day.day-of-week {
  background: var(--bs-gray-200);
  font-size: 0.75rem;
  padding: 0.25rem 0;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bs-gray-500);
}
.calendar .calendar-month .calendar-row .day .name {
  color: black;
  padding: 0 0.5rem;
  margin: 0 auto;
}
.calendar .calendar-month .calendar-row .day.gray {
  background: var(--bs-gray-200);
}
.calendar .calendar-month .calendar-row .day.disabled {
  cursor: not-allowed;
  background: var(--bs-gray-100);
  opacity: 0.2;
}
.calendar .calendar-month .calendar-row .day.active .name {
  background: var(--color-primary);
  color: white;
}
.calendar .calendar-legend {
  margin: 0.5rem 0 0;
}
.calendar .calendar-legend .legend-color {
  width: 20px;
  height: 20px;
}
.calendar .calendar-legend .legend-name {
  margin: 0 0.25rem;
  font-size: 0.8rem;
}

.caldis-widget-image {
  background: white;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  width: 200px;
  flex-grow: 1;
  margin: 10px;
  padding: 20px;
}
.caldis-widget-image .icon {
  margin: 0;
}
.caldis-widget-image .icon img {
  width: 40px !important;
}
.caldis-widget-image h6 {
  margin: 0;
  padding: 0;
}
.caldis-widget-image p {
  color: #9993BE;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

#galleryOrganizationPreview img {
  max-height: 150px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.caldis-gallery {
  z-index: 1050;
  position: fixed;
  inset: 20px 0 20px 0;
}
.caldis-gallery .gallery-backdrop {
  opacity: 0.6;
  content: " ";
  position: fixed;
  inset: 0 0 0 0;
  z-index: 1050;
  background-color: #000;
}
.caldis-gallery .gallery-inner {
  z-index: 1051;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  max-width: calc(100% - 40px);
}
.caldis-gallery .gallery-inner img {
  margin: 0 auto;
  max-width: 100%;
  max-height: calc(100vh - 40px);
}

.gallery-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100002147483651;
}
.gallery-close span {
  transform: translateY(-2px);
}

[data-show-gallery] {
  cursor: pointer;
}

#SearchWidgetWrapper {
  background-color: #FFFFFF;
  border-radius: 5px 5px 5px 5px;
  border-width: 3px;
  border-color: #FFFFFF;
  padding-top: 22px;
  padding-right: 32px;
  padding-bottom: 22px;
  padding-left: 32px;
  width: 100%;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
  position: relative;
}
#SearchWidgetWrapper label {
  color: var(--bs-secondary);
  font-weight: 500;
}

:root {
  --bs-primary: #CA2E23;
  --bs-primary-lighter: #da382c;
  --bs-primary-rgb: 202, 46, 35;
  --bs-secondary: #F3822F;
  --bs-secondary-lighter: #FF923F;
  --header-size: 79px;
  --caldis-divider-color: #E0E2ED;
}

html {
  overflow-x: visible !important;
}

input[readonly],
input[readonly]:focus {
  background: #e9ecef;
}

.form-floating > .form-control ~ label::after {
  background-color: transparent !important;
}

span.field-validation-error,
span.custom-field-validation-error {
  display: block;
  font-size: 10px;
  color: var(--bs-danger);
}

.form-group-filter > label {
  color: #909090;
  font-size: 0.75rem;
  display: block;
}
.form-group-filter .form-control {
  font-size: 0.8rem;
}

.c-h1 {
  font-size: 2.5rem;
}

.c-h2 {
  font-size: 2rem;
}

.c-h3 {
  font-size: 1.5rem;
}

.c-h4 {
  font-size: 1.25rem;
}

.c-h5 {
  font-size: 1.125rem;
}

.btn, .btn-lg {
  font-weight: 700;
  font-size: 18px;
}

.c-btn-primary {
  border: 1px solid var(--bs-primary);
  background: var(--bs-primary);
  color: #FFFFFF;
}
.c-btn-primary:hover {
  color: #FFFFFF;
  background-color: var(--bs-primary-lighter);
}

.c-btn-outline-primary {
  border: 1px solid var(--bs-primary);
  background-color: #FFFFFF;
  color: black;
}
.c-btn-outline-primary:hover {
  color: #FFFFFF;
  background-color: var(--bs-primary);
}

#caldis-calendars *,
#caldis-calendars *::before,
#caldis-calendars *::after,
.c-modal *,
.c-modal *::before,
.c-modal *::after {
  box-sizing: border-box;
}
#caldis-calendars .modal-body,
.c-modal .modal-body {
  max-height: calc(100vh - 120px);
}

.card-media {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-radius: 0.5rem;
  display: block;
  padding: 0 0 1rem;
}
.card-media:hover::after {
  background: rgba(220, 220, 220, 0.1);
}
.card-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px !important;
}
.card-media .unavailable {
  position: absolute;
  text-align: center;
  color: var(--bs-primary);
  font-weight: 600;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  padding: 5px 16px;
  background: rgba(0, 0, 0, 0.5);
}
.card-media .caldis-divider {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.card-media .caldis-divider .caldis-divider-separator {
  flex-grow: 1;
  border-block-start: 1px solid var(--caldis-divider-color);
}
.card-media .card-media-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 0;
}
.card-media .card-media-content .card-media-bottom h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  color: white;
  margin: 1rem 0 0;
  padding: 0;
  color: black;
}
.card-media .card-media-content .card-media-bottom .card-price {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  margin: 0;
  padding: 0;
  color: var(--bs-primary);
}

.caldis-img {
  border-radius: 10px;
}

.form-floating label {
  font-size: 14px;
  color: rgba(var(--bs-body-color-rgb), 0.65);
}
.form-floating .form-control {
  font-size: 14px;
  height: 50px;
  line-height: 2;
  color: black;
  width: 100%;
  border-width: 1px;
}

.modal {
  z-index: 100002147483650;
  color: black;
}
.modal .container {
  margin: 0 auto;
  width: 100%;
}
.modal .form-check-label {
  font-size: 14px;
}
.modal .modal-title {
  font-size: 1.5rem;
}
.modal h2 {
  line-height: 2;
  margin: 16px 0 4px;
}
.modal p,
.modal button {
  font-size: 14px;
}
.modal button {
  padding: 5px 10px;
}
.modal .modal-footer {
  justify-content: center;
}
.modal .caldis-modal-description h2,
.modal .caldis-modal-description h3,
.modal .caldis-modal-description h4 {
  font-size: 1.25rem;
}
.modal .caldis-modal-description p {
  font-size: 1rem;
}

#galleryPhotosPreview img {
  max-height: 200px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.btn-search {
  color: var(--bs-secondary);
  border: 3px solid var(--bs-secondary);
  background: white;
  font-size: 21px;
  font-weight: 600;
  padding: 8px 16px;
}
.btn-search:hover {
  color: white;
  background: var(--bs-secondary);
}

.vscomp-ele-parent-w100 .vscomp-ele {
  max-width: unset;
}

.vscomp-wrapper .x-icon.checked::after,
.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after {
  border-color: var(--bs-primary);
  border-left-color: rgba(0, 0, 0, 0);
  border-top-color: rgba(0, 0, 0, 0);
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

#caldis-calendars {
  border-radius: 15px;
  background: #F7F8FD;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 30px 30px 30px 30px;
}

a:not([class]) {
  color: var(--bs-primary);
}/*# sourceMappingURL=styles.css.map */