﻿.viewer3dContainer {
    width: 100%;
    height: 100%;
    position: relative;
}

.viewHelper {
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 128px;
    width: 128px;
}

.textOverlay {
    position: fixed;
    height: 100%;
    width: 100%;
}

.toolBar {
    position: absolute;
    right: 5px;
    bottom: calc(50% - 32px);
    height: 64px;
    width: 64px;
}

.explodeBtn {
    width: 100%;
    height: 100%;
    border: 1px solid black;
}

.explodeBtnOn {
    background-color: rgba(0, 160, 220, 1);
    transition: background-color .5s;
}

.explodeBtnOff {
    background-color: rgba(230, 235, 238, 1);
    transition: background-color .5s;
}

.explodeImg {
    width: 100%;
    height: 100%;
}
.measureImg {
    width: 100%;
    height: 100%;
}

.measureBtn {
    width: 100%;
    height: 100%;
    border: 1px solid black;
}

.measureBtnOn {
    background-color: rgba(0, 160, 220, 1);
    transition: background-color .5s;
}

.measureBtnOn:hover {
    background-color: rgba(0, 160, 220, 0.8);
}

.measureBtnOff {
    background-color: rgba(230, 235, 238, 1);
    transition: background-color .5s;
}

    .measureBtnOff:hover {
        background-color: rgba(0, 160, 220, 0.2);
    }
