/* Pretty section */

.page-section.gold {
    background-color: rgba(199, 154, 118, 0.2) !important;
}

.page-section.gold .title {
    color: rgb(199, 154, 118) !important;
}

.page-section .title, .page-section .text {
     padding: .25em .25em;
     font-size:inherit;
}
.page-section .title, .page-section .subtitle{
    padding-left: 4vw;
    padding-right: 4vw;
}

.page-section .title > i, .page-section .subtitle > i{
    margin-right:.5em;
    /* vertical-align: middle; */
}

.page-section .title {
   line-height: 1.4em;
   margin-top:1.5em;
   font-size: 1.6em;
}

.page-section .subtitle {
    font-size: 0.9em;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #3d3d3d;
    margin-bottom: 1em;
}

.page-section .text {
    margin: 0 1.5em;
    margin-bottom: 1.5em;
   display: flex;
   flex-direction: column;
   height: 100%;
}

// Small devices (landscape phones, 576px and up)
@media (max-width: 576px) {
    .page-section .title {
	    margin-top:.8em;
	    font-size: 1.4em;
    }
    .page-section .text{  
	   margin: .75em 0;
    }
    .page-section .subtitle {
         margin-bottom:1em;
    }
}

.page-section .text .text-content{
flex-basis: auto;
flex-grow: 1;
}

.page-section .text .text-footer{
display: block;
margin: 1em 1.5em 1em 1.5em;
line-height: 1.1em;
font-size: .8em;
flex-shrink: 1;
}

.page-section .page-section {
    background-color: #FBFAF9;
    /*box-shadow: 2px 4px 12px rgba(0,0,0,.13); */
   box-shadow: inset 2px 2px 8px rgba(0,0,0,.07);
}

.page-section .page-section .title {
   color: #c69a75;
}

.page-section .page-section .page-section {
    background-color: #FFF;
    box-shadow: 2px 4px 12px rgba(0,0,0,.08);
}

.page-section .page-section .page-section .title {
    color: #3d3d3d;
}

.page-section[data-img-position="fullsection"] .title,
.page-section[data-img-position="fullsection"] .text
{
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.3);
}

.page-section[data-img-position="fullsection"] .title,
.page-section[data-img-position="fullsection"] .text
{
  color: white;
}

.page-section[data-img-position="fullsection"] .whitebutton{
    font-family: 'Segoe UI',SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 18px;
    color: #333;
    height: 50px;
    font-weight: normal;
    border: 1px solid;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    background-color: rgba(255, 255, 255, .9);
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    transition: all 300ms;
}

.page-section>[class^="col-"] {
    height: initial !important;
    align-self: stretch !important;
}

.page-section .badge-img {
    max-width: 100%;
	object-fit: cover;
    /*height:0;*/
}

@media (max-width: 768px) {
	.page-section .badge-img {
    	max-width: 100%;
    	max-height: auto;
    	object-fit: cover;
	}
}

/* end pretty section */
/* seasons accordion */
*:has(> .season-accordion){ 
	margin: 0 -3.5rem; 
}

.season-accordion *:has(> .badge-img){ 
	max-height:initial; display:flex; 
}

@media (max-width: 576px) {
	*:has(> .season-accordion) {
		margin: 0 -1.875rem;
	}

	.season-accordion *:has(> .badge-img) {
		max-height: 20vh;
		display: none;
	}
}

.season-accordion {
    /* border-radius: 10px; */
    border-top: solid 1px #e5e5e5;
    border-bottom: solid 1px #e5e5e5;
    background-color: rgba(255,255,255,0.6);
    overflow: hidden;
}


.season-book-header,
.season-header {
    padding: .8em 2em;
    border-bottom: solid 1px #e5e5e5;
    cursor: pointer; 
    position:relative;
}

.season-book-header:last-child,
.season-header:last-child {
    border-bottom: 0 !important;
}

.season-header.selected{
   background-color: rgb(244, 243, 241);
}

.season-header.current{
    color: #c69a75;
}

.season-header::after {
    content: '';
    border: solid black;
    border-width: 0 1px 1px 0;
    padding: 6px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transition: all 300ms;
    position: absolute;
    right: 2em;
    top: calc(50% - 6px);
}

.season-header:hover::after,
.season-header.selected::after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.season-book-header .season-title,
.season-header .season-title {
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    font-variant-caps: all-petite-caps;
}

.season-book-header .season-period,
.season-header .season-period {
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 1.2em;
    line-height: 1.2em;
    color: #888;
}

.season-content {
    display: none;
    padding: 1em;
    /* background-color: #FFF; */
    border-bottom: solid 1px #e5e5e5;
}

.season-header.selected+.season-content {
    /* display: block;  */
}

.pretty-panel.cropped-img .badge-img{
   max-height:40vh;
}

.season-book-header {
    padding: 1.5em 2em;
    background-size: cover;
    position:relative;
    overflow:hidden;
    display: flex;
    flex-direction: column;
    align-items: end;
    border-bottom: solid 3px #fff;
    cursor: default;
}

.season-book-header .season-title{
    align-self: flex-start;
    margin-bottom: 2em;
    position:relative;
    z-index: 2;
    font-size:1.7em;
}

.season-book-header.selected .season-title{
    color : #c69a75;
}

.season-accordion div.book-btn,
.season-book-header div.book-btn {
    display:inline-block;
    font-weight: 400;
    text-decoration: none;
    margin: 1vw;
    position: relative;
    z-index: 2;
    background-color: rgba(198, 154, 117,.9);
    color: #FFF;
    border-radius: 2em;
    padding: .35em .75em;
    letter-spacing: -.022em;
    transition: all 300ms;
    cursor:pointer;
   font-size: .9em;
}

.season-accordion div.book-btn > a,
.season-book-header div.book-btn > a{
    position :absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}

.season-accordion div.book-btn:hover,
.season-book-header > div > div.book-btn:hover{
   background-color: rgb(148, 104, 87);
}

.season-accordion div.book-btn > i,
.season-book-header > div > div.book-btn > i{
   margin-right:.5em;
   color: rgba(255,255,255,.6);
}

.season-book-header .season-book-bg-header{
    position:absolute;
    right:0;
    left:0;
    bottom:0; 
}

.season-book-header .season-book-bg-header > img{
    width:100%;
    filter: contrast(126%) grayscale(5%) opacity(15%) brightness(129%);
     -webkit-filter: contrast(126%) grayscale(5%) opacity(15%) brightness(129%);
    transition: all .3s;
     -webkit-transition: all .3s;
     transform: translateZ(0)
}

.season-book-header .season-title:has(+ span > div:hover) {
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,1);
}

.season-book-header .season-book-bg-header:has(+ * + span > div:hover) > img {
    filter: contrast(100%) grayscale(0%) opacity(100%) brightness(100%);
     -webkit-filter: contrast(100%) grayscale(0%) opacity(100%) brightness(100%);
    transform: translateZ(0);
}

.season-book-header .season-book-bg-header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: color;
    background: rgba(240, 236, 233, .5);
    opacity: 1;
    z-index: 1;
 }

.season-book-header.selected .season-book-bg-header::after {
    background: rgba(240, 236, 233, .5);
}

.season-book-header > div > .season-book-bg-header:has(+ :hover){
  background:none;
}

/* end seasons accordions*/

/* Rate table */

.rate-table {
    padding: .7em 0;
}

.rate-table table {
    width: initial;
   min-width: 100%;
}

.rate-table tr:first-child th {
    border-width: 0 !important;
    padding-bottom: 0px;
    color: rgb(101, 100, 99);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5em;
}

.rate-table tr:first-child th:nth-child(2) {
    border-radius: 10px 10px 0 0;
}

.rate-table tr:nth-child(2) th {
    border-width: 0 !important;
    font-size: .9em;
    text-transform: uppercase;
    letter-spacing: .025em;
    font-weight: 600;
    padding: .5em 0 0 0;
    color: #c69a75;
}

.rate-table tr:nth-child(3) th {
    font-weight: 400;
    font-size: 0.9em;
    padding-top: 0;
    vertical-align: middle;
    color: #444;
    line-height: 1em;
    font-variant: all-petite-caps;
}

.rate-table tr th {
    border-width: 0 0 3px 0;
    text-align: center;
}

.rate-table td {
    border-width: 0 0 1px 0;
    vertical-align: middle;
}

.rate-table th.colored,
.rate-table td.colored {
    background-color: #FBFAF9;
    /*box-shadow: inset 2px 2px 8px rgba(0,0,0,.07);*/
}

.rate-table tr td:first-child strong {
    color: #c69a75;
}

.rate-table tr:last-child td {
    border-width: 0;
}

/*End rate table */

.boat-time-container {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #f3f3f3;
    padding: .5em;
}

.boat-time-container:last-child {
    border: 0;
}

.boat-time-container>.section {
    width: 100%;
    text-transform: uppercase;
    font-size: 0.8em;
    color: #888;
    letter-spacing: .05em;
    line-height: .8em;
    padding-bottom: .5em;
}

.boat-time-container>div {
    display: flex;
}

.boat-time-container>div>div, .schedule-not-available {
    border: solid 0px #c69a75;
    padding: 0.25em 0.5em;
    border-radius: 0;
    color: #000;
    /*background-color: #c69a75;*/
    width: 4em;
    font-size: .9em;
    /* height: 1.5em; */
    display: block;
    text-align: center;
    line-height: 1em;
    /* margin-left: 1em; */
    margin: 0.2em .3em;
    font-weight: 600;
}

.boat-time-container>div:nth-child(2n)>div{
    background-color: rgb(244, 243, 241)
}

.boat-time-container>div>div>span {}

.schedule-not-available{
    padding: 0.25em 1em;
    display: inline-block;
    text-align: center;
    margin: 2em .3em;
    width: auto !important;
}

/* route buttons container */

.route-button-container {
   display: flex;
   flex-direction: row;
   background: #c69a75;
   border: solid 1px #e5e5e5;
   border-radius: 10px;
   overflow: hidden;
   color: white;
   flex-wrap: revert;
   width: fit-content;
   margin: 0 auto;
}

.route-button-container .route-button {
   display: flex;
   flex-direction: row;
   border-right: solid 1px rgba(0,0,0,.25);
   transition: all .3s;
   cursor: pointer;
   color: white;
   flex-basis: auto;
   padding: 0.25em 1em;  
   line-height: 1.6em;
}

@media (max-width: 576px) {   
    .route-button-container .route-button {
	    padding: 0.7em 1em;
    }   
}

.route-button-container .route-button:last-child{
    border:0;
}

.route-button-container .route-button:hover{
    background: rgba(0,0,0,.3);
}

.route-button-container .route-button .route-button-icon {
    font-size: 1.15em;    
    flex: 1 1 auto;
    color: rgba(255,255,255,0.5);
    place-content: end;
    display: flex;
    align-self: center;
}

.route-button-container .route-button .route-button-text {
    flex: 1 1 auto;
    text-align: left;
    font-weight:600;
    padding-left: 1vw;
}

/* end route buttons container */

.separator {
    border-top: 1px solid #f3f3f3;
    width: 4em;
}

.d-xs-none{
   display:initial;
}

@media (max-width: 576px) {
    .d-xs-none{
        display:none;
    }
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.justify-content-stretch {
    -ms-flex-pack: stretch !important;
    justify-content: stretch !important
}

.bouton2 {
border-radius: 5px;
transition: all 300ms;
cursor: pointer;
border-width: 2px;
padding: 0.25em 1em;
height: auto;
}

.bouton2:hover{
    border-radius:5px;
    background: #c69a75;
}

.bouton2:hover,
.bouton2:hover > i {
    color: white;
}

.bouton2 > i {
    color: rgba(199, 154, 118, 0.7);
}