﻿html, body{
    width: 100%;
    height: 100%;
}

#divDocViewer {
    width: 100% !important;
    height: 100% !important;
    /*border-radius: 6px;*/
    background-color: whitesmoke;
    /*border: 1px grey;*/
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
 }

@@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.a:focus, .a:active {
    outline: none !important;
    box-shadow: none;
}

.floating-toolbar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width:100px;
    height:150px;
    z-index: 1000;
    pointer-events: none;
}

.btn-floating-toolbar {
    display: block !important;
    outline: none !important;
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 10px !important;
    padding: 5px !important;
    pointer-events: all;
}

#floating-toolbar-menu {
    position: fixed;
    bottom: 20px;
    left: 20px;
}

#floating-toolbar-left-1 {
    position: fixed;
    bottom: 20px;
    left: 20px;
}

#floating-toolbar-left-2 {
    position: fixed;
    bottom: 20px;
    left: 60px;
}
