body{
    background-color: #f0f3f8;
}
.report-elements{
    text-decoration: none;
    display: flex;
}
.reportli_left {
    background-color: #EEEDFE;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(29, 158, 117, 0.07) 10px, rgba(29, 158, 117, 0.07) 11px);
    background-size: 20px 20px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    font-size: 12px;
    width: 75px;
    text-align: center;
    font-weight: 800;
    color: #000;
}
.reportli_body{
    flex: 1;
    padding: 5px 0px 5px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
}
ul.report-list-row {
    padding-left: 0px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
ul.report-list-row li{
    padding: 10px;
    background-color: #fff;
}
.titlepart{
    flex: 1;
    min-width: 0;
}
.titlepart h3 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto';
    margin-bottom:2px;
}
.titlepart p {
    margin-bottom: 0px;
    font-size: 14px;
    color: #565454;
}
.report-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    padding: 4px 12px;
    border-radius: 120px;
    background: #153b74;
    border: 1px solid #D3D1C7;
    white-space: nowrap;
}
.month-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 20px;

}
.time-hline {
    flex: 1;
    height: 0.5px;
    background:#a2a19b;
}
@media (min-width: 768px) and (max-width: 991px) {
ul.report-list-row {
    grid-template-columns:1fr;
}
}
@media (min-width: 320px) and (max-width: 767px) {
.titlepart h3 {
    font-size: 14px;
}
.reportli_body {
    padding: 5px 0px 5px 10px;
    gap: 10px;
}
.titlepart p {
    font-size: 12px;
}
.reportli_left {
    padding: 5px 5px;
    font-size: 10px;
    width: 65px;
}
ul.report-list-row li {
    padding: 5px;
}
ul.report-list-row {
    grid-template-columns:1fr;
}
}
