.gko-infobox {
    background-color: #2A68AE;
    color: #ffffff;
    text-align: center;
    align-items: center;
    position: fixed;
    z-index: 90;
    width: 100vw;
    overflow: visible;
    max-height: 0;
    transition: max-height 0.5s ease;
}

.gko-infobox .gko-infobox-content {
    max-width: 1800px;
    margin: 0 auto;
}

.gko-infobox-expanded {
    padding: 1rem 1rem 0 1rem;
    max-height: 1000px;
}

.gko-infobox-collapsed {
    max-height: 7px;
    height: 7px;
}

.gko-infobox-collapsed .gko-infobox-content {
    height: 0;
    overflow: hidden;
}

.gko-infobox svg {
    width: 3rem;
    height: 2rem;
    fill: white;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gko-infobox.gko-infobox-collapsed svg {
    transform: rotate(0deg);
}

.gko-infobox.gko-infobox-expanded svg {
    transform: rotate(180deg);

}

div.gko_status_infobox_violet,
div.gko_status_infobox_violet svg {
    background: #9400D3;
    color: #FFFFFF;
}

div.gko_status_infobox_yellow,
div.gko_status_infobox_yellow svg {
    background: #f2e124;
    color: #333;
}

div.gko_status_infobox_red,
div.gko_status_infobox_red svg {
    background: #CC0000;
    color: #FFFFFF;
}

div.gko_status_infobox_blue,
div.gko_status_infobox_blue svg {
    background: #2A68AE;
    color: #FFFFFF;
}

div.gko_status_infobox_blue svg,
div.gko_status_infobox_violet svg,
div.gko_status_infobox_red svg {
    fill: #FFFFFF;
}

div.gko_status_infobox_yellow svg {
    fill: #333;
}

#gko-infobox-btn {
    display: block;
}