.card {
    text-align: center;
    padding: 24px;
    max-width: 869px;
    max-height: fit-content;
    box-shadow: 0px 0px 4px rgba(31, 51, 71, 0.5), 0 4px 4px rgba(31, 51, 71, 0.1);
    border-radius: 8px;
    color: #0A1023;
    font-family: inherit;
}

.card-title, .card-body, .queue-position {
    font-family: 'IBM Plex Sans', sans-serif;
}

.card-title, .queue-position {
    font-weight: 500;
}

.card-title {
    font-size: 28.83px;
    line-height: 37px;
}

.card-body {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

.spinner {
    padding: 15px 0;
}

.queue-position {
    font-size: 25.63px;
}

.queue-position .value-span {
    display: block;
    padding: 12px 0;
    font-weight: 700;
    font-size: 48px;
}

.spinner .loading {
    animation-name: spin;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
     transform: rotate(3deg); 
     transform: rotate(0.3rad);
     transform: rotate(3grad); 
     transform: rotate(.03turn);  
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
