@-webkit-keyframes up_and_down {
    0% {-webkit-transform: translateY(0px);transform: translateY(0px);}
    45% {-webkit-transform: translateY(-15px);transform: translateY(-15px);}
    100% {-webkit-transform: translateY(0px);transform: translateY(0px);}
}
@keyframes up_and_down {
    0% {-webkit-transform: translateY(0px);transform: translateY(0px);}
    45% {-webkit-transform: translateY(-15px);transform: translateY(-15px);}
    100% {-webkit-transform: translateY(0px);transform: translateY(0px);}
}
@-webkit-keyframes big_small {
    0% {-webkit-transform: scale(1);transform: scale(1);}
    45% {-webkit-transform: scale(1.2);transform: scale(1.2);}
    100% {-webkit-transform: translateY(0px);transform: scale(1);}
}
@keyframes big_small {
    0% {-webkit-transform: scale(1);transform: scale(1);}
    45% {-webkit-transform: scale(1.2);transform: scale(1.2);}
    100% {-webkit-transform: scale(1);transform: scale(1);}
}
@-webkit-keyframes glowing {
    0% {opacity:0;}
    15% {opacity:0;}
    30% {opacity:1;}
    50% {opacity:1;}
    70% {opacity:1;}
    85% {opacity:0;}
    100% {opacity:0;}
}
@keyframes glowing {
    0% {opacity:0;}
    15% {opacity:0;}
    30% {opacity:1;}
    50% {opacity:1;}
    70% {opacity:1;}
    85% {opacity:0;}
    100% {opacity:0;}
}
.glowing {
    opacity: 0;
    -webkit-animation: infinite ease-in-out glowing 10s;
    animation: infinite ease-in-out glowing 10s;
}


.chat-bubble {
    left: 20px !important;
    right: auto !important;
}


::-webkit-calendar-picker-indicator {
    filter: invert(1);
}



/*.faded {*/
/*    opacity: 0;*/
/*    filter: blur(12px);*/
/*    -webkit-filter: blur(12px);*/
/*    transform: scale(0) translateY(-500px);*/
/*    -webkit-transform: scale(0) translateY(-500px);*/
/*    transition: opacity 2s 0.3s, filter 1s 0.3s, transform 2s 0.3s;*/
/*    -webkit-transform-origin: 50%;*/
/*    transform-origin: 50%;*/
/*}*/
/*.faded.pre-loaded {*/
/*    opacity: 1;*/
/*    transform: scale(1) translateY(0%);*/
/*    -webkit-transform: scale(1) translateY(0%);*/
/*}*/
/*.faded.loaded {*/
/*    filter: blur(0px);*/
/*    -webkit-filter: blur(0px);*/
/*}*/
/*.faded.animated {*/
/*    -webkit-animation: infinite ease-in-out big_small 5s;*/
/*    animation: infinite ease-in-out big_small 5s;*/
/*}*/



.faded {
    opacity: 0;
    filter: blur(12px);
    -webkit-filter: blur(12px);
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: opacity 2s 0.3s, filter 1s 0.3s, transform 2s 0.3s;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
}
.faded.pre-loaded {
    opacity: 1;
    transform: scale(1) translateY(0%);
    -webkit-transform: scale(1) translateY(0%);
}
.faded.loaded {
    filter: blur(0px);
    -webkit-filter: blur(0px);
}




html {
    /*scrollbar-face-color: #404040;*/
    /*scrollbar-base-color: #404040;*/
    /*scrollbar-3dlight-color: #404040;*/
    /*scrollbar-highlight-color: #404040;*/
    /*scrollbar-track-color: #000;*/
    /*scrollbar-arrow-color: #000;*/
    /*scrollbar-shadow-color: #404040;*/
    /*scrollbar-dark-shadow-color: #404040;*/
}

/*::-webkit-scrollbar { width: 8px; height: 3px;}*/
/*::-webkit-scrollbar-button {  background-color: #404040; }*/
/*::-webkit-scrollbar-track {  background-color: #404040;}*/
/*::-webkit-scrollbar-track-piece { background-color: #000;}*/
/*::-webkit-scrollbar-thumb { height: 50px; background-color: #404040; border-radius: 0px;}*/
/*::-webkit-scrollbar-corner { background-color: #404040;}*/
/*::-webkit-resizer { background-color: #404040;}*/


body {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5em;
    font-family: 'Work Sans', sans-serif;
    background: #232323;
    min-height: 100vh;
}
body:not(.homepage) {
    padding-top: 120px;
}
body.has-special:not(.homepage) {
    padding-top: 162px;
}
h1, h2, h3, h4 {
    color: inherit;
    font-weight: 300;
    line-height: 1.2em;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 15px;
}
h1 {
    font-size: 42px;
}
h2 {
    font-size: 34px;
}
h3 {
    font-size: 28px;
}
a.anchor {
    display: block;
    -ms-transform: translateY(-140px);
    -webkit-transform: translateY(-140px);
    transform: translateY(-140px);
}
.wrapper {
    display: block;
    position: relative;
    padding: 80px 0 85px;
}
.wrapper.other {
    padding: 90px 0 15px;
}
.wrapper.other.even {
    padding: 45px 0 15px;
}
.wrapper.minimal {
    padding: 50px 0 50px;
}
.wrapper.no-top {
    padding-top: 0 !important;
}
.wrapper.no-bottom {
    padding-bottom: 0 !important;
}
.wrapper.dark {
    color: #afafaf;
    background: #232323;
}
.wrapper.darker {
    color: #afafaf;
    background: #191919;
}
.wrapper .container {
    position: relative;
    z-index: 15;
}
.main-wrapper {
    display: block;
    position: relative;
    height: 100%;
    z-index: 30;
}
.main-container {
    width: 100%;
    padding: 100px 100px;
    margin-right: auto;
    margin-left: auto;
    max-width: 960px;
    min-height: 100vh;
}

.main-logo {
    display: block;
    position: absolute;
    width: 100px;
    top: 30px;
    right: 30px;
    transition: 0.25s;
    z-index: 45;
}

.container {
    padding: 0 20px;
}
.container-fluid {
    padding: 0 20px;
}
a {
    color: inherit;
}
a:hover {
    color: inherit;
}
article a:not(.button) {
    text-decoration: none;
}
article.default {
    font-family: 'Work Sans', sans-serif;
}
.grayscale {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
.nowrap {
    white-space: nowrap;
}
.iframe-wrap {
    display: block;
    position: relative;
    margin-bottom: 10px;
}
.iframe-wrap > iframe {
    border: 0;
    outline: 0;
    width: 100%;
    height: auto;
}
.label {
    display: inline-block;
    font-size: 17px;
    margin: 5px;
}
.label.white {
    color: #fff !important;
}



/* Buttons */
.button {
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.button.disabled {
    cursor: not-allowed !important;
    opacity: 0.5;
}
.button,
.base-button {
    cursor: pointer;
    display: inline-block;
    position: relative;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.1em;
    margin: 0 3px 6px 0;
    padding: 13px 16px;
    text-decoration: none !important;
    background: rgb(25, 25, 25);
    outline: none;
    border: none;
    text-align: center;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 35;
}
.button:hover,
.button:focus,
.base-button:hover,
.base-button:focus {
    color: #fff;
    background: rgba(10, 10, 10, 0.85);
    outline: none !important;
}

.button.white {
    cursor: pointer;
    display: inline-block;
    position: relative;
    color: #333;
    background: #eaeaea;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.1em;
    margin: 0 3px 6px 0;
    padding: 13px 18px;
    text-decoration: none !important;
    outline: none;
    border: none;
    text-align: center;
    z-index: 35;
}
.button.white:hover,
.button.white:focus {
    color: #000;
    background: #fff;
    outline: none !important;
}


/* Forms */
.alert {
    display: block;
    padding: 15px 20px 16px;
    border-width: 1px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
.alert.alert-inline {
    display: inline-block;
}
.alert.alert-danger {
    color: #721c24;
    background-color: #ffedef;
    border-color: #e2bcbe;

    background-color: #efcacd;
    border-color: #efcacd;
    color: #650b13;
}
.alert.alert-success {
    color: #155724;
    background-color: #ecfbef;
    border-color: #c1d4c5;

    background-color: #c1d8c5;
    border-color: #c1d8c5;
    color: #0e461a;
}
.alert.alert-info {
    color: #084b6b;
    background-color: #eefaff;
    border-color: #cadfe8;

    background-color: #d0e5ef;
    border-color: #d0e5ef;
    color: #073b54;
}

.alert > strong {
    margin-bottom: 8px;
}
.alert ul {
    padding-left: 20px;
}
form.form {
    position: relative;
    margin-bottom: 15px;
}
form.form .field {
    display: block;
    position: relative;
    margin-bottom: 12px;
}
form.form .actions {
    margin-top: 22px;
}
form.form .field label.label {
    display: none;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1em;
}
form.form .field input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
form.form .field input[type="text"],
form.form .field input[type="email"],
form.form .field input[type="password"],
form.form .field select,
form.form .field textarea {
    display: block;
    width: 100%;
    font-weight: 400;
    padding: 10px 14px 10px;
    color: #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    /*border: 2px solid #222222;*/
    background: #333333;
    border: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
form.form .field input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):focus,
form.form .field input[type="text"]:focus,
form.form .field input[type="email"]:focus,
form.form .field input[type="password"]:focus,
form.form .field select:focus,
form.form .field textarea:focus {
    outline: none;
    background: #3c3c3c;
}
form.form .field textarea {
    height: 160px;
    resize: none;
}
form.form .field .set label.radio input,
form.form .field .set label.checkbox input {
    margin-right: 12px;
}
form.form .input-button {
    display: block;
    position: relative;
}
form.form .input-button input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
form.form .input-button input[type="text"],
form.form .input-button input[type="email"],
form.form .input-button input[type="password"],
form.form .input-button select,
form.form .input-button textarea {
    font-size: 14px;
    border-width: 1px;
}
form.form .input-button .button {
    display: inline-block;
    font-size: 14px;
    padding: 9px 16px 10px;
    position: absolute;
    right: 0;
    bottom: 0;
}
form.form .anchor {
    display: block;
    -ms-transform: translateY(-130px);
    transform: translateY(-130px);
    -webkit-transform: translateY(-130px);
}
form.form .field textarea::-webkit-input-placeholder {
    opacity: 1;
    color: rgba(255,255,255,0.35);
}
form.form .field textarea:-ms-input-placeholder {
    opacity: 1;
    color: rgba(255,255,255,0.35);
}
form.form .field textarea::-ms-input-placeholder {
    opacity: 1;
    color: rgba(255,255,255,0.35);
}
form.form .field textarea::-moz-placeholder {
    opacity: 1;
    color: rgba(255,255,255,0.35);
}
form.form .field textarea::placeholder {
    opacity: 1;
    color: rgba(255,255,255,0.35);
}
form.form .field textarea:-ms-input-placeholder {
    color: rgba(255,255,255,0.35);
}
form.form .field textarea::-ms-input-placeholder {
    color: rgba(255,255,255,0.35);
}
form.form .field input::-webkit-input-placeholder {
    opacity: 1;
    color: rgba(255,255,255,0.35);
}
form.form .field input:-ms-input-placeholder {
    opacity: 1;
    color: rgba(255,255,255,0.35);
}
form.form .field input::-ms-input-placeholder {
    opacity: 1;
    color: rgba(255,255,255,0.35);
}
form.form .field input::-moz-placeholder {
    opacity: 1;
    color: rgba(255,255,255,0.35);
}
form.form .field input::placeholder {
    opacity: 1;
    color: rgba(255,255,255,0.35);
}
form.form .field input:-ms-input-placeholder {
    color: rgba(255,255,255,0.35);
}
form.form .field input::-ms-input-placeholder {
    color: rgba(255,255,255,0.35);
}
form.form .field-recaptcha {
    display: none;
    position: relative;
    margin: 0;
    width: 300px;
    height: 70px;
    overflow: hidden;
    margin-top: 22px;
}
form.form-posted .field-recaptcha {
    display: block;
}
form.form .field-recaptcha .g-recaptcha {
    display: inline-block;
    width: 300px;
    height: 70px;
    -ms-transform: scale(0.78);
    transform: scale(0.78);
    -webkit-transform: scale(0.88);
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}
form.form .field.combine > button {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}
form.form .field.combine {
    padding-right: 110px;
}
.form-wrap form.form {
    margin-top: 15px;
    margin-bottom: 0;
}
.form-wrap form.form .actions .button {
    margin-bottom: 0;
}
.form-wrap .alert {
    font-size: 14px;
    line-height: 1.5em;
    margin: 20px 0 25px !important;
}

.form-wrap.newsletter {
    margin: 60px 0 0px;
}




/* Sliders */
.slider-wrapper {
    display: block;
    position: relative;
    max-height: 100%;
    overflow: hidden;
}
.slider-wrap {
    display: block;
    position: relative;
    margin-bottom: -1px;
}
.slider {
    list-style: none !important;
    line-height: 1em;
    padding: 0;
    margin: 0;
}
.slider .slick-slide,
.slider .slick-slide > div {
    line-height: 0em;
}
.slider.clean:not(.navigation) .slick-arrow,
.slider.clean .slick-dots {
    display: none !important;
}
.slider-wrap .slide-image.full {
    height: 100vh;
}
.slider-wrap .slide-image:not(.full) {
    height: 900px;
}
.slider-wrap .slick-arrow {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    font-size: 0;
    color: transparent;
    background: rgba(15, 15, 15, 0.75);
    border: 2px solid transparent;
    outline: none;
    border-radius: 999px;
    -moz-border-radius: 999px;
    -webkit-border-radius: 999px;
    z-index: 10;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}
.slider-wrap .slick-arrow:hover,
.slider-wrap .slick-arrow:focus {
    opacity: 1;
    background-color: #101010;
}
.slider-wrap .slick-arrow.slick-next {
    left: auto;
    right: 20px;
}
.slider-wrap .slick-arrow::after {
    content: ' ';
    display: inline-block;
    background-image: url('/images/next-white.png');
    background-repeat: no-repeat;
    background-position: center left 18px;
    background-size: 32px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.slider-wrap .slick-arrow.slick-prev::after {
    background-image: url('/images/prev-white.png');
    background-repeat: no-repeat;
    background-position: center right 18px;
}
.slider-wrap .slick-arrow.slick-down {
    top: auto;
    left: 50%;
    bottom: 30px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.slider-wrap .slick-arrow.slick-down::after {
    background-image: url('/images/down-white.png');
    background-repeat: no-repeat;
    background-position: center 17px;
}
.slider-wrap .image-slide {
    display: block;
    position: relative;
    min-height: 500px;
    height: calc(100vh - 120px);
}
.slider-wrap .slick-dots {
    display: inline-block;
    list-style: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 50;
    margin: 0;
    text-align: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    min-width: 110px;
    background: #232323;
    background: none;
    border-radius: 6px 6px 0 0;
    padding: 6px 8px 4px;
    white-space: nowrap;
}
.slider-wrap .slick-dots li {
    display: inline-block;
    vertical-align: top;
}
.slider-wrap .slick-dots li > button {
    display: block;
    min-width: 0;
    min-height: 0;
    width: 14px;
    height: 14px;
    font-size: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    color: transparent;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    overflow: hidden;
}
.slider-wrap .slick-dots li > button::before {
    content: ' ';
    display: block;
    width: 8px;
    height: 8px;
    background: #454545;
    border-radius: 999px;
    -moz-border-radius: 999px;
    -webkit-border-radius: 999px;
    box-shadow: inset 0 0 0 1px #fff;
    margin: 3px auto 0;
}
.slider-wrap .slick-dots li.slick-active > button::before {
    background: #fff;
}
.slider-wrap .slider-content {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    max-width: 100%;
    color: #fff;
    top: auto;
    bottom: 200px;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);

    /*-webkit-transform: translateX(-50%) translateY(-50%);*/
    /*transform: translateX(-50%) translateY(-50%);*/
    text-align: center;
}




/* Pagination */
ul.pagination > li.item {
    margin-right: 4px;
    margin-bottom: 5px;
}
ul.pagination > li.item > * {
    font-size: 14px;
    font-weight: 300;
    padding: 7px 15px;
    background: #e4d6c6fff;
    border: 1px solid #ebebeb;
    border-radius: 7px;
}
ul.pagination > li.item > *:hover {
    border: 1px solid #dcd7da;
    background: #e4d6c6;
}
ul.pagination > li.item.active > * {
    color: #e4d6c6;
    background: #42353c;
    border: 1px solid #42353c;
    font-weight: 500;
}
.row.small {
    margin: 0 -5px;
}
.row.small > div {
    padding: 0 5px;
}
.row.zero {
    margin: 0 0px;
}
.row.zero > div {
    padding: 0 0px;
}




/* Content */
.article {
    display: block;
    position: relative;
    font-size: 12pt;
    line-height: 1.7em;
    z-index: 25;
}
.article.top {
    margin-top: 15px;
}
.article.bottom {
    margin-bottom: 40px;
}
.article.center {
    text-align: center;
}
.article.main h1,
.article.main h2,
.article.main h3 {
    color: #fff;
}



.article p {
    margin: 0 0 15px;
}
.article a:not(.button) {
    text-decoration: underline;
}
.article p:last-child {
    margin-bottom: 0px;
}
.article h1,
.article h2 {
    color: inherit;
    margin-bottom: 15px;
}
.article h1:first-child {
    margin-bottom: 25px;
}
.article ul,
.article ol {
    padding-left: 20px;
    margin-bottom: 15px;
}
.article table {
    width: 100%;
    margin-bottom: 0px;
}
.article table tr td {
    line-height: 1.4em;
    padding: 4px 0;
}
.article table tr:not(:last-child) td {
    padding-right: 18px;
}
.article iframe {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.article-banner {
    display: block;
    position: relative;
    height: 350px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    margin: 23px 0 20px;
    overflow: hidden;
}
.article-banner.cursor {
    cursor: pointer;
}
.article-banner.cursor::before {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    transition: 0.2s;
}
.article-banner.cursor:hover::before {
    background: rgba(255,255,255,0.2);
}
.article.bottom {
    margin-bottom: 45px;
}
.article-form.right {
    padding-left: 30px;
}
.article-back {
    margin-top: 40px;
}
.article-wrap.bottom {
    margin-bottom: 50px;
}



/* Maps */
.maps-wrapper .maps {
    display: block;
    position: relative;
    min-height: 450px;
}
.maps-wrapper .maps > iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
}





/* Developer Copyright */
.developer-wrapper {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    padding: 13px 0 3px;
}
.developer-wrapper .developer {
    display: inline-block;
    width: 38px;
    opacity: 0.4;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: 0.4s;
    overflow: hidden;
}
.developer-wrapper .developer:hover,
.developer-wrapper .developer:focus {
    width: 130px;
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    opacity: 1;
}
.developer-wrapper .developer > img {
    display: block;
    width: 130px !important;
    max-width: none;
}




/* Header */
.header-wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 350;
    height: 120px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.header-wrapper .reservation-buttons {
    position: absolute;
    top: 53px;
    right: 0;
}
body. .header-wrapper .reservation-buttons {
    top: 38px;
}



body.has-special {
    padding-top: 42px;
}
body.has-special .header-wrapper {
    top: 42px !important;
}
body.has-special .header-wrapper .hamburger.fixed {
    margin-top: 42px !important;
}

body.scrolled .header-wrapper {
    background: #101010;
    border-bottom: 2px solid #000;
}
.header-wrapper .header {
    display: block;
    position: relative;
}
.header-wrapper .header-label {
    display: block;
    color: #606060;
    font-size: 30px;
    font-weight: 300;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
}
.header-wrapper .header-label > a {
    display: inline-block;
    color: #606060;
    text-decoration: none !important;
}
.header-wrapper .logo-wrap {
    display: inline-block;
    width: 340px;
    position: absolute;
    top: 50px;
    left: 50%;
    z-index: 15;
    transition: 0.3s;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
body.scrolled .header-wrapper .logo-wrap {
    width: 240px;
    top: 44px;
}
body.menu-open .header-wrapper .logo-wrap {
    top: -150px;
}

.slider-wrapper .logo-entourage,
.background-wrapper .logo-entourage,
.header-wrapper .logo-entourage {
    display: inline-block;
    width: 120px;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 15;
    transition: 0.3s;

}
body.scrolled .header-wrapper .logo-entourage {
    width: 100px;
    top: 20px;
}

.background-wrapper .logo-entourage,
.slider-wrapper .logo-entourage {
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: 60px;
}

.header-wrapper .logo-wrap > img {
    width: 100%;
}
.hamburger {
    display: block;
    cursor: pointer;
    width: 70px;
    height: 70px;
    position: absolute;
    right: 0;
    top: 38px;
    z-index: 25;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    right: auto;
    left: 0;

}
body.scrolled .hamburger {
    top: 24px;
}
.hamburger::before {
    content:' ';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #fff;
    border-radius: 999px;
    -moz-border-radius: 999px;
    -webkit-border-radius: 999px;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: 0.3s;
    opacity: 0;
}
.hamburger.cross,
.hamburger.cross-pre {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}
.hamburger.cross::before {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}
.hamburger div {
    position: relative;
    z-index: 10;
    height: 4px;
    margin: 15px 0;
    background: #fff;
    border-radius: 999px;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: 0.25s;
}
.hamburger div:nth-child(2) {
    margin-right: 15px;
}
.hamburger div:nth-child(3) {
    margin-right: 30px;
}
.hamburger.cross div:nth-child(2),
.hamburger.cross-pre div:nth-child(2),
.hamburger.cross div:nth-child(3),
.hamburger.cross-pre div:nth-child(3) {
    margin-right: 0;
}
body.complete .hamburger div {
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}
.hamburger.cross-pre div:nth-child(1),
.hamburger.cross-pre div:nth-child(2),
.hamburger.cross-pre div:nth-child(3),
.hamburger.cross div:nth-child(1),
.hamburger.cross div:nth-child(2),
.hamburger.cross div:nth-child(3){
    margin-left: 15px;
    margin-right: 15px;
}
.hamburger.cross-pre div:nth-child(2) {
    opacity: 0;
}
.hamburger.cross div:nth-child(2) {
    opacity: 0;
}
.hamburger.cross-pre div:nth-child(1) {
    transform: translateY(19px) ;
}
.hamburger.cross-pre div:nth-child(3) {
    transform: translateY(-19px) ;
}
.hamburger.cross div:nth-child(1) {
    transform: translateY(19px) rotate(-45deg);
}
.hamburger.cross div:nth-child(3) {
    transform: translateY(-19px) rotate(45deg);
}










/* Background */
.menu-wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    z-index: 300;
    overflow: hidden;
}
.menu-wrapper .container {
    z-index: 20;
}
body.menu-active .menu-wrapper,
body.menu-active .menu-wrapper .container {
    height: 100vh;
    min-height: 100%;
}




/*.menu-wrapper::after {*/
/*    content: ' ';*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    z-index: 1;*/
/*    transform-origin: 0 0;*/
/*    -webkit-transform-origin: 0 0;*/
/*    -webkit-transform: scaleX(0);*/
/*    transform: scaleX(0);*/
/*    background-image: url('/images/curtain-left.png');*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    background-size: 100% 100%;*/
/*    opacity: 0;*/
/*    width: 0%;*/
/*    transition: 0.6s;*/


/*    transform-origin: 100% 0;*/
/*    -webkit-transform-origin: 100% 0;*/
/*    background-image: url('/images/curtain-right.png');*/
/*    left: auto;*/
/*    right: 0;*/
/*    z-index: 1;*/
/*}*/
/*body.menu-open .menu-wrapper::after {*/
/*    -webkit-transform: scaleX(1);*/
/*    transform: scaleX(1);*/
/*    opacity: 0.82;*/
/*    width: 60%;*/
/*    transition: 0.5s;*/
/*}*/



.menu-wrapper::after {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    left: -100%;
    bottom: 0;
    z-index: 1;
    transform-origin: 100% 0;
    -webkit-transform-origin: 100% 0;
    transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    width: 80%;
    height: 100%;
    transition: 0.6s;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
body.menu-open .menu-wrapper::after {
    left: 0;
    transition: 0.5s;
}


.menu-wrapper .container::before {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    left: -1000px;
    right: -1000px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    transition: opacity 0.3s;
    opacity: 0;
    z-index: 6;
}
body.menu-open .menu-wrapper .container::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
}
body.has-special .menu-wrapper .menu-wrap {
    padding-top: 42px;
}
.menu-wrapper .menu-wrap {
    display: inline-block;
    position: absolute;
    top: 150px;
    left: 20px;

    bottom: 30px;
    z-index: 70;
    opacity: 0;
    width: 100%;
    transform: scale(0);
    -webkit-transform: scale(0);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transition: 0.3s;
    overflow: auto;
}
body.menu-open .menu-wrapper .menu-wrap {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}
.menu-wrap .menu-links {
    text-align: left;
    margin-top: 45px;
}
.menu-wrap .menu-links .label {
    display: block;
    margin-top: 12px;
}
.menu-wrap .menu-links .socialmedia {
    display: inline-block;
    padding: 18px 0 0 0;
    text-align: left;
}

.menu-wrap .menu-logo {
    display: block;
    text-align: left;
    margin: 20px 0 35px;
}
.menu-wrap .menu-logo > img {
    display: inline-block;
    width: 250px;
}
.menu-wrap ul.menu {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-wrap ul.menu-top {
    margin-top: 35px;
}
.menu-wrap ul.menu > li {
    display: block;
    position: relative;
    text-align: left;
    transition: 0.25s;
}
.menu-wrap ul.menu > li > a {
    display: inline-block;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 9px 0;
    transition: 0.25s;
}
.menu-wrap ul.menu:hover > li > a {
    color: #a0a0a0;
}
.menu-wrap ul.menu > li:hover > a,
.menu-wrap ul.menu > li:focus > a {
    color: #fff;
}
.menu-wrap ul.menu:not(:hover) > li.active > a,
.menu-wrap ul.menu > li > a:hover,
.menu-wrap ul.menu > li > a:focus {
    text-decoration: none !important;
}
.menu-wrap ul.menu > li:hover,
.menu-wrap ul.menu > li:focus {
    padding-left: 25px;
}
.menu-wrap ul.menu > li::before {
    content: ' ';
    display: inline-block;
    width: 13px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 5;
    transform: translateY(-50%) scaleX(0);
    -webkit-transform: translateY(-50%) scaleX(0);
    transform-origin: 0% 50%;
    -webkit-transform-origin: 0% 50%;
    transition: 0.3s;
    opacity: 0;
}
.menu-wrap ul.menu > li:hover::before,
.menu-wrap ul.menu > li:focus::before {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
    -webkit-transform: translateY(-50%) scaleX(1);
}




/* Socialmedia */
.socialmedia {
    display: block;
    text-align: center;
}
.background-wrapper .socialmedia {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 170px;
    z-index: 999;
    transition: 0.4s;
}
body.scrolled .background-wrapper .socialmedia {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    opacity: 0;
}
.socialmedia .item {
    display: inline-block;
    position: relative;
    vertical-align: top;
    /*background: #191919;*/
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    width: 58px;
    height: 58px;
    padding: 5px 6px;
    margin: 0 0 5px 2px;
    transition: 0.3s;
}
.socialmedia .item:hover,
.socialmedia .item:focus {
    opacity: 1;
    /*background: #2b2b2b;*/
}
.socialmedia .item.facebook {
    padding: 7px 8px;
}
.socialmedia .item.instagram {
    padding: 5px 6px;
}
.socialmedia .item.linkedin {
    padding: 3px 4px;
}
.socialmedia .item > img {
    width: 100%;
    transition: 0.3s;
}
.socialmedia:hover .item > img,
.socialmedia:focus .item > img {
    opacity: 0.45;
}
.socialmedia .item:hover > img,
.socialmedia .item:focus > img {
    opacity: 1;
}





/* Background */
.background-wrapper {
    display: block;
    position: relative;
    background-color: #000;
    overflow: hidden;
}
.background-wrapper.manual {
    background-image: url('/images/background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.background-wrapper .background-slider {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    overflow: hidden;
    transition: opacity 0.35s;
}
.background-wrapper .background-slider .slider-wrap {
    position: relative;
    z-index: 10;
}

.background-wrapper .background-slider .slide-item {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    transition: 0.35s;
    height: 100%;
    opacity: 0;
}
.background-wrapper .background-slider .slide-item.pre-active {
    z-index: 20;
    opacity: 0;
}
.background-wrapper .background-slider .slide-item.active {
    z-index: 30;
    opacity: 1;
}


.background-wrapper .background-wrap {
    display: block;
    position: relative;
    min-height: 500px;
    height: 100vh;
}
.background-wrapper .background-wrap .article {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    width: 700px;
    max-width: 100%;
    text-align: center;
    margin-top: -30px;
}
.background-wrapper .background-wrap .article h1,
.background-wrapper .background-wrap .article h2 {
    font-size: 48px;
    line-height: 1.2em;
}
.background-wrapper .background-wrap .location-items {
    color: #fff;
    font-size: 68px;
    line-height: 1.2em;
    text-transform: uppercase;
}
.background-wrapper .background-wrap .location-items .item {
    display: block;
    position: relative;
    text-align: center;
    margin: 10px 0;
    transition: 0.3s;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.background-wrapper .background-wrap .location-items .item:hover,
.background-wrapper .background-wrap .location-items .item:focus {
    transform: scale(1.2);
    text-shadow: 0px 0px 20px rgba(0,0,0,0.6)
}

.background-wrapper .background-wrap .location-items:hover .item:not(:hover) {
    opacity: 0.8;
}
.background-wrapper .background-wrap .location-items .item > span {
    display: inline-block;
    position: relative;
    padding: 0 30px;
}
.background-wrapper .background-wrap .location-items .item > span::before {
    content: ' ';
    display: block;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    bottom: -5px;
    z-index: -1;
    border-radius: 9999px;
    -moz-border-radius: 9999px;
    -webkit-border-radius: 9999px;
    transition: 0.3s;
    overflow: hidden;
}
.background-wrapper .background-wrap .location-items .item:hover > span::before {
    /*background: rgba(0,0,0,0.35);*/
}
.menu-wrapper .container {
    display: block;
    position: relative;
    z-index: 5;
}



.background-special {
    display: inline-block;
    position: absolute;
    bottom: -8em;
    right: -4em;
    z-index: 75;
    color: #fff;
    font-weight: 500;
    width: 16em;
    height: 16em;
    border-radius: 999px;
    transform-origin: 80% 60%;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.background-special:hover {
    transform: scale(1.25);
}
.background-special > .special-wrap {
    position: absolute;
    text-align: center;
    width: 75%;
    height: 50%;
    right: 25%;
    bottom: 48%;
}
.background-special > .special-wrap > .special {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    padding: 0 20px 0 45px;
    font-size: 1.75rem;
}
.background-special:hover,
.background-special:focus {
    color: #000;
}






/* Footer */
.footer-wrapper {
    display: block;
    position: relative;
    color: #fff;
    min-height: 50px;
    overflow: hidden;
    background: #101010;
}
.footer-wrapper .footer {
    padding: 75px 0 50px;
}
.footer-wrapper .footer-logo {
    display: block;
    margin: 0 auto;
    width: 260px;
}
.footer-wrapper .footer-entourage {
    display: block;
    margin: 0 auto;
    width: 100px;
    opacity: 0.4;
    /*position: absolute;*/
    /*bottom: 0;*/
    /*left: 15px;*/
}
.footer-wrapper .footer-menu {
    display: block;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 50px auto;
    text-align: center;
}
.footer-wrapper ul.menu {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-wrapper ul.menu > li > a {
    display: inline-block;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 9px 0;
    transition: 0.25s;
}
.footer-wrapper ul.menu:not(:hover) > li.active > a {
    color: #888;
}
.footer-wrapper ul.menu > li:hover > a,
.footer-wrapper ul.menu > li:focus > a {
    color: #888;
    text-decoration: none;
}


.footer-wrapper .container {
    position: relative;
}
.footer-wrapper .footer-wrap {
    display: block;
    position: relative;
}
.footer-wrapper .footer-map .maps {
    display: block;
    position: relative;
    min-height: 600px;
}
.footer-wrapper .footer-map .maps > iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
}
.footer-wrapper .skew-item.right {
    background: #191919;
}
.footer-wrapper .footer-wrap {
    display: inline-block;
    position: absolute;
    top: 100px;
    right: 30px;
    max-width: 360px;
}
.footer-wrapper .footer-wrap::before {
    content: ' ';
    display: block;
    background-image: url(/images/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 180px;
    height: 180px;
    position: absolute;
    top: 0;
    left: -50px;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}
.footer-wrapper .menu-wrap ul.menu > li > a {
    font-size: 28px;
    padding: 12px 0;
}



/* A la carta */
.carta-wrapper {
    border-top: 2px solid #101010;
}
.carta-wrapper .article {
    text-align: center;
    margin-bottom: 40px;
}
.carta-wrapper .carta-items {
    border-top: 2px solid #3a3a3a;
    padding-top: 40px;
}
.carta-wrapper .carta-items ul {
    display: block;
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
    font-size: 0;
    text-align: left;
}
.carta-wrapper .carta-items.center ul {
    text-align: center;
}
.carta-wrapper .carta-items ul > li {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    font-size: 17px;
    line-height: 1.2em;
    margin-top: 24px;
    text-align: center;
    text-transform: lowercase;
}
.carta-wrapper .carta-items ul > li span {
    display: block;
}
.carta-wrapper .carta-items ul > li small {
    display: block;
    font-size: 14px;
    color: #6d6d6d;
}
.carta-menu {
    display: block;
    position: fixed;
    background: #191919;
    top: 120px;
    left: 0;
    right: 0;
    z-index: 20;
}
.carta-menu .menu {
    text-align: center;
}
.carta-menu .menu .button {
    cursor: pointer;
    padding: 18px 16px;
    margin: 0;
}
body.has-special .carta-menu {
    top: 162px;
}



/* Careers */
.careers-wrap {
    display: block;
    position: relative;
    padding-left: 260px;
    border: 2px solid #101010;
    background: #191919;
    margin-top: 55px;
    min-height: 200px;
}
.careers-wrap .wrap-list {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 20;
    overflow: auto;
    width: 260px;
    padding: 15px 0;
}
.careers-wrap .wrap-list .item {
    cursor: pointer;
    display: block;
    position: relative;
    font-size: 17px;
    line-height: 1.2em;
    padding: 10px 25px;
    transition: 0.3s;
    overflow: hidden;
}
.careers-wrap .wrap-list .item::before {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 0 999px 999px 0;
    -moz-border-radius: 0 999px 999px 0;
    -webkit-border-radius: 0 999px 999px 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #101010;
    transition: 0.3s;
}
.careers-wrap .wrap-list:not(:hover) .item.active::before,
.careers-wrap .wrap-list .item:hover::before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.careers-wrap .wrap-list .item:hover {
    color: #fff;
}
.careers-wrap .wrap-list .item.active {
    color: #fff;
}
.careers-wrap .wrap-content {
    display: block;
    position: relative;
}
.careers-wrap .careers-item {
    display: none;
    padding: 25px;
    max-height: calc(100vh - 220px);
    overflow: auto;
}
.careers-wrap .careers-item.active {
    display: block;
}



/* Reservations */
.reservation-wrap {
    display: block;
    position: relative;
    padding-right: 260px;
    min-height: 300px;
}
.reservation-wrap .reservation-widget {
    display: inline-block;
    position: absolute;
    text-align: right;
    top: 0;
    right: 0;
    z-index: 20;
    width: 230px;
}
.reservation-wrap.is-static .reservation-widget {
    position: relative;
    text-align: left;
    width: 230px;
    margin: 30px 0;
}




/* Reservation Button */
.reservation-buttons {
    display: block;
    position: relative;
}
.sr-button {
    display: inline-block;
    background-color: #c20f20;
    color: #fff;
    padding: 10px 20px;
    line-height: 1.35em;
    border-radius: 8px;
    transition: 0.25s;
    cursor: pointer;
}
.sr-button:hover,
.sr-button:focus {
    background-color: #fd2b42;
}

.sr-button.white {
    background-color: #bebebe;
    color: #000;
}
.sr-button.white:hover,
.sr-button.white:focus {
    background-color: #fff;
}






/* Videos */
.videos-wrap {
    display: block;
    position: relative;
}
.videos-wrap .video-item {
    display: block;
    position: relative;

}
.videos-wrap .video-item h2 {

}
.videos-wrap .video-item .meta {

}
.videos-wrap .video-item .video {
    display: block;
    position: relative;
    height: 620px;
    margin-top: 25px;
    background: #101010;
    overflow: hidden;
}
.videos-wrap .video-item .video > iframe {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
}



/* Press */
.press-wrap {
    display: block;
    position: relative;
}
.press-wrap .press-item {
    display: block;
    position: relative;
    background: #191919;
    border: 2px solid #101010;
    padding: 20px 20px 55px;
    margin-bottom: 30px;
    transition: 0.3s;
}
.press-wrap .press-item:hover {
    color: #fff;
    border: 2px solid #fff;
}
.darker .press-wrap .press-item {
    background: #232323;
}
.press-wrap .press-item h3 {
    display: block;
    font-size: 18px;
    text-align: center;
    max-height: 2.4em;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    margin: 0 0 10px;
    padding: 0 20px;
}
.press-wrap .press-item h3 > span {
    display: block;
}
.press-wrap .press-item .image {
    display: block;
    position: relative;
    margin: 0 auto;
    height: 110px;
    width: 160px;
}
.press-wrap .press-item .article {
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 5;
}



/* Block Button */
.block-button {
    display: block;
    position: relative;
    height: 90px;
    margin-bottom: 30px;
    text-align: center;
    background: #333333;
    box-shadow: inset 0px 0px 20px #232323;
    border-radius: 6px;
    transition: 0.3s;
}
.block-button:hover {
    color: #fff;
}
.block-button > span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    font-size: 19px;
    transition: 0.3s;
}
.block-button:hover > span {
    transform: translateY(-50%) scale(1.15);
    -webkit-transform: translateY(-50%) scale(1.15);
}
.block-button > span > small {
    display: block;
    font-size: 12px;
}



/* Popup */
.popup-wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.87);
    overflow: auto;
}
.popup-wrapper .popup-wrap {
    display: block;
    position: absolute;
    width: 500px;
    max-width: 100%;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: 0 auto;
    transform: translateY(-50%);
}
.popup-wrapper .popup-wrap .article {
    position: relative;
    color: #fff;
    background: #2d2d2d;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 20px;
}
.popup-wrapper .popup-wrap ul a {
    text-decoration: underline;
}
.popup-wrapper .popup-wrap ul a:hover {
    color: #fff;
}
.popup-wrapper .button {
    display: inline-block;
    background: #4a4a4a;
    color: #c7c7c7;
    position: absolute;
    right: 20px;
    bottom: 20px;
    margin: 0;
    font-size: 16px;
    padding: 11px 16px 13px;
}
.popup-wrapper .button:hover {
    color: #fff;
    background: #555;
}


/* Specials  popup */

.specials-popup-wrapper {
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 751;
    /*background: linear-gradient(to bottom,*/
    /*rgba(0, 0, 0, 0.35),*/
    /*rgba(0, 0, 0, 0.65) 30%,*/
    /*rgba(0, 0, 0, 0.7) 50%,*/
    /*rgba(0, 0, 0, 0.65) 70%,*/
    /*rgba(0, 0, 0, 0.35));*/
    transition: opacity 200ms;
    pointer-events: none;
}
.specials-popup-wrapper.show {
    opacity: 1;
    pointer-events: all;
}

.specials-popup-wrapper .specials-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 35%;
    color: #FFFFFF;
    transition: transform 200ms;
}
.specials-popup-wrapper.show .specials-popup {
    transform: translate(-50%, -50%);
}
.specials-popup .specials-popup-inner {
    height: 100%;
    width: 100%;
}

/* Popup content */
.specials-popup .specials-popup-content-wrap,
.specials-popup-wrapper .specials-popup  {
    max-width: 462px;
}
.specials-popup .specials-popup-content-wrap {
    position: absolute;
    padding: 150px 52px 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.specials-popup .specials-popup-content-wrap h2,
.specials-popup .specials-popup-content-wrap h3,
.specials-popup .specials-popup-content-wrap h4 {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 0;
}
.specials-popup .specials-popup-content-wrap h2,
.specials-popup .specials-popup-content-wrap h3,
.specials-popup .specials-popup-content-wrap h4,
.specials-popup .specials-popup-content-wrap p em strong {
    text-transform: uppercase;
}
.specials-popup .specials-popup-content-wrap p em strong {
    font-style: normal;
    font-size: 14px;
}

.specials-popup .specials-popup-content-wrap .button {
    margin-top: 1.25rem;
    font-size: 1.1rem;
    margin-bottom: 0;
}


/* Popup image */

.specials-popup .specials-popup-image-wrap {
    height: 100%;
    width: 100%;
    position: relative;
}
.specials-popup .specials-popup-image-wrap div.image {
    position: relative;
    min-height: 469px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    box-shadow: 4px 8px 24px -5px rgba(0,0,0,0.18);
}



/* Popup close button */

.specials-popup .specials-popup-close {
    pointer-events: auto;
    cursor: pointer;
}
.specials-popup .specials-popup-close svg {
    fill: #FFFFFF;
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    width: 1rem;
    height: 1rem;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}




/* Order form */
.form-order .form .field {
    display: block;
    margin-bottom: 30px;
}
.form-order .form .field label.label {
    display: block;
    margin: 0 0 6px;
    font-size: 14px;
}
.form-order .form .field .set {
    display: block;
}
.form-order .form .field .set label.radio,
.form-order .form .field .set label.checkbox {
    display: block;
    position: relative;
    margin-bottom: 0;
    padding-left: 20px;
    line-height: 1.4em;
    margin-top: 6px;
}
.form-order .form .field .set label.radio input,
.form-order .form .field .set label.checkbox input {
    display: inline-block;
    position: absolute;
    top: 4px;
    left: 0;
    margin: 0;
}
.form-order .form .field .set label.radio span,
.form-order .form .field .set label.checkbox span {
    display: block;
}



/* Special offer */
.special-wrapper {
    display: block;
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 350;
    color: #fff;
    background: #232323;
    text-align: center;
    text-decoration: none !important;
    font-size: 1.165rem;
    font-weight: 400;
}
.special-wrapper .container {
    position: relative;
    transition: 0.3s;
    height: 42px;
}
.special-wrapper:hover,
.special-wrapper:focus {
    color: #fff;
}
.special-wrapper::before {
    content: ' ';
    display: block;
    position: absolute;
    background: #fff;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transition: 0.35s;
    width: 0;
}
.special-wrapper:hover::before,
.special-wrapper:focus::before {
    width: 100%;
}
.special-wrapper span.special {
    display: block;
    position: absolute;
    transition: 0.25s;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 12;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}









/* Responsive medium desktop */
@media all and (max-width: 1200px) {

    /* Menu */
    .menu-wrap .menu-logo {
        position: absolute;
        right: 150px;
        top: 2px;
        margin: 0;
        z-index: 20;
    }



    /* Footer */
    .footer-wrapper .footer-wrap::before {
        width: 150px;
        height: 150px;
        top: 0;
        left: 0;
    }



    /* Videos */
    .videos-wrap .video-item .video {
        height: 520px;
    }




}


/* Responsive small tablet */
@media all and (max-width: 992px) {

    .slider-wrap .slide-image:not(.full) {
        height: 700px;
    }

    /* Menu */
    body.menu-open .menu-wrapper::after {
        right: 0;
        transition: 0.5s;
        transform: skewX(-8deg);
        -webkit-transform: skewX(-8deg);
    }


    /* Footer */
    .footer-wrapper .footer-wrap {
        top: 65px;
    }
    .footer-wrapper .footer-wrap::before {
        width: 120px;
        height: 120px;
    }


    /* Videos */
    .videos-wrap .video-item .video {
        height: 390px;
    }


    /* Press */
    .press-wrap .press-item .image {
        margin: 5px auto 0;
        height: 90px;
        width: 110px;
    }



}




@media all and (max-height: 700px) and (min-width: 768px) {

    /* Background */
    .background-wrapper .socialmedia {
        text-align: left;
        padding-left: 20px;
        bottom: auto;
        top: 45px;
    }
    .background-wrapper .background-wrap .location-items {
        font-size: 54px;
    }


}




/* Responsive extra small mobile */
@media all and (max-width: 768px) {



    body.has-special {
        padding-top: 36px;
    }
    body.has-special .header-wrapper {
        top: 36px !important;
    }
    body.has-special .header-wrapper .hamburger.fixed {
        margin-top: 36px !important;
    }
    .special-wrapper .container {
        height: 36px;
    }
    body.has-special .menu-wrapper .menu-wrap {
        padding-top: 36px;
    }


    .block-button {
        margin-bottom: 15px;
    }

    .slider-wrap .slide-image:not(.full) {
        height: 600px;
        max-height: 100vh;
    }

    .header-wrapper .reservation-buttons {
        top: 80px;
        right: 22px;
        left: 22px;
        text-align: center;
    }
    .reservation-wrap .reservation-widget {
        text-align: left;
    }


    /* Hotfix */
    body.page-menu .header-wrapper .reservation-buttons {
        position: fixed;
        top: auto;
        right: auto;
        bottom: 10px;
        left: 10px;
    }


    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 21px;
    }
    .wrapper {
        padding: 50px 0 55px;
    }
    .wrapper.other {
        padding: 75px 0 1px;
    }
    .wrapper.other.even {
        padding: 30px 0 1px;
    }
    .wrapper.minimal {
        padding: 30px 0;
    }


    /* Carta menu */
    .carta-menu {
        top: 100px;
    }
    .carta-menu .container {
        max-width: 100%;
    }
    .carta-menu .menu {
        white-space: nowrap;
        overflow: auto;
    }
    .carta-menu .menu .button {
        padding: 18px 8px;
    }
    .carta-wrapper .carta-items ul > li {
        width: 50%;
        font-size: 16px;
        padding: 0 10px;
    }


    /* General */
    .article.main.title h1 {
        font-size: 32px;
    }
    body:not(.homepage) {
        padding-top: 100px;
    }
    .menu-wrap ul.menu > li > a {
        font-size: 26px;
        padding: 10px 0;
    }
    .slider-wrap .image-slide {
        display: block;
        position: relative;
        min-height: 200px;
        height: calc(70vh - 100px);
    }
    .slider-wrap .slick-arrow {
        width: 46px;
        height: 46px;
    }
    .slider-wrap .slick-arrow.slick-prev {
        left: 10px;
    }
    .slider-wrap .slick-arrow.slick-next {
        right: 10px;
    }
    .slider-wrap .slick-arrow::after {
        background-position: center left 12px;
        background-size: 24px;
    }
    .slider-wrap .slick-arrow.slick-prev::after {
        background-position: center right 12px;
    }
    .slider-wrap .slick-arrow.slick-down::after {
        background-position: center 11px;
    }



    /* Header */
    .header-wrapper {
        height: 100px;
    }
    .hamburger {
        top: 15px;
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
    }
    body.scrolled .hamburger {
        top: 13px;
    }
    .hamburger.cross, .hamburger.cross-pre {
        transform: scale(0.8) rotate(90deg);
        -webkit-transform: scale(0.8) rotate(90deg);
    }
    body.scrolled .header-wrapper .logo-entourage {
        width: 80px;
        top: 18px;
    }
    body.scrolled .header-wrapper .logo-wrap {
        width: 210px;
        top: 35px;
    }
    .header-wrapper .header-label {
        top: 40px;
        font-size: 26px;
        font-weight: 300;
    }



    /* Background */
    .background-wrapper .socialmedia {
        text-align: left;
        padding-left: 20px;
        bottom: auto;
        top: 20px;
    }
    .background-wrapper .background-wrap .location-items {
        font-size: 54px;
    }
    body.scrolled .background-wrapper .socialmedia {
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
    body.scrolling .background-wrapper .socialmedia {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        opacity: 0;
    }


    /* Menu */
    body.menu-open .menu-wrapper::after {
        width: 120%;
    }
    .menu-wrapper .menu-wrap {
        left: 0;
        right: 0;
        padding: 0 30px;
        transform-origin: 50% 0;
        -webkit-transform-origin: 50% 0;
        width: auto;
    }
    .menu-wrap .menu-logo {
        display: none;
    }
    .menu-wrapper .socialmedia {
        position: absolute;
        top: 0;
        margin: 0;
        right: 20px;
        z-index: 20;
        padding: 0 !important;
    }
    .menu-wrapper .socialmedia .item {
        display: block;
    }


    /* Footer */
    .footer-wrapper .footer-wrap::before {
        left: auto;
        right: -10px;
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
    }
    .footer-wrapper .footer-wrap {
        top: 45px;
        left: 30px;
        right: auto;
        text-align: left;
    }
    .footer-wrapper .menu-wrap ul.menu > li {
        text-align: left;
    }
    .footer-wrapper .menu-wrap ul.menu > li::before {
        transform-origin: 0% 50%;
        -webkit-transform-origin: 0% 50%;
        right: auto;
        left: 0;
    }
    .footer-wrapper .menu-wrap ul.menu > li:hover,
    .footer-wrapper .menu-wrap ul.menu > li:focus {
        padding-right: 0;
        padding-left: 25px;
    }
    .footer-wrapper .skew-wrapper .skew-item.right {
        min-height: 500px;
    }
    .footer-wrapper .skew-wrapper .skew-item:not(.right) {
        margin: 380px 0 0;
    }
    .footer-wrapper .footer-map .maps {
        min-height: 450px;
    }
    .footer-wrapper .menu-wrap ul.menu {
        margin-left: 25px;
    }
    .footer-wrapper .socialmedia {
        margin-top: 30px;
    }
    .footer-wrapper .socialmedia .item {
        margin: 0 2px 0 0;
    }
    .footer-wrapper .footer-entourage {
        position: static;
    }



    /* Videos */
    .videos-wrap .video-item .video {
        height: 290px;
    }


    /* Reservations */
    .reservation-wrap {
        min-height: 0;
        padding-right: 0px;
    }
    .reservation-wrap .reservation-widget {
        display: inline-block;
        position: static;
        margin: 30px 0;
    }


    /* Careers */
    .careers-wrap {
        padding-left: 0px;
    }
    .careers-wrap .wrap-list {
        display: block;
        position: relative;
        padding: 15px 15px 15px 0;
        width: auto;
    }







}


/* Responsive - Mobile (0px - 575px) */
@media all and (max-width: 575px) {


    .popup-wrapper .popup-wrap {
        display: block;
        position: static;
        top: auto;
        transform: none;
        -webkit-transform: none;
        margin-top: 100px;
    }
    .popup-wrapper .button {
        display: inline-block;
        position: static;
        margin-top: 10px;
    }


    .button, .base-button {
        font-size: 16px;
    }

    body.menu-open .menu-wrapper::after {
        width: 140%;
    }
    .background-wrapper .background-wrap .location-items {
        font-size: 40px;
    }

    @-webkit-keyframes big_small {
        0% {-webkit-transform: scale(1);transform: scale(1);}
        45% {-webkit-transform: scale(0.85);transform: scale(0.85);}
        100% {-webkit-transform: translateY(0px);transform: scale(1);}
    }
    @keyframes big_small {
        0% {-webkit-transform: scale(1);transform: scale(1);}
        45% {-webkit-transform: scale(0.85);transform: scale(0.85);}
        100% {-webkit-transform: scale(1);transform: scale(1);}
    }

    .background-wrapper .background-wrap .article h1,
    .background-wrapper .background-wrap .article h2 {
        font-size: 34px;
        line-height: 1.2em;
    }
    .background-wrapper .socialmedia {
        top: auto;
        bottom: 55px;
        width: 50px;
    }

    .videos-wrap .video-item .video {
        height: 50vw;
    }
    .slider-wrap .slide-image:not(.full) {
        /*height: 530px;*/
    }
    .slider-wrap .slider-content {
        bottom: 160px;
        padding: 0 60px;
    }
    .article-banner {
        height: 180px;
    }






    body.is-special .slider-wrap .slick-dots,
    body.is-special .background-wrapper .logo-entourage,
    body.is-special .slider-wrapper .logo-entourage {
        left: 20px;
        transform: none;
        -webkit-transform: none;
        padding-left: 0;
    }





    /* Specials popup */
    .specials-popup-wrapper .popup {
        bottom: 0;
        top: unset;
        width: 100%;
        height: auto;
    }
    .specials-popup .specials-popup-inner {
        display: block;
    }
    .specials-popup-wrapper.show .specials-popup {
        bottom: 40px;
        transform: translateX(-50%);
    }
    .specials-popup .specials-popup-close {
        width: 1.35rem;
        height: 1.35rem;
    }

}

@media all and (max-width: 480px) {

    body.page-home .header-wrapper .logo-wrap {

    }
    body:not(.page-home) .header-wrapper .logo-wrap {
        right: 25px;
        left: auto;
        transform: none;
        -webkit-transform: none;
        width: 190px;
    }
    .header-wrapper .reservation-buttons {
        top: 80px;
        right: 22px;
        left: auto;
        text-align: right;
    }



}



@media all and (max-width: 440px) {



    .menu-wrap ul.menu > li > a {
        font-size: 22px;
        padding: 6px 0;
    }
    .menu-wrapper .menu-wrap {
        top: 130px;
        bottom: 100px;
        overflow: auto;
    }
    .background-wrapper .socialmedia {
        bottom: 55px;
        width: 50px;
    }
    .background-wrapper .socialmedia .item {
        width: 50px;
        height: 50px;
        margin-right: 0;
    }
    .header-wrapper .logo-entourage,
    body.scrolled .header-wrapper .logo-entourage {
        width: 80px;
        top: 120px;
        transform: translateX(-150px);
        -webkit-transform: translateX(-150px);
    }

    body.menu-open .header-wrapper .logo-entourage {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }
    body.menu-open .menu-wrapper::after {
        right: 0;
        transition: 0.5s;
        transform: skewY(20deg);
        -webkit-transform: skewY(20deg);
        transform-origin: 100% 0%;
        -webkit-transform-origin: 100% 0%;
    }
    .menu-wrap ul.menu-top {
        margin-top: 20px;
    }
    .menu-wrap .menu-links {
        margin-top: 25px;
    }

    .carta-wrapper .carta-items ul > li {
        width: 100%;
    }





}




@media all and (max-width: 440px) {


    .background-wrapper .background-wrap .location-items {
        font-size: 34px;
    }




}






@media all and (max-width: 1200px) {
    .row-xl {
        display: block !important;
    }
}
@media all and (max-width: 992px) {
    .row-lg {
        display: block !important;
    }
}
@media all and (max-width: 768px) {
    .row-md {
        display: block !important;
    }
}
@media all and (max-width: 575px) {
    .row-sm {
        display: block !important;
    }
}
