@charset "utf-8";

html, body {
    width: 100%;
    height: 100%;
    font-family: Quicksand;
    font-weight: 400;
    color: rgb(68, 68, 68) !important;
    -webkit-font-smoothing: antialiased;
    padding: 0px;
    margin: 0px;
    line-height: 100% !important;
}

body {
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

p, a, div, span, button, nav, input, select, option, textarea, h1, h2, h3, h4, h5, h6 {
    line-height: 100%;
}

a, a:visited {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

body > main {
    float: left;
    width: calc(100% - 20px);
    min-height: calc(100% - 20px);
    padding: 10px;
    background: #ccc;
}

.main-bg {
    background: url(../img/background/bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

body > main > header {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 20px);
    height: 100px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px 0;
    margin: 55px 0 10px;
    font-size: 50px;
    font-weight: bold;
}

body > main > header img {
    max-width: 100%;
    max-height: 100%;
}

:focus {
    outline-offset: 0px !important;
    outline: none !important;
}

nav {
    z-index: 9999;
}

body > header {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    will-change: transform;
    position: fixed;
    width: 100%;
    top: 0px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    color: #fff;
    z-index: 1000;
}

body > header a {
    height: 100%;
}

body > header a:hover {
    background: rgba(255, 255, 255, 0.2);
}

body > header img {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    margin: 0;
    padding: 10px;
}

/** NAVIGATION **/

.center-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: 100%;
}

.side-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 100%;
    padding: 0 10px;
    z-index: 9999;
}

.back {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 55px;
    height: 55px;
    background: #80bc00;
    left: 0;
    font-size: 60px;
}

.back img {
    max-width: 90%;
    max-height: 90%;
}

/** END NAVIGATION **/

/** HOME **/

.circle-home {
    float: left;
    position: absolute;
    width: 100%;
    height: 30%;
    background: #80bc00;
    top: 0;
    left: 0;
    border-radius: 0 0 100% 100%;
    z-index: 1;
}

.logo-home {
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 60%;
    z-index: 2;
}

.logo-home > img {
    height: 50px;
}

.slider-home {
    float: left;
    position: relative;
    width: calc(100% + 20px);
    height: 50vh;
    z-index: 2;
    margin: 20px 0 10px 0;
    /*border-radius: 20px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .1);*/
    left: -10px;
}

.slides {
    width: 100%;
    height: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

  /*.slides::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  .slides::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 10px;
  }
  .slides::-webkit-scrollbar-track {
    background: transparent;
  }*/

.slides > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100% - 40px);
    height: 100%;
    scroll-snap-align: center;
    flex-shrink: 0;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.slides > div:first-child, .slides > div:last-child {
    width: 10px;
}

.slides > div + div {
    margin: 0 0 0 10px;
}

.slides > div > img {
    max-width: 80%;
    max-height: 80%;
}

/*.slides > div > img {
    float: left;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
}*/

.notice {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100% - 60px);
    min-height: 100px;
    margin: 10px;
    padding: 20px;
    background: rgba(164, 236, 31, 0.9);
    text-align: center;
    line-height: 100%;
    border-radius: 20px 0 20px 0;
}

.notice h1 {
    font-size: 50px;
}

.notice p {
    font-size: 18px;
}

.material {
    position: relative;
    float: left;
    margin: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
}

.material-content {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.material-content img {
    max-width: 70%;
    max-height: 70%;
    transition: all 0.1s;
    opacity: .8;
}

.material:active > .material-content img {
    max-width: 80%;
    max-height: 80%;
}

@media (min-width: 0px) {
    .home-0 {
        width: calc(100% - 20px);
        padding-top: calc(50% - 20px);
    }
    .home-1, .home-2, .home-3, .home-4 {
        width: calc(50% - 20px);
        padding-top: calc(50% - 20px);
    }
}

@media (min-width: 800px) {
    .home-0 {
        width: calc(100% - 20px);
        padding-top: calc(50% - 20px);
    }
    .home-1, .home-2, .home-3, .home-4 {
        width: calc(25% - 20px);
        padding-top: calc(25% - 20px);
    }
}

/** END HOME **/

/** SECTIONS **/

.welcome-h1 {
    border: 5px solid rgb(68, 68, 68);
    text-align: center;
    padding: 20px;
    margin: 0px 0 20px;
    font-size: 60px;
}

.welcome-h2 {
    font-size: 40px;
    text-align: center;
}

.welcome-h3 {
    font-size: 30px;
}

.welcome-separator {
    width: 100%;
    height: 15px;
    background: #82bc00;
    margin-bottom: 20px;
}

.welcome-page {
    width: calc(100% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    margin-top: 55px;
}

.survey-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 55px;
}

.survey-page h1 {
    text-align: center;
    margin-bottom: 20px;
}

.survey-page h4 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 100;
}

.survey-page > form {
    max-width: 600px;
    width: 100%;
}

.survey-page > form > table {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border-spacing: 20px;
}

.survey-page > form > fieldset {
    /*align-items: center;
    justify-content: center;
    flex-direction: row;*/
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 1);
}

.survey-page > form > fieldset > legend {
    text-align: center;
}

.survey-page > form > fieldset box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.survey-page > form > fieldset label {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.survey-page > form > fieldset label > input[type="radio"] { display: none; }

.survey-page > form > fieldset label > img {
    width: 40px;
    height: auto;
    cursor: pointer;
    border: 5px solid transparent;
    border-radius: 10px;
    margin-bottom: 5px;
}

.survey-page > form > fieldset label > p {
    margin: 0;
    padding: 0;
}

.survey-page > form > fieldset label > input:checked + img {
    background: #fff;
    border-radius: 10px;
}

.survey-page > form > fieldset label > input:checked + img + p {
    font-weight: bold;
}

.survey-page > form > table tr td:first-child { text-align: right; }

.survey-page > form > table input {
    padding: 5px;
    border-radius: 5px;
    /*border: 1px solid rgba(0, 0, 0, .5);*/
}

boxSurvey {
    float: left;
    width: calc(100% - 20px);
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin-bottom: 50px;
    overflow: hidden;
}

boxSurvey header {
    float: left;
    width: 100%;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: bold;
}

boxSurvey > background {
    float: left;
    width: calc(100% - 0px);
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
    border-radius: 20px 0 20px 0;
}

boxSurvey table + header {
    margin-top: 20px;
}

boxSurvey > table {
    float: left;
    width: calc(100% - 0px);
    border-radius: 20px;
}

boxSurvey > table p {
    margin: 0;
    padding: 0;
    text-align: center;
}

boxSurvey > table input[type="date"], boxSurvey > table input[type="number"] {
    position: relative;
    float: left;
    width: calc(100% - 0px);
    height: 50px;
    font-size: 18px;
    text-align: center;
    font-family: Quicksand;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
}

boxSurvey > table p + input[type="date"] { margin-top: 10px; }

boxSurvey rating {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border-radius: 50px;
    overflow: hidden;
}

boxSurvey rating + rating { margin-top: 10px; }

boxSurvey h1 {
    float: left;
    width: 100%;
    margin: 0 !important;
    padding: 0;
    text-align: center;
    font-weight: 100;
    font-size: 20px;
}

boxSurvey h3 {
    float: left;
    width: 100%;
    margin: 0 !important;
    padding: 0;
    text-align: center;
    font-weight: 100;
    font-size: 15px;
    margin-top: 10px !important;
}

boxSurvey h1 { margin-bottom: 10px !important; }
boxSurvey rating + h1, boxSurvey table + h1 { margin-top: 10px !important; }
boxSurvey rating + header, boxSurvey rating + div + header { margin-top: 30px !important; }
boxSurvey h1 + rating { margin-bottom: 10px !important; }

boxSurvey > table label, boxSurvey rating label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    float: left;
    width: 100%;
    height: 50px;
    cursor: pointer;
    overflow: hidden;
}

boxSurvey > table label {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
}

boxSurvey rating label {
    background: rgba(255, 255, 255, 0.6);
}

boxSurvey rating label bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .1;
}

boxSurvey rating label:nth-child(1) bg { background: #ee1c25; }
boxSurvey rating label:nth-child(2) bg { background: #f7941d; }
boxSurvey rating label:nth-child(3) bg { background: #ffde17; }
boxSurvey rating label:nth-child(4) bg { background: #8dc73f; }
boxSurvey rating label:nth-child(5) bg { background: #3ab54a; }

boxSurvey rating label icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
}

boxSurvey rating label icon:before {
    float: left;
    width: 60%;
    height: 60%;
    content: '';
    background-repeat: no-repeat;
    -webkit-mask-size: initial;
    mask-size: initial;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

boxSurvey rating label:nth-child(1) icon:before {
    background: #ee1c25;
    -webkit-mask-image: url(../svg/rating/1.svg);
    mask-image: url(../svg/rating/1.svg);
}

boxSurvey rating label:nth-child(2) icon:before {
    background: #f7941d;
    -webkit-mask-image: url(../svg/rating/2.svg);
    mask-image: url(../svg/rating/2.svg);
}

boxSurvey rating label:nth-child(3) icon:before {
    background: #ebcb15;
    -webkit-mask-image: url(../svg/rating/3.svg);
    mask-image: url(../svg/rating/3.svg);
}

boxSurvey rating label:nth-child(4) icon:before {
    background: #8dc73f;
    -webkit-mask-image: url(../svg/rating/4.svg);
    mask-image: url(../svg/rating/4.svg);
}

boxSurvey rating label:nth-child(5) icon:before {
    background: #3ab54a;
    -webkit-mask-image: url(../svg/rating/5.svg);
    mask-image: url(../svg/rating/5.svg);
}

boxSurvey rating label input:checked + bg + icon:before { background: #fff; }

boxSurvey > table label bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .05;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

boxSurvey > table label bgChecked {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #80bc00;
}

boxSurvey > table label img {
    right: 0;
    position: absolute;
    width: 30% !important;
    transform: rotate(15deg);
    opacity: .05;
}

/*boxSurvey > table label:hover bg { opacity: .1; }
boxSurvey > rating label:hover bg { opacity: .3; }
boxSurvey > table label:hover img { opacity: .4; }*/

boxSurvey > table label input:checked + img { opacity: .8; }
boxSurvey > table label input:checked + bg { opacity: .2; }
boxSurvey > table label input:checked + bgChecked { opacity: 1; }
boxSurvey rating label input:checked + bg { opacity: .8; }
boxSurvey > table label input:checked + bg + p, boxSurvey > table label input:checked + img + p { font-weight: bold; }
boxSurvey > table label input:checked + bgChecked + p {
    font-weight: bold;
    color: #fff;
}
boxSurvey > table label input:checked + p, boxSurvey rating input:checked + p { font-weight: bold; }

boxSurvey > table label input[type="radio"], boxSurvey rating label input[type="radio"] { display: none; }

boxSurvey > table label img {
    position: absolute;
    width: 40px;
}

boxSurvey > table label p, boxSurvey > rating label p {
    position: absolute;
    font-size: 18px;
}

boxSurvey textarea {
    float: left;
    width: calc(100% - 20px);
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px;
    font-size: 20px;
    font-family: Quicksand;
}

input[type="submit"] {
    float: left;
    width: calc(100% - 0px);
    border: none;
    border-radius: 10px;
    background: #80bc00;
    color: #fff;
    padding: 10px;
    font-size: 24px;
    font-family: Quicksand;
}

input[type="submit"]:disabled {
    color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
}

#plotsRatings, #bungalowsRatings {
    float: left;
    width: 100%;
    display: none;
    padding-top: 20px;
}

boxSurvey ::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

::-moz-calendar

.restaurant-logo {
    float: left;
    width: calc(100% - 20px);
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px 0;
    margin: 10px 0 20px;
}

.restaurant-selector {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(50% - 42.5px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 0 5px;
    font-size: 25px;
}

.rs-active {
    background: rgba(255, 255, 255, 0.95);
}

.restaurant-selector + .restaurant-selector {
    margin-left: 5px;
}

.restaurant-p {
    margin: 5px 0;
}

.restaurant-h1 {
    text-align: center;
    font-size: 60px;
    margin: 0 0 20px;
}

.restaurant-h2 {
    font-size: 28px;
    margin: 0 0 10px;
}

.restaurant-page {
    float: left;
    width: calc(100% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
}

.restaurant-page > .slider {
    float: left;
    width: 100%;
    height: 25vw;
    min-height: 200px;
    z-index: 2;
    left: -10px;
    margin: 5px 0 10px;
}

.restaurant-page > .slider > .slides {
    width: 100%;
    height: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.restaurant-page > .slider > .slides > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100% - 40px);
    height: 100%;
    scroll-snap-align: center;
    flex-shrink: 0;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.restaurant-page > .slider > .slides > div:first-child, .restaurant-page > .slider > .slides > div:last-child {
    width: 10px;
}

.restaurant-page > .slider > .slides > div + div {
    margin: 0 0 0 10px;
}

.restaurant-page > .title {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 10px;
}

.restaurant-page > .title h1 {
    float: left;
    margin-right: 10px;
    font-size: 30px;
    white-space: nowrap;
}

.restaurant-page > .title hr {
    float: left;
    width: 100%;
    border: 1px solid rgb(68, 68, 68);
}

.restaurant-page > table {
    float: left;
    width: 100%;
    line-height: 120%;
    font-size: 18px;
}

.restaurant-page > table + .title {
    margin-top: 20px;
}

.restaurant-post-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 50%;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    margin: 0 0 10px 0;
    text-align: center;
}

.restaurant-post-header a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    margin: 10px;
}

.restaurant-post-header a:hover {
    background: rgba(255, 255, 255, 1);
}

.restaurant-post-header a img {
    max-width: 80%;
    max-height: 80%;
}

.restaurant-menu-day {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(100% - 40px);
    padding: 20px;
    margin: 0 0 10px 0;
    text-align: center;
    background: url(../img/section/restaurant/menu-day.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.restaurant-menu-day > .text {
    width: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 20px 0;
}

.restaurant-menu-day > .text h1 {
    width: 100%;
    font-size: 40px;
}

.restaurant-menu-day > .text h2 {
    font-size: 30px;
    margin: 20px 0 10px;
}

.restaurant-menu-day > .text h3 {
    font-size: 40px;
    margin: 30px 0 10px;
}

.restaurant-menu-day > .text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.restaurant-submenu {
    width: calc(100% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px 0;
}

.restaurant-submenu + .restaurant-submenu {
    margin-top: 20px;
}

.restaurant-menu-submenu-sub {
    padding: 0 0 10px;
    border-bottom: 4px solid #80bc00;
    border-radius: 20px 0;
    margin: 0 0 20px 0;
    color: #80bc00;
}

.restaurant-menu-h2 {
    font-size: 30px;
}

.ent-logo {
    float: left;
    width: calc(100% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px 0;
    margin: 10px 0 20px;
}

.ent-page {
    float: left;
    width: calc(100% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.4);
}

.ent-submenu {
    float: left;
    position: relative;
    width: calc(100% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px 0;
    z-index: 15;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ent-submenu + .ent-submenu {
    margin-top: 20px;
}

.ent-menu-submenu-sub {
    padding: 0 0 10px;
    border-bottom: 4px solid #80bc00;
    border-radius: 20px 0;
    margin: 0 0 20px 0;
    color: #80bc00;
}

.ent-submenu table {
    float: left;
    margin-bottom: 20px;
}

.ent-menu-h2 {
    font-size: 30px;
}

.ent-menu-h4 {
    font-weight: 100;
}

.ent-book, .ent-book-2 {
    float: left;
    width: calc(100% - 0px);
    text-align: center;
    background: green;
    padding: 20px;
    font-size: 30px;
    color: #fff !important;
    z-index: 10;
    text-decoration: none;
    border-radius: 0 0 20px 0;
    border: none;
}

.ent-book-full {
    float: left;
    width: calc(100% - 40px);
    text-align: center;
    background: orange;
    padding: 20px;
    font-size: 30px;
    z-index: 10;
    text-decoration: none;
    border-radius: 0 0 20px 0;
    border: none;
}

.ent-book:hover, .ent-book-2:hover {
    background: rgba(255, 255, 255, 1);
    color: rgb(46, 46, 46) !important;
}

.ent-book {
    width: calc(100% - 40px);
}

.ent-book-2 {
    width: calc(100% - 0px);
}

.ent-page-join {
    float: left;
    width: calc(100% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.ent-page-join textarea {
    visibility: hidden;
}

.ent-page-join h1, .ent-page-join h2 {
    margin-bottom: 10px;
}

.ent-page-join table {
    width: 100%;
    text-align: center;
    margin: 10px 0 20px 0;
}

.ent-page-join select {
    width: 100%;
    text-align: center;
    margin: 0 0 10px 0;
    border: none;
    text-align-last: center;
    padding: 20px;
    font-size: 25px;
    background: #fff;
}

.ent-page-join select option {
    text-align: center;
}

.ent-page-join input {
    width: calc(100% - 40px);
    text-align: center;
    margin: 0px 0 20px 0;
    border: none;
    text-align: center;
    padding: 20px;
    font-size: 25px;
}

accommodations {
    float: left;
    width: calc(100% - 40px);
    padding: 20px;
}

accommodations > a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(100% - 8px);
    height: calc(100px - 8px);
    text-decoration: none;
    border: 4px solid rgba(255, 255, 255, .6);
    font-size: 36px;
    font-weight: bold;
    background: rgba(255, 255, 255, .6);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: lighten;
    border-radius: 20px;
}

accommodation {
    float: left;
    width: calc(100% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, .8);
    margin-top: 55px;
}
accommodation h1 {
    border: 5px solid rgb(68, 68, 68);
    text-align: center;
    padding: 20px;
    margin: 0px 0 20px;
    font-size: 50px;
}

accommodation h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

accommodation h3 { font-size: 30px; }

accommodation separator {
    float: left;
    width: 100%;
    height: 15px;
    background: #82bc00;
    margin-bottom: 20px;
}

.schedules-submenu {
    float: left;
    width: calc(100% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px 0;
}

.schedules-submenu + .schedules-submenu {
    margin-top: 20px;
}

.schedules-submenu-sub {
    float: left;
    width: calc(100% + 40px);
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px 0;
    margin: -20px 0 10px -20px;
    text-align: center;
}

.schedules-h1 {
    text-align: center;
    font-size: 60px;
    margin: 0 0 20px;
}

.schedules-h2 {
    text-align: center;
    font-size: 25px;
}

.schedules-h3 {
    text-align: center;
    font-size: 40px;
}

.schedules-h4 {
    text-align: center;
    font-size: 16px;
    font-weight: 100;
    margin: 10px 0 0 0;
}

.entertainment-logo {
    float: left;
    width: calc(100% - 80px);
    padding: 40px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px 0;
    margin: 10px 0 20px;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    font-size: 12px;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.copyright img {
    margin: 10px 0 30px;
    height: 40px;
}

/** END SECTIONS **/

/** EFFECTS **/

.ripple {
    background-position: center;
    transition: background 0.8s;
}

.ripple:hover {
    background: rgba(255, 255, 255, 0.7) radial-gradient(circle, transparent 1%, rgba(255, 255, 255, 0.4) 1%) center/15000%;
}

.ripple:active {
    background-color: rgba(255, 255, 255, 0.7);
    background-size: 100%;
    transition: background 0s;
}

/** END EFFECTS **/

/** TAB **/

.tabs {
    float: left;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
  
.tabs label {
    order: 1;
    width: calc(50% - 40px);
    display: block;
    padding: 20px;
    cursor: pointer;
    background:  rgba(255, 255, 255, 0.2);
    font-weight: bold;
    transition: background ease 0.2s;
    text-align: center;
    font-size: 25px;
    line-height: 100%;
}
  
.tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
}
  
.tabs input[type="radio"] {
    display: none;
}
  
.tabs input[type="radio"]:checked + label {
    background: rgba(255, 255, 255, 1);
}
  
.tabs input[type="radio"]:checked + label + .tab {
    display: block;
}

/** END TAB **/

/** POPUP **/

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
    z-index: 9999;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
.popup .close:hover {
    color: #06D85F;
}
.popup .content {
    max-height: 30%;
    overflow: auto;
}

@media screen and (max-width: 700px){
    .popup{
            width: 70%;
    }
}

/** END POPUP **/

/** PINCH ZOOM **/

.pinch-msg {
    float:left;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    backdrop-filter: blur(10px);  
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pinch-msg img {
    max-width: 80%;
    max-height: 80%;
}

.pinch-box {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
}

pinch-zoom {
    width: 100%;
    height: 100%;
    position: absolute;
}

/** END PINCH ZOOM **/