/*pkmn-list*/
.pkmn-list-c {
    width: 100%;
    position: relative;
    bottom: -1px;
    z-index: 1;
}

.pkmn-list {
    width: 100%;
    background-color: #FFF;
    display: none;
    list-style: none;
    border-radius: 15px;
    box-shadow: 0 2px 2px #DEE1E3;
    overflow-x: auto;
    position: absolute;
    scroll-behavior: smooth;
}

.pkmn-list::-webkit-scrollbar {
    height: 0;
}

.pkmn-list::-webkit-scrollbar-track {
    background: #FFF;
}

.pkmn-list::-webkit-scrollbar-thumb {
    background: #D9E8FF;
    border-radius: 5px;
}

.pkmn-list::-webkit-scrollbar-thumb:hover {
    background: #287EFF;
}

.pkmn-list--show {
    display: grid;
}

.pkmn-list__pkmn {
    color: #959CA3;
    padding: 10px 10px 5px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.pkmn-list__pkmn:active {
    background-color: #287EFF;
}

.pkmn-list__pkmn:first-child {
    border-left: 2px dotted #3C8AFF;
}

.pkmn-list__pkmn:last-child {
    border-right: 2px dotted #3C8AFF;
}

.pkmn-list__pkmn--marked {
    color: #353A3E;
    background-color: #ECF4FF;
}

.pkmn-list__pkmn-art {
    width: 70px;
    height: 55px;
    background: center/contain no-repeat;
    display: block;
    margin-bottom: 10px;
}

.pkmn-list__pkmn-name {
    font-size: .6em;
    font-weight: 500;
}

/*Tablet*/
@media only screen and (min-width: 768px) {
    /*pkmn-list*/
    .pkmn-list-c {
        top: 1px;
    }
}