.report_container {
    width: 100%;
    font-family: 'Proxima-Nova-Semibold', 'Proxima Nova', Arial, sans-serif;
}

.report_container h4 {
    text-align: center;
    font-size: 24px;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #999;
    font-family: 'Proxima-Nova-Semibold', 'Proxima Nova', Arial, sans-serif;
}

.report_container table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.report_container table tbody tr th {
    text-align: center;
    font-weight: 600;
    font-size: 1.2vh;
    padding: 9px;
    text-transform: uppercase;
    color: #253042;
    background-color: #e4e5e6;
}

.report_container table tbody tr td {
    text-align: center;
    font-weight: 100;
    font-size: 1.5vh;
    padding: 10px;
    line-height: 1.5em;
    vertical-align: middle;
    border: 0;
}

.report_container table tbody tr td p {
    margin: 0;
}

.report_container table tbody tr td.black {
    background: #293041;
    color: #fff;
}

.report_container table tbody tr td.gray {
    background: #e4e5e6;
    color: #333;
    padding: 10px 0;
}

.report_container table tbody tr td.imperial {
    background: #581c6c;
    color: #fff;
}

.report_container table tbody tr td.bbr,
.report_container table tbody tr td.gbr {
    border-radius: 10px;
}

.report_container table tbody tr td.tbr_left {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.report_container table tbody tr td.tbr_right {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.report_container .scroll_bar {
    overflow-x: auto;
    padding-bottom: 10px;
}

.report_container .progress-bar {
    margin: 1.5rem auto;
    border-radius: 6px;
    position: relative;
}

.report_container .progress {
    position: relative;
    width: 0;
    height: 2px;
    background: url('https://www.dekabiosciences.com/wp-content/uploads/2023/04/line1.png') repeat-x top;
    text-align: right;
    overflow: visible;
}

.report_container .progress span {
    position: absolute;
    top: 50%;
    transform: translate(100%, -55%);
    right: 10px;
}

.report_container .progress span img {
    display: block;
    width: 50px;
    height: 50px;
    max-width: 50px;
    margin-top: 5px;
}

.progress span img {
    width: 50px;
    height: 50px;
}

.report_container .green {
    color: #3afea3 !important;
    font-size: 1.8vh;
}

.report_container .pink {
    color: #ffafd2 !important;
    font-size: 1.8vh;
}

.desktop_mode {
    display: block;
}

.mobile_mode {
    display: none;
}

.blink {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 1024px) {
    .report_container h4 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 768px) {
    .desktop_mode {
        display: none;
    }

    .mobile_mode {
        display: block;
    }

    .report_container table tbody tr td {
        font-size: 14px;
        padding: 10px;
    }

    .report_container table tbody tr th {
        font-size: 0.7vh;
        padding: 10px 5px;
    }

    .report_container .progress span img {
        margin-left: 10px;
    }
}
