/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #1a202c;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

ol.name-value {
    list-style: none;
    display: table;
}

ol.name-value li {
    display: table-row;
    border-bottom: 1px solid #E8E8E8;
}

ol.name-value li label {
    display: table-cell;
    font-weight: bold;
    width: 50%;
}

ol.name-value li span {
    display: table-cell;
    width: 50%;
}

.check-wrapper {
    width: 100%;
    /*background-color: #c3c3c3;*/
    position: relative;
    text-align: center;
}
.check-wrapper div {
    display: inline-block;
    width: 45%;
    margin: auto;
}

.report-item {
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px !important;
    padding: 20px 20px !important;
    width: 45vw;
}

.vrm {
    background: #FFC72C;
    width: 100px;
    text-align: center;
}

h5 {
    text-decoration: underline;
}