@import url(https://fonts.googleapis.com/css?family=Poppins);


* {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
    supported by Chrome, Opera and Firefox */
    -webkit-tap-highlight-color: transparent;
}

html, body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.pointOfInterest{
    background-size: cover !important;
    border-radius: 100%;
    border: 4px solid #fff;
    transition: 100ms opacity;
}


.poiAnnotation{
    width: 150px;
    background: #fff;
    position: absolute;
    right: -15px;
    transform: translateX(100%);
    border-radius: 10px;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}

.poiAnnotation > h4{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
}

.poiAnnotation > p{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 14px;
}


button{
    outline:none;
}

.loadingBackground{
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-size: 40px 40px;
    background-image: radial-gradient(circle, #5d5c5c 1px, rgba(0, 0, 0, 0) 1px);
}

.loadingBackground > .gradient{
    background: rgba(0,0,0, 0);
    width: 60%;
    position: relative;
    top: 20%;
    left: 20%;
    height: 60%;
    background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    text-align: center;
}

.loader{
    position: relative;
    display: inline-block;
    top: calc(25vh - 80px);
}

#viewer{
    width: 100vw;
    height: 100vh;
}

#dropimagebox{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    background: red;
}

.floorplanContainer{
    visibility: hidden;
    z-index: 1000;
    height: auto;
    width: 100px;
    display: inline-block;
    cursor: pointer;
}


#floorplan{
    width: 100%;
    transition: 200ms opacity;
    cursor: pointer;
}

.levelSwitcher{
    display: none;
    position: absolute;
    bottom: -58px;
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
}

.expandedFloorPlan > .floorplanContainer{
    transform: translateY(-50%);
    top: 50%;
    position: relative;
    max-width: 90vmin;
    width: 1vmin;
    min-width: 75vmin;
    height: auto;
    display: inline-block;
}

.expandedFloorPlan > .floorplanContainer > .levelSwitcher{
    display: inline-block;
}

.floorPlanWrapper{
    position: fixed;
    display: none;
    z-index: 9999999999;
    top: 20px;
    right: 20px;
}

.expandedFloorPlan{
    position: fixed;
    z-index: 99999999;
    top: 0;
    right: 0;
    width: 100vw;
    text-align: center;
    height: 100vh;
}

.expandedFloorPlan > .floorplanContainer > #floorplan{
    max-width: 90vmin;
    width: 1vmin;
    min-width: 75vmin;
    display: block;
    max-height: 90vmin;
    opacity: 1;
}

.expandedFloorPlan > .floorplanContainer > .hotspot{
    opacity: 1;
    width:25px;
    height: 25px;
    display: inline-block;
    pointer-events: all;
}

.psv-container{
    background: transparent !important;
}

.hotspot{
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(94, 204, 255);
    width: 10px;
    height: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 2px 5px rgba(0,153,255,0.65);
    animation-name: pulse;
    animation-duration: 1s;
    transform: translate(-50%, -50%);
    animation-iteration-count: infinite;
    transition: 200ms opacity;
    pointer-events: none;
    display: none;
}

.hotspot > div{
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    color: #000;
    background: #fff;
    padding: 3px 7px;
    font-size: 15px;
    border-radius: 5px;
    position: absolute;
    top: 0;
    right: -10px;
    transform: translateX(100%);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
}

.expandedFloorPlan > .floorplanContainer > .hotspot:hover > div{
    transition: 180ms opacity;
    opacity: 1;
}


.selectedHotSpot{
    display: inline-block;
    background: rgb(255, 157, 10);
    box-shadow: 0px 0px 2px 5px rgba(185, 99, 0, 0.65);
}

#vrToggle{
    display: inline-block;
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: red;
    z-index: 100; 
}

.psv-loader-container{
    display: none;
    opacity: 0;
}

.navBar{
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-family: 'Poppins', sans-serif;
    height: 50px;
    z-index: 2000;
    cursor: default;
    display: none;
}

.titleCard{
    height: 50px;
    background: #fff;
    display: inline-block;
    border-radius: 10px 10px 10px 10px;
    transition: 50ms border-radius;
    transition-delay: 200ms;
    cursor: pointer;
}

.titleCard > span{
    font-size: 18px;
    text-transform: uppercase;
    text-align: left;
    display: block;
    clear: both;
    padding: 2px 10px;
    line-height: 20px;
    padding-bottom: 5px;
}

#floorName{
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 0;
}

.navBtn{
    font-size: 18px;
    height: 100%;
    background: #fff;
    vertical-align: top;
    display: inline-block;
    width: 0px;
    text-align: center;
    overflow: hidden;
    transition: 200ms width ease-in-out;
}

.navBtn > span{
    font-size: 10px;
    display: inline-block;
    width: 100%;
    text-align: center;
    transform: translateY(-28%);
}


.navBar:hover > .navBtn, .hovered > .navBtn{
    width: 65px;
    cursor: pointer;
}

.navBtn > i{
    top: 35%;
    transform: translateY(-70%);
    position: relative;
}

.navBar:hover > .titleCard, .hovered > .titleCard{
    border-radius: 10px 0px 0px 10px;
}

.titleCard:hover{
    transition-delay: 0ms;
}

.navBtn:last-of-type{
    border-radius: 0px 10px 10px 0px;
}

.navBtn:hover{
    transform: scale(1.05);
}


.floorPlanDimming{
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 50000;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    transition: 150ms background, 0ms display;
    pointer-events: none;
}

.cancelOverlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.visibleDimming{
    background: rgba(0,0,0,.7);
}


.introContainer{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999999999;
    text-align: center;
}

.agentLogo{
    position: fixed;
    left: 15px;
    top: 15px;
    width: 200px;
    max-width: 25vw;
}

.mobiText{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 23px;
    font-size: 14px;
    position: absolute;
    bottom: -3px;
    transform: translateY(100%);
    display: inline-block;
    width: 100%;
    left: 0;
    text-align: right;
    cursor: pointer;
}

.mobiText > a, .mobiText > a:visited, .mobiText > a:hover, .mobiText > a:active{
    color: #fff;
    text-decoration: none;
}

.mobiText > a > img{
    height: 13px;
}

.coverImage{
    max-width: 90vmin;
    max-height: 90vmin;
    min-width: 60vmin;
    min-height: 60vmin;
    height: 1vw;
    width: 1vw;
    background-color: #fff;
    display: inline-block;
    position: relative;
    -webkit-box-shadow: 0px 0px 24px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 24px 5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 24px 5px rgba(0,0,0,0.75);
}

.coverImage > .image{
    width: 100%;
    height: 60%;
    display: inline-block;
    background-color: #fff;
    background-size: cover;
    background-position: center;
}

.coverImageContainer{
    display: inline-block;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.captionContainer{
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(50%) translateX(-5vmin);
}

.locationName{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    position: absolute;
    top: -10px;
    transform: translateY(-100%);
    text-transform: uppercase;
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    left: 0;
    letter-spacing: 3px;
}

.contactPhoto{
    height: 100px;
    z-index: 1;
    width: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 39px 0px rgba(0,0,0,0.47);
    -moz-box-shadow: 0px 0px 39px 0px rgba(0,0,0,0.47);
    box-shadow: 0px 0px 39px 0px rgba(0,0,0,0.47);
    position: absolute;
    top: calc(60% - 50px);
    left: calc(50% - 50px);
}

.caption{
    width: 100%;
    padding-bottom: 25px;
    margin-top: 50px;
    display: inline-block;
    background-color: #fff;
    position: relative;
}

.caption > p{
    padding: 5%;
    font-family: 'Poppins', sans-serif;
    line-height: 23px;
    font-size: 14px;
}

.caption > p > i{
    color: rgb(214, 214, 214);
    font-size: 18px;
}

.fa-quote-left{
    position: relative;
    top: -3px;
}

.fa-quote-right{
    position: relative;
    top: 3px;
}

.enterBtn{
    background-color: #5d5c5c;
    color: #fff;
    padding: 10px 120px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    border: none;
    cursor: pointer;
    letter-spacing: 5px;
}

.enterBtn:hover{
    transform: scale(1.05);
}

.callToAction{
    position: fixed;
    display: none;
    top: 20px;
    left: 20px;
    z-index: 100;
    background: #fff;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 39px 0px rgba(0,0,0,0.47);
    -moz-box-shadow: 0px 0px 39px 0px rgba(0,0,0,0.47);
    box-shadow: 0px 0px 39px 0px rgba(0,0,0,0.47);
    border-radius: 10px;
}

.callToAction > .ctaImage{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.47);
    -moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.47);
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.47);
}

.callToAction > a > button{
    background-color: #5d5c5c;
    color: #fff;
    padding: 5px 30px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border: none;
    cursor: pointer;
    vertical-align: top;
    margin-top: 13px;
    margin-left: 8px;
}


.floorPlanTutorial{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 10000000;
    background-color: rgba(0, 0, 0, .7);
    display: none;
}

.floorPlanTutorial > div{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    width: 200px;
    position: absolute;
    right: 130px;
    top: 120px;
}

.floorPlanTutorial > img{
    height: 60px;
    display: inline-block;
    position: absolute;
    right: 95px;
    top: 100px;
    transform: rotate(15deg);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%), scale(1);
    }
    50% {
        transform: translate(-50%, -50%), scale(1.1);
    }
    100% { 
        transform: translate(-50%, -50%), scale(1);
    }
}


/* ----------------------------------------------
* Generated by Animista on 2020-3-6 12:55:52
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/* .flip-in-diag-1-bl{-webkit-animation:flip-in-diag-1-bl 1s cubic-bezier(.25,.46,.45,.94) both;animation:flip-in-diag-1-bl 1s cubic-bezier(.25,.46,.45,.94) both} */
/* @-webkit-keyframes flip-in-diag-1-bl{0%{-webkit-transform:rotate3d(1,1,0,80deg);transform:rotate3d(1,1,0,80deg);opacity:0}100%{-webkit-transform:rotate3d(1,1,0,0deg);transform:rotate3d(1,1,0,0deg);opacity:1}}@keyframes flip-in-diag-1-bl{0%{-webkit-transform:rotate3d(1,1,0,80deg);transform:rotate3d(1,1,0,80deg);opacity:0}100%{-webkit-transform:rotate3d(1,1,0,0deg);transform:rotate3d(1,1,0,0deg);opacity:1}} */




/* ----------------------------------------------
* Generated by Animista on 2020-3-23 16:33:52
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

.fade-out{pointer-events: none;-webkit-animation:fade-out .3s ease-out both;animation:fade-out .3s ease-out both}
.fade-out-slower{pointer-events: none; -webkit-animation:fade-out 1s ease-out both;animation:fade-out 1s ease-out both}
@-webkit-keyframes fade-out{0%{opacity:1}100%{opacity:0}}@keyframes fade-out{0%{opacity:1}100%{opacity:0}}


.puff-out-center {
    pointer-events: none;
    -webkit-animation: puff-out-center .7s cubic-bezier(0.165, 0.840, 0.440, 1.000) both;
    animation: puff-out-center .7s cubic-bezier(0.165, 0.840, 0.440, 1.000) both;
}

/* ----------------------------------------------
* Generated by Animista on 2020-3-23 16:39:2
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation puff-out-center
* ----------------------------------------
*/
@-webkit-keyframes puff-out-center {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-50%) scale(2);
        transform: translateY(-50%) scale(2);
        -webkit-filter: blur(4px);
        filter: blur(4px);
        opacity: 0;
    }
}
@keyframes puff-out-center {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-50%) scale(2);
        transform: translateY(-50%) scale(2);
        -webkit-filter: blur(4px);
        filter: blur(4px);
        opacity: 0;
    }
}


/* ----------------------------------------------
* Generated by Animista on 2020-3-23 16:50:29
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

.flip-in-hor-top{-webkit-animation:flip-in-hor-top .5s cubic-bezier(.25,.46,.45,.94) both;animation:flip-in-hor-top .5s cubic-bezier(.25,.46,.45,.94) both}


@-webkit-keyframes flip-in-hor-top{0%{-webkit-transform:rotateX(-80deg);transform:rotateX(-80deg);opacity:0}100%{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes flip-in-hor-top{0%{-webkit-transform:rotateX(-80deg);transform:rotateX(-80deg);opacity:0}100%{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}


/* ----------------------------------------------
 * Generated by Animista on 2020-3-30 10:49:37
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

 @-webkit-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes fade-in{0%{opacity:0}100%{opacity:1}}

.fade-in{-webkit-animation:fade-in .8s cubic-bezier(.39,.575,.565,1.000) both;animation:fade-in .8s cubic-bezier(.39,.575,.565,1.000) both}


/* media queries */

@media screen and (max-width: 600px) {
    .coverImage{
        width: 85vw;
        height: 85vh;
        min-height: unset;
        max-height: unset;
        min-width: unset;
        max-height: unset;
    }

    .mobiText{
        display: none;
    }


    .caption > p{
        font-size: 18px;
    }

    .agentLogo{
        display: none;
    }
}



/* loader css */
.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #fff;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
  }
  .lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
  }
  .lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
  }
  @keyframes lds-facebook {
    0% {
      top: 8px;
      height: 64px;
    }
    50%, 100% {
      top: 24px;
      height: 32px;
    }
  }
  


  /* select styling */

  .select-css {
    display: block;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%; 
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
      linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}
.select-css::-ms-expand {
    display: none;
}
.select-css:hover {
    border-color: #888;
}
.select-css:focus {
    border-color: #aaa;
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222; 
    outline: none;
}
.select-css option {
    font-weight:normal;
}