.calendar {
    --available-bg: #FFF;
    --available-color: #000;
    --unavailable-bg: #888;
    --unavailable-color: #CCC;
    --stay-bg: var(--bs-primary);
    --stay-color: #000;
}
[data-bs-theme=dark] .calendar {
    --available-bg: #000;
    --available-color: #EEE;
    --unavailable-bg: #333;
    --unavailable-color: #777;
    --stay-bg: var(--bs-primary);
    --stay-color: #FFF;
}
.calendar table {
    margin-bottom: 0;
    background-color: transparent;
    border-spacing: 0;
    width:100%;
}
.calendar tr {
    background-color: transparent;
}
@media only screen and (max-width: 767px) {
    .calendar table,
    #quickquote table {
        display: table;
    }

}
.calendar table th,
.calendar table td {
    padding: 0;
    border: 1px solid var(--bs-secondary);
    text-align: center;
    width: 14.2857%
}
.calendar tbody td {
    font-size: 0.8em;
    position: relative;
    padding-bottom: 14.2857%;
    overflow: hidden;
}
.calendar td.selected {
    opacity: 0.5;
}
.calendar td.arrival-only, .calendar td.departure-only, .calendar td.available {
    cursor: pointer;
}
.calendar td.unavailable {
    background-color: var(--unavailable-bg);
    color: var(--unavailable-color)
}
.calendar td.unavailable div, .calendar td.unavailable span {
    color: var(--unavailable-color);
    text-decoration: line-through;
}
.calendar td.available {
    background-color: var(--available-bg);
    color: var(--available-color);
}
.calendar td.arrive {
    background: linear-gradient(to right bottom, var(--available-bg) 50%, var(--stay-bg) 50%);

}
.calendar td.depart {
    background: linear-gradient(to right bottom, var(--stay-bg) 50%, var(--available-bg) 50%);
}
.calendar td.stay {
    background-color : var(--stay-bg);
}
.calendar td div, .calendar td span {
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    display: flex;
    
}
.calendar td.stay div, .calendar td.arrive div, .calendar td.depart div {
    color: var(--stay-color);
    font-weight: bolder;
}
.calendar td.arrival-only.arrive {
    background-image : linear-gradient(to right bottom, var(--unavailable-bg) 50%, var(--stay-bg) 50%) !important;
}
.calendar td.departure-only.depart {
    background-image : linear-gradient(to right bottom, var(--stay-bg) 50%, var(--unavailable-bg) 50%) !important;
}

.cabin-page .calendar tbody td.arrival-only {
    background-image : linear-gradient(to right bottom, var(--unavailable-bg) 50%, var(--available-bg) 50%);
    color: var(--available-color);
}
.cabin-page .calendar tbody td.departure-only {
    background-image : linear-gradient(to right bottom, var(--available-bg) 50%, var(--unavailable-bg) 50%);
    color: var(--available-color);
}

.calendar select {
    width: auto !important;
    display: inline-block;
    text-align-last: center;
}

.calendar .calPrice {
  display: none; /* Temporarily hiding this at Bear Camp's request. */
  font-size: 0.7em;
  pointer-events: none;
}

.calendar button {
    font-weight: bold;
    width: 38px;
    height: 38px;
    padding: 0;
}
#nextMonth {
    float: right;
}
#prevMonth {
    float: left;
}
#availability {
    color: #FFF;
    font-size: 1.5em;
}
.qqSavings {
    text-align: center;
}
#availability .qqSavings a {
    color:white;
    text-decoration:underline;
}

.qqresults {
    margin-top: 1rem;
    text-align: left;
}
.qqresults>p {
    margin: 0;
}
.qqresults input.success {
    font-weight: bold;
    width: 100%;
}
.qqresults h3 small {
    color: #1779ba;
}

.rateLegend div {
    display: inline-block;
    min-width: 110px;
}
.cabin-page .brbasl {
    color: #5d5d5d;
}
.gplus {
    padding-top: 2px;
}
.cabin-page .amenities li {
    float: left;
    width: 280px;
}
.cabin-page .cal {
    width: 100%;
    margin-top: 1em;
    color: black;
}
.cabin-page .cal th {
    line-height: 2.4em;
}
.cabin-page .cal thead th,
.cabin-page .cal thead td {
    text-align: center;
}
.cabin-page .cal tbody td {
    text-align: center;
    vertical-align: top;
    padding: 0;
    line-height: 3em;
    background-color: white;
}
.cabin-page .cal tbody td div {
    width: 100%;
    height: 100%;
}
.cabin-page .cal tbody td.arrive div {
    background: linear-gradient(to right bottom, rgba(255,255,255,0.0) 50%, rgba(255,255,255,0.7) 50%);
}
.cabin-page .cal tbody td.stay div {
    background-color: rgba(255,255,255,0.7);
}
.cabin-page .cal tbody td.depart div {
    background: linear-gradient(to right bottom, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.0) 50%);
}
.cabin-page .cal input {
    margin: 0;
    vertical-align: bottom;
}
.quickquoteloading {
    text-align: center;
}

#cabin-description {
    overflow-y: hidden;
}

.cabin-desc-more {
    box-shadow: #fff 0px 6px 6px -8px;
}

.room-type {
    padding: .3rem;
    margin-top: 1rem;
    width: auto;
    min-width: 14vw;
    min-height: 8vw;
    border: 1.5px solid #888;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(61,82,97,.2);
}

.room-type svg, .room-type svg path {
  fill: #dee2e6;
}

@media (max-width: 599px) {
  .room-type svg {
    width: 12vw;
    height: auto;
  }
}

@media (min-width: 600px) {
  .room-type svg {
    width: 8vw;
    height: auto;
  }
}

@media (min-width: 768px) {
  .room-type svg {
    width: 7vw;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .room-type svg {
    width: 2.5vw;
    height: auto;
  }
}

#comments-body {
    height:7em;
}
.cabin-page .home-featured h1 {
    background-color: #9eafbb;
    color: white;
    margin-bottom: 0;
    padding-top: 0.5em;
    text-shadow: 2px 2px 8px black;
}

#contact-form-block {
    background-image: url(/application/files/2114/8477/4974/CUSTOMER_REVIEWS.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 2em
}
.cabin-page .textured {
    padding: 1rem;
}
#map_canvas {
    width:100%;
    height: 30vw;
    min-height: 300px;
}
.alert {
    color: #cc4b37;
}
.text-white {
    color: white;
}
.pricing {
    color: #1ABC9C;
}
.sea-green {
    background-color: #17be9d;
}
.inline-gallery-container {
    width: 100%;
    height: 0;
    padding-bottom: 70%;
}
#goFullscreen {
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
    position: absolute;
    cursor: pointer;
    background-image: url(/application/blocks/single_cabin/maximize.png);
}
.fullscreen #goFullscreen {
    background-image: url(/application/blocks/single_cabin/minimize.png);
}
.cabin-page .galleria-theme-classic {
    background: transparent;
}
.cabin-page .galleria-theme-classic .galleria-stage {
    top: 0px;
    bottom: 90px;
    left: 0px;
    right: 0px;
}
.cabin-page th.chgmobtn {
    cursor: pointer;
}
.cabin-page th.chgmobtn i {
    color: black;
}
.cabin-page th i {
    color: grey;
}
#ajax-cal {
    text-align: center;
}
.reviews {
    padding-bottom: 30px;
}

#preqq {
    background: white;
    padding: 1rem;
}

.callout {
    border-width: 0;
}

.legend {
    float: right;
    position: relative;
    font-size: 14px;
    text-align: right;
    vertical-align: middle;
    line-height: 20px;
}
.legend span {
    display: inline-block;
    border-style: solid;
    border-radius: 50%;
    border-width: 1px;
    border-color: #41d05a;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    vertical-align: middle;
}
.legend .legendAvailable {
    background: none;
}
.legend .legendUnavailable {
    background: #848484;
    border-color: darkgrey;
}


#availability {
    text-align: center;
}
#availability table {
    line-height: 2;
}
#availability table td {
}
#availability thead{
    background: none !important;
}
#availability thead tr td {
    border-width: 0 !important;
    border-style: none !important;
    color: #d17200;
}
.datefields button {
    background-image: url(/packages/bearcamp/themes/bearcamp2024/images/icons/icon-calendar.png);
    background-position: center right 10px;
    background-repeat: no-repeat;
    padding-left: 10px;
    padding-right: 36px;
}
.datefields button img {
    height: 1.5em;
    vertical-align: top;
}

.tabs-title > a, .tabs-title > a:focus, .tabs-title > a[aria-selected="true"] {
    color: #d17200;
}
.tabs-title > a:hover {
    color: #c18338;
}


.photos img, .photos iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}
.photos .ratio:hover .btn {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}
#photos-tab img {
    object-fit: cover;
}
#photosModal img {
    cursor: pointer;
}
.bcpbenefits img {
    width: 35px;
    margin-right: 8px;
}

.bcpbenefits {
    font-weight: bold;
}
.cabin-page .photos .playBtn {
    position: absolute;
    top: 50%;
    bottom: auto;
    right: auto;
    left: 50%;
    width: 20%;
    height: auto;
    transform: translate(-50%, -50%);
}
