@keyframes marquee-content {

    from {
        -webkit-transform: translateX(200%);
        -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
        -o-transform: translateX(200%);
        transform: translateX(200%);
    }

    to {
        -webkit-transform: translateX(-200%);
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -o-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}

.marquee {
    position: fixed;
    font-size: 125%;
    z-index: -1;
    display: flex;
    align-items: center;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: black;
    color: white;
    overflow-x: hidden;
    align-items: center;
    /* justify-content: center;
    -webkit-transform: matrix(1, 0, 0, 1, 1, 1);
    -moz-transform: matrix(1, 0, 0, 1, 1, 1);
    -ms-transform: matrix(1, 0, 0, 1, 1, 1);
    -o-transform: matrix(1, 0, 0, 1, 1, 1);
    transform: matrix(1, 0, 0, 1, 1, 1); */
    overflow-y: visible;
    white-space: pre;
}

.marquee__item {
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-name: marquee-content;
    animation-timing-function: linear;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    overflow: hidden;
    height: 5vh;
    display: flex;
    align-items: center;
    background:black;
}

div#aotBanner {
    display: grid;
    grid-gap: 0.1vh;
    color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: +1000;
    border-radius: 5vw;
    padding: 0;
    cursor: pointer;
    /* display: none; */
}

div#aotBannerContent>img {
    height: 2vw;
    margin: auto;
    bottom: 4.5vh;
    position: relative;
    background: black;
    padding: 1vh 5vw;
    border-radius: 1.5vw 1.5vw 0 0;
    width: auto;
}

div#aotBanner>div:first-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 0;
}

div#aotBanner>div:first-child>button {
    background-color: red;
    color: white;
    width: 0;
    height: 0;
    padding: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    top: 0.5vw;
    right: 1vw;
    position: relative;
    border-radius: 50%;
    border: none;
    font-size: inherit;
    font-family: inherit;
    outline: none;
}

div#aotBannerContent {
    display: flex;
    grid-gap: 1vw;
    align-items: center;
    justify-content: center;
}

@media only screen and (orientation: portrait) {

    .marquee {
        position: fixed;
        font-size: 125%;
        z-index: -1;
        display: flex;
        align-items: center;
        width: unset;
        left: 0;
        bottom: 0;
        background-color: black;
        color: white;
        overflow-x: hidden;
        align-items: center;
        /* justify-content: center;
        -webkit-transform: matrix(1, 0, 0, 1, 1, 1);
        -moz-transform: matrix(1, 0, 0, 1, 1, 1);
        -ms-transform: matrix(1, 0, 0, 1, 1, 1);
        -o-transform: matrix(1, 0, 0, 1, 1, 1);
        transform: matrix(1, 0, 0, 1, 1, 1); */
        overflow-y: visible;
    }

    .marquee__item {
        animation-duration: 30s;
        animation-iteration-count: infinite;
        animation-name: marquee-content;
        animation-timing-function: linear;
        white-space: nowrap;
        text-transform: uppercase;
        line-height: 1;
        position: relative;
        overflow: hidden;
        height: 10vw;
        display: flex;
        align-items: center;
        background:black;
    }

    div#aotBanner {
        display: grid;
        grid-gap: 0.1vh;
        color: rgba(0, 0, 0, 0.8);
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
        z-index: +1000;
        border-radius: 5vw;
        padding: 0;
        cursor: pointer;
        /* display: none; */
    }

    div#aotBannerContent>img {
        height: 7.5vw;
        margin: auto;
        bottom: 9.5vw;
        position: relative;
        background: black;
        padding: 1vw 10vw;
        border-radius: 5vw 5vw 0 0;
        width: auto;
    }

    div#aotBanner>div:first-child {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 0;
    }

    div#aotBanner>div:first-child>button {
        background-color: red;
        color: white;
        width: 0;
        height: 0;
        padding: 5vw;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        top: -2.5vw;
        right: 1vh;
        position: relative;
        border-radius: 50%;
        border: none;
        font-size: inherit;
        font-family: inherit;
        outline: none;
    }

    div#aotBannerContent {
        display: flex;
        grid-gap: 1vw;
        align-items: center;
        justify-content: center;
    }


}