:root{
    --gold-gradient: linear-gradient(59deg, rgba(188,153,112,1) 0%, rgba(184,149,109,1) 22%, rgba(172,139,103,1) 31%, rgba(155,123,93,1) 42%, rgba(162,130,99,1) 44%, rgba(181,150,117,1) 49%, rgba(213,184,147,1) 60%, rgba(253,225,183,1) 73%, rgba(242,215,174,1) 78%, rgba(214,189,152,1) 93%, rgba(192,168,134,1) 99%);
    --gold-gradient2: linear-gradient(63deg, rgba(192,168,134,1) 0%, rgba(214,189,152,1) 6%, rgba(242,215,174,1) 20%, rgba(181,150,117,1) 37%, rgba(213,184,147,1) 48%, rgba(162,130,99,1) 58%, rgba(155,123,93,1) 61%, rgba(172,139,103,1) 71%, rgba(184,149,109,1) 85%, rgba(188,153,112,1) 100%);
    --main-color: #FDE1B7;
    --brown: #543F2B;
}
h1,h2,h3,h4,h5,h6,p{
    margin:0;
}
.hide-it{
    display:none;
}
.bold-text{
    font-family: 'Poppins Bold'!important;
}
.italic{
    font-style: italic;
}
/* width */
#customScrollbar::-webkit-scrollbar,
.scrollBarHere::-webkit-scrollbar {
    width: 10px;
}
.mobileOnly{
    display:none;
}
  /* Track */
#customScrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

  /* Handle */
#customScrollbar::-webkit-scrollbar-thumb{
    background: #888;
    border-radius:10px;
}
.scrollBarHere::-webkit-scrollbar-thumb{
    border-radius:10px;
    background: #6f6f6f;
}
.scrollBarHere::-webkit-scrollbar-track{
    border-radius: 10px;
    background: #f1f1f1;
}
/* Handle on hover */
#customScrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.landing-video-wrapper{
    opacity: 0;
    position: absolute;
    height:100vh;
    z-index:2000;
    width:100%;
    left:0;
    visibility: hidden;
    transition:all 2s ease;
    pointer-events: none;
}
#trans-vid{
    object-fit: cover;
    width:100%;
    height: 100%;
    z-index:2000;
}
.landing-video-wrapper::before{
    content:'';
    position: absolute;
    left:0;
    top:0;
    background:rgba(0,0,0,0.3);
    z-index:101;
    width:100%;
    height:100%;
}
.landing-video-wrapper.active{
    visibility: visible;
    opacity: 1;
}
@font-face {
    font-family: 'Poppins Light';
    src: url(../../fonts/Poppins-Light.ttf);
}
@font-face {
    font-family: 'Poppins';
    src: url(../../fonts/Poppins-Light.ttf);
}
@font-face {
    font-family: 'Poppins Bold';
    src: url(../../fonts/Poppins-SemiBold.ttf);
}
@font-face {
    font-family: 'Poppins Bolder';
    src: url(../../fonts/Poppins-Bold.ttf);
}
strong{
    font-family: 'Poppins Bolder';
}
a-scene > canvas,
body {
    cursor: url("../../image/playroom2/cursor.cur"), pointer !important;
}
a,button:hover,.station-ball,.right-icon,.dropdown,.pointer,.close-overlay-wrapper,.close-popup-wrapper,.info-icon,.play-icon,.explore-btn,.dialog-close,.hidden-close{
    cursor: url("../../image/playroom2/pointer.cur"), pointer !important;
}
main{
    position: relative;
}
a:hover{
    text-decoration: none!important;
}
button{
    transition:.5s ease;
}
button:focus{
    outline:none!important;
    box-shadow:none!important;
}
button:hover{
    transform:scale(1.1);
}
input:focus{
    box-shadow: none!important;
    outline:none!important;
}
.app-container.vr{
    height:100vh;
    width:100%;
    position:absolute;
    left:0;
    top:0;
    z-index: 1002;
}
.form-group{
    position: relative;
}
.bg-contain{
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.bg-cover{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
    font-family: 'Poppins';
}
.modal.show-modal{
    display:flex;
    align-items: center;
    justify-content: center;
    z-index:1001;
}
.modal.full-modal.show-full-modal{
    display:flex;
    align-items: center;
    justify-content: center;
    z-index:1000;
}
.modal.info-popup.show-popup{
    display:flex;
    align-items: center;
    justify-content: center;
    z-index:1000;
}

/* Modal Content */
.modal-content {
    position: relative;
    border-radius:30px;
    padding: 80px 40px;
    border:2px solid var(--main-color);
    /* background:#543F2B; */
    background:rgba(0,0,0,.8);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 1s;
    animation-name: animatetop;
    animation-duration: 1s;
    z-index:2000;
}
.modal-title{
    font-size:1.56em;
    color:white;
    font-family: 'Poppins Bold';
    text-transform: uppercase;
    margin-bottom:10px;
}
.modal-text{
    color:white;
    font-size:28px;
    text-align: center;
    margin-bottom:45px;
}
.modal-logo{
    max-height:80px;
    margin-bottom:45px;
}
.modal-form{
    border-radius:20px;
    width:100%;
    padding:20px 35px;
    font-size:20px;
    color:#BFBFBF;
    font-family: 'Poppins';
    margin:0;
}
.modal-content.login{
    width:550px;
    height:700px;
    justify-content: center;
}
.email-validator{
    position: absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%)
}
.content-wrapper{
    text-align: center;
}
.form-message{
    height:22px;
    margin:0;
}
.gold-btn{
    background:var(--gold-gradient);
    display:flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease;
    color:white;
    border:none;
    text-transform: capitalize;
    font-weight: bold;
    font-family:'Poppins Bold';
    cursor:pointer;
    margin:0 auto;
    animation:pulse 2s infinite
}
label.error{
    font-size:12px;
    width:100%;
    text-align: center;
    height:22px;
    margin:0;
    color:white;
}
.green,.red{
    display:none;
}
.green.active,.red.active{
    display:flex;
}
.success-title{
    font-size:45px;
    color:white;
    text-transform: capitalize;
    font-family: 'Poppins Bold';
}
.success-text{
    font-size:1.7em;
    color:white;
    margin:40px 0;
}
.center-all{
    display:flex;
    align-items: center;
    justify-content: center;
}
.shine{
    position: relative;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
}
.shine:after{
    opacity: 0;
}
.shine:after{
    animation: shine 1s ease-in-out  infinite;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    border-radius:30px;
    opacity: 0;
    transform: rotate(190deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
    );
}
.gold-arrow.shine:after{
    border-radius:50%;
}
/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top:-300px;
        opacity:0
    }
    to {
        top:0; opacity:1
    }
}

@keyframes animatetop {
    from {
        top:-300px;
        opacity:0
    }
    to {
        top:0;
        opacity:1
    }
}

@keyframes shine{
    10% {
      opacity: 1;
      top: -30%;
      left: -30%;
      transition-property: left, top, opacity;
      transition-duration: 0.7s, 0.7s, 0.15s;
      transition-timing-function: ease;
    }
    100% {
      opacity: 0;
      top: -30%;
      left: -30%;
      transition-property: left, top, opacity;
    }
  }

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.profile-wrapper{
    width:800px;
}
#profileOverlay .profile-title{
    color:var(--main-color);
    font-size:50px;
    font-family: 'Poppins Bold';
    text-transform: capitalize;
}
#profileOverlay .profile-text{
    font-size:45px;
    font-family: 'Poppins Bold';
    color:var(--main-color);
    margin-top:10px;
    margin-bottom:10px;
}
.journey-border{
    width:100%;
    border:1px solid var(--main-color);
    color:white;
    border-radius:15px;
    margin-top:20px;
    background:rgba(0,0,0,.8);
}

.journey-border .journey-title{
    font-family: 'Poppins Bold';
    font-size:20px;
    border-bottom:1px solid var(--main-color);
    padding:10px 5px;
}
.journey-border .journey-text{
    padding:10px 5px;
    font-size:20px;
}
.journey-border.station-box .journey-text{
    font-size:18px;
    padding:15px 5px;
}
.bb-gold{
    border-bottom:1px solid var(--main-color);
}
.br-gold{
    border-right:1px solid var(--main-color);
}
.journey-border .bb-gold:last-child{
    border:none;
}
.journey-border .journey-text.icon svg{
    width:30px;
    height:20px;
}
:where(.bottom-logo){
    position: absolute;
    right: 2%;
    bottom: 3%;
    z-index: 1002;
}
:where(.bottom-logo) img{
    width: auto;
    height: 50px;
}
/* mobile */
/* @media(max-width:840px){ */
@media(max-width:920px){
    #landing{
        background-image: url('../../image/playroom2/mobile-landing.jpg')!important;
    }
    .green svg, .red svg{
        height:18px!important;
        width:18px!important;
    }
    #landing .logo-img{
        height:70px!important;
        margin-top:25px!important;
    }
    .gold-btn.enter-btn{
        width:250px!important;
        height:40px!important;
        font-size:22px!important;
    }
    .bottom-logo,
    .bottom-logo-instruction{
        right:3%!important;
        position: absolute;
        bottom:3%;
    }
    :where(.bottom-logo,.bottom-logo-instruction) img{
        height:25px!important;
    }
    .modal-content.login{
        width: 300px!important;
        height: 350px!important;
        padding: 20px!important;
    }
    .modal-logo {
        max-height: 40px!important;
        margin-bottom: 10px!important;
    }
    .modal-text {
        font-size: 13px!important;
        margin-bottom: 10px!important;
    }
    .modal-form {
        padding: 10px 20px!important;
        font-size: 13px!important;
    }
    .checkbox-text{
        font-size:8px!important;
    }
    label.error{
        font-size:8px!important;
        height:8px!important;
    }
    button.gold-btn.submit-btn {
        height: 30px!important;
        width: 150px!important;
        font-size: 18px!important;
    }
    .success-title{
        font-size:22px!important;
    }
    .success-text{
        font-size:16px!important;
    }
    .rotate-view{
        display:block;
        width:100%;
        height:100%;
        background: black;
        z-index: 1002;
        position: absolute;
        left: 0;
        top: 0;
        padding:0 50px;
        opacity: 0;
        visibility: hidden;
    }
    .rotate-view.active{
        opacity: 1;
        visibility: visible;
    }
    .rotate-title{
        font-family: 'Poppins Bold';
        font-size:22px;
        text-transform: uppercase;
        margin-bottom:15px;
    }
    .rotate-text{
        margin-top:10px;
        font-size:12px;
        font-family: 'Poppins';
        text-align: center;
    }
    .rotate-logo{
        width: auto;
        height: 100%;
        max-height: 50px;
    }
    .rotate-img-wrapper{
        width:100%;
        margin:15px 0;
    }
    .rotate-img{
        height:140px;
        width:100%;
    }
    .gold-btn.enter-btn{
        bottom:25%!important;
    }
}
@media(max-width:920px) and (orientation: landscape){
    #landing{
        background-image: url('../../image/playroom2/landing_bg.jpg')!important;
    }
    .rotate-view{
        display:none;
    }
    .bottom-logo{
        bottom:5%!important;
    }
    .bottom-logo img{
        width: auto;
        height: 20px!important;
    }
    .desktopOnly{
        display:none!important;
    }
    .mobileOnly{
        display:block!important;
    }
    .app-container.vr{
        height:90vh!important;
    }
    body{
        background:black;
    }
    body,a-scene,canvas{
        height:85vh!important;
        overflow:hidden!important;
    }

    body.isFullScreen,
    .app-container.vr.isFullScreen,
    a-scene.isFullScreen,
    canvas.isFullScreen{
        height:100vh!important;
    }
    /* landing page */
    #landing .logo-img{
        margin-top:0!important;
        height:75px!important;
    }
    #landing .gold-btn.enter-btn {
        width: 235px!important;
        height: 35px!important;
        font-size: 18px!important;
    }
    /* login overlay */
    .modal-title{
        font-size:18px!important;
        margin:0;
    }
    .modal-content.login {
        width: 450px!important;
        height: 250px!important;
        padding: 5px 20px!important;
    }
    .modal-logo {
        max-height: 40px!important;
        margin-bottom: 5px!important;
    }
    .modal-text{
        font-size: 13px!important;
        margin:10px 0!important;
    }
    .modal-form{
        padding: 7px 20px!important;
        font-size: 12px!important;
    }
    label.error{
        font-size:10px!important;
        height:100%!important;
        line-height: 100%!important;
    }
    .success-form .success-title{
        font-size:22px!important;
        margin-top:20px!important;
    }
    .success-form .success-text{
        font-size:16px!important;
        margin:20px 0!important;
    }
    #loginOverlay .content-wrapper .form-group {
        margin-bottom:5px!important;
    }
    #loginOverlay .gold-btn.submit-btn {
        width: 125px!important;
        height: 25px!important;
        font-size: 13px!important;
        margin-top: 0!important;
    }
    /* profile overlay */
    .profile-wrapper{
        width:450px;
    }
    #profileOverlay .profile-title {
        font-size:14px;
    }
    #profileOverlay .profile-text {
        font-size:16px;
        margin:0;
    }
    #profileOverlay .journey-border .journey-title {
        padding: 2px 4px;
        font-size: 13px;
    }
    #profileOverlay .journey-border{
        margin-top:10px;
    }
    .journey-border.station-box .journey-text {
        font-size:10px;
        padding:2px 4px;
    }
    .journey-border .journey-text {
        padding: 2px 4px;
        font-size: 12px;
    }
    .journey-border .journey-text.icon svg {
        width:15px;
        height:15px;
    }
}
/* laptop */
@media (min-height:600px) and (max-height:960px) {
    .bottom-logo img{
        width: auto;
        height: 30px;
    }
    .no-wrap{
        white-space: nowrap;
    }
    .modal-content.login{
        width:450px;
        height:500px;
    }
    .modal-content{
        padding:50px;
    }
    .modal-title{
        font-size:20px;
    }
    .modal-logo {
        max-height: 65px;
        margin-bottom: 30px;
    }
    .modal-text{
        font-size:18px;
        margin-bottom:30px;
    }
    .success-title{
        font-size:30px;
    }
    .modal-form{
        padding:15px 30px;
        font-size:16px;
    }
    .profile-wrapper{
        width:600px;
    }
    .content-wrapper .form-group{
        margin-bottom:10px;
    }
    button.gold-btn.submit-btn{
        height: 45px;
        width: 160px;
        font-size: 23px;
        margin-top:15px;
        animation: pulse 2s infinite;
    }
    #profileOverlay .profile-title{
        font-size:22px;
    }
    #profileOverlay .profile-text{
        font-size:24px;
        margin:5px 0;
    }
    #landing .logo-img{
        height:160px;
    }
    #landing .gold-btn.enter-btn {
        width:300px;
        height:50px;
        font-size:25px;
    }
    /* .journey-border{
        margin-top:15px;
    }
    .journey-border .journey-title{
        font-size:16px;
    }
    .journey-border .journey-text{
        font-size:15px;
    }
    .journey-border.station-box .journey-text{
        font-size:16px;
        padding:9px 5px;
    } */
}
