body {
    overflow-x: hidden;
    overscroll-behavior: contain;    
}

.coloredBackground a {
    color: white;
}

.coloredBackground,
#landingContent table {
    background: #06beb6;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #48b1bf, #06beb6);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #48b1bf, #06beb6);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
}

#landingContent table {
    padding: 20px;
    width: 100%;
    border-top: 1px solid darkgray;
    border-bottom: 1px solid darkgray;
    margin-top: 40px;
    margin-bottom: 20px;
}

#landingContent table td:nth-child(2) {
    padding-left: 10px;
    padding-right: 10px;
}

#header {
    padding-top: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid darkgray;
}

#topHeader {
    min-width: 200px;
    top: 0;
    position: fixed;
    height: auto;
    background: #404040;
    width: 100%;
    z-index: 100;
}

#topHeader .logo img {
    display: inline;
}

#topHeader img {
    margin: 0;
    border: 0;
    display: initial;
    width: 32px;
    height: 32px;
}

#firstLineHeader {
    height: 30px;
}
#topHeader>*:first-child span {
    font-size: x-large;
    font-weight: bold;
    vertical-align: bottom;
}

#logoFrenchTechContainer {
    padding-bottom: 10px;
}

table.loginButtons {
    width: 100%;
    text-align: center;
}

table.loginButtons td {
    padding: 8px;
    vertical-align: top;
    text-align: right;
    width: 50%;
    padding-bottom: 0;
}

table.loginButtons td:last-child {
    text-align: left;
}

table.loginButtons form {
    display: inline-block;
}

/* Shared */
.loginBtn {
    box-sizing: border-box;
    position: relative;
    /* width: 13em;  - apply for fixed size */
    padding: 0 15px 0 46px;
    border: none;
    line-height: 34px;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 16px;
    color: #FFF;
    width: 100%;
    max-width: 175px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1), -1px -1px 1px rgba(0, 0, 0, 0.1);
}

.loginBtn:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 100%;
}

.loginBtn:focus {
    outline: none;
}

.loginBtn:active {
    box-shadow: inset 0 0 0 32px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: medium;
}

#header h1,
#header h2 {
    margin: 0;
    padding: 20px;
    padding-bottom: 10px;
}

#header h2 {
    padding: 15px;
    font-size: larger;
}

#form * {
    margin: 0;
}

h1 {
    font-size: x-large;
    margin: 0;
    padding: 10px;
}

input {
    font-size: small;
}

#landingContent {
    line-height: 1.5;
}

#landingContent div p {
    text-align: left;
    margin: 20px;
    margin-bottom: 0;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
    display: block;
    border: 1px solid darkgrey;
    margin-top: 10px;
    box-sizing: border-box;
}

.landing img {
    border: none;
}

#footer {
    border-top: 1px solid darkgray;
    margin-top: 40px;
}
#footer2 {
    margin: 10px 2px;   
}
#footer2 > * {
    margin: 2px;   
}

body,
#topHeader {
    max-width: 800px;
}

body {
    margin: auto;
    font-family: 'proxima_nova_rgregular', Arial, Helvetica, sans-serif;
}

#themePickerContainer {
    line-height: 40px;
}
.ui-menu .ui-menu-item {
    padding: 5px;
}

.ui-selectmenu-button.ui-button,
.ui-selectmenu-menu .ui-menu, 
.ui-selectmenu-menu.ui-front {
  border-radius: 6px;
}
        
.swiper-slide {
    width: 70%;
    margin: auto;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

#landingContent table.app-logo td:first-child {
    text-align: right;
}

#landingContent table.app-logo td:last-child {
    text-align: left;
}

#landingContent table.app-logo {
    background: white;
    border: none;
    margin: 0;
    padding: 0;
}

.app-logo img {
    width: 155px;
    min-width: 155px;
    height: inherit;
    margin: inherit;
    display: inherit;
    border: none;
    margin: inherit;
    box-sizing: inherit;
}

@media (max-width:370px) {

    #footer h1,
    #header h1 {
        font-size: large;
    }

    .loginBtn {
        font-size: 14px;
        padding: 0 10px 0 41px;
        max-width: 150px;
    }

    table.loginButtons td {
        padding: 5px;
        padding-bottom: 0;
    }
}


/*  BURGER
========================================== */

.burger {
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 4px;
    z-index: 10;
    width: 40px;
    height: 40px;
}

.burger span {
    position: relative;
    margin-top: 9px;
    margin-bottom: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -1.5px;
}

.burger span,
.burger span::before,
.burger span::after {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.burger span::before,
.burger span::after {
    position: absolute;
    content: "";
}

.burger span::before {
    top: -9px;
}

.burger span::after {
    top: 9px;
}

.burger.clicked span {
    background-color: transparent;
}

.burger.clicked span::before {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}

.burger.clicked span::after {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

.burger.clicked span:before,
.burger.clicked span:after {
    background-color: #ffffff;
}

.burger:hover {
    cursor: pointer;
}

/*  NAV
========================================== */

nav img {
    border: 0;
}

nav {
    background-color: #2a2a2a;
    position: fixed;
    z-index: 9;
    top: 0;
    height: 100%;
    max-width: 800px;
    width: 100%;
    padding: 100px 0px 60px 0px;
    overflow-y: auto;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

nav.show {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

nav.show ul.main li {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

nav.show ul.main li:nth-child(1) {
    transition-delay: 0.15s;
}

nav.show ul.main li:nth-child(2) {
    transition-delay: 0.3s;
}

nav.show ul.main li:nth-child(3) {
    transition-delay: 0.45s;
}

nav.show ul.main li:nth-child(4) {
    transition-delay: 0.6s;
}

nav.show ul.main li:nth-child(5) {
    transition-delay: 0.75s;
}

nav.show ul.main li:nth-child(6) {
    transition-delay: 0.9s;
}

nav.show ul.main li:nth-child(7) {
    transition-delay: 1.05s;
}

nav.show ul.main li:nth-child(8) {
    transition-delay: 1.2s;
}

nav.show ul.main li:nth-child(9) {
    transition-delay: 1.35s;
}

nav.show .about,
nav.show .social,
nav.show ul.sub {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: .85s;
}

nav ul.main {
    list-style-type: none;
}

nav ul.main li {
    margin-bottom: 20px;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav ul.main li:last-of-type {
    margin-bottom: 0px;
}

nav ul.main li a {
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    display: block;
    letter-spacing: 5px;
    font-weight: 600;
    padding: 10px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav ul.main li a span {
    color: #b7ac7f;
}

nav ul.main li a:hover {
    color: #b7ac7f;
}

nav .about {
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

nav .about p {
    color: #ffffff;
    font-family: "Spectral", serif;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    line-height: 170%;
}

nav .social {
    margin-top: 40px;
    position: relative;
    padding-bottom: 30px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

nav .social:after {
    content: "";
    width: 230px;
    height: 2px;
    background-color: #b7ac7f;
    position: absolute;
    bottom: 0;
    left: 0;
}

nav .social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 25px;
}

nav .social a:last-of-type {
    margin-right: 0px;
}

nav .social a:hover svg path,
nav .social a:hover svg circle {
    fill: #b7ac7f;
}

nav .social a svg {
    width: 100%;
    height: 100%;
}

nav .social a svg path,
nav .social a svg circle {
    fill: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav ul.sub {
    list-style-type: none;
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

nav ul.sub li {
    margin-bottom: 10px;
}

nav ul.sub li:last-of-type {
    margin-bottom: 0px;
}

nav ul.sub li a {
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav ul.sub li a:hover {
    color: #b7ac7f;
}

/*  OVERLAY
========================================== */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #b7ac7f;
    opacity: 0;
    visibility: hidden;
}

.overlay.show {
    opacity: 0.8;
    visibility: visible;
}



/* from html */
li>span {
    font-weight: bold;
    padding: 20px;
    line-height: 40px;
}

input {
    font-size: small;
}

li {
    list-style: none;
}

.section-title {
    font-size: 22px;
}

#topHeader .burger {
    margin-top: 4px;
}

#hostelHeader {
    line-height: 40px;
    box-sizing: border-box;
    width: 100%;
    list-style-type: none;
    display: table;
}

#hostelHeader li {
    display: inline;
}

#topHeader {
    height: auto;
}

#header {
    padding: 0px;
    width: 100%;
    margin: auto;
    height: 44px;
    transition: height 0.3s, opacity 0.3s;
    opacity: 1;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.overflow #header {
    height: 1px !important;
    border: 0;
    opacity: 0;
}

.overflow #hostelHeader li a,
.overflow #hostelHeader hr {
    opacity: 0;
}

#firstLineHeader {
    display: flex;
    line-height: 30px;
    vertical-align: middle;    
    margin: 5px 10px;
}
#firstLineHeader a:first-child {
    
}
#firstLineHeader a:last-child {
    margin-left: auto;
}

#firstLineHeader .logo {
    background-image: url('/landing/common/logo60h.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 30px;
    width: 100px;
}

#hostelHeader li {
    display: inline;
    text-align: center;
}

#hostelHeader hr,
#hostelHeader li a {
    opacity: 1;
    transition: opacity 0.4s;
}

#hostelHeader li a .fa {
    display: none;
    padding-right: 3px;
}

#hostelHeader li a {
    text-decoration: none;
    display: inline-block;
    margin: 0;
}

#hostelHeader li.active a {
    font-weight: bold;
}

#hostelHeader hr {
    height: 3px;
    margin: 0;
    background: white;
    border: none;
    transition: .3s ease-in-out;
}

#hostelHeader hr {
    width: 0%;
}

#hostelHeader li:nth-child(1) a,
#hostelHeader li:nth-child(1).active~hr,
#header #hostelHeader li:nth-child(1):hover~hr {
    width: 19%;
}
#header #hostelHeader li:nth-child(1):hover~hr,
#hostelHeader li:nth-child(1).active~hr {
    margin-left: 0;
}

#hostelHeader li:nth-child(2) a,
#hostelHeader li:nth-child(2).active~hr,
#header #hostelHeader li:nth-child(2):hover~hr {
    width: 22%;
}
#hostelHeader li:nth-child(2).active~hr,
#header #hostelHeader li:nth-child(2):hover~hr {
    margin-left: 19%;
}

#hostelHeader li:nth-child(3) a,
#hostelHeader li:nth-child(3).active~hr,
#header #hostelHeader li:nth-child(3):hover~hr {
    width: 24%;
}
#hostelHeader li:nth-child(3).active~hr,
#header #hostelHeader li:nth-child(3):hover~hr {
    margin-left: 41%;
}

#hostelHeader li:nth-child(4) a,
#hostelHeader li:nth-child(4).active~hr,
#header #hostelHeader li:nth-child(4):hover~hr {
    width: 19%;
}
#hostelHeader li:nth-child(4).active~hr,
#header #hostelHeader li:nth-child(4):hover~hr {
    margin-left: 65%;
}

#hostelHeader li:nth-child(5) a,
#hostelHeader li:nth-child(5).active~hr,
#header #hostelHeader li:nth-child(5):hover~hr {
    width: 16%;
}
#hostelHeader li:nth-child(5).active~hr,
#header #hostelHeader li:nth-child(5):hover~hr {
    margin-left: 84%;
}

#landingContent>div:first-child {
    padding-bottom: 20px;
    padding-top: 10px;
}

#landingContent {
    margin-top: 85px;
}


@media only screen and (max-width: 550px) and (min-width:450px) {
    #hostelHeader li a {
        font-size: small;
    }
}

@media only screen and (max-width: 450px) {
    #header.full {
        height: 100vh;
    }

    #header {
        position: relative;
        overflow: hidden;
        height: 40px;
    }

    #hostelHeader {
        position: absolute;
        transition: top 0.3s;
    }

    #header.full #hostelHeader {
        top: 0px;
    }

    #hostelHeader.match0 {
        top: 0px;
    }

    #hostelHeader.match1 {
        top: -40px;
    }

    #hostelHeader.match2 {
        top: -80px;
    }

    #hostelHeader.match3 {
        top: -120px;
    }

    #hostelHeader.match4 {
        top: -160px;
    }

    #hostelHeader.match5 {
        top: -200px;
    }

    #hostelHeader li.active .fa {
        display: inline;
    }

    #hostelHeader li a {
        font-size: normal;
    }

    #header #hostelHeader hr {
        visibility: hidden;
    }

    #header #hostelHeader {}

    #header #hostelHeader li a {
        width: 100%;
    }
}

#landingContent #community {
    padding-top: 0;
}

#community>table {
    margin-top: 0;
}

.bigText {
    margin: 10px;
    font-size: medium;
    font-weight: bold;
    display: block;
}

.subsection-title {
    margin: 30px;
  font-size: 22px;
}

.section-title > span:last-child {
    display: table;
    width: 100%;
}

.section-title > span:first-child {
    font-size: larger;
}

.section {
    padding-bottom: 40px;
}
.trust {
    padding-top: 10px;
    padding-bottom: 20px;
    display: block;
}
.section > div {
    padding-left: 10px;
    padding-right: 10px;
}

.section>div>h5+span {
    padding: 5px;
    padding-top: 0px;
}

.section>div>h5+span,
.section>div>h5 {
    opacity: 0;
    transition: opacity 0.2s;
}
.section>div.no-swiper>h5+span,
.section>div.no-swiper>h5 {
    opacity: initial;
}

.swiper-container {
    visibility: hidden;
}

.swiper-slide {
    width: 85%;
}

#landingContent div>.subsection-title {
    margin: 30px;
}

#features.section > div > .subsection-title,
#integrations.section > div > .subsection-title {
    border-top: 2px solid darkgrey;
    padding-top: 40px;
}

#features.section > div:first-of-type > .subsection-title, 
#integrations.section > div:first-of-type > .subsection-title {
    border-top: 0;
    padding-top: 0;
}

img {
    border: none;
    margin-top: 0;
}

#landingContent table {
    margin: 0;
}

/* <pricing> */

.card-pricing h5 {
    margin: 0;
    padding-right: 0px;
    display: inline-block;
    padding: 0;   
    font-size: x-large;
}

#pricing {
    padding-bottom: 0px;
}
#pricing>div {
    padding: 20px;
}

.reset {
    all: unset;
}

#pricing img {
    all: unset;
    margin: 10px;
}
.fa-circle {
    font-size: 8px;
    vertical-align: middle;
    margin-right: 10px;
}

.card-pricing.no-box {
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
  max-width: none;
}
.card-pricing {
  box-shadow: 0px 12px 59px 0px rgba(36, 7, 31, 0.11);
  max-width: 250px;
  border: 1px solid lightgrey;
  padding: 20px;
  margin: 40px 40px;
  display: inline-block;
  vertical-align: top;
}
.card-pricing ul span {
  font-weight: initial;
  padding: initial;
  line-height: initial;   
}
.card-pricing ul {
    margin: 10px;
}
.card-pricing li {
    line-height: 30px;
    text-align: left;
}
.priceContainer h1 {
    font-size: large;
    line-height: normal;
}
.price {
  margin: 0;
  padding-right: 0px;
  display: inline-block;
  padding: 0;
  font-size: x-large;
  font-weight: bold;
}

/* </pricing> */

#demo div:last-child h5 {
    margin-bottom: 0;
}
#demo div:last-child #demoQrCode {
    width: 100%;
    max-width: 250px;
}

#integration img {
    all: unset;
    max-width: 90vw;
}

.counters {
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.counters .odometer {
    font-weight: bold;
}

#more>div {
    margin: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    border-top: 2px solid darkgrey;
}

#more>div:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

#more>div:first-of-type {
    border-top: 0;
}

#footer {
    margin: 0;
    padding-top: 20px;
}

.newsletter>div {
    transition: opacity 0.5s;
    line-height: 37px;
}

.newsletter input {
    height: 32px;
    min-width: 200px;
}

#whatsappButton {
    position:fixed;
    width:45px;
    height:45px;
    bottom:15px;
    right:15px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;    
}
#whatsappButton * {
    margin-top:5px;
}

.menuBtn {
    margin: auto;
    color: white;
    background: #0795A1;
    padding: .5rem 1rem;
    display: block;
    border-radius: 4px;
    transition-duration: .25s;
    border: none;
    font-size: 14px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.45);
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    outline: none;
    text-align: center;
    width: 180px;
    width: fit-content;
    width: -moz-fit-content;
    text-decoration: none;
}

.menuBtn:active {
    background: #22272a;
}

@media(max-width: 600px) {
    .menuBtn {
        padding: 1rem;
    }

    #more>div {
        margin: 20px;
    }
}

.popup {
    display: none;
}

.fa-plus-circle {
    padding: 5px;
    vertical-align: middle;
    cursor: pointer;
}

.verticalMiddle {
    vertical-align: middle;
}

#specialOffers ul {
    margin: 10px;
}

#specialOffers ul li {
    text-align: left;
    list-style-type: circle;
    list-style-position: inside;
}

.withBorder {
    border: 1px solid lightgrey;
}

#mrzCodeScanner img {
    display: inline;
    width: initial;
    margin: 0;
    vertical-align: middle;
}

#mrzCodeScanner>div {
    text-align: left;
    margin: 5px;
}

.jconfirm .jconfirm-scrollpane {
    max-width: 400px;
    margin: auto;
}

table#guestExperienceLinkContainer {
    border: 0;
    background: none;
    background-color: white;
    color: black;
    padding: 0;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

table#guestExperienceLinkContainer td:last-child {
    padding-right: 5px;
}

table#guestExperienceLinkContainer td:first-child {
    padding-left: 5px;
}

.popup_background {
    transition: all 0.3s 0.3s;
}

.popup_content,
.popup_wrapper {
    transition: all 0.3s ease-out;
}

.popup_content {
    transform: translateX(0) translateY(-40%);
}

.popup_visible .popup_content {
    transform: translateX(0) translateY(0);
}

.popup_content button {
    text-align: center;
}

.popup_content {
    border: 1px solid transparent;
    border-radius: 10px;
    color: #31708f;
    background-color: white;
    border-color: #bce8f1;
    padding: 30px;
    margin: 30px;
    max-width: 500px;
}


/* same as in admin */
.proFlag::before {
    content: "PRO";
}
.proFlag {
  background-color: black;
  color: white;
  padding: 4px;
  font-size: 8px;
  border-radius: 9px;
  font-weight: bold;
  font-family: 'Arial Black', sans-serif;
  vertical-align: middle;
  display: inline-block;
  line-height: 10px;
  margin-bottom: 3px;
  margin-left: 3px;
  margin-right: 3px;
  word-break: initial;
}

.phoneContainer {
  margin: 10px auto;
}
.phone {
  position: relative;
  overflow: hidden;
  aspect-ratio: 350/644;
  margin: 10px auto;
  max-height: 75vh;
  min-height: 368px;
  min-width: 200px;
  max-width: min(80vw, 350px);
}
.phone::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/landing/common/phone.png?v=1');
    z-index: 1; /* Ensure it sits above the content */
    background-size: contain;
    background-repeat: no-repeat;    
    background-position: center;    
}
.phoneContent {
  border: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 7px 11px;
}

img.phoneContent, 
video.phoneContent {
}
img.phoneContent {
} 
    
    
@media only screen and (max-height: 800px) {
  .phoneContent  {
      padding: 7px 11px;     
  }
}
@media only screen and (max-height: 700px) {
  .phoneContent  {
      padding: 6px 9px;     
  }
}
@media only screen and (max-height: 600px) {
  .phoneContent  {
      padding: 5px 7px;     
  }
}
@media only screen and (max-width: 400px) {
    
    .phoneContent {
      padding: 4px 9px;     
    }
    img.phoneContent, 
    video.phoneContent {
    }
    img.phoneContent {
    } 

}
@media only screen and (max-width: 300px) {
    
    .phoneContent {
      padding: 5px;     
    }
    img.phoneContent, 
    video.phoneContent {
    }
    img.phoneContent {
    } 
}

.fixed-legend {
    font-style: italic;    
}

.ui-selectmenu-button.ui-button {
    width: 10em;
}

.register-container {
    justify-content: center;
    align-items: center;
    margin: 20px;
    border-top: 2px solid darkgrey;
    padding-top: 30px;
}
#features .register-container {
    margin: 30px;
    margin-bottom: 0px;
}
.register-container > div:first-child {
    margin-bottom: 10px;
}

.register-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #44c8bb;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    border: 1px solid lightgray;
    user-select: none;
}
.register-button .fa {
    padding-right: 10px;
}
.register-button:hover {
    background-color: #4ee8d9;
}

.register-button:active {
    background-color: #4ee8d9;
}

/* <FAQ> */
#faq {
    padding-bottom: 0;
}
#faq .faqHeader .faq-title {
    margin: 0;
    padding: 0;
    border: 0;
    text-align: left;
    margin-left: 10px;
    font-size: 22px;
}
#faq .section-title > * {
  vertical-align: middle;
}
#faq .fa-caret-right {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
#faq .rotate {
    transform: rotate(90deg);
}
#faq .faqHeader p {
    margin: 5px;
}
#faq .faqHeader {
    cursor: pointer;
    padding: 10px;
    margin-bottom: 1px;
}
#faq .faqHeader:first-of-type {
    margin-top: 1px;
}
#faq .faqContent {
    display: none;
    padding: 20px;
}
#faq .faqContent p {
    margin: 5px;
}
#faq .marginTop {
    margin-top: 20px;
}
#faq .marginBottom {
    margin-bottom: 20px;
}
#faq ul {
    list-style-type: circle;
    margin: auto;
    display: block;
    width: 400px;
    width: fit-content;
    width: -moz-fit-content;
}
#faq ul li {
    text-align: left;
    margin-left: 20px;
}
#faq img {
    margin-top: inherit;
}
/* </FAQ> */

.preloader{transition:3s;transition-property:color;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transform:-webkit-translate(-50%,-50%);transform:-moz-translate(-50%,-50%);transform:-ms-translate(-50%,-50%);color:#00f;display:inline-block;width:80px;height:80px}
.preloader,.preloader div{box-sizing:border-box}
.preloader div{position:absolute;border:4px solid currentColor;opacity:1;border-radius:50%;animation:1s cubic-bezier(0,.2,.8,1) infinite lds-ripple}
.preloader div:nth-child(2){animation-delay:-.5s}@keyframes lds-ripple{0%,4.9%{top:36px;left:36px;width:8px;height:8px;opacity:0}5%{top:36px;left:36px;width:8px;height:8px;opacity:1}100%{top:0;left:0;width:80px;height:80px;opacity:0}}


/* When CSS loaded, show the thing! */
body {
    opacity: 1 !important;
    background-color: white;
}