﻿.sidereport {
    position: fixed;
    color: #111111;
    top: 10px;
    right: -500px;
    z-index: 9999;
    width: 425px;
    background: white;
    height: 98vh;
    /*-webkit-transition: right 0.5s ease-in-out;
    -o-transition: right 0.5s ease-in-out;
    transition: right 0.5s ease-in-out;*/
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    overflow-y: scroll;
    padding: 25px 35px;
    padding-top: 0;
    transition: left 1s;
    overflow: auto;
    animation-name: slideIn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
}
.side-report-expanded {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background:white;
    padding:30px;
}
@keyframes slideIn {
    0% {
        right: -500px;
    }

    100% {
        right: 5px;
    }
}

    .sidereport::-webkit-scrollbar {
        /*display: none;*/
        width: 7px;
    }

body {
    overflow-x: hidden;
}

.reportBtns {
    display: flex;
    justify-content: right;
}

.report-title {
    font-size: 24px;
    font-weight: bold;
    right: 20px;
    background: white;
}

.report-sub-title {
    font-size: 20px;
    font-weight: bold;
}

.obs-title {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    padding: 10px 15px;
    background: #D9D9D9;
}

.obs-item {
    border-collapse: collapse;
}

    .obs-item tr, .obs-item td, obs-item th {
        border-right: none;
        border-top: none;
        border-left: none;
        border-bottom: 1px solid #D0D0D0;
    }

    .obs-item td, obs-item th {
        padding: 10px 15px;
    }

    .obs-item th {
        font-weight: 600;
        text-align: right;
    }