@font-face {
    font-family: "SF Pro Display Regular";
    src: url("./fonts/SF-Pro-Display-Regular.woff2"), format("woff2");
    font-weight: 400;
    font-style: normal;
}

body{
    user-select: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "SF Pro Display Regular";
    cursor: grab;
}

body:active{
    cursor: grabbing;
}

#d3d-container{
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.wrap_service_btns{
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

.wrap_service_btns div:not(:first-child){
    margin-top: 12px;
}

.move_sash, 
.plus_btn, 
.minus_btn, 
.icon_360{
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.move_sash:hover, 
.plus_btn:hover, 
.minus_btn:hover, 
.icon_360:hover{
    background-color: rgb(217, 218, 219);
}

.move_sash{
    background: center url('../images/window-default.svg');
    cursor: pointer;
} 

.plus_btn{
    background: center url('../images/plus-circle.svg');
    cursor: pointer;
} 

.minus_btn{
    background: center url('../images/minus-circle.svg');
    cursor: pointer;
} 

.icon_360{
    background: url('../images/360.svg');
    top: 30px;
    right: 30px;
    cursor: auto;
} 


