html {
    height: 100%;
    --zindexfirstloader: 1100;
    --zindexcommon: 1005;
    --zindexblackblock: 1006;

    --zindexlittleplanet: 1000;
    --zindexmainpano: 1;
    --mainmarginhorit: 32px;
    --mainvermargin: 22px;
    --maincolor: #253645;
    --scr_opacity: 1;
    --thumb_color: rgba(63, 45, 81, 0.35);
    user-select: none;
}

body {
    /* zoom:75%; */
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: 'untitled_sansregular', Arial, Helvetica, sans-serif;
    /* font-size: 0.8rem; */
    color: #FFFFFF;
    background-color: #000000;
}

/* *****************************************************************FIRST LOADER****************************************************** */
#first-loadder {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--maincolor);
    z-index: var(--zindexfirstloader);
    opacity: 1;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    transition: opacity 600ms linear;

}

.loader-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.loadingtext {
    opacity: .3;
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
    font-size: 0.8rem;

}

/* *****************************************************************FIRST LOADER****************************************************** */

#home-littleplanet {
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--zindexlittleplanet);
    opacity: 1;
    transition: all 1s 3.2s ease-in;
}

.go-away {
    transition: all 1s 3s ease-in-out;
}

#start-section {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--zindexcommon);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
}

#start-background {
    pointer-events: auto;
    width: 200px;
    height: 200px;
    /* transition: all 0.2s; */

}

#start-background:hover>#start-svg>path {
    fill: rgb(255, 255, 255);
}

#start-background:hover>#start-text {
    color: var(--maincolor);
}

#start-svg>path {
    opacity: 0.8;
    cursor: pointer;
    fill: var(--maincolor);
    transition: all 0.2s;
}

#start-text {
    font-family: 'untitled_sanslight', Arial, Helvetica, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    cursor: pointer;
    pointer-events: none;
    transition: all 0.2s;
    font-size: 1.2rem;

}

/* #start-svg:hover{
    fill:rgb(255, 255, 255);
}
#start-svg:hover #start-text { color:var(--maincolor) } */


#time-message-wrapper {
    position: absolute;
    top: 380px;
    transform: translate(0px, -30%);
    left: -140px;
    width: 348px;
    z-index: var(--zindexcommon);
    transition: all 0.4s;
}

#time-message-text {
    display: flex;
    position: absolute;
    top: 84px;
    left: 173px;
    width: 179px;
    flex-direction: column;

}

#time-message-text-direction {
    font-family: 'untitled_sansregular', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.4rem;
}

#time-message-text-line {
    height: 2px;
    width: 112px;
    background-color: white;
    margin-top: 11px;
    margin-bottom: 16px;

}

#time-message-text-day-month-text,
#time-message-text-message-text {
    font-family: 'untitled_sanslight', Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    line-height: 1.3rem;
    font-size: 1rem;
}

#time-message-text-hour-text {
    font-size: 2.8rem;
    line-height: 3rem;
    margin-top: 0;

}


#wrapper-main {
    width: 100%;
    height: 100%;
}

#logo-wrapper {
    position: absolute;
    top: var(--mainvermargin);
    left: var(--mainmarginhorit);
    cursor: pointer;
    z-index: var(--zindexcommon);
}

#reservation-wrapper {
    position: absolute;
    top: var(--mainvermargin);
    right: var(--mainmarginhorit);
    z-index: var(--zindexcommon);
}

#faqs-wrapper {
    position: absolute;
    top: var(--mainvermargin);
    right: 235px;
    z-index: var(--zindexcommon);
}


#faqs-button {
    width: 40px;
    height: 40px;
    color: white;
    background-color: var(--maincolor);
    display: inline-block;
    border: none;
    /* padding: 1rem 2rem; */
    margin: 0;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'untitled_sanslight', Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    ;
    cursor: pointer;
    text-align: center;
    transition: 0.2s all;
}

#faqs-button:hover {
    background-color: #ffffff;
    color: rgba(63, 45, 81, 1);
}

#reservation-button {
    width: 170px;
    height: 40px;
    color: white;
    background-color: var(--maincolor);
    display: inline-block;
    border: none;
    padding: 0.8rem 1.6rem;
    margin: 0;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'untitled_sansbold', Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    text-align: center;
    transition: 0.2s all;
}

#reservation-button:hover {
    background-color: #ffffff;
    color: rgba(63, 45, 81, 1);
}

#info {
    position: absolute;
    top: 80px;
    right: var(--mainmarginhorit);
    width: 340px;
    height: 100%;
    max-height: 460px;
    background: rgb(255, 255, 255, 0.65);
    pointer-events: none;
    color: var(--maincolor);
    border: 0px solid #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    -webkit-box-shadow: inset 2px 2px 1px 1px rgba(255, 255, 255, 0.97), inset -2px -2px 1px 1px rgba(255, 255, 255, 0.97);
    -moz-box-shadow: inset 2px 2px 1px 1px rgba(255, 255, 255, 0.97), inset -2px -2px 1px 1px rgba(255, 255, 255, 0.97);
    box-shadow: inset 2px 2px 1px 1px rgba(255, 255, 255, 0.97), inset -2px -2px 1px 1px rgba(255, 255, 255, 0.97);
    transition: 0.4s ease-in-out all;
}

.info-unnactive {
    background: rgb(255, 255, 255, 0.3) !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
}

#info-title-closed {
    display: none;
    opacity: 0;
    /* background: red; */
    padding: 12px 20px;
    max-width: 160px;
    /* max-height: 76px; */
    text-transform: uppercase;
    font-family: 'untitled_sansblack', Arial, Helvetica, sans-serif;
    flex-direction: row;
    font-size: 1.2rem;
    text-align: center;
    pointer-events: auto;
    cursor: pointer;
    transition: 0.3s all;
    user-select: none;

}

#info-header {
    pointer-events: none;
    opacity: 1;
    transition: 0.2s opacity;
}

#infosvg {

    position: absolute;
    top: -5px;
    right: -12px;
    width: 320px;
    height: 94px;
    z-index: 1;
    opacity: 0.55;
    fill: #ff8c9c;
    transition: all 0.3s;
}

#infosvgmobile {
    display: none;
    position: absolute;
    top: -60px;
    right: -292px;
    width: 500px;
    height: 600px;
    z-index: 0;
    opacity: 0.55;
    fill: #ff8c9c;
    transition: all 0.3s;
}

#close-info {
    width: 18px;
    position: absolute;
    right: 10px;
    top: 8px;
    pointer-events: auto;
    stroke: rgb(212, 17, 17);
    fill: rgb(212, 17, 17);
    color: rgb(212, 17, 17);
    z-index: 2;
    cursor: pointer;
    transition: 0.2s all;
}
#close-info-mobile{
    display:none;
    width: 18px;
    position: absolute;
    right: 22px;
    top: 18px;
    pointer-events: auto;
    stroke: rgb(212, 17, 17);
    fill: rgb(212, 17, 17);
    color: rgb(212, 17, 17);
    z-index: 2;
    cursor: pointer;
    transition: 0.2s all;
}

#close-info:hover {
    transform: rotate(90deg);
    cursor: pointer;
}

#info-direction {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-top: 20px;
    font-size: 0.7rem;
    z-index: 3;
}

#info-title {
    display: inline-block;
    margin-bottom: 0;
    padding-left: 20px;
    padding-top: 20px;
    width: 280px;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-family: 'untitled_sansblack', Arial, Helvetica, sans-serif;
    line-height: 1.9rem;
    /* margin-bottom: 0; */
}

#info-subtitle {

    font-weight: 600;
    font-variant: all-small-caps;
    margin-left: 20px;
}

.info-subtitle {
    font-size: 0.5rem;
}

.info-subtitle::before {
    content: "\a";
    white-space: pre;
}


#info-content {
    position: relative;
    user-select: none;
    padding-top: 0px;
    padding-right: 14px;
    padding-bottom: 0px;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 300px;
    pointer-events: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.3rem;
    font-family: 'untitled_sansregular', Arial, Helvetica, sans-serif;
    -webkit-mask: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
    mask: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
    opacity: 1;
    transition: 0.2s opacity;

}

#info-content-text {

    width: 280px;
    padding-top: 0px;
}

/* #info-content-text-description{

} */
.info-content-text-services {
    font-family: 'untitled_sansmedium', Arial, Helvetica, sans-serif;

}

.info-content-text-services h4 {
    margin-top: 2px;
}

.info-content-icons-services {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 11px;
    margin-left: -4px;

}

#services-included {
    max-width:299px;
}

#aditional-services {
    padding-bottom: 7px;
    margin-bottom: 15px;
}

.info-content-icons-iconset {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 52px;
}

.info-content-icons-iconset>svg {
    width: 29px;
    height: 29px;
}

.info-content-icons-iconset>p {
    font-family: 'untitled_sanslight', Arial, Helvetica, sans-serif;
    font-size: 0.6rem;
    text-align: center;
    line-height: 0.8rem;
}

#info-content::-webkit-scrollbar {
    width: 11px;
}

#info-content {
    scrollbar-width: thin;
    scrollbar-color: var(--thumb_color) transparent;
}

#info-content::-webkit-scrollbar-track {
    background: transparent;
}

#info-content::-webkit-scrollbar-thumb {
    background-color: var(-thumb_color);
    border-radius: 6px;
    border: 3px solid transparent;
}

#footer-main {
    position: absolute;
    bottom: 0;
    background-color: var(--maincolor);
    width: 100%;
    /* height: 215px; */
    height: 40px;
    border-radius: 16px 16px 0% 0%;
    pointer-events: none;
    font-family: 'untitled_sansregular', Arial, Helvetica, sans-serif;
    z-index: calc(var(--zindexblackblock) + 1);
    transition: 0.2s height;
    font-size: 0.75rem;

}

#footer-main-resting {
    height: 40px;
    /* background-color: blue; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition: opacity 0.2s;
}



#footer-main-resting-left {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 260px;
    margin-left: var(--mainmarginhorit);
    height: 100%;
    /* background-color: red; */
}

#footer-main-resting-right {
    width: 180px;
    margin-right: var(--mainmarginhorit);
    height: 40px;
    /* background-color: rgb(13, 190, 66); */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    /* align-items: center; */
    cursor: pointer;
    pointer-events: auto;
    /* transition: 0.3s height; */
}

#help-and-usability {
    padding-top: 13px;
}

#help-and-usability-arrow {
    padding-top: 13px;
    margin-left: 20px;
    width: 18px;
    height: 15px;
    transition: 0.3s 0.1s transform;
}

#footer-main-resting-right:hover>#help-and-usability-arrow {
    transform: translateY(-8px);
}

/* 
#footer-main-esting-left-year {}

#footer-main-esting-left-dot {}

#footer-main-esting-left-noupunt {} */
#footer-main-resting-left-book-now {
    display: none;
}

#footer-main-esting-left-noupunt>a,
#footer-main-esting-left-noupunt>a:visited {
    pointer-events: auto;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#footer-main-esting-left-noupunt>a:hover {

    text-decoration: underline;

}

#footer-main-up {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--maincolor);
    opacity: 0;
    display: block;
    border-radius: 16px 16px 0% 0%;
    pointer-events: none;
    font-family: 'untitled_sansregular', Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    transition: 0.3s opacity;

}

#close-help {

    padding: 10px;
    pointer-events: auto;
    cursor: pointer;
    margin-left: 35px;
    margin-top: 5px;
    transition: 0.2s all;
    width: 19px;

}

#footer-main-up-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    /* background-color: green; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

#close-help:hover {
    transform: rotate(90deg);
    cursor: pointer;
}

.help-buttons {
    margin-top: 10px;
    width: 200px;
    height: 150px;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.help-buttons>p {
    padding: 0 20px 0 20px;
    text-align: center;
}

.help-buttons>svg {
    width: 46px;
}

#hamburger-svg {
    width: 36px;
    margin-top: 9px;
    margin-bottom: 8px;
}

#black-block {
    display: none;
    opacity: 0;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    z-index: var(--zindexblackblock);
}

