.overflow-hidden {
    overflow: hidden;
}

.pkm-card-overlay {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #00000066;
    scale: 1.2;
}

.detail-info-container {
    height: 450px;
}

.stats-container {
    height: 200px;
    width: 100%;
}

.info-pokemon {
    height: 200px;
    width: 100%;
}

.next-pkm-btn {
    height: 50px;
    width: 50px;
    z-index: 10;
}

.prev-pkm-btn {
    height: 50px;
    width: 50px;
    z-index: 10;
}

.loading-spinner-container {
    height: calc(100vh - 108px - 64px);
}

.big-card-buttons {
    padding: 4px 8px;
    color: black;
    border-radius: 4px;
    font-size: 14px;
}

.pokeball {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgb(50, 48, 56);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #424bc4;
}

@media (max-width: 830px) {
    .pkm-card-overlay {
        scale: 1;
    }
}