.spinner, .spinner-tiny {
    position: relative;
    border: 1px solid rgb(40, 50, 51);
    border-top: 1px solid rgb(0, 219, 255);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner {
    width: 20px;
    height: 20px;
    margin: 10px auto;
}

.spinner-tiny {
    width: 7px;
    height: 7px;
    margin: 0;
}

.retry-button {
    width: 70px;
    height: 20px;
    background-color: rgb(40, 50, 51);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    margin-top: 10px;
    border: none;
    text-align: center;
    margin-left: calc(50% - 35px);
    margin-right: calc(50% - 35px);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.in-transit {
    opacity: .2;
}