/* TOC
   - - - - - - - - -
	 1. Wrapper
	 2. Filters
	 3.	Grid Breakpoints & Column Counts
	 4.	Inline mobile display
   - - - - - - - - -
 */
/* 1. Wrapper
---------------------------------------------------------------------- */
.PageLinks {
  margin-top: 1rem;
}

figure.PageLinks {
  display: block;
  margin-top: 0.7rem;
}

.InvertText figure.pageBlock {
  border-color: transparent;
}
.InvertText figure.pageBlock h4, .InvertText figure.pageBlock p {
  color: #2e3b3a;
}

.Grid_Image_Wrap {
  position: relative;
}

figure.pageBlock {
  overflow: hidden;
  padding: 1rem;
  background-color: white;
  border: solid 1px #dfdcdc;
  text-align: left;
  transition: all 0.07s linear;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  min-height: 130px;
}
figure.pageBlock .holder-bullets {
  display: none;
}
@media (min-width: 640px) {
  figure.pageBlock {
    height: auto;
  }
  figure.pageBlock .holder-bullets {
    display: block;
  }
}
figure.pageBlock h4 {
  margin-top: 1rem !important;
  min-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
figure.pageBlock .sub {
  margin-top: 0;
}
@media (min-width: 640px) {
  figure.pageBlock .sub {
    margin-top: 0.75rem;
  }
}
figure.pageBlock img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 640px) {
  figure.pageBlock figcaption {
    min-height: 84px;
    margin-bottom: 0.75rem !important;
  }
}
figure.pageBlock .vst-btn {
  width: 100%;
  display: block;
  margin-top: 0.7rem;
}
figure.pageBlock:hover {
  border: solid 1px rgb(147.7885714286, 171.4114285714, 169.5942857143);
}

.slick-slide .sub {
  margin-top: 10px !important;
}

/* 2. Filters
---------------------------------------------------------------------- */
form.select_style {
  text-align: center;
}
form.select_style fieldset {
  width: 265px;
  display: inline-block;
  margin: 0.13rem 0 0.13rem 0;
  text-align: center;
}
@media (max-width: 639px) {
  form.select_style fieldset {
    width: 100%;
  }
}
form.select_style fieldset select {
  margin: 0px;
}

.TourSearchPanel {
  padding: clamp(1.75rem, 3.5vw, 2rem) clamp(1.5rem, 3.5vw, 2rem);
  background: #ffa125;
  margin-bottom: 0.25rem;
}
@media (min-width: 960px) {
  .TourSearchPanel {
    margin-top: 10px;
  }
}
.TourSearchPanel h2 {
  color: white !important;
}
.TourSearchPanel select {
  border: none !important;
}

.TourSearchPanel-form {
  text-align: left !important;
}

.TourSearchPanel-fields {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 639px) {
  .TourSearchPanel-fields {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}
.TourSearchPanel-fields h2 {
  color: #1e2a42;
}
.TourSearchPanel-fields button {
  margin: 0;
}

.TourSearchPanel-field {
  flex: 1;
  min-width: 0;
  margin: 0 !important;
  width: auto !important;
}
.TourSearchPanel-field .FilterSelect {
  width: 100%;
  min-height: 48px;
  padding-right: 2.5rem;
  border: 1px solid #dfdcdc;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232e3b3a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  border-radius: 6px;
  transition: border-color 0.07s linear;
}
.TourSearchPanel-field .FilterSelect:focus {
  border-color: #1f92d1;
  outline: none;
}

.TourSearchPanel-submit {
  flex-shrink: 0;
}
.TourSearchPanel-submit .vst-btn {
  white-space: nowrap;
  min-height: 48px;
}
@media (max-width: 639px) {
  .TourSearchPanel-submit .vst-btn {
    width: 100%;
  }
}

.TourSearchResults h1 {
  color: #2e3b3a;
}
.TourSearchResults .TourSearchPanel-eyebrow,
.TourSearchResults .TourSearchResults-intro,
.TourSearchResults .TourSearchResults-summary,
.TourSearchResults .TourSearchResults-empty,
.TourSearchResults label {
  color: #2e3b3a;
}
.TourSearchResults .TourSearchResults-intro,
.TourSearchResults .TourSearchResults-summary,
.TourSearchResults .TourSearchResults-empty {
  max-width: 62rem;
}
.TourSearchResults .TourSearchPanel-form .FilterSelect {
  border-color: #dfdcdc;
  background: white;
}

.PageLinks_Filters {
  margin-top: 2rem;
  padding: 0px;
  list-style: none;
  font-weight: 400;
}
.PageLinks_Filters li {
  display: inline;
  margin-left: 0.32rem;
  margin-right: 0.32rem;
}
.PageLinks_Filters li:hover {
  cursor: pointer;
  color: #2e3b3a;
}
.PageLinks_Filters li.mixitup-control-active {
  color: #2e3b3a;
}
.PageLinks_Filters.PageLinks_Align-left {
  text-align: left;
}
.PageLinks_Filters.PageLinks_Align-left li:first-child {
  margin-left: 0;
}
.PageLinks_Filters.PageLinks_Align-right {
  text-align: right;
}
.PageLinks_Filters.PageLinks_Align-right li:last-child {
  margin-right: 0;
}
.PageLinks_Filters.PageLinks_Align-centered {
  text-align: center;
}

.column-counter {
  font-size: 1px;
}

/* 3. Grid Breakpoints & Column Counts
---------------------------------------------------------------------- */
@media (max-width: 639px) {
  .mix {
    margin-bottom: 0.5rem;
  }
  .XS-1 .mix, .XS-1 .gap {
    width: 100%;
  }
  .XS-2 .mix, .XS-2 .gap {
    width: calc(50% - 1 * 0.5rem / 2);
  }
  .XS-3 .mix, .XS-3 .gap {
    width: calc(33.3333333333% - 2 * 0.5rem / 3);
  }
  .XS-4 .mix, .XS-4 .gap {
    width: calc(25% - 3 * 0.5rem / 4);
  }
  .XS-5 .mix, .XS-5 .gap {
    width: calc(20% - 4 * 0.5rem / 5);
  }
  .XS-6 .mix, .XS-6 .gap {
    width: calc(16.6666666667% - 5 * 0.5rem / 6);
  }
}
@media (min-width: 640px) {
  .mix {
    margin-bottom: 0.85rem;
  }
  .SM-1 .mix, .SM-1 .gap {
    width: 100%;
  }
  .SM-2 .mix, .SM-2 .gap {
    width: calc(50% - 1 * 0.85rem / 2);
  }
  .SM-3 .mix, .SM-3 .gap {
    width: calc(33.3333333333% - 2 * 0.85rem / 3);
  }
  .SM-4 .mix, .SM-4 .gap {
    width: calc(25% - 3 * 0.85rem / 4);
  }
  .SM-5 .mix, .SM-5 .gap {
    width: calc(20% - 4 * 0.85rem / 5);
  }
  .SM-6 .mix, .SM-6 .gap {
    width: calc(16.6666666667% - 5 * 0.85rem / 6);
  }
}
@media (min-width: 960px) {
  .mix {
    margin-bottom: 0.85rem;
  }
  .MD-1 .mix, .MD-1 .gap {
    width: 100%;
  }
  .MD-2 .mix, .MD-2 .gap {
    width: calc(50% - 1 * 0.85rem / 2);
  }
  .MD-3 .mix, .MD-3 .gap {
    width: calc(33.3333333333% - 2 * 0.85rem / 3);
  }
  .MD-4 .mix, .MD-4 .gap {
    width: calc(25% - 3 * 0.85rem / 4);
  }
  .MD-5 .mix, .MD-5 .gap {
    width: calc(20% - 4 * 0.85rem / 5);
  }
  .MD-6 .mix, .MD-6 .gap {
    width: calc(16.6666666667% - 5 * 0.85rem / 6);
  }
}
@media (min-width: 1200px) {
  .mix {
    margin-bottom: 0.95rem;
  }
  .ST-1 .mix, .ST-1 .gap {
    width: 100%;
  }
  .ST-2 .mix, .ST-2 .gap {
    width: calc(50% - 1 * 0.95rem / 2);
  }
  .ST-3 .mix, .ST-3 .gap {
    width: calc(33.3333333333% - 2 * 0.95rem / 3);
  }
  .ST-4 .mix, .ST-4 .gap {
    width: calc(25% - 3 * 0.95rem / 4);
  }
  .ST-5 .mix, .ST-5 .gap {
    width: calc(20% - 4 * 0.95rem / 5);
  }
  .ST-6 .mix, .ST-6 .gap {
    width: calc(16.6666666667% - 5 * 0.95rem / 6);
  }
}
@media (min-width: 1600px) {
  .mix {
    margin-bottom: 0.95rem;
  }
  .LG-1 .mix, .LG-1 .gap {
    width: 100%;
  }
  .LG-2 .mix, .LG-2 .gap {
    width: calc(50% - 1 * 0.95rem / 2);
  }
  .LG-3 .mix, .LG-3 .gap {
    width: calc(33.3333333333% - 2 * 0.95rem / 3);
  }
  .LG-4 .mix, .LG-4 .gap {
    width: calc(25% - 3 * 0.95rem / 4);
  }
  .LG-5 .mix, .LG-5 .gap {
    width: calc(20% - 4 * 0.95rem / 5);
  }
  .LG-6 .mix, .LG-6 .gap {
    width: calc(16.6666666667% - 5 * 0.95rem / 6);
  }
}
.SubjectIcons {
  margin: 0;
  padding: 0 8px 1px 2px;
  background: rgb(30, 42, 66);
  background: linear-gradient(180deg, rgba(30, 42, 66, 0.4962356525) 0%, rgba(30, 42, 66, 0.7595409746) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.SubjectIcons li {
  list-style: none;
  display: inline-block;
  margin: 0px;
  font-size: 11px;
  width: 16px;
}
.SubjectIcons li i {
  color: white;
  padding: 0.32rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.HideSubjectIcons .SubjectIcons {
  display: none;
}

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -40px;
  padding: 7px;
  width: 80px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: rgba(30, 42, 66, 0.97);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 0.88em;
  line-height: 1.45em;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid rgba(30, 42, 66, 0.97);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

/* 4.	Inline mobile display
---------------------------------------------------------------------- */
@media (max-width: 639px) {
  .inline-mobile .gap {
    display: none;
  }
  .inline-mobile figure {
    background-color: white;
    display: flex;
    padding: 0px;
  }
  .inline-mobile figure figcaption {
    max-height: 80px;
    padding: 1rem !important;
    overflow-y: visible;
  }
  .inline-mobile figure h4 {
    margin-top: 0px !important;
    margin-bottom: 0.13rem;
    white-space: pre-wrap;
  }
  .inline-mobile figure .Grid_Image_Wrap {
    width: 100px;
    height: 100%;
    position: relative;
  }
  .inline-mobile figure .Grid_Image_Wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-border-radius: 4px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-radius: 4px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    border-radius: 4px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .inline-mobile figure .vst-btn {
    display: none;
  }
}
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
}

.live_search #searchinput {
  width: 240px;
  padding: 0.6rem 0.6rem 0.6rem 0.6rem;
  float: right;
  position: relative;
  z-index: 9;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
@media (max-width: 639px) {
  .live_search #searchinput {
    width: 100%;
    margin-top: 0.7rem;
  }
}
.live_search input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
}
.live_search input {
  border: 1px solid #dfdcdc;
}

.mob_link, .mob_link:hover, .mob_link:active, .mob_link:focus {
  color: #2e3b3a;
}
@media (min-width: 640px) {
  .mob_link, .mob_link:hover, .mob_link:active, .mob_link:focus {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
