.twitter-timeline--loading {
    display: flex;
    height: 36px;
    align-items: center;
}
.twitter-timeline--loading span.link {
    font-size: 20px;
    font-weight: bold;
    margin: 0 1rem 0 .5rem;
}
.twitter-timeline--loading span.link a {
    color: black;
}
.twitter-timeline--loading div.icon {
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.twitter-timeline--loading div.icon svg {
    fill: rgba(29, 155, 240, 1);
    color: rgba(29, 155, 240, 1);
    height: 2rem;
    width: 24px;
}
span.twitter-timeline--loader {
    height: 24px;
    width: 24px;
    border: 3px solid rgba(29, 155, 240, 0.2);
    border-bottom-color: rgba(29, 155, 240, 1);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: twitter-timeline--loader-rotation 1.5s linear infinite;
}

@keyframes twitter-timeline--loader-rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

nav.twitter-timeline--nav {
    position: relative;
    margin-right: 1rem;
    display: none;
}

nav.twitter-timeline--nav div {
    transition-duration: 0.2s;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    border-radius: 9999px;
    border-width: 1px;
    border-style: solid;
    user-select: none;
}

nav.twitter-timeline--nav div:hover {
    background-color: rgba(15, 20, 25, 0.1);
    cursor: pointer;
}

nav.twitter-timeline--nav div {
    position: absolute;
    z-index: 100;
    top: .35rem;
    min-height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

nav.twitter-timeline--nav div.prev {
    right: 5rem;
}

nav.twitter-timeline--nav div.next {
    right: 2.5rem;
}

nav.twitter-timeline--nav svg {
    width: 20px;
    height: 20px;
    color: rgb(15, 20, 25);
    z-index: 100;
}

nav.twitter-timeline--nav div.next svg.next {
    transform: rotate(180deg);
}
