#body-public .full-height {
    height: 100%;
}
.ie #body-public .full-height {
    display: block;
}

.icon-dicomviewer-dark {
    background-image: url('../img/app-dark.svg');
}

footer.hidden {
    display: none !important;
}


/* Toolbar */


.toolbarSection {
    background-color: #000;
    border-bottom: 1px solid #44626f;
    flex: 0 0 auto;
    height: 50px;
    padding-top: 6px;
    position: relative;
    width: 100%;
    text-align: center;
}

.toolbarSectionButton {
    color: #91b9cd;
    cursor: pointer;
    display: inline-block;
    min-width: 30px;
    outline: none;
    position: relative;
    text-align: center;
    padding-left: 8px;
    padding-right: 8px;
}

.toolbarSectionButton > .buttonLabel {
    color: #91b9cd;
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
}

.toolbarSectionButton > .buttonLabel > span {
    cursor: pointer;
}

.toolbarSectionButton > .svgContainer {
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
    color: #91b9cd;
}

.toolbarSectionButton > .svgContainer > i {
    font-size: 18px;
    line-height: 30px;
}

.svgContent {
    background-color: #91b9cd;
    cursor: pointer;
    margin: 2px auto;
    width: 21px;
    height: 21px;
}

.rotate-right {
    -webkit-mask-image: url('../img/rotate-right.svg');
    mask-image: url('../img/rotate-right.svg');
}

.rotate-left {
    -webkit-mask-image: url('../img/rotate-right.svg');
    mask-image: url('../img/rotate-right.svg');
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.magnifyTool {
    border: 4px white solid;
    box-shadow: 2px 2px 10px #1e1e1e;
    border-radius: 50%;
    display: none;
    cursor: none;
}

.toolbarSectionButton:not(.active):hover .buttonLabel, .toolbarSectionButton:not(.active):hover .svgContainer {
    color: #ffffff;
}

.toolbarSectionButton:not(.active):hover .svgContent {
    background-color: #ffffff;
}

.active > .buttonLabel, .active > .svgContainer{
    color: #20a5d6;
}

.active .svgContent {
    background-color: #20a5d6;
}

.button-close {
    display: block;
}

.button-close {
    background-color: #000;
    border: none;
    color: #dcdcdc;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    position: absolute;
    top: 15px;
    right: 6px;
    white-space: nowrap;
    vertical-align: middle;
}

.button-close:hover {
    color: #fff;
}


/* Viewer */


.viewerSection {
    width: 100%;
    height: calc(100% - 57px);
    margin: 0 auto;
}

.viewerMain {
    width: 100%;
    height: 100%;
    position: relative;
}

.imageViewerViewport {
    width: 100%;
    height: 100%;
    background-color: black;
    outline: 0 !important;
    overflow: hidden;
}

.imageViewerViewportOverlay {
    color: #91b9cd;
}

.dicomTag {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 1px 1px black;
    pointer-events: none;
}

.topleft {
    top: 15px;
    left: 15px;
}

.topright {
    top: 15px;
    right: 50px;
    text-align: right;
}

.bottomleft {
    bottom: 15px;
    left: 15px;
}

.bottomright {
    bottom: 15px;
    right: 50px;
    text-align: right;
}

.viewportOrientationMarkers {
    pointer-events: none;
    font-size: 15px;
    color: rgb(204, 204, 204);
    line-height: 18px
}

.orientationMarker {
   position: absolute;
}

.topMid {
   top: 5px;
   left: 50%;
}

.leftMid {
    top: 47%;
    left: 5px;
}

.load-progress-content {
    font-size: 16px;
    position: absolute;
    top: 40%;
    bottom: 60%;
    display: inline-block;
    left: 0;
    right: 0;
    text-align: center;
    color: #91b9cd;
}


@media (max-width: 600px) {
    .toolbarSection {
        height: 171px;
    }

    .viewerSection {
        height: calc(100% - 171px);
    }

    /*.button-close {*/
        /*display: none;*/
    /*}*/
}

@media (min-width: 600px) and (max-width: 900px) {
    .toolbarSection {
        height: 104px;
    }

    .viewerSection {
        height: calc(100% - 104px);
    }

    /*.button-close {*/
        /*display: none;*/
    /*}*/
}