
:root {
    --header-height: 80px;
    --header-logo-height: 55px;
    --header-menu-slide-font-size: 1.8rem;

    --font-family-1: 'Nunito Sans', sans-serif;
    --font-family-2: 'Redig', sans-serif;
    --font-family-3: 'Redig-Oblique', sans-serif;

    --menu-main-font-size: 4rem;

    --header-isTop-background: #fff;
    --header-isSticky-background: #fff;
}


@media screen and (min-width: 961px) {

    :root {
        --header-height: 100px;
        --header-logo-height: 70px;
        --header-menu-slide-font-size: 2rem;
        --menu-main-font-size: 4rem;
    }


}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    webkit-scroll-behavior: smooth;
}
  
html:focus-within {    
    scroll-behavior: smooth;
    webkit-scroll-behavior: smooth;   
}

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

* {
    margin: 0px;
    padding: 0px;
}




body {
    margin: 0;
    line-height: 1.4705882353;
    letter-spacing: 0.04em;
    color: #000;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

h1 {
}




.container {
    padding-top: var(--header-height);
}







/* USER ADD FORM */

form#userAddForm input#verification_code {
    display: none;
}












/* LOADER */

.loader {
    position: fixed;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
}

.loaderWrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}












/* ---------- HEADER ---------- */

.header {
    display: none;
    border-bottom: 1px solid #eee;
}

.isTop .header {
    position: fixed;
    display: block;
    width: 100%;
    background-color: var(--header-isTop-background);
    z-index: 9;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.isSticky .header {
    position: fixed;
    display: block;
    width: 100%;
    background-color: var(--header-isSticky-background);
    z-index: 9;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}


.header_wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    background: var(--header-isTop-background);
}


.header img.logo  {
    height: var(--header-logo-height);
    width: auto;
}

.header_col2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header_col2 > div:first-child {
    margin-right: 1rem
}

.header-btn-reserver {
    display: none;
}

@media screen and (min-width: 961px) { 

    .header-btn-reserver {
        display: block;
    }

}









.popup-wrapper {
    display: none;
}

body[pp-statut="open"] .popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
}


.popup {
    min-height: 450px;
    width: 90%;
    max-width: 500px;
    min-width: 300px;
    background: #fff;
}

.popup-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.popup-content {
    padding-left: 1rem;
    padding-right: 1rem;
}

.popup-title {
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1rem;
    font-weight: bold;
}

a.popup-close {
    padding: 1rem;
    display: inline-flex;
    font-size: 2rem;
}



.btn {
     border: none;
     padding: 0;
     margin: 0;
     background: none;
     font: inherit;
     background-image: none;
     box-shadow: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     cursor: pointer;
     letter-spacing: normal;
     overflow: visible;
     -webkit-user-select: text;
     -moz-user-select: text;
     -ms-user-select: text;
     user-select: text;
     flex: none;
     min-width: auto;
     max-width: none;
    appearance: unset;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: .3rem 1.2rem;
    border-radius: .2rem;
}






















form#add-subscription-form div#subscriptions-active-list-to-add label {
    border: 1px solid #aaa;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    border-radius: .2rem;
    cursor: pointer;
}

form#add-subscription-form div#subscriptions-active-list-to-add  input[type="radio"] {
    display: none;
}

form#add-subscription-form div#subscriptions-active-list-to-add  input[type="radio"]:checked + label { 
    border: 1px solid #000;
} 