.etatOuvertureTopbar {
    display: flex;
    padding-top: 5px;
    height: 35px;
    flex-direction: row;
    --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );
    --container-widget-height: 100%;
    --container-widget-flex-grow: 1;
    --container-widget-align-self: stretch;
    --flex-wrap-mobile: wrap;
    justify-content: center;
    align-items: center;
    --background-transition: 0.3s;
    font-family: "Montserrat", roboto;
    color: #EEE;
}

.etatOuvertureTopbarBoutique{
    display: flex;
    flex-direction: row;
    height: 70px;
    --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );
    --container-widget-height: 100%;
    --container-widget-flex-grow: 1;
    --container-widget-align-self: stretch;
    --flex-wrap-mobile: wrap;
    justify-content: center;
    align-items: center;
    --background-transition: 0.3s;
    font-family: "Montserrat", roboto;
    color: #EEE;
    font-size: 1.8rem;
}

.etatOuvertureExtraData {
    padding-top: 2px;
    padding-bottom: 5px;
    height: 35px;
    justify-content: center;
    align-items: center;
    text-align: center;
    --background-transition: 0.3s;
    font-family: "Montserrat", roboto;
    font-size: 0.8em;
    color: #EEE;
}

.etatOuvertureTopbar h6 {
    color: #EEE !important;
    padding-left: 10px;
    margin: 0px;
}

.etatOuvertureTopbarBoutique h6 {
    color: #EEE !important;
    padding-left: 10px;
    margin: 0px;
}

.etatIcon {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
    color: #EEE !important;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.3em;
}

.calendar {
    display: flex;
    flex-flow: column;
}
.calendar .header .month-year {
    font-size: 20px;
    font-weight: bold;
    color: #636e73;
    padding: 20px 0;
}
.calendar .days {
    display: flex;
    flex-flow: wrap;
    border-radius: 10px 10px 0px 0px;
}
.calendar .days .day_name {
    width: calc(100% / 7);
    border-right: 1px solid #0A0C22;
    padding: 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #818589;
    color: #fff;
    background-color: #181D4E;
    white-space: nowrap;
    text-align: center;
}
.calendar .days .day_name:nth-child(7) {
    border: none;
}
.calendar .days .day_num {
    display: flex;
    flex-flow: column;
    width: calc(100% / 7);
    border-right: 1px solid #e6e9ea;
    border-bottom: 1px solid #e6e9ea;
    padding: 0px;
    font-weight: bold;
    color: #7c878d;
    cursor: pointer;
    min-height: 100px;
}
.calendar .days .day_num span {
    display: inline-flex;
    width: 100%;
    padding: 5px;
    font-size: 14px;
}
.calendar .days .day_num .event {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    padding: 3px 6px;
    border-radius: 4px;
    background-color: #f7c30d;
    color: #fff;
    word-wrap: break-word;
}
.calendar .days .day_num .event.green {
    background-color: #51ce57;
}
.calendar .days .day_num .event.blue {
    background-color: #518fce;
}
.calendar .days .day_num .event.red {
    background-color: #ce5151;
}
.calendar .days .day_num:nth-child(7n+1) {
    border-left: 1px solid #e6e9ea;
}
.calendar .days .day_num:hover {
    background-color: #fdfdfd;
}
.calendar .days .day_num.ignore {
    background-color: #fdfdfd;
    color: #ced2d4;
    cursor: inherit;
}
.calendar .days .day_num.selected {
    background-color: #f1f2f3;
    cursor: inherit;
}

.calendar .month-header {
    font-size: 1.4em;
}

.calendar .eventday {
    color: #FFF;
    border-radius: 50%;
    width: 36px !important;
    height: 36px !important;
    padding: 10px;
    border: 0px solid #666;
    line-height: 19px;
    text-align: center;
    display: inline-block !important;
    white-space: nowrap;
}

.calendar .openday.notcurrent {
    opacity: 0.4;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 111111111; /* Sit on top */
    padding-top: 10%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */

}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 0px solid #888;
    max-width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 10px;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white !important;
    border-radius: 10px 10px 0px 0px;
}

.modal-header h4 {
    color: white !important;
}

.modal-body {
    padding: 2px 16px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
    border-radius: 0px 0px 10px 10px;
}

.modal-content-line {
    padding: 5px
}

.openday{
    width: 100%;
    height: auto;
    margin: 0px;
    color: #FFF;
}

.modal-event-time {
    flex: 1;
    text-align: left;
    padding: 5px;
}

.modal-event-description {
    flex: 2;
    text-align: left;
    padding: 5px;
}

.modal-event-link {
    flex: 1;
    text-align: left;
    padding: 5px;
}

.modal-event-line {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #ccc;
}

.tablePistes {
    width: 100%;
}

.zoom-image .narep-image img {
    height: 180px !important;
    object-position: center center;
    width: 100% !important;
    object-fit: cover !important;
}

.narep-customer-rating i {
    display: none;
}


/* Compas pour l'affichage de la direction du vent*/

@import url(https://fonts.googleapis.com/css?family=Dosis:200,400,500,600);
.compass {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, .85);
  position: relative;
  font-family: 'Dosis';
  color: #134566;;
  text-shadow: 1px 1px 1px white;
  &:before {
    font-weight: bold;
    position: absolute;
    text-align: center;
    width: 100%;
    content: "N";
    font-size: 14px;
    top: -2px;
  }
  .direction {
    height: 100%;
    width: 100%;
    display: block;
    background: #f2f6f5;
    background: -moz-linear-gradient(top, #f2f6f5 0%, #cbd5d6 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f6f5), color-stop(100%, #cbd5d6));
    background: -webkit-linear-gradient(top, #f2f6f5 0%, #cbd5d6 100%);
    background: -o-linear-gradient(top, #f2f6f5 0%, #cbd5d6 100%);
    border-radius: 100%;
    p {
      text-align: center;
      margin: 0;
      padding: 0;
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 100%;
      line-height: 80px;
      display: block;
      margin-top: -45px;
      font-size: 28px;
      font-weight: bold;
      span {
        display: block;
        line-height: normal;
        margin-top: -24px;
        font-size: 11px;
        /*text-transform: uppercase;*/
        font-weight: normal;
      }
    }
  }
  .arrow {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    &:after {
      content: "";
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 10px solid red;
      position: absolute;
      top: -6px;
      left: 50%;
      margin-left: -5px;
      z-index: 99;
    }
    &.nne { transform: rotate(22.5deg); }
    &.ne { transform: rotate(45deg); }
    &.ene { transform: rotate(67.5deg); }
    &.e { transform: rotate(90deg); }
    &.ese { transform: rotate(112.5deg); }
    &.se { transform: rotate(135deg); }
    &.sse { transform: rotate(157.5deg); }
    &.s { transform: rotate(180deg); }
    &.sso { transform: rotate(202.5deg); }
    &.so { transform: rotate(-135deg); }
    &.oso { transform: rotate(-114.5deg); }
    &.o { transform: rotate(-90deg); }
    &.ono { transform: rotate(-69.5deg); }
    &.no { transform: rotate(-45deg); }
    &.nno { transform: rotate(-24.5deg);}
  }
}

.pmsm_menu_item_title {
    color: var(--theme-color-text_dark);
    font-family: "Roboto", roboto;
    display: block;
    margin-top: 3px;
    margin-bottom: 5px;
}

.pmsm_menu_row {
    display: flex;
    flex-wrap: wrap;
}

.pmsm_menu_col {
    padding: 15px;
    width: 100%;
}

.pmsm_menu_vege {
    font-size: 1rem;
    color: #5cb85c;
}

.pmsm_resto_card {
    box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
    background-color: #fff;
    overflow: hidden;
    margin: 15px;
}

.pmsm_resto_date {
    border-bottom: 1px solid #eaeaea;
    padding: 10px;
}

.pmsm_resto_items {
    
}

.pmsm_resto_item {
    border-bottom: 1px solid #eaeaea;
    padding: 10px;
}

@media (max-width: 1279px) {
    .pmsm_resto_main {
        display: grid;
        align-items: stretch;
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 767px) {
    .pmsm_resto_main {
        display: grid;
        align-items: stretch;
        grid-template-columns: repeat(1,1fr);
    }
}

@media (min-width: 1280px) {
    .pmsm_resto_main {
        display: grid;
        align-items: stretch;
        grid-template-columns: repeat(4,1fr);
    }
}