@charset "utf-8";

/** CORE STYLES **/

:root {
    --nav-button-size: 50px;
    --primary-color: rgba(0, 166, 235, 1);
    --secondary-color: rgba(0, 90, 169, 1);
    --white-color: rgba(255, 255, 255, 1);
    --black-color: rgba(0, 0, 0, 1);
    --blue-color: rgba(24, 119, 242, 1);
    --standard-color: rgba(68, 68, 68, 1);
    --overlay-color: rgba(0, 90, 169, 1);
    --close-color: rgba(232, 17, 35, 1);
    --standard-speed: 0.2s;
    --slow-speed: 0.5s;
}

/** GENERAL **/

html, body {
    width: 100%;
    height: 100%;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    color: var(--standard-color) !important;
    -webkit-font-smoothing: antialiased;
    padding: 0px;
    margin: 0px;
    line-height: 100% !important;
}

html {
    background: grey;
}

body {
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    background: #fff;
    overflow: hidden;
}

* {
    line-height: 100%;
    margin: 0;
    padding: 0;
}

a, a:visited, a:active, a:link {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

/** NAV + MENU + SETTINGS **/

body > input#menu { display: none; }

body > label#menu {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 0;
    left: calc(50% - 40px);
    cursor: pointer;
    z-index: 9150;
}

body > label#menu span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    border-radius: 20px;
    margin: 10px;
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed);
    gap: 5px;
    font-size: 10px;

}

body > label#menu span:hover { background: rgba(255, 255, 255, 1); }

body > label#menu span:before {
    float: left;
    width: 42%;
    height: 42%;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-image: url(../svg/menu.svg);
            mask-image: url(../svg/menu.svg);
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed)
}

body > input#menu:checked ~ label#menu span { background: #fff !important; }
body > input#menu:checked ~ label#menu span:before { background: var(--secondary-color); }

/* body > input#menu:checked ~ content {
    height: calc(100% - var(--nav-button-size) - var(--nav-button-size));
    margin-top: calc(var(--nav-button-size) + 25px);
    transform: translate(80%);
    border-radius: 40px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .2);
    overflow: hidden;
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed);
    pointer-events: none;
} */

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



}

body > nav {
    position: fixed;
    width: calc(100% - 0px);
    height: calc(60px - 1px);
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, .6);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
            backdrop-filter: blur(10px) saturate(180%);
    overflow: hidden;
    z-index: 9100;
}

body > nav > left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    float: left;
    width: calc(50% - 30px);
    height: 100%;
}

body > nav > middle {
    float: left;
    width: 60px;
    height: 60px;
}

body > nav > right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    float: left;
    width: calc(50% - 30px);
    height: 100%;
}

body > nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: calc(100% - 0px);
    height: calc(100% - 0px);
    font-size: 10px;
    color: var(--blue-color) !important;
    text-align: center;
    /* background: rgba(0, 0, 0, .1);
    margin: 10px;
    border-radius: 50px; */
}

body > nav a:before {
    width: 35%;
    height: 35%;
    content: '';
    background-repeat: no-repeat;
    background: var(--blue-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
}

body > nav a:hover { opacity: .6; }

body > input#menu:checked ~ nav {
    box-shadow: inset 0px 0px 15px 0 rgba(0, 0, 0, .2),
                inset 0px 0px 15px 0 rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(255, 255, 255, 0);
    background: rgba(0, 0, 0, .05);
}

body > menu {
    position: fixed;
    width: calc(100%);
    height: calc(100%);
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .75);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
            backdrop-filter: blur(10px) saturate(180%);
    overflow: hidden;
    z-index: 9000;
    transform: translate(0%, 100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed);
}

body > menu > language {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    float: left;
    width: calc(100% - 20px);
    height: calc(60px - 20px);
    padding: 10px;
    gap: 10px;
    box-shadow: inset 0px 0px 15px 0 rgba(0, 0, 0, .2),
                inset 0px 0px 15px 0 rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 0 0 40px 40px;
}

body > menu > language a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 40px;
    gap: 5px;
}

body > menu > language a img {
    max-width: 70%;
    max-height: 70%;
}

body > menu > language a.active {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, .25), 0px 0px 10px 0 rgba(255, 255, 255, .3);
}

body > menu > home {
    float: left;
    width: calc(100% - 40px);
    height: 60px;
    margin: 20px;
}

body > menu > home > a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    border-radius: 500px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0px 0px 16px 0 rgba(0, 0, 0, 0.25),
        0px 0px 12px 0 rgba(255, 255, 255, 0.3);
}

body > menu > home > a:before {
    float: left;
    width: 60%;
    height: 60%;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-image: url(../svg/home.svg);
            mask-image: url(../svg/home.svg);
}

body > menu > links {
    float: left;
    width: calc(100% - 40px);
    height: calc(100% - 60px - 40px - 20px - 60px - 60px);
    margin: 0 20px;
    box-shadow: inset 0px 0px 15px 0 rgba(0, 0, 0, .2),
    inset 0px 0px 15px 0 rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 40px;
    overflow-y: auto;
}

body > menu > links > container {
    float: left;
    width: calc(100% - 20px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    box-sizing: border-box;
    margin: 10px;
    gap: 10px;
}

body > menu > links > container a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: rgba(240, 240, 240, .6);
    box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.25), -8px -8px 12px 0 rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    font-size: 24px;
    border-radius: 40px;
    gap: 10px;
}

body > menu > links > container a span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 40%;
    height: 40%;
}


body > menu > links > container a span:before {
    float: left;
    width: 100%;
    height: 100%;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-image: url(../svg/settings.svg);
            mask-image: url(../svg/settings.svg);
}

body > input#menu:checked ~ menu { transform: translate(0%); }



body > input#settings { display: none; }

body > label#settings {
    position: fixed;
    width: calc(var(--nav-button-size) - 10px);
    height: calc(var(--nav-button-size) - 10px);
    padding: 5px;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 9500;
}

body > label#settings span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    border-radius: 500px;
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed)
}

body > label#settings span:hover { background: rgba(255, 255, 255, 1); }

body > label#settings span:before {
    float: left;
    width: 60%;
    height: 60%;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-image: url(../svg/settings.svg);
            mask-image: url(../svg/settings.svg);
}

body > input#settings:checked ~ label#settings span { background: var(--close-color) !important; }

body > input#settings:checked ~ label#settings span:before {
    width: 40%;
    height: 40%;
    -webkit-mask-image: url(../svg/close.svg);
    mask-image: url(../svg/close.svg);
    background: var(--white-color);
}

body > input#settings:checked ~ settings {
    visibility: visible;
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed)
}

body > settings {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .8);
    z-index: 9400;
    visibility: hidden;
    backdrop-filter: blur(20px);
}

body > settings > header {
    float: left;
    width: 100%;
    height: var(--nav-button-size);
}

body > settings > main {
    float: left;
    width: calc(100% - 40px);
    height: calc(100% - var(--nav-button-size) - 100px - 40px);
    padding: 20px;
    overflow-y: auto;
}

body > settings > main parameters {
    float: left;
    width: 100%;
}

body > settings > main parameters + parameters { margin-top: 20px; }

body > settings > main parameters text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 50px;
    font-size: 18px;
    font-weight: bold;
}

body > settings > main parameters row {
    float: left;
    width: 100%;
    height: 50px;
}

body > settings > main parameters text + row,
body > settings > main parameters row + row {
    border-top: 1px solid rgba(0, 0, 0, .2);
}

body > settings > main parameters row left,
body > settings > main parameters row right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 50%;
    height: 100%;
}

body > settings > main parameters text,
body > settings > main parameters row left {
    align-items: start;
}

body > settings > main parameters row left { font-weight: 600; }
body > settings > main parameters row right { align-items: end; }

body > settings > footer {
    float: left;
    width: 100%;
    height: 100px;
    background: grey;
}

/** HEADER **/

body > header {
    position: fixed;
    float: left;
    width: 100%;
    height: 50px;
    background: var(--white-color);
    background: rgba(255, 255, 255, 1);
    z-index: 8000;
}

body > header > left {
    float: left;
    width: var(--nav-button-size);
    height: var(--nav-button-size);
}

body > header > left > a {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 8px 0 0 8px;
    padding: 0;
    border-radius: 8px;
    background-color: #fff;
    color: #181c25;
    border: 1px solid rgba(138, 147, 153, .75);
    cursor: pointer;
}

body > header > left > a:before {
    width: 50%;
    height: 50%;
    margin-right: 2px;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-image: url(../svg/back.svg);
            mask-image: url(../svg/back.svg);
}

body > header > middle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(100% - var(--nav-button-size) - var(--nav-button-size) - 10px);
    height: calc(100% - 10px);
    padding: 5px;
}

body > header > middle img { height: 65%; }

body > header > right {
    float: left;
    width: var(--nav-button-size);
    height: var(--nav-button-size);
}

/** CONTENT **/

body > content {
    display: block;
    float: left;
    width: 100%;
    height: calc(100% - var(--nav-button-size));
    margin-top: var(--nav-button-size);
    /* background: #f2f5fa; */
    overflow-y: auto;
}

body > content > header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: calc(100% - 0px);
    height: 60px;
    font-size: 34px;
    line-height: normal;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    background: #fff;
    z-index: 8000;
}

body > content > main {
    float: left;
    width: calc(100% - 40px);
    padding: 0 20px 20px 20px;
}

body > content > footer {
    float: left;
    width: calc(100% - 40px);
    padding: 20px 20px 40px 20px;
    margin-bottom: 60px;
    text-align: center;
}

body > content > footer > img.pwa {
    height: 40px;
    margin: 0 0 10px 0;
    opacity: .1;
}

body > content > footer > version {
    float: left;
    width: 100%;
    font-size: 14px;
    opacity: .6;
}

body > content > footer > dev {
    float: left;
    width: 100%;
    font-size: 11px;
    opacity: .6;
}

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

  body > content {
    max-width: 400px;
    max-height: 800px;
    border-radius: 30px;
    position: absolute;
    top: calc(50% - var(--nav-button-size));
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .2);
    overflow-y: auto;
  }

}

/** MODAL **/

input#modal-bar { display: none; }

input#modal-bar:checked ~ modal {
    visibility: visible;
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed)
}

modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .8);
    z-index: 9400;
    visibility: hidden;
    backdrop-filter: blur(20px);
}

modal > header {
    float: left;
    width: 100%;
    height: 60px;
}

modal > header label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: right;
    width: calc(60px - 20px);
    height: calc(60px - 20px);
    margin: 10px;
    background: var(--close-color);
    border-radius: 100px;
    cursor: pointer;
}

modal > main {
    float: left;
    width: 100%;
    height: calc(100% - 60px);
}

modal > main > selector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: calc(400px - 40px);
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    padding: 20px;
    margin: 0 auto;
    text-align: center;
}

modal > main > selector h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    float: left;
    width: 100%;
    height: 40px;
    font-size: 46px;
    margin-bottom: 40px;
}

modal > main > selector h1 span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 40px;
    height: 40px;
    margin-right: 5px;
}

modal > main > selector h1 span:before {
    float: left;
    width: 100%;
    height: 100%;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
}

modal > main > selector div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    height: 30px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
}

modal > main > selector div::before,
modal > main > selector div::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, .2);
  margin: 0 10px;
}

modal > main > selector div + container { margin-top: 10px; }
modal > main > selector container + div { margin-top: 20px; }

modal > main > selector container {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

modal > main > selector container a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1 1 calc(25% - 10px);
    max-width: calc(25% - 10px);
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(0, 0, 0, .1);
    background: rgba(0, 0, 0, .05);
    border-radius: 20px;
    font-size: 12px;
}

modal > main > selector container a:hover { opacity: .6; }

modal > main > selector container span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

modal > main > selector container span:before {
    float: left;
    width: 100%;
    height: 100%;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
}

/** SECTIONS **/

body > content section {
    float: left;
    width: 100%;
}

body > content section + section { margin-top: 20px; }

body > content section > header {
    float: left;
    width: 100%;
}

body > content section > header > left {
    float: left;
    width: 60%;
    height: 100%;
    font-size: 20px;
    margin-bottom: 20px;
}

body > content section > header > right {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 40%;
    height: 100%;
}

body > content section > header > right a {
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    font-size: 12px;
}

body > content section > main {
    float: left;
    width: 100%;
}

/** CUSTOM SECTIONS **/

body > content section.home > header { margin-top: 20px; }

body > content section.bar main table {
    float: left;
    width: 100%;
}

body > content section.shows {
    float: left;
    width: 100%;
}

body > content section.shows shows {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 100%;
    gap: 20px;
}

body > content section.shows shows show {
    position: relative;
    float: left;
    width: 100%;
    height: 250px;
    background: grey;
    border-radius: 20px;
    overflow: hidden;
}

body > content section.shows shows show > bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 150%;
    background-repeat: no-repeat;
    filter: blur(20px);
    opacity: .8;
}

body > content section.shows shows show > poster {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 50%;
    height: 100%;
}

body > content section.shows shows show > poster img {
    float: left;
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
}

body > content section.shows shows show > info {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(50% - 20px);
    height: calc(100% - 20px);
    background: linear-gradient(90deg, rgba(0,0,0, 0) 0%, rgba(0,0,0, .8) 100%);
    text-align: center;
    padding: 10px;
    bottom: 0;
    right: 0;
    color: var(--white-color);
}

body > content section.shows shows show > info > name {
    font-size: 28px;
    line-height: 100%;
    font-weight: bold;
}

body > content section.shows shows show > info > place { font-size: 24px; text-decoration: wavy; margin: 10px 0; }
body > content section.shows shows show > info > date { font-size: 16px; }
body > content section.shows shows show > info > time { font-size: 24px; }

body > content section.activities {
    float: left;
    width: 100%;
}

body > content section.activities activities {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 100%;
    gap: 20px;
}

body > content section.activities activities activitie {
    position: relative;
    float: left;
    width: calc(100% - 2px);
    height: calc(300px - 2px);
    border: 1px solid rgba(0, 0, 0, .1);
    background: rgba(0, 0, 0, .03);
    border-radius: 20px;
    overflow: hidden;
}

body > content section.activities activities activitie > poster {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 70%;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

body > content section.activities activities activitie > poster img {
    width: 100%;
    height: auto;
}

body > content section.activities activities activitie > info {
    position: absolute;
    float: left;
    width: calc(100% - 20px);
    height: calc(30% - 20px);
    padding: 10px;
    bottom: 0;
}

body > content section.activities activities activitie > info left,
body > content section.activities activities activitie > info right {
    float: left;
    width: 50%;
    height: 100%;
}

body > content section.activities activities activitie > info > left > name {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    font-size: 28px;
    line-height: 80%;
    font-weight: bold;
    text-align: center;
}

body > content section.activities activities activitie > info > right > place,
body > content section.activities activities activitie > info > right > date {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    float: right;
    width: 100%;
    height: 25%;
    font-size: 16px;
    text-align: right;
    gap: 3px;
}


body > content section.activities activities activitie > info > right > place:before {
    width: 12px;
    height: 12px;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-image: url(../svg/place.svg);
            mask-image: url(../svg/place.svg);
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed)
}

body > content section.activities activities activitie > info > right > date { font-size: 12px; }

body > content section.activities activities activitie > info > right > date:before {
    width: 12px;
    height: 12px;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-image: url(../svg/schedules.svg);
            mask-image: url(../svg/schedules.svg);
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed)
}

body > content section.activities activities activitie > info > right > time {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    float: right;
    width: 100%;
    height: 50%;
    font-size: 26px;
    text-align: right;
    gap: 5px;
}

body > content section.activities activities activitie > info > right > time:before {
    width: 26px;
    height: 26px;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-image: url(../svg/clock.svg);
            mask-image: url(../svg/clock.svg);
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed)
}

body > content section.schedules {
    float: left;
    width: 100%;
}

body > content section.schedules schedules {
    float: left;
    width: 100%;
}

body > content section.schedules schedules header {
    float: left;
    width: 100%;
}

body > content section.schedules schedules > header > name {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    float: left;
    width: 60%;
    height: 30px;
    font-size: 24px;
    font-weight: bold;
}

body > content section.schedules schedules > header > name span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    float: left;
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

body > content section.schedules schedules > header > name span:before {
    float: left;
    width: 100%;
    height: 100%;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed)
}

body > content section.schedules schedules > header > status {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 40%;
    height: 30px;
    font-size: 20px;
    font-weight: bold;
}

body > content section.schedules schedules > header > status div {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    float: left;
    height: calc(100% - 2px);
    padding: 0 5px;
    border: 1px solid rgba(31, 31, 31, .2);
    color: var(--standard-color);
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

body > content section.schedules schedules > header > status div.open[data-status]::before {
    content: attr(data-status);
    color: rgba(16, 220, 80, 1);
}

body > content section.schedules schedules > header > status div.available[data-status]::before {
    content: attr(data-status);
    color: rgba(16, 220, 80, 1);
}

body > content section.schedules schedules > header > status div.closed[data-status]::before {
    content: attr(data-status);
    color: rgb(206, 21, 21);
}

body > content section.schedules schedules > header > status div.notavailable[data-status]::before {
    content: attr(data-status);
    color: rgb(206, 21, 21);
}

body > content section.schedules schedules main {
    float: left;
    width: 100%;
    margin-top: 10px;
}

body > content section.schedules schedules > main schedule {
    float: left;
    width: 100%;
    height: 30px;
}

body > content section.schedules schedules > main schedule > name {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 50%;
    height: 100%;
}

body > content section.schedules schedules > main schedule > time {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 50%;
    height: 100%;
    text-align: right;
    font-weight: bold;
    font-size: 24px;
}

body > content section.products {
    float: left;
    width: 100%;
}

body > content section.products > main > box {
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;
    position: relative;
    float: left;
    width: 100%;
    height: 100px;
    background: grey;
    border-radius: 40px 0 40px 0;
    margin: 0 0 10px 0;
    overflow: hidden;
}

body > content section.products > main > box > bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: left center;
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 1;
}

body > content section.products > main > box > name {
    max-width: calc(60% - 40px);
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px;
    color: #fff;
    border-radius: 0 20px 0 0;
    overflow: hidden;
    background: rgba(0, 166, 235, .8);
}

body > content section.products > main {
    float: left;
    width: 100%;
    margin-top: 10px;
}

body > content section.products > main table {
    float: left;
    width: 100%;
}

body > content section.products > main table th { font-size: 12px; }

body > content section.products > main table td { padding: 8px 5px; }

body > content section.products > main table th,
body > content section.products > main table td { text-align: center; }

body > content section.products > main table th:first-child,
body > content section.products > main table td:first-child { text-align: left; }

body > content section.products > main table tr:nth-child(even) {
    background: linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .05) 100%);
}

body > content section.products > main table name {
    float: left;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
}

body > content section.products > main table description {
    float: left;
    width: 100%;
    font-size: 12px;
    color: grey;
    margin-top: 2px;
}

body > content section.products > main table allergens {
    float: left;
    width: 100%;
    margin-top: 2px;
}

body > content section.products > main table allergens img {
    width: 20px;
    height: 20px;
}

body > content section.products > main table price {
    float: left;
    width: 100%;
    font-size: 18px;
}

body > content section.products > main table price:after {
    content: '€';
    font-size: 12px;
}

body > content section.laundry {
    float: left;
    width: 100%;
}

body > content section.laundry > header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(100% - 20px);
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 10px;
}

body > content section.laundry > header h1 {
    font-size: 26px;
}

body > content section.laundry > header h2 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

body > content section.laundry > main > note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(100% - 2px - 20px);
    border: 1px solid rgba(0, 0, 0, .2);
    color: rgba(0, 0, 0, .4);
    text-align: center;
    font-size: 16px;
    padding: 10px;
}

body > content section.laundry > main > note:first-child {
    width: calc(100% - 4px - 20px);
    border: 2px solid rgba(0, 0, 0, .2);
    margin-bottom: 20px;
    border-radius: 20px;
}

body > content section.laundry > main > note h1 {
    font-size: 24px;
    font-weight: bold;
}

body > content section.laundry > main > note h2 {
    font-size: 16px;
    font-weight: 100;
}

body > content section.afternoon-tea {
    float: left;
    width: 100%;
}

body > content section.afternoon-tea > header {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

body > content section.afternoon-tea > header > availability {
    float: left;
    width: calc(100% - 2px - 20px);
    border: 1px solid rgba(0, 0, 0, .2);
    color: rgba(0, 0, 0, .4);
    text-align: center;
    font-size: 12px;
    padding: 10px;
}

body > content section.afternoon-tea > main {
    float: left;
    width: 100%;
    /* background: #11e8fb; */
    border-radius: 20px;
    overflow: hidden;
}

body > content section.afternoon-tea > main img {
    float: left;
    width: 100%;
}

body > content section.allergens {
    float: left;
    width: 100%;
}

body > content section.allergens > main {
    float: left;
    width: 100%;
}

body > content > main > allergens {
    float: left;
    width: 100%;
    /* background: #f57f5b; */
    border-radius: 20px;
    background-image: url('https://www.hoteldonpancho.es/wp-content/uploads/2018/02/ensalada.jpg');
    background-size: cover;
    background-position: center center;
}

body > content > main > allergens > header {
    float: left;
    width: calc(100% - 40px);
    padding: 20px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
    text-transform: uppercase;
}

body > content > main > allergens > header img { max-width: 100px; }
body > content > main > allergens > header h1 { font-size: 50px; }
body > content > main > allergens > header h2 { font-weight: 100; }

body > content > main > allergens > header p {
    margin-top: 20px;
    font-size: 30px;
    font-style: italic;
}

body > content > main > allergens > main {
    display: flex;
    flex-direction: column;
    float: left;
    width: calc(100% - 40px - 20px);
    margin: 0 20px 20px 20px;
    padding: 10px;
    background: #fff;
    border-radius: 20px;
    gap: 10px;
}

body > content > main > allergens > main allergen {
    float: left;
    width: calc(100% - 0px);
    height: 80px;
    background: rgba(0, 0, 0, .1);
    color: #fff;
    border-radius: 20px;
}

body > content > main > allergens > main allergen.gluten { background: rgba(248, 177, 0, 1); }
body > content > main > allergens > main allergen.milk { background: rgba(121, 175, 175, 1); }
body > content > main > allergens > main allergen.eggs { background: rgba(237, 229, 192, 1); }
body > content > main > allergens > main allergen.peanuts { background: rgba(196, 134, 69, 1); }
body > content > main > allergens > main allergen.sesame { background: rgba(192, 169, 125, 1); }
body > content > main > allergens > main allergen.soya { background: rgba(151, 201, 140, 1); }
body > content > main > allergens > main allergen.nuts { background: rgba(165, 135, 81, 1); }
body > content > main > allergens > main allergen.mustard { background: rgba(222, 182, 61, 1); }
body > content > main > allergens > main allergen.molluscs { background: rgba(233, 155, 119, 1); }
body > content > main > allergens > main allergen.fish { background: rgba(148, 195, 255, 1); }
body > content > main > allergens > main allergen.lupin { background: rgba(232, 195, 69, 1); }
body > content > main > allergens > main allergen.crustaceans { background: rgba(230, 118, 117, 1); }
body > content > main > allergens > main allergen.celery { background: rgba(144, 195, 116, 1); }
body > content > main > allergens > main allergen.sulphites { background: rgba(120, 176, 177, 1); }

body > content > main > allergens > main allergen > icon {
    float: left;
    width: 60px;
    height: 60px;
    margin: 5px;
    padding: 5px;
    border-radius: 500px;
    background: rgba(255, 255, 255, 1);
}

body > content > main > allergens > main allergen > right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(100% - 80px);
    height: calc(100% - 0px);
    font-size: 32px;
    font-weight: bold;
    line-height: 100%;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .4);
    text-align: center;
}

body > content > main > allergens > footer {
    float: left;
    width: calc(100% - 20px);
    background: #fff;
    margin: 0 10px 10px 10px;
    border-radius: 20px;
}

body > content > main > allergens > footer > traceability {
    float: left;
    width: calc(100% - 6px - 10px - 20px);
    border: 3px solid rgba(0, 0, 0, .8);
    border-radius: 20px;
    padding: 10px;
    margin: 5px;
}

body > content > main > allergens > footer > traceability > h1 {
    float: left;
    width: calc(100% - 10px);
    margin: 5px 5px 10px 5px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

body > content > main > allergens > footer > traceability > h2 {
    float: left;
    width: calc(100% - 10px);
    margin: 5px;
    text-align: center;
    font-size: 20px;
    font-weight: 100;
}

body > content > main > allergens > footer > traceability > h3 {
    float: left;
    width: calc(100% - 10px);
    margin: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 100;
}

body > content > main > allergens > footer > traceability > icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    float: left;
    width: calc(100% - 0px);
    gap: 1px;
}

body > content > main > allergens > footer > traceability > icons img { max-width: 18px; }

/** STICKY **/

sticky {
    position: sticky;
    float: left;
    width: calc(100% + 40px);
    top: 60px;
    margin-left: -20px;
    z-index: 8000;
}

sticky + section,
section + sticky { margin-top: 20px; }

sticky > banner {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(100% - 20px);
    height: 60px;
    padding-left: 20px;
    background-position: center right;
    background-size: 150%;
    background-repeat: no-repeat;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white-color);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .8);
}

/** SLIDER & SLIDESHOW **/

slider {
    position: relative;
    float: left;
    width: 100%;
    height: 200px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

slider > slide {
    position: relative;
    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;
    background: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
}

slider > slide:only-child { width: 100%; }

slider > slide + slide { margin: 0 0 0 10px; }

slider > slide > img {
    max-width: 80%;
    max-height: 80%;
}

slider > slide.iframe > iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

slider > slide.show > bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 150%;
    background-repeat: no-repeat;
    filter: blur(20px);
    opacity: .8;
}

slider > slide.show poster {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(40% - 20px);
    height: calc(100% - 20px);
    padding: 10px;
}

slider > slide.show poster > img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

slider > slide.show info {
    position: absolute;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: calc(60% - 20px);
    height: calc(100% - 20px);
    /* background: linear-gradient(180deg, rgba(0,0,0, 0) 0%, rgba(0,0,0, .8) 100%); */
    padding: 10px;
    bottom: 0;
    right: 0;
}

slider > slide.show info > name {
    font-size: 28px;
    line-height: 100%;
    font-weight: bold;
}

slider > slide.show info > place { font-size: 24px; text-decoration: wavy; margin: 10px 0; }
slider > slide.show info > date { font-size: 16px; }
slider > slide.show info > time { font-size: 24px; }

slideshow {
    position: relative;
    float: left;
    width: calc(100% + 40px);
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    left: -20px;
}

slideshow.small { height: 100px; }
slideshow.medium { height: 200px; }
slideshow.big { height: 250px; }

slideshow > slide {
    position: relative;
    width: calc(100% - 40px);
    height: 100%;
    scroll-snap-align: center;
    flex-shrink: 0;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
}

slideshow > slide:only-child { width: 100%; }

/** BUTTONS **/

buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    justify-items: center;
    flex-direction: row;
    float: left;
    width: 100%;
}

buttons a,
buttons label {
    position: relative;
    float: left;
    background: rgba(0, 0, 0, .2);
    width: calc(25% - 10px);
    margin: 5px;
    border-radius: 500px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

buttons a:hover,
buttons label:hover { opacity: .6; }

buttons > a:before,
buttons > label:before {
    display: table;
    padding-top: 100%;
    content: '';
}

buttons > a span,
buttons > label span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    gap: 2px;
}

buttons > a span:after,
buttons > label span:after {
    float: left;
    width: 50%;
    height: 50%;
    content: '';
    background-repeat: no-repeat;
    background: var(--standard-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
}

/** BANNERS **/

banners {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    flex-direction: column;
    float: left;
    width: 100%;
    gap: 20px;
    text-shadow: 1px 1px 5px var(--black-color);
    border-radius: 20px;
    overflow: hidden;
}

banners img {
    position: relative;
    float: left;
    width: 100%;
}

banners a {
    position: relative;
    float: left;
    width: 100%;
    background: var(--black-color);
}

banners a > bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 150%;
    background-repeat: no-repeat;
    opacity: .8;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
}

banners a.small { height: 100px }
banners a.medium { height: 200px }

banners a.small > main,
banners a.medium > main {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    flex-direction: column;
    float: left;
    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--white-color);
    font-size: 22px;
    font-weight: bold;
}

banners a.small > main span,
banners a.medium > main span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    float: left;
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

banners a.small > main span:before,
banners a.medium > main span:before {
    float: left;
    width: 100%;
    height: 100%;
    content: '';
    background-repeat: no-repeat;
    background: var(--white-color);
    -webkit-mask-size: initial;
            mask-size: initial;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -moz-transition: all var(--standard-speed);
         transition: all var(--standard-speed);
}

/** **/

/** PINCH ZOOM **/

body > content fullscreen {
    position: absolute;
    float: left;
    width: 100%;
    height: calc(100% - 110px);
    background: var(--white-color);
    overflow: hidden;
    top: 110px;
    left: 0;
    z-index: 1;
}

/** SVG **/

.home-svg:before,
.home-svg:after {
    -webkit-mask-image: url(../svg/home.svg);
            mask-image: url(../svg/home.svg);
}

.notices-svg:before,
.notices-svg:after {
    -webkit-mask-image: url(../svg/notices.svg);
            mask-image: url(../svg/notices.svg);
}

.language-svg:before,
.language-svg:after {
    -webkit-mask-image: url(../svg/language.svg);
            mask-image: url(../svg/language.svg);
}

.settings-svg:before,
.settings-svg:after {
    -webkit-mask-image: url(../svg/settings.svg);
            mask-image: url(../svg/settings.svg);
}

.shows-svg:before,
.shows-svg:after {
    -webkit-mask-image: url(../svg/shows.svg);
            mask-image: url(../svg/shows.svg);
}

.activities-svg:before,
.activities-svg:after {
    -webkit-mask-image: url(../svg/activities.svg);
            mask-image: url(../svg/activities.svg);
}

.restaurant-svg:before,
.restaurant-svg:after {
    -webkit-mask-image: url(../svg/restaurant.svg);
            mask-image: url(../svg/restaurant.svg);
}

.bar-svg:before,
.bar-svg:after {
    -webkit-mask-image: url(../svg/bar.svg);
            mask-image: url(../svg/bar.svg);
}

.pool-bar-svg:before,
.pool-bar-svg:after {
    -webkit-mask-image: url(../svg/pool-bar.svg);
            mask-image: url(../svg/pool-bar.svg);
}

.lobby-bar-svg:before,
.lobby-bar-svg:after {
    -webkit-mask-image: url(../svg/lobby-bar.svg);
            mask-image: url(../svg/lobby-bar.svg);
}

.dancing-lounge-bar-svg:before,
.dancing-lounge-bar-svg:after {
    -webkit-mask-image: url(../svg/dancing-lounge-bar.svg);
            mask-image: url(../svg/dancing-lounge-bar.svg);
}

.bowling-green-svg:before,
.bowling-green-svg:after {
    -webkit-mask-image: url(../svg/bowling-green.svg);
            mask-image: url(../svg/bowling-green.svg);
}

.gym-svg:before,
.gym-svg:after {
    -webkit-mask-image: url(../svg/gym.svg);
            mask-image: url(../svg/gym.svg);
}

.massage-room-svg:before,
.massage-room-svg:after {
    -webkit-mask-image: url(../svg/massage-room.svg);
            mask-image: url(../svg/massage-room.svg);
}

.bike-center-svg:before,
.bike-center-svg:after {
    -webkit-mask-image: url(../svg/bike-center.svg);
            mask-image: url(../svg/bike-center.svg);
}

.allergens-svg:before,
.allergens-svg:after {
    -webkit-mask-image: url(../svg/allergens/allergen_b_icon.svg);
            mask-image: url(../svg/allergens/allergen_b_icon.svg);
}

.menu-bar-svg:before,
.menu-bar-svg:after {
    -webkit-mask-image: url(../svg/menu-bar.svg);
            mask-image: url(../svg/menu-bar.svg);
}

.schedules-svg:before,
.schedules-svg:after {
    -webkit-mask-image: url(../svg/schedules.svg);
            mask-image: url(../svg/schedules.svg);
}

.rooms-svg:before,
.rooms-svg:after {
    -webkit-mask-image: url(../svg/rooms.svg);
            mask-image: url(../svg/rooms.svg);
}

.campinginfo-svg:before,
.campinginfo-svg:after {
    -webkit-mask-image: url(../svg/campinginfo.svg);
            mask-image: url(../svg/campinginfo.svg);
}

.map-svg:before,
.map-svg:after {
    -webkit-mask-image: url(../svg/map.svg);
            mask-image: url(../svg/map.svg);
}

.library-svg:before,
.library-svg:after {
    -webkit-mask-image: url(../svg/library.svg);
            mask-image: url(../svg/library.svg);
}

.outdoorpool-svg:before,
.outdoorpool-svg:after {
    -webkit-mask-image: url(../svg/outdoorpool.svg);
            mask-image: url(../svg/outdoorpool.svg);
}

.laundry-svg:before,
.laundry-svg:after {
    -webkit-mask-image: url(../svg/laundry.svg);
            mask-image: url(../svg/laundry.svg);
}