#master{
    position:absolute;
    width: 100%;
    height: 100%;
    left:0;
    top:0;
    right:0;
    bottom:0;
}

#slave{
    position:absolute;
    width: 100%;
    height: 100%;
    left:0;
    top:0;
    right:0;
    bottom:0;
}

.Move{
    background-color: rgba(40, 37, 36, 0.5);
    background-image: url('../sprites/move.svg');
    background-size: 20px 20px;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 24px;
    bottom: 52px;
    left: -10px;
    height: 30px;
    width: 30px;
    z-index: 10;
}

.Move:hover{
    background: rgba(24,25,28,.6);
    background-image: url('../sprites/move.svg');
    background-size: 20px 20px;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 24px;
}

.Sync{
    background-color: rgba(40, 37, 36, 0.5);
    background-image: url('../sprites/sync.svg');
    background-size: 20px 20px;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 24px;
    bottom: 57px;
    left: 25px;
    height: 30px;
    width: 30px;
    z-index: 10;
}

.Sync:hover{
    background: rgba(24,25,28,.6);
    background-image: url('../sprites/sync.svg');
    background-size: 20px 20px;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 24px;
}

.Point{
    background-color: rgba(40, 37, 36, 0.5);
    background-image: url('../sprites/point3d.svg');
    background-size: 30px 30px;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 24px;
    bottom: 35px;
    left: 54px;
    height: 30px;
    width: 30px;
    z-index: 10;
}

.Point:hover{
    background: rgba(24,25,28,.6);
    background-image: url('../sprites/point3d.svg');
    background-size: 30px 30px;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 24px;
}

.Distance{
    background-color: rgba(40, 37, 36, 0.5);
    background-image: url('../sprites/distance.svg');
    background-size: 23px 23px;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 24px;
    bottom: 0px;
    left: 58px;
    height: 30px;
    width: 30px;
    z-index: 10;
}

.Distance:hover{
    /*background: rgba(24,25,28,.6);*/
    background-image: url('../sprites/distancedisabled.svg');
    background-size: 23px 23px;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 24px;
}

.Pape{
    background-color: rgba(40, 37, 36, 0.5);
    background-image: url('../sprites/recycle.svg');
    background-size: 18px 18px;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 24px;
    bottom: -28px;
    left: 38px;
    height: 30px;
    width: 30px;
    z-index: 10;
}

.Pape:hover{
    background: rgba(24,25,28,.6);
    background-image: url('../sprites/recycle.svg');
    background-size: 18px 18px;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 24px;
}

.llcorner{
    bottom: 110px;
    left: 55px;
}


.custom-measure-reference{
    z-index: 1;
    opacity: 1.0;
}

.oval-measure{
    background: rgb(255, 162, 24);
    
    width: 15px;
    height: 15px;
    
    -moz-boder-radius: 15px / 15px;
    -webkit-border-radius: 15px / 15px;
    border-radius: 15px / 15px;

    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 166, 33, 0.5);
}


div.measure-pano-tooltip span {
    visibility: hidden;
    position: absolute;
    border-radius: 3px;
    background-color: #fff;
    font-size:85%;
    color: #000;
    text-align: center;
    max-width: 200px;
    padding: 5px 10px;
    margin-left: -220px;
    cursor: default;
    z-index: 10;
}
div.measure-pano-tooltip:hover span{
    visibility: visible;
}
div.measure-pano-tooltip:hover span:after {
    content: '';
    position: absolute;
    border-width: 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    bottom: -20px;
    left: -10px;
    margin: 0 50%;
}