/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */



body {
    margin: 0px;
    overflow: hidden;
}

noscript {
    display: block;
    text-align: center;
    padding-top: 100px;
    font-size: 20px;
}

.v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

.marker{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    width: auto;
    height: auto;
    translate: -50% -100%;
    opacity: 1;
    transition: opacity .5s;
    z-index: 100 ;
}

.marker:hover {
    z-index: 5000 !important;
}

.marker-circle{
    display: flex;
    flex-direction: row;
    max-width: 29px;
    height: auto;
    border-radius: 14px;
    background-color: #ff6200;  
    overflow: hidden;
    align-items: center;
    cursor: pointer;
    transition: max-width .5s ease, max-height .5s ease, opacity .2s;
    user-select: none;
    opacity: 1;
    box-shadow: 0 0px 2px 0px rgba(0, 0, 0, 0.25);
}

.marker-circle_nohover{
    display: flex;
    flex-direction: row;
    max-width: 500px;
    height: auto;
    border-radius: 14px;
    background-color: #ff6200;
    overflow: hidden;
    align-items: center;
    cursor: pointer;
    transition: max-width .5s ease, max-height .5s ease, opacity .2s;
    user-select: none;
    opacity: 1;
    box-shadow: 0 0px 2px 0px rgba(0, 0, 0, 0.25);
    transform: translateX(-2px);
}

.marker-arrow{
    width: 16px;
    height: 12px;
    background: url('media/arrow_drop_down.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    filter: drop-shadow(0 0px 2px rgba(0, 0, 0, 0.25));
}

.infra{
    background-color:rgb(255, 219, 120);
}

.markerText{
    padding-right: 15px;
    padding-left: 15px;
    white-space: nowrap;
    opacity: 0;
    transition: all .5s;
    pointer-events: none;
    color: white;
}

.markerText_nohover{
    padding-right: 15px;
    padding-left: 5px;
    white-space: nowrap;
    opacity: 1;
    transition: all .5s;
    pointer-events: none;
    color: white;
}

.marker img {
    padding: 5px; 
    transform-origin: center center;
}

.marker-circle:hover{      
    max-width: 500px;
    opacity: 1;
    
} 

.marker-circle:hover .markerText{
   transform: translateX(-2px);
   padding-left: 5px;
   opacity: 1;
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }


.v3d-simple-preloader-logo {
    background-image: url('media/logo3.svg');
}