main {
    overflow: auto;
    padding: 20px 0;
    width: 100%;
}

main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

main li {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1em;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.075);
}

main li:last-child {
    border-bottom: 0;
}

main li span {
    width: 100%;
    font-size: 14px;
}

main li span:last-child {
    width: 100px;
    text-align: right;
    color: #007fa2;
    font-weight: 400;
    font-size: 12px;
}

main li:hover {
    background: #effafe;
}

.swal-modal {
    background: #effafe;
}

.swal-footer {
    background: transparent;
}

.overview p {
    vertical-align: middle;
    align-items: center;
    text-align: center;
    display: grid;
    color: #007fa2;
    text-transform: uppercase;
    font-size: 12px;
}

.overview dl {
    display: grid;
    grid-template-columns: max-content auto;
    margin: 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.075);
    height: 30px;
    align-items: center;
    font-size: 13px;
}

.overview dl:last-child {
    border-bottom: 0;
}

.overview dt {
    grid-column-start: 1;
    font-weight: bold;
    color: #000851;
}

.overview dd {
    grid-column-start: 2;
    text-align: right;
    font-size: 12px;
    color: #007fa2;
}

/* Accordion styles */

.overview input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.overview .tabs {
  overflow: hidden;
}

.overview .tab {
    width: 100%;
    overflow: hidden;
}

.overview label {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1em;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px dashed #007fa2;
    color: #000851;
}

.overview label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    -webkit-transition: all .35s;
    transition: all .35s;
}

.overview .content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    -webkit-transition: all .75s;
    transition: all .75s;
}

.overview input:checked + label::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

.overview input:checked ~ .content {
    max-height: 100vh;
    padding: 1em;
}
