@font-face {
 font-family: "Alaska-UltExpMedContrast";
 src: url("../fonts/Alaska-UltExpMedContrast.woff2") format("woff2"),
        url("../fonts/Alaska-UltExpMedContrast.woff") format("woff");
}

@font-face {
 font-family: "Alaska-UltExpMedContrast";
 src: url("../fonts/Alaska-UltExpMedContrast.woff2") format("woff2"),
        url("../fonts/Alaska-UltExpMedContrast.woff") format("woff");
}

@font-face {
 font-family: "Alaska-Medium";
 src: url("../fonts/Alaska-Medium.woff2") format("woff2"),
        url("../fonts/Alaska-Medium.woff") format("woff");
}

@font-face {
 font-family: "Alaska-MediumItalic";
 src: url("../fonts/Alaska-MediumItalic.woff2") format("woff2"),
        url("../fonts/Alaska-MediumItalic.woff") format("woff");
}


@font-face {
 font-family: "Alaska-CondensedBold";
 src: url("../fonts/Alaska-CondensedBold.woff2") format("woff2"),
        url("../fonts/Alaska-CondensedBold.woff") format("woff");
}




:root {
  --color-black: #000;
  --color-red: black;
  --color-green: #00ff8b;
  --alaska-exp:  "Alaska-UltExpMedContrast", helvetica ,sans-serif ;
  --alaska-med:  "Alaska-Medium", helvetica ,sans-serif ;
  --alaska-med-italic:  "Alaska-MediumItalic", helvetica ,sans-serif ;
  --alaska-condensed: "Alaska-CondensedBold", helvetica ,sans-serif ;

}

/* For WebKit browsers (e.g., Safari) */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  /* Hide the scrollbar */
  ::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  /* Optional: Provide a fallback style for WebKit browsers */
  ::-webkit-scrollbar-thumb {
    background: none;
  }
}

/* For Firefox */
html {
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

/* Hide the scrollbar track */
html {
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

/* Hide the scrollbar thumb */
html::-webkit-scrollbar-thumb {
  display: none;
}

.main,
div,
section{
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

/* Hide the scrollbar track */
.main,
div,
section{
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

/* Hide the scrollbar thumb */
.main::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb,
section::-webkit-scrollbar-thumb,{
  display: none;
}

/* Optional: Provide a fallback style for WebKit browsers */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .main::-webkit-scrollbar,
  div::-webkit-scrollbar,
  section::-webkit-scrollbar,{
    width: 0;
    height: 0;
  }

  .main::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumbl,
  section::-webkit-scrollbar-thumb {
    background: none;
  }
}



*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  min-height: 0;
  min-width: 0;
  
}

html, body {
  font-size: 12px;
  height: 100%; 
  font-family: var(--alaska-med);
    -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  background-color: white;
  line-height: 1.2;
  color: black;
  font-weight: normal !important;
}

body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  font-weight: normal !important;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-weight: normal !important;
  font-size: inherit;
}

h1{
  font-size: 2em;
}

h2{
  font-size: 1.8em;
}

h3{
  font-size: 1.6em;
}

h4{
  font-size: 1.4em;
}

h5{
  font-size: 1.2em;
}

img {
  width: 100%;
}

li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition-duration: .5s;
}

a:hover{
  color: var(--color-green) !important;
  transition-duration: .3s;
}

main a:hover{
  transition-duration: .2s;
  color: var(--color-red);
}

main a{
  transition-duration: .5s;
}

table{
  width: 100%;
}

table tr{
  vertical-align: top;
}
    

.right{
  float: right;
}

.left{
  float: left;
}

.underline{
  text-decoration: underline;
}

.italic,
em{
  font-family: var(--alaska-med-italic);
}

.mob{
  display: none;
}

.desk{
  display: block;
}


/*----------------------------------------------- GRID */

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
}

.grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1%;
}

.col-1 {grid-column-end: span 1;}
.col-2 {grid-column-end: span 2;}
.col-3 {grid-column-end: span 3;}
.col-4 {grid-column-end: span 4;}
.col-5 {grid-column-end: span 5;}
.col-6 {grid-column-end: span 6;}
.col-7 {grid-column-end: span 7;}
.col-8 {grid-column-end: span 8;}
.col-9 {grid-column-end: span 9;}
.col-10 {grid-column-end: span 10;}
.col-11 {grid-column-end: span 11;}
.col-12 {grid-column-end: span 12;}

.off-1{grid-column-start: 2;}
.off-2{grid-column-start: 3;}
.off-3{grid-column-start: 4;}
.off-4{grid-column-start: 5;}
.off-5{grid-column-start: 6;}
.off-6{grid-column-start: 7;}
.off-7{grid-column-start: 8;}
.off-8{grid-column-start: 9;}
.off-9{grid-column-start: 10;}
.off-10{grid-column-start: 11;}
.off-11{grid-column-start: 12;}
.off-12{grid-column-start: 13;}



/*----------------------------------------------- MAIN */

.main{
  width: 94%;
  height: 92%;
  background-color: white;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid var(--color-green);
  overflow-y: scroll;
}

.nw,
.ne,
.sw,
.se{
  position: absolute;
  width: 50%;
  height: 50%;
  overflow-y: scroll;
}

.nw{
  border-bottom: 1px solid var(--color-green);
  border-right: 1px solid var(--color-green);
  top: 0;
  left: 0;
}

.ne{
  border-bottom: 1px solid var(--color-green);
  top: 0;
  right: 0;
}

.sw{
  border-right: 1px solid var(--color-green);
  bottom: 0;
  left: 0;
}

.se{
  bottom: 0;
  right: 0;
}

/*----------------------------------------------- BUTTON */

button{
  font-size: .9em;
  background-color: white;
  font-family: var(--alaska-condensed);
  text-transform: uppercase;
  color: var(--color-red);
  border: 1px solid var(--color-red);
  padding: 5px 10px 3px 10px;
  line-height: 1.5;
  border-radius: 20px;
  transition-duration: .5s;
  cursor: pointer;
}

button:hover{
  background-color: var(--color-red);
  color: white;
  transition-duration: .5s;
}


button a{
  color: var(--color-red);
}

.is-selected{
  color: white;
  background-color: var(--color-red);
}

.is-row{
    display: table-row;
}

.none{
  display: none;
}

/*----------------------------------------------- THUMBNAILS */

.film-cover{
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
}


/*----------------------------------------------- FILTERS */



#cantons-mob div,
#days-mob div,
.btn-filters {  
  cursor: pointer;
  text-align: left;
  outline: none;
  text-transform: uppercase;
  background-color: white;
  font-family: var(--alaska-condensed);
  text-transform: uppercase;
  color: var(--color-red);
  border: 1px solid var(--color-red);
  padding: 7px 12px 5px 12px;
  line-height: 1.5;
  border-radius: 20px;
  transition-duration: .5s;
  
}

.collapsible,
.collapsible-up{
  transition-duration: .5s;
}


.content-collapse,
.content-collapsed-up {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.content-collapse p{
  margin-bottom: 10px;
}


/*.filters{
  position: fixed;
  top: 0;
  margin-top: 1%;
  left: 50%;
  width: auto;
  z-index: 20;
  transform: translate(-50%,0);
}



.filters ul li.disabled {
  color: #888;
}

.filters div{
  transition-duration: .5s;
}

.filters div:hover{
  transition-duration: .3s;
}

.filters ul li{
  cursor: pointer;
}

*/


/*------------------------------------ NEWSLETTER */

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96{ 
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding: 10px;
} 

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-content {
  
} 

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 h4,
.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 span,
.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 label,
.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 input,
.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-submit,
.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-success p a{
  color: white;
}

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 h4{
 margin:0px 0px 5px 0px;
}

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 h4,
.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 label{
  font-weight:normal;
}

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-input {
     width:100%;
  }

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 label {
  display:block;
}

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 input{
  height:35px;
  color: white;
  border: 1px solid white;
  border:none;
  padding-left:7px;
}

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-input.inf-error label,
.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-input.inf-error span.inf-message{
  color: #cc0033;
}

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-input.inf-error input{
  border: 1px solid var(--color-green);
}

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-input input {
  width: 100%;
  border: 1px solid black;
  border-radius: 8px;
} 

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-input input::placeholder {
  color: black;
  opacity: 1; 
}


.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-input.inf-error span.inf-message {
  display: block;
   }

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-submit {
  text-align:left;
  width: 100%;
}

.inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-submit input{ 
  background-color: black;
  color: white;
  border: white;
  border: 1px solid white;
  border-radius: 8px;
  font-weight: normal;
  height:auto;
  cursor: pointer;
  padding:7px;
  margin-top: 5px;
  width: 100%;
}


  .inf-main_65a2e5f265ac3d8ee8e39ff5d2bb3f96 .inf-submit input.disabled{
    opacity: 0.4;
  }

  .inf-btn {
    color: var(--color-red);
    border: medium none;
    font-weight: normal;
    height: auto;
    padding: 7px;
    display: inline-block;
    background-color: white;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.24);
    border-radius: 2px;
    line-height: 1em;
     }

  .inf-rgpd {
    margin:25px 0px 15px 0px;
    color:var(--color-green);
  } 
