/* X-Small devices (portrait phones, less than 576px)*/
/* No media query for `xs` since this is the default in Bootstrap*/


html, body {
  height: 100%; 
  font-size:16px;
  display:flex; /*The following CS is important to make sticky footer regardless of page content height*/
  flex-direction:column;
  min-height:10%;
  margin:0;
  background-color: white;
  line-height:1.5rem;
}
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
}



/* FOOTER */
.footer {
  padding: var(--space-5) 0;
}

.image-placeholder {
  width: 100%;              /* match your image container width */
  height:  100%;	    /* match your image container height */
  background-color: #f0f0f0; /* light neutral background */
  display: flex;
  flex-direction: column;   /* stack icon and text vertically */
  align-items: center;
  justify-content: center;
  padding: 40px 0px;
  color: #666;              /* subtle text/icon color */
  font-size: 14px;
  border: 1px solid #ddd;   /* optional border for definition */
}

.image-placeholder i {
  font-size: 32px;          /* larger camera icon */
  margin-bottom: 8px;       /* spacing between icon and text */
}
.first {
  background-color:white;
  border-bottom:1px solid #dee2e6;
}
.second {
   margin-top:74.8px;/*Height of fixed nav*/
}
.fifth {
   flex:5; /*Important to make sticky footer regardless of page content height - section wll grox x5 rate of hearder/footer*/
}
#logo {
  width:250px

}
#index-header{
  position: absolute; 
  top:10%;
  left:0;
  right:0;
  z-index:10;
  font-weight:600;
  color:white;
  font-family: 'Inter', sans-serif !important;
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: .5px;
  line-height: 1.2;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: var(--space-5);
  padding:0 15px;
}
.index-stg-btn {
  position: absolute;
  bottom: 15%;              /* distance from bottom of map */
  left: 50%;                /* center horizontally */
  transform: translateX(-50%);
  z-index: 20;              /* above map, below navbar */
  padding: 0.75rem 1.5rem;  /* balanced button size */
  border-radius: 25px;
  font-weight: 600;
  white-space: nowrap;      /* prevents wrapping on small screens */
}


.text-header{
  font-size: 2rem;
}
#back-to-top {
  position: fixed;
  z-index:5;
  bottom: 110px;
  right: 25px;
  display: none;
  background-color:#ff9900;
  width:40px; 
  height:40px; 
  border:none;
  border-radius:20px;
  color:white;
  padding:5px;
}
#input-field {
  padding-left: var(--space-6);
}
#input-field.form-control {
  border: none;
  box-shadow: none;
}

input[type="text"], textarea {
  background-color: white; /*changes background color of input-field must do this way*/
}


#town-selectbox {
  position: relative;
  flex: 1;
  max-width: 350px;
 /* margin-right: 1rem;*/
  padding: var(--space-2) var(--space-3);
  margin: 0 auto;
  border: 1px solid #d0d7de;   /* subtle modern border */
  background-color: white;
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Inner input should be borderless */
#input-field.form-control {
  border: none;
  box-shadow: none;
  background-color: transparent;
}

.has-search {
  display: flex;
  align-items: center;
  position: relative;
}

.has-search .form-control {
  border-radius: var(--radius);
  padding-left: 2.5rem;
  border: 1px solid #ddd;
  height: 2.5rem;
  border-bottom: none;

}
.has-search .form-control-feedback {
  position: absolute;
  left: .75rem;
  color: #aaa;
  pointer-events: none;
}

#town_select_panel {
  list-style-type: none;
  width: 100%;
  display: none;
  position: absolute;          /* anchored to #town-selectbox */
  top: 100%;                   /* start right below the input */
  left: 0;
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable; /* modern browsers */
  clip-path: inset(0 round 0 0 12px 12px); /* forces scrollbar inside the radius */
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-color: white;
  box-shadow: 0 .5rem 1rem #dee2e6;
  box-sizing: border-box;
  margin-top: var(--space-1);
  padding-left: 40px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;            /* override navbar centering */
  z-index: 1000;               /* ensure it sits above other elements */
  font-size: 0.95rem;      /* slightly smaller than body, same as input feel */
  line-height: 1.4;        /* tighten vertical rhythm */
}
#town_select_panel li {
  margin: 0;
}
#town_select_panel li a {
  display: block;
  color: #212529;
  text-decoration: none;
  padding: 4px 0;        /* tighter to match input’s internal spacing */
  font-size: 0.95rem;    /* match panel font size */
  line-height: 1.4;      /* keep consistent */
  text-align: left;
}

#town_select_panel li a:hover {
  color: #337ab7;
  background-color: #f7f7f9;  /* subtle highlight, optional but very “finished” */
}
input:focus {
  outline:none;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #212529;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #212529;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: #212529;
}
#close-icon {
  display:none;
  position: absolute;
  z-index:1;
  right: .75rem;
  top: .5rem;
  background: transparent;
  border: none;
  color: #aaa;

}
/*Results page*/
.img-twn {
  position:relative;
  width: 100%;
  height: 100%; auto; /* Maintains the aspect ratio */
  object-fit: cover; /* Covers the entire container, removing whitespace */
  vertical-align: bottom; /* Aligns the image to the bottom of the container */
  border-radius:1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Container positioning */

/* Breadcrumb list */
ul.breadcrumb {
  padding: 12px 15px;
  margin: 0;
  list-style: none;
  font-weight: 600;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

/* Breadcrumb items */
ul.breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  color: #212529;
}

/* Separator */
ul.breadcrumb li + li::before {
  content: '\f105';
  font-family: 'FontAwesome';
  padding: 0 6px;
  color: #6c757d; /* softer than #212529 */
  font-size: .75rem;
  position: relative;
  top: 1px; /* adjust 1–2px depending on your font */
}

/* Links */
ul.breadcrumb li a {
  color: #212529;
  text-decoration: none;
}
ul.breadcrumb li a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

ul.breadcrumb li a:hover {
  border-bottom: 1px solid #212529;
}

.twn {
   position:relative;
   z-index:0;
   height: 55vh;
   overflow: hidden;
  animation: fadeIn .6s ease-out;
}
.img-overlay-top {
  position:absolute;
  top:0;
  left:0;
  z-index:2; 
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0));
  /* remove opacity: 0.7; */
  width:92%;
  margin: 0px 15px;
  padding: 0rem 1.5rem;
  border-radius: 1rem 1rem 0 0;
}

.img-overlay-bottom {
  position:absolute;
  bottom:20px;
  left:0;
  z-index:2; 
  width:100%;
  padding: 0px 15px;
  margin 0px 15px;
  margin:auto;
}
.txt-overlay-center {
  margin:auto;
  max-width:1140px;
}

.cs-container {
  position: relative;
  overflow-x: hidden;
  border: 1px solid #ccc;
}

.tbl-collapse {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  border: 1px solid #ddd;
}

.tbl-collapse .row {
  margin-left: 0;
  margin-right: 0;
 }

.tbl-collapse .col-12 {
  padding-left: 0;
  padding-right: 0;
 }
.table.table-fixed {
    table-layout: fixed;
    width: 100%;
}

td.table-col-5 {
  wodth:5%;
  padding-left: 0 !important;
}

.table-col-95 { width: 95%; }
.table-col-flex1 { width: 30%; padding-left:0rem; }
.table-col-flex2 { width: 70%; }
.table th {
  padding:.5rem 0rem;
}
.stage-header {
  letter-spacing: .5px;
  color: white;
  text-align:left;
  font-size:1.4rem;
  max-width:720px;
  margin:auto;
  margin-bottom:.5rem;
}
.stage-description {
  text-align:left;
  max-width:720px;
  margin:auto;
  font-size: 1.1rem;
  text-transform: none; /* keep natural case */
  letter-spacing: .3px;
  opacity: .9;
  /*font-family: Apercu Mono, Courier, monospace;8*/
  color:white;
}
.next-prev {
  position:absolute; 
  bottom:0; 
  z-index:2;
  padding:.375rem .75rem;
}
.prev, .next{
  text-align:center;
}
.next-prev-link {
  background-color: rgba(255,255,255,0.85);
color: #3a6ea5;
  font-size:.95rem;
  border-radius: 18px;
  padding: .35rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: background .2s ease;
  border: 1px solid rgba(0,0,0,0.1);

}
.next-prev-link:hover {
  background-color: white;
}
.attrib {
  position:absolute;
  bottom: 10px;
  right: 15px;
  opacity: .7;
  color:white;
  font-size:.9rem;
}
.responsive {
   display: block; /* Ensures the image is a block-level element */
}
#map-canvas-container,
#map-container {
  position: relative;
}
#map-canvas-container{
  height:65vh;
  border:none;
}
#map-container{
  display:none;
  height:80vh;
  width:100%;
  margin:25px 0px;
  border-radius: 1rem; /*calc(0.25rem - 1px);*/
}
#map-canvas { 
  display:none; 
  position: relative;
  z-index: 1;
  height:100%;
  width:100%;
  border-radius:1rem;
  margin:15px 0px;
}
#map-btn {
  position:relative;
  z-index-1;
  top: 50%;
  left:0;
  -ms-transform: translate(0);
  transform: translate(0);
  width:100%;
  padding:1rem 0rem;
  text-decoration:none;
  border:none;
}

/* Adjust the position of the close button */
#map-canvas div[role="dialog"] button[title="Close"] {
  right: -15px !important;
  top: -5px !important;
  height: 28px !important;
}

#map-canvas div[role="dialog"] button[title="Close"] span {
   width: 18px !important;
   height: 18px !important;
   margin:10px !important;
}
#close-map-btn {
  display: none; 
  position: absolute;
  left: 10px;
  top: 10px;
  width:40px;
  height:40px;
  z-index:5;
  font-weight:bold; 
  color:#595959;
  background-color:white;
  border:1px solid #dee2e6;
  border-radius:2px;
}
.map-img-wrapper {
  display:inline-block;
  width:50%;   
  border:none;
  border-radius:0rem;
  border-right:1px solid #dee2e6;
}
.img-map {
  display:none;
}
.btn:focus{
  box-shadow:none!important;
}

.map-filter-card {
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  box-shadow: 0 .5rem 1rem #dee2e6;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: white;
}


.btn-wrapper {
  margin-bottom:1rem;
  border-top:1px solid #dee2e6;
  border-bottom:1px solid #dee2e6;
}
.btn-filter{
  padding: .275rem .75rem;
  margin-bottom: .25rem;
  border-radius: 1rem;
}
.btn-disabled {
color:gray;
}
.h-filter{
  padding: .375rem .75rem;
}
.filter-wrapper{
  display:inline-block;
  width:45%;
}
.btn.disabled, .btn:disabled{
  color:gray;
  border:1px solid gray;
}
#filter-btn{
  display:inline-block;
  font-weight:500;
  width:100%;
  border:none;
  padding:1rem 0rem;
  text-decoration:none;
}
#filter-btn:hover, #map-btn:hover{
  border-bottom:2px solid #0645AD;
-webkit-appearance:none;
}
.filter-div {
  display: none; /* Hidden by default */
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}
.buttonload {
  height:75vh;
  width:100%;
  z-index:3;
  border: none; 
  color: #212529;
  font-size:20px;
  text-align: center; 
  padding-left:40%;
}
#spinner{
  height:95px;
  position:relative;
  z-index:2;
} 
#close-map-btn {
  display: none; 
  position: absolute;
  left: 10px;
  top: 10px;
  width:40px;
  height:40px;
  z-index:5;
  font-weight:bold; 
  color:#595959;
  background-color:white;
  border:1px solid #dee2e6;
  border-radius:2px;
}

.map-key-btn,
.map-legend {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 20;
}
/* --- Map Key Button --- */
.map-key-btn {
  background: white;
  color: #0645AD;
  border: 1px solid #d0d7de;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all .2s ease;
}

.map-key-btn:hover {
  background: #0645AD;
  color: white;
  border-color: #0645AD;
}
/* --- Legend Panel --- */
.map-legend {
  display: none;
  width: 220px;
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,0.15);
  font-size: 0.85rem;
  z-index: 30;
  border: 1px solid #eaeaea;
}
/* Legend header */
.legend-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Legend rows */
.legend-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}
.legend-row span {
  text-align: left !important;
}

.legend-row img {
  width: 20px;
  height: 20px;
}

#close-lgd-btn {
  background: none;
  border: none;
  color: #777;
  font-size: 1rem;
  padding: 0;
  cursor: pointer;
}

#close-lgd-btn:hover {
  color: #0645AD;
}
.route-icon {
  font-size: 12px;
  color: black;
}


.tr-dist{
  background-color:white;//stages page responsive table ensure white distance row when col 1 sticky
}

/*
#booking-btn{
  width:80%;
  font-weight:700;
  font-size:1.1rem;
  background-color:#0645AD;
  color:white;
  border-radius:1.5rem;
}
#booking-btn:hover{
  text-decoration:underline;
}
*/
.btn-outline-primary:hover {
  color:#0645AD;
  background-color:inherit;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
  color:#0645AD;
  background-color: inherit;
}
.reorder{
  order:13;
  flex-direction: column;
}
a.disabled {
  pointer-events:none; /* to prevent empty FaceBook links triggering pageload again*/
  cursor: default;
}
.bi-star-fill{
  color:#FFD700;
}
i.fa-ban,i.fa-paw {
  text-align:left;
}
.row-border{
   border-bottom: 1px solid #dee2e6;
}
.container-index {
  max-width:none;
}
/* Stages */
.cs-container{
  border:1px solid #dee2e6;
  border-radius: 1rem;
  box-shadow:0 .5rem 1rem #dee2e6; 
  margin-bottom:1.25rem;
}
.table-header{
  font-size: 1.5rem;
  padding-top:10px;
}
h3 {
  font-size: 1.25rem;
}
.property-category-overlay, .stg-overlay{
  position:absolute;
  top:0; 
  z-index:2;
  background-color:purple; 
  color:white;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding:.275rem .5rem;
}

#reservation-div {
  display:inline-block;
  border:1px solid green;
  border-radius:5px;
  margin:20px 0px;
}
.reservation-collapse {
  background-color:#e8f4f8;
  border-radius:5px;
  height:100px;
}
.alt-res-txt{
font-size:80%;
}
.hidden {
  display:none!important;
}
/* Style the Image Used to Trigger the Modal */
.tbl-img {
  height:145px;
  width:100%;
  border-top-left-radius:15px;
  cursor: pointer;
  transition: 0.3s;
}
.tbl-img:hover {
  opacity: 0.7;
}
/* The Modal (background) */
.modal {
   display: none; /* Hidden by default */
   position: fixed; /* Stay in place */
   z-index: 2080; /* Sit on top, high z-index important as not to see fa icons when table open (need min 1080), this setting blcoks nav also */
   padding: 60px 0px; /* Location of the box */
   left: 0;
   top: 0;
   width: 100%; /* Full width */
   height: 100%; /* Full height */
   overflow: auto; /* Enable scroll if needed */
   background-color: white; /* Fallback color */
}
/* Modal Content (Image) */
.modal-content {
   margin: auto;
   display: block;
   width: 75%;
   height:50%;
   max-width: 500px;
   object-fit:cover;
}
/* Caption of Modal Image (Image Text) - Same Width as the Image */
.caption { 
   margin: auto;
   display: block;
   width: 80%;
   max-width: 650px;
   text-align: center;
   color: black;
   padding: 10px 0;
}
/* Add Animation - Zoom in the Modal */
.modal-content, .caption {
   animation-name: zoom;
   animation-duration: 0.6s;
}
@keyframes zoom {
   from {transform:scale(0)}
   to {transform:scale(1)}
}
/* The Modal Close Button */
.close {
   position: absolute;
   top: 10px;
   right: 20px;
   color: black;
   font-size: 40px;
   font-weight: bold;
   transition: 0.3s;
}
.close:hover, .close:focus {
   color: #bbb;
   text-decoration: none;
   cursor: pointer;
}
.modal-footer-text {
  display:none;
}
.tooltip {
  position: relative;
  display: inline-block;
  opacity:1;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: white;
  color: black;
  text-align: center;
  border:1px solid black;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}
.table th.col-1:first-child,.table td:first-child {
  text-align:left;
}
.table {
  margin-bottom:0;
}
.table th.col-1 {text-align:center; padding:.5rem;}
.table td {text-align:left;padding:.5rem;}
.table td.tbl-col-check {text-align:center;}
.table {
  background-color:white;/* Important to prevent delayed color change when table collapses*/
}
.table thead th {
  border-top: none;
}
/*Town column in stages container*/
.col-1 {
  width:7%;
}
/*Distance row in stages container*/
.tr-dist{
  background-color:#f6f8fa;
}
.td-last-dist{
  text-align:left;
}
.tick{
  padding:0px;
  font-family: Arial;/*IMP to overide Bootstrap alteration of HTML check mark to green with black border*/
  color:green;
}

/* Toggle text logic */
.btn-more b { display: inline }
.btn-more:not(.collapsed) span { display: none }
.btn-more.collapsed b { display: none }

/* Base button styling */
.btn-more {
    position: relative;
    background-color: #f7f7f9;
    border: 1px solid rgba(0,0,0,0.15); /* soft grey */
    color: #4a5a7a;  /* muted blue-grey */
    padding: 2px 6px;
margin-bottom:15px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    transition: all .2s ease;
    overflow: visible !important;
}
.btn-more span,
.btn-more b {
    font-weight: normal;
}
/* Hover */
.btn-more:hover {
    background-color: rgba(0,0,0,0.18);
    cursor: pointer;
}
.btn.rotate-angle {
    overflow: visible;
}
/* Arrow icon */
.btn.rotate-angle:after,
.btn.rotate-angle.collapsed:after {
    font-family: 'FontAwesome';
    display: inline-block;
    transition: transform .2s ease;
}

.btn.rotate-angle:after {
    content: '\f106'; /* up */
    font-family: 'FontAwesome';
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
}

.btn.rotate-angle.collapsed:after {
    content: '\f107'; /* down */
}
.btn-block{
  line-height:1;
}
.table.tbl-attrib td, .table.tbl-attrib th{
  text-align:left;
}
button:disabled{
  background-color: white;
  pointer-events:none; /*disabled hover*/
}
/*Stages page read more button*/
#read-more-btn, #dots{
  display:inline-block;
}
#read-more-btn {
  margin-bottom: 1rem;
}
#more {
  display:none;
}
#search-container { 
  padding:10px 15px;
}
.search-wrap {
  padding: 30px 15px;
  max-height:40vh;
}
.img-camino-boot {
  background-image:url('../images/camino-frances-pilgrim-shell.jpg');
  background-size: cover; /*make the image fit the div*/
}
.img-camino-stages-banner {
  background-image:url('../images/pilgrim-hiking-md.jpg');
}
.img-camino-accommodation-banner {
  background-image:url('../images/camino-frances-albergue-sm.jpg');
}
#read-more-btn, #dots{
  display:inline-block;
}
.text-muted {
  display:none;
}
/* NAV BAR — clean + minimal */
.navbar {
  background: var(--nav-bg);
  padding: var(--space-4) 0;
  box-shadow: var(--nav-shadow);
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
/*  gap: .35rem;*/
}

.navbar-nav .nav-link {
  padding: .5rem 1rem;
  border-radius: var(--radius);
  color: var(--brand-blue);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  background-color: rgba(0,0,0,0.05);
}

.navbar-light .navbar-toggler {
  border: none;
}
.active {
  border-bottom:none; /*IMP to remove border from ive nav*/
}
#collapsibleNavbar{
  text-align:center;
  margin-top:15px;
}
#map-btn { 
  position:relative;
  z-index-1;
  top: 50%;
  left:0;
  -ms-transform: translate(0);
  transform: translate(0);
  width:100%;
  padding:1rem 0rem;
  text-decoration:none;
  border-radius:0;
}
.tbl-header {
  display:block;
  font-size:1.5rem; 
  font-weight:600;
}
.header-3{ 
  font-size:1.25rem;
  margin:1rem 0rem;
}
.reservation-text {
  position:absolute;
  top:20px;
  left:25px;
  font-weight:bold;
}
.contact-info {
  font-size: 12px;
  padding-top: 0%;
}
.panel-index{
  padding: var(--space-5);
}
.panel-index i {
  margin-bottom: var(--space-3);
}

.panel-index h2 {
  margin-bottom: var(--space-2);
}
.display-2{
  font-size: 1.4rem;
  font-weight:600;
}
#geared-icon { 
  width:23px; 
  height:23px;
  border-radius:20px;  
  vertical-align:top;
  margin: 0px 5px 0px 0px;
}
.geared-wrapper {
  display:inline-block; 
  padding-top:10px;
}
.viewMap {
  font-weight:500;
}
a.viewMap:link {
  text-decoration: none; 
  color: #3366ff;
}
a.viewMap:hover {
  text-decoration:underline;
}

.small-text {
  margin-bottom:10px;
}
a.property-link:link {
  color: #333; !important;
}
a.property-link:visited {
  color: #333;  !important;
}
a.property-link:hover {
  text-decoration:none !important;
}
.results-tbl{
  border:1px solid #dee2e6;
  border-radius:1rem;
  background-color:white;
  box-shadow:0 .5rem 1rem #dee2e6; 
  margin-bottom:1.25rem;
  padding: 0.75rem 1.25rem;
}
.tbl-label, .value {
  display:block;
  padding: .5rem 0rem;
}
.tbl-label {
  font-weight:bold;
}
ul li {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.bk-btnB {
    background-color: white;
    border: 1px solid #003580;
    border-left: 15px solid #003580;
    color: #003580;
    display: inline-block;
    transition: all .2s ease;
    margin-top:15px;
}
.bk-btnB:hover {
    background-color: rgba(0, 53, 128, 0.08); /* subtle tint */
    border-left-width: 17px;                 /* slight emphasis */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
}
.bk-btnE {
    background-color: white;
    border: 1px solid #00355F;
    border-left: 15px solid #F7C948;
    color: #00355F;
    display: inline-block;
    transition: all .2s ease;
    margin-top:15px;
}
.bk-btnE:hover {
    background-color: rgba(247, 201, 72, 0.12); /* yellow tint */
    border-left-width: 17px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
}

#id-filter{
  margin-bottom:1rem;
  padding:.5rem 0rem;
}
.row-border{
   border-bottom: 1px solid #dee2e6;
}
.light-blue {
  background-color:#f6f8fa; 
}

#booking-btn{
  width:80%;
}
.contact-info {
  font-size: 12px;
  padding-top: 0%;
}
.fa-fw{
  margin-right: 10px;
  color:#595959;
}
.fa{
  font-size:16px;
}
.fa-location-dot {
  width: 1.28571429em;
  text-align: center;
}

.fa-stack{
  width: 1.5em!important;
}
.fa-stack-x2 {
  text-align:left!important;
}
.fa.sm {
  vertical-align:.0em !important 
}
i.fa-ban{
  font-size: 1.45em;
  font-weight:550;
  margin-left:-3px;
  -webkit-text-stroke: 1px white;
}
i.fa-paw{
  margin-top: -5px;
}
i.fa-angle-right {
  font-size:inherit;
  color:inherit;
}
i.fa-arrow-left, i.fa-arrow-right { 
  color:#ffcc00;
}
i.fa-arrow-up-right-from-square {
  color: #003580;
  font-size: x-small;
}
i.fa-arrow-left {
  margin-right:5px;
  margin-bottom: 5px;
  font-size:20px;
}
i.fa-arrow-right {
  margin-left:5px;
  margin-bottom: 5px;
  font-size:20px;
}
i.fa-phone, i.fa-globe, i.fa-envelope {
  color:#595959;
}
i.fa-facebook {
  color:#3b5998;  
  border-radius: 4px;
}
i.fa-facebook-square:hover{
  opacity:0.7;
}

i.fa-times { 
  background-color:white;
  padding:0px;
  max-width:40px;
}
i.fa-times:hover {
  color:black;
}
.bunk-icon {
  width:16px; 
  height:16px;
  vertical-align:-2px;
}
#amenities-bunk-icon {
  width:20px; 
  height:20px;
}
i.fa-bed { 
  -webkit-text-stroke: 1px white; 
}
/*i.fa-smile { }*/

#brand-bed-icon{
  font-size: 20px;
  background-color:#0645AD;
  color:#ffcc00;
  border-radius:25px;
  padding:5px;
  margin:0; 
  -webkit-text-stroke: 0px; 
}
#stage-bed-icon{
  font-size:18px;
  color:#212529;
}
i.fa-spinner {
  font-size:30px;
  padding:10px;
  color:#212529;
}
i.fa-arrow-right:hover, i.fa-arrow-left:hover{
  opacity:1;
}
i.fa-refresh{
  color:#212529;
  font-weight:bold;
  font-size:inherit;
}
.fa-refresh:hover{
  color:black;
}
i.fa-ban,i.fa-paw {
  text-align:left;
}
.fa-arrow-down {
  color:#ffcc00;
  margin-right:.75rem;
}
/* Footer*/
.footer{
  background-color:#595959;
  flex:1; /*Important to make sticky footer regardless of page content height*/
  padding: var(--space-5) 0;
}
#panel-footer{
  padding:15px;
  color:white;
  background-color:#595959;
  font-size:0.9rem;
}
.footer-link{
  color:white;
}
a.footer-link:hover {
  color:white;
}
#index-icon{
  font-size: 1.8rem;
  font-weight:600;
  -webkit-text-stroke: 1px white; 
}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px){
#town-selectbox {
  width: calc(220px + 7.5vw);
  margin-bottom:0rem;
}
.next {
  text-align:right;
  display:inline-block;
}
.prev {
  text-align:left;
  display:inline-block;
}
}
@media (min-width: 768px) {

ul.breadcrumb, .next, .prev{
   /* max-width: 720px;*/
    margin: 0 auto;
    padding: 35px 0px 15px 0px;
  }
.li{
break-inside: avoid;
}

.bk-btnB. .nk-btnE {
    margin-top:0px;
}
.btn-more {
    position: absolute;
    bottom: 5px;
    right: 5px;
    margin: revert; /* restore browser default */
}
#reservation-div{
  margin:0px;
}
.stage-header {
  font-size:1.9rem;
}
.img-overlay-top {
  width:100%;
  margin: 0px;
}
.img-overlay-bottom {
  max-width:720px;
  bottom:30px;
  font-size:1rem;
}
.next {
  float: right;
  display:inline-block;
  text-align:right;
}
.prev {
  float: left;
  display:inline-block;
  text-align:left;
}

#index-header {
  top:18%;
  font-size: 2.6rem;
  margin-bottom: var(--space-5);
}
.display-2{
  font-size: 1.8rem;
  padding-top:15px;
}

#collapsibleNavbar{
  margin-top:0px;
}

.btn-wrapper {
  border:none;
  margin-bottom:0;
}
.map-img-wrapper {
  width:100%;   
  border:none;
}
.img-map{
  display:block;
  position:relative;
  height:auto;
  width:100%;
  border-radius:1rem;
  border-right:1px solid #dee2e6;
}
.map-text{
  font-weight:600;
  padding-bottom: .75rem;
}
#map-btn {
  position: absolute;
  top: 65%;
  left: 50%;
  z-index:10;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  background-color:white; 
  font-weight:500;
  width:auto;
  border: 1px solid #007bff;
  border-radius:1rem;
  padding:.375rem .75rem;
}

#filter-btn{
  width:50%;
}
ul.breadcrumb li {
    font-size: .95rem;
  }

ul.breadcrumb li + li::before {
    font-size: .85rem;
  }

#read-more-btn, #dots {
  display:none;
}
#more {
  display:block;
}

.breadcrumb {
  max-width:720px;
  margin:auto!important;
}
.vertical-bar{
  display:inline-block;
  padding:0px 5px;
}
.row-border{
border-bottom: none;
}
.contact-info {
  font-size: 14px;
  padding:5px;
}


.reorder{
  flex-grow: 1;
  order:unset;
  flex-direction: row;
  align-items:center;
}

/* Style the Image Used to Trigger the Modal */
.tbl-img {
  height:145px;
  width:100%;
  border-bottom-left-radius: 15px;
}
.modal-content {
   height:50%;
}
.twn {
  height: 65vh;
}
.reservation-text {
  top:0px;
  left:-10px;
}
.card-columns {
        -webkit-column-count: 2;
        -moz-column-count: ;
        column-count: 1;
}

.tbl-collapse {
  margin-left: -6.5rem!important;
  width:115%;
}
#map-container{
  margin:40px 0px 20px 0px;
}
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

.stage-header {
    font-size: 2.3rem;
    letter-spacing: .5px; /* adds polish */
}
.img-overlay-top {
  padding: 1.5rem;
}
.tbl-collapse {
  margin-left: -9rem!important;
      width: 115%;
      max-width: none;

      padding-left: 0;
      padding-right: 0;
    }
.tbl-label {
  display:none;
}
.map-img-wrapper {
  position: relative;
  display:inline-block;
  box-sizing:border-box;
  overflow:hidden;
  border-radius: calc(0.25rem - 1px);
}
.geared-wrapper {  
  margin-top:-2px;
}
.txt-overlay-center {
  max-width:960px;
}
.stage-header, .stage-description, .breadcrumb, .img-overlay-bottom {
  max-width:960px;
}
.next{
width:400px;
}
.prev {
width:400px;
}
.card-columns {
        -webkit-column-count: 2;
        -moz-column-count: ;
        column-count: 3;
}

}
/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 

.tbl-collapse {
  margin-left: -10.5rem!important;
  margin: 20px 0px;
  padding:10px;
}
.stage-header, .stage-description, .breadcrumb, .img-overlay-bottom {
  max-width:1140px;
}
 }