@font-face {
    font-family: myFont;
    src: url(KJino.TTF);
}

.queue-page *,
.queue-page{
    overflow-y: hidden;
    font-family: myFont;
    /* direction: ltr !important; */
}

.queue-page .mud-typography-h3{
    font-family: myFont;
}

i{
    color: #ffae00;
    display: flex;
    transform: rotate(-90deg);
    font-size: 5vh !important;
}

.card{
    padding: 1rem !important;
    margin: 1rem 0rem .5rem 0rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.current .card{
    background-color: #263859;
    color: white;
}

.current .recent-call,
.current .card.recent-call{
    color: white;
    animation-name: example;
    transition: .5s;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes example {
    0% {background-color: #264d59;}
    25% {background-color: #2b6b00;}
    50% {background-color: #265935;}
    75% {background-color: #2b6b00;}
    100% {background-color: #265935;}
}

.card span{
    transform: scale(1.2);
    display: flex;
    flex-direction: row;
}

.card span b{
    font-weight: bold !important;
    margin-right: .5rem;
}

.current{
    height: 100vh;
    overflow-x: hidden;
    /* background-color: #17223B; */
}

.current > .col > .card{
    height: calc(33vh - 1.5rem - 3rem);
}

.incoming{
    overflow-y: auto !important;
    overflow-x: hidden;
    height: 100vh;
    padding-bottom: .5rem !important;
    direction: rtl;
    border-inline-end: .5rem solid #00000067;
}

.blue.darken-4{
    background-color: #17223B !important;
}

.blue.darken-3{
    background-color: #263859 !important;
}

.incoming::-webkit-scrollbar {
    width: 1em;
}

.incoming::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #17223B;
}

.incoming::-webkit-scrollbar-thumb {
    background-color: #263859;
    border-radius: 32px;
}