/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-rendering: optimizelegibility;
    font-feature-settings: "kern";
    -webkit-font-smoothing: antialiased;
    color: rgb(20, 20, 20);
}

p {
    padding: 12px;
    margin: 0;
 }

 a{
    text-decoration: none;
    color: black;
 }

 a:hover{
    text-decoration: underline;
    color: black;
 }

 a:active{
    color: rgb(99, 99, 99);
 }

 button {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 15px;
    border: solid 1px black;
    cursor: pointer;
    transition: all .5s;
 }

 button:hover {
   background-color: rgb(18, 18, 18);
 }

 button:hover p{
   color: white;
 }

 cache {
   position: absolute;
   z-index: -1000;
   opacity: 0;
   bottom: 0;
}

cache image {
   position: absolute;
}

.v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    cursor: grab;
}

.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');
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }

/* Dark Theme */

.v3d-simple-preloader-background {
    background-color: #181818;
}

.v3d-simple-preloader-container {
    filter: drop-shadow(0px 0px 4px #2a69bd);
}

#preloaderScr{
   position: absolute;
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   background-color: white;
}

#percent{
   font-size: 24px;
   margin-top: 20px;
}

.v3d-annotation {
    color: #5e5e5e;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #d03939;
    font-size: 12px;
}

.v3d-annotation-dialog {
    color: #707070;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(253, 53, 53, 0.8);
}

#ganch-logo{
   position: absolute;
   bottom: 0;
   margin: 10px;
   color: black;
   font-size: 8px;
   font-weight: 500;
}

.marker{
    position: absolute;
    display: flex;
    flex-direction: row;
    max-width: 26px;
    height: auto;
    border-radius: 12px;
    background-color: aliceblue;
    overflow: hidden;
    align-items: center;
    cursor: pointer;
    transition: max-width .5s ease, max-height .5s ease, opacity .2s;
    margin-top: -13px;
   
    user-select: none;
    translate: -50% 0;
    opacity: 1;
}

.markerText{
    padding-right: 10px;
    padding-left: 15px;
    white-space: nowrap;
    opacity: 0;
    transition: all .5s;

}


.marker img {
    padding: 3px;
}

.marker:hover{
    max-width: 500px;
    opacity: 1;
}

.marker:hover .markerText{
   transform: translateX(-2px);
   padding-left: 5px;
   opacity: 1;
}

.header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: auto;
    height: 50px;
    background-color: rgb(255, 255, 255);
    box-shadow: 5 5 8px rgba(15, 27, 51, 0.5);
    border-bottom-right-radius: 15px;
 }

 .MainLogo{
    padding: 6px;
 }

 .Menulink{
    display: flex;
    flex-direction: row;
    cursor: pointer;
    padding-right: 10px;
    padding-left: 10px;
 }

 .popup{
    position: absolute;
    width: 300px;
    height: auto;
    display: none;
    flex-direction: column;
    background-color: rgba(245, 238, 208, 1);
    top: 50%;
    box-shadow: 3px 5px 8px rgba(36, 39, 44, 0.797);
   margin-left: 5rem;
    border-radius: 10px;
    opacity: 0;
    overflow: hidden;
 }

 .popupImg, .popupHeader, .popupText, .popupButtons, .popupBorder{
    display: flex;
    width: 100%;
 }

 .popupImg{
   justify-content: center;
   align-items: center;
 }

 .popupBorder{
    background-color:#0ac122;
 }

 .popupHeader{
    justify-content: flex-start;
    background-color: #4e9953;
 }
 .popupHeader h3{
    margin: 0;
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: white;
    font-weight: 300;
 }

 .popupText{
   display: flex;
  
   flex-direction: column;
   width: 100%;
    padding: 0;
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
 }

 .popupButtons{
    justify-content: space-evenly;
    margin-top: 10px;
    padding-bottom: 20px;
 }

 .popupClose{
    position: absolute;
    display: flex;
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    background-image: url("./media/close.png");
    background-size: 100% 100%;
    border-radius: 50%;
    margin: 10px;
    box-shadow: 0 0 8px rgba(15, 27, 51, 0.1);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .5s;
 }

 .popupClose:hover {
   background-color: black;
   background-image: url("./media/close-nega.png");
 }

 .wrappPopapPlan{
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
 }

 .popapPlan{
    width: 100%;
    min-width: 300px;
    max-width: 1200px;
    height: 80%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 15px;
    box-shadow: 3px 5px 8px rgba(36, 39, 44, 0.797);
    overflow: hidden;
 }
 
 .planImg{
    width: 100%;
    height: 100%;
    display: flex;
    overflow-y: scroll;
    overflow-x: scroll;
 }

 .popapPlanHeader{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #e7e7e7;
    padding-top: 20px;
    padding-left: 50px;
    padding-bottom: 20px;
    height: auto;
 }

 #popapPlanClose, #popapRenderClose{
    position: relative;
    right: 0;
    margin: 0;
    margin-right: 20px;
 }

 .room3d{
    width: 100%;
    height: 100%;
 }

 .wrappPopapRender{
   position: absolute;
   width: 100%;
   height: 100%;
   display: none;
   align-items: center;
   justify-content: center;
   opacity: 1;
   
}

.popapRender{
   width: auto;
   min-width: 300px;
   max-width: 1200px;
   height: 80%;
   display: flex;
   flex-direction: column;
   background-color: rgba(255, 255, 255, 0.725);
   backdrop-filter: blur(10px);
   border-radius: 15px;
   box-shadow: 3px 5px 8px rgba(36, 39, 44, 0.797);
   overflow: hidden;
   opacity: 0;
   transition: opacity 1s ;
}

.popapRenderHeader{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   background-color: #e7e7e7;
   padding-top: 20px;
   padding-left: 50px;
   padding-bottom: 20px;
   height: auto;
}


.splide__slide{
   display: flex;
   justify-content: center;
   align-items: center;
}

.splide__slide img {
   height: 100%;
   width: auto;
 
}

.splide__track--draggable{
   height: 100%;
}

.splide{
   height: 100%;
}

 .gallery{
   overflow: hidden;
   display: block; 
 }

 .splide:not(.is-overflow) .splide__pagination{
   display: flex;
 }

 .splide__pagination{
   display: flex;
 }

#enter_g, #sport_g, #school_g, #park_g, #bulvar_g, #ozero_g{
    display: none;
}



