/*body {*/
/*    color: #003F7E;*/
/*    background: #ecf0f1;*/
/*    padding: 0 1em 1em;*/
/*}*/
h1 {
    margin: 0;
    line-height: 2;
    text-align: center;
}

h2 {
    margin: 0 0 0.5em;
    font-weight: normal;
}

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

.row {
    display: flex;
}

.row .col {
    flex: 1;
}

.row .col:last-child {
    margin-left: 1em;
}

/* Accordion styles */
.tabs {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.tab {
    color: white;
    overflow: hidden;
    margin: 10px 0px;
}

.tab-label {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    background: #003F7E;
    font-weight: bold;
    cursor: pointer;
    /* Icon */
}

.tab-label:hover {
    background: #1a252f;
}

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

.tab-content {
    height: 0px;
    padding: 0 1em;
    color: black;
    background: white;
    transition: all 0.35s;
    overflow: hidden;
}

.tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #003F7E;
    cursor: pointer;
}

.tab-close:hover {
    background: #D11141;
}

input:checked + .tab-label {
    background: #D11141;
}

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

input:checked ~ .tab-content {
    height: auto;
    padding: 1em;
}
