.nameres{
    width: 100%;
    max-width: 24rem;
    padding: 0.25rem;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-top: 0.75rem;
    margin: 0.75rem auto 0 auto;
    display: none;
}

.night .nameres{
    border:1px solid #444;
}

.nameres>div {
    display: inline-block;
    width: calc(100% / 5);
    padding: 0.25rem;
    text-align: center;
    font-size: 0.6rem;
}

.nameres>div span{
    border: 1px solid #eee;
    display: block;
    width: 100%;
    height: 1.8rem;
    line-height: 1.8rem;
}

.night .nameres>div span{
    border: 1px solid #444;
    background-color: #232324;
}

@media screen and (max-width: 940px) {
    .nameres{
        max-width: 100%;
    }
    .nameres>div {
        width: calc(100% / 5);
    }
}

@media screen and (max-width: 480px){
    .nameres>div{
        width: calc(100% / 4);
    }
}

@media screen and (max-width: 350px){
    .nameres>div{
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 280px){
    .nameres>div{
        width: calc(100% / 2);
    }
}