.alert-banner-wrapper {
    background-color: #d14000;
    width: 100%;
    position: relative;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
}

.alert-banner-wrapper.show {
    display: flex;
}

.admin-bar .alert-banner-wrapper {
    top: 32px;
}

.alert-banner-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.alert-banner-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.alert-banner-close {
    position: absolute;

    z-index: 1;
    width: 32px;
    height: 32px;

    border-radius: 32px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all linear 0.2s;
    cursor: pointer;

    color: #d14000;
}

.alert-banner-close:hover {
    background-color: white;
}

@media screen and (max-width: 1279px) {
    .alert-banner-close {
        right: 10px;
        top: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .alert-banner-close {
        right: 20px;
        top: 50%;

        transform: translateY(-50%);
    }
}
