/*
 * This controls theme colors
 * Bootstrap will generate classes like btn-color-1, btn-black, text-color-1, bg-color-1, etc.
 * The classes can then be used across the site without repeating code
 */
/*
 * Do a sitewide search (CTRL + SHIFT + F if you're using Sublime Text or whatever your coding GUI has for a search in all files)
 * to see where these variables are used in the SASS code. They're all Bootstrap variables that control certain aspects of elements
 */
/**
 * Bootstrap removes the margin-left/right over the sm breakpoint and if we set it customly afterwards, it breaks the centered modal since it's no longer margin: auto.
 * We also can't remove this one because the value is used in a min-height calculation and removing causes the modal to go haywire on mobile
 * So set it at 15px and then after the sm breakpoint when it gets set to auto, add extra padding as need on .modal-dialog
 *
 * LE: messing with custom margins / paddings and modal-dialog is too much fuss. Simply ignore
 */
.block-locations-form .block-inner {
  width: 100%;
  max-width: 670px;
}
.block-locations-form form {
  width: 100%;
  margin-bottom: clamp(1.5625rem, 0.9389671362vw + 1.3424295775rem, 2.1875rem);
}
.block-locations-form form .btn {
  flex: 1 0 auto;
  width: 100%;
  min-width: 0;
  max-width: 135px;
  padding: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.block-locations-form .field-btn-wrapper {
  padding: 5px 5px;
  border-radius: 10px;
  border: 1px solid var(--bs-color-1);
}
.block-locations-form input.form-control {
  padding: 9px 15px;
  border: 0;
  font-size: 16px;
}
.block-locations-form input.form-control::placeholder {
  color: var(--bs-color-1);
}
.block-locations-form .btn-view-list {
  text-decoration: underline;
}
.block-locations-form .btn-view-list:hover {
  text-decoration: none;
}

.modal-locations .modal-title {
  margin-bottom: 15px;
}
.modal-locations .btn-book {
  margin-bottom: 5px;
}
.modal-locations .locations {
  padding: 15px 15px;
  border-radius: 10px;
  border: 1px solid #D7D7D7;
  line-height: 1.4;
  font-size: 14px;
}
.modal-locations .locations .row .col {
  flex: 0 0 auto;
}
@media (min-width: 576px) {
  .modal-locations .locations .row .col {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.modal-locations .locations .col-set-1 {
  border-right: 1px solid #D7D7D7;
}
@media (min-width: 576px) {
  .modal-locations .locations .col-set-2 {
    padding-left: 16px;
  }
}
.modal-locations .locations .btn-area {
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--bs-color-1);
}
.modal-locations .locations ul {
  padding: 5px 15px;
}