@charset "UTF-8";

.divcenter {
    overflow-y: scroll;
    margin-left: auto;
    margin-right: auto;
}

.gamesv1 {
    /*display: flex;*/
    display: block;

    @media only screen and (max-width:600px) {
        display: block;
    }
}

.gamev1 {
    padding: 5px;
    /*    display: block;*/
    display: flex;
    height: 40px;

    @media only screen and (max-width:600px) {
        display: flex;
    }
}

.gamev1>.icon {}

.gamev1>.label {
    height: 40px;
    position: relative;
    align-items: center;
    position: relative;
    /* ★ */

    display: flex;

    @media only screen and (max-width:600px) {
        display: flex;
    }
}


#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    cursor: pointer;
}