@charset "UTF-8";
body {
    color: #3d1c10;
    background: #ecf0f1;
    padding: 0 1em 1em;
}

h1 {
    margin: 0;
    line-height: 2;
    text-align: center;
}

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

input {
    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;
}

.tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.tab-label {
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-between;
    padding: 1em;
    background: #ffb700;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
    /* Icon */
}

.tab-label:hover {
    background: #728e1d;
}

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

.tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #DEE9FC;
    background: #DEE9FC;
    transition: all 0.35s;
}

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

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

input:checked+.tab-label {
    background: #ffb700;
    color: #fff;
}

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

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

.tab-content>p {
    color: #2c3e50;
}


/*# sourceMappingURL=style1.css.map */