/* Home Page Styles */
.home {
    display: flex;
    flex-flow: column;
}

.city-light {
    width: 100%;
    display: flex;
    position: absolute;
    height: 316px;
    background-image: url(/assets/img/design/top_morning.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.startRoom {
    margin-bottom: 1em;
}

.startRoom button {
    margin-left: 0.5em;
}

.startRoom .gameSelection {
    display: flex;
    margin-bottom: 0.5em;
    padding-bottom: 0.25em;
    overflow-x: scroll;
    overflow-y: hidden;
}

.gameSelection input[type=radio] {
    display: none;
}

.gameSelection>div {
    display: inline-block;
}

.gameSelection label {
    display: flex;
    flex-flow: column;
    padding: 0.25em;
    margin-right: 0.25em;
    width: 8em;
    height: 10em;
    background: #ddd;
    border-radius: 0.25em;
    cursor: pointer;
    text-align: center;
}

.gameSelection .icon {
    font-size: 3em;
    margin: 0.25em 0;
}

.gameSelection .name {
    font-weight: bold;
    color: #555;
}

.gameSelection .description {
    padding-left: 0.25em;
    color: #555;
    font-size: small;
}

.gameSelection input[type=radio]:not(:checked):not(:disabled):hover+label {
    background: #e3e3e3;
}

.gameSelection input[type=radio]:not(:checked):not(:disabled):active+label {
    background: #d0d0d0;
}

.gameSelection input[type=radio]:checked+label {
    background: #7d6fa0;
}

.gameSelection input[type=radio]:disabled+label {
    background: transparent;
    opacity: 0.3;
    cursor: default;
}

.startRoom .roomName {
    flex: 1;
    margin-right: 0.5em;
    width: 0;
    min-width: 0;
}

.gameSelection input[type=radio]:checked+label .name {
    color: #eee;
}

.gameSelection input[type=radio]:checked+label .description {
    color: #ccc;
}
