@font-face {
    font-family: Heebo;
    src: url(fonts/Heebo-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Heebo;
    src: url(fonts/Heebo-Bold.ttf);
    font-weight: 700;
}

body {
    font-family: Heebo;
    margin: 0 auto;
}

.none {
    display: none;
}

#extGrid {
    float: left;
    width: 23%;
    position: fixed;
}

#table {
    float: left;
}

.title {
    color: #2b357e;
    font-weight: 700;
    line-height: 35px;
}

a:link,
a:visited,
a:hover,
a:active {
    color: #454545;
}

/*Accordion*/

@charset "UTF-8";


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

/* Accordion styles */
.tabs {
    overflow: hidden;
}

.tab {
    width: 100%;
    color: #12406a;
    overflow: hidden;
}

.tab-label {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    background: #ffffff;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #12406a;
    border-bottom: none
}

.last-tab {
    border-bottom: 1px solid #12406a !important;
}

.tab-label:hover {
    background: #e9eaf2;
}

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

.tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    transition: all 0.35s;
    border: 1px solid #12406a;
    border-bottom: 0px;
    border-top: 0px;
}

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

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

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

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

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

@media only screen and (max-width: 60em) { /* ~950px */
    #extGrid {
        float: left;
        width: 100%;
        position: relative;
    }
}
