html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
}

header {
    right: 0;
    left: 0;
}

.bgRedEvema {
    background-color: #A41F35 !important;
}

.bgYellowEvema {
    background-color: #efc94c !important;
}

.borderRedEvema {
    border-color: #A41F35 !important;
    border-width: 3px !important;
}

.bgBlueEvema {
    background-color: #06569F !important;
}

.borderBlueEvema {
    border-color: #06569F !important;
}

.bgDarkEvema {
    background-color: #3A3634;
}

.bgDisabled {
    background-color: #e9ecef;
    opacity: 1;
    pointer-events: none !important;
}

#banner {
    padding: 3px 0px;
    max-height: 10em !important;
}

#banner div:first-child {
    height: 7px;
}

#banner div:last-child {
    height: 7px;
}

.bg-orange {
    background-color: #ff9000 !important;
}

.bgBlueAnswer {
    background-color: #ccd6e0;
}

.bgYellowAnswer {
    background-color: #f7f3d2;
}

@keyframes opacity {
    0% {
        filter: brightness(100%);
    }

    50% {
        filter: brightness(50%);
    }

    100% {
        filter: brightness(100%);
    }
}

.button:hover,
.button:focus {
    animation: opacity 2s;
}

.ck-editor__editable_inline:not(.ck-comment__input *) {
    height: 300px;
    overflow-y: auto;
}

header {
    z-index: 1000;
}

#invoiceAdd {
    position: relative;
    z-index: 1000 !important;
}

.green {
    background-color: rgb(25, 156, 25);
}

.pink {
    background-color: rgb(221, 66, 66);
}

.blue {
    background-color: rgb(114, 204, 253);
}

.yellow {
    background-color: rgb(253, 253, 119);
}

#map,
#pano {
    float: left;
    width: 100%;
}

#pano {
    height: 100%;
}

#map {
    height: 60%;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.textBlueEvema {
    color: #06569F !important;
}

.textRedEvema {
    color: #A41F35 !important;
}

.textGreenEvema {
    color: #019e16 !important;
}

.pac-container {
    z-index: 1056 !important;
}

#chartsBox {
    display: flex;
}

#chartsTable {
    max-width: 100% !important;
    overflow-x: auto;
    position: absolute;
}

#page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #06569F;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}