﻿
.game-configuration {
    display: none;
    position: relative;
}

.game-configuration * {
    color: black;
}

.game-configuration-wrapper {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.game-configuration-content {
    background: white;
    width: 100%;
    padding: 15px;
    border-radius: 20px;
}

.game-configuration-header {
    background: #f09c15;
    color: white;
    padding: 15px;
}

    .game-configuration-header h1 {
        margin: 0;
        font-size: 24px;
        text-align: center;
    }

.game-configuration-body {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.game-configuration-preview {
    flex: 0 1 auto;
}

    .game-configuration-preview img {
        width: 300px;
        height: auto;
    }

.game-configuration-options {
    flex: 1 0 auto;
    padding: 30px;
    background: #fff9eb;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
}

    .game-configuration-options [type="radio"] {
        opacity: 1;
        transform: scale(1.4);
        cursor: pointer;
        width: auto;
        margin-right: 15px;
    }

        .game-configuration-options [type="radio"]:focus {
            outline: none;
        }

.game-configuration-section {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: space-around;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
}

.game-configuration-actions {
    justify-content: center;
    align-items: center;
}

.game-configuration-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 15px;
}

.game-configuration-section li {
    padding: 2px 5px;
    font-weight: lighter;
}

.game-configuration-section label {
    font-weight: normal;
    font-size: 16px;
}

    .game-configuration-section label i {
        color: #ff6a00;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 20px;
    }

        .game-configuration-section label i:last-child {
            margin-left: 10px;
        }

.game-configuration-actions {
    margin-top: 30px;
    justify-content: space-around;
    align-items: center;
}

.game-configuration-translations select {
    border-radius: 5px; 
    padding: 2px 20px;
}

.game-configuration-actions button {
    border-radius: 20px;
    border: none;
    padding: 7px 30px;
    font-size: 16px;
    transition-duration: 200ms;
}

        .game-configuration-actions button:hover {
            box-shadow: inset 0 6px 10px rgba(0, 0, 0, 0.25);
        }

        .game-configuration-actions button[data-type="cancel"] {
            color: white;
            background: #f40000;
            margin-right: 15px;
            border-bottom: 4px solid #b40000;
        }

        .game-configuration-actions button[data-type="accept"] {
            color: white;
            background: #3bc91b;
            border-bottom: 4px solid #2ea031;
        }

.game-configuration-sounds {
    margin-right: 15px;
}

    .game-configuration-sounds [type="checkbox"] {
        transform: scale(1.4);
        width: auto;
        margin-right: 15px;
    }

.game-configuration-size h3,
.game-configuration-type h3 {
    font-weight: normal;
}


@media all and (max-width: 900px) {
    .game-configuration-preview img {
        width: 250px;
        height: auto;
    }
}

@media all and (max-width: 800px) {
    .game-configuration-preview img {
        width: 350px;
        height: auto;
    }

    .game-configuration-body {
        flex-direction: column;
    }
}


.current-site-Mambo .game-configuration-header {
    background: #e01e7b;
}
