#error-banner {
    border-top: black 1px;
}

.cookie-banner {
    /* Banner is displayed at the bottom */
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;

    display: flex;
    
    /* Center the content */
    align-items: center;
    justify-content: center;
}

.cookie-banner__content {
    /* Take available width */
    flex: 1;
}

#errorlog {
    font-size: 10px;
}

#errorlog pre {
    width: 100%;
    overflow-wrap: break-word;
}

.close-button {
    /* Reset */
    background-color: transparent;
    border-color: transparent;

    /* Size */
    height: 3rem;
    width: 3rem;

    /* Used to position the inner */
    position: relative;
}

.close-button__line {
    /* Background color */
    background-color: #d1d5db;

    /* Position */
    position: absolute;

    /* Size */
    height: 1px;
    width: 100%;
}

.close-button__line--first {
    /* Position */
    left: 0px;
    top: 50%;
    transform: translate(0%, -50%) rotate(45deg);

    /* Size */
    height: 1px;
    width: 100%;
}

.close-button__line--second {
    /* Position */
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%) rotate(45deg);

    /* Size */
    height: 100%;
    width: 1px;
}
