MapSelector {
    padding-bottom: 20px;

    .selected-map {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
        width: 90%;
        height: 0px;
        opacity: 0;


        img {
            margin: 5%;
            padding: 1%;
            background-size: 100%;
        }

        .selected-container {
            flex-direction: column;
            width: 50%;
            align-items: center;
            padding-left: 2%;
            height: 100%;
            justify-content: space-around;

            > .gamemode-dropdown-holder {
                align-items: center;
                justify-content: center;
                flex-direction: column;
                width: 100%;

                > .gamemode-dropdown {
                    align-items: center;
                    justify-content: center;
                }
            }
        }

        .map-header {
            font-size: 34px;
        }

        button {
            width: 90%;
            background-color: #333333;
            justify-content: center;
            align-items: center;
            height: 15%;
            border-radius: 5%;
            border: 4px rgb(37, 37, 37);
            transition: all 0.1s;
            transform: scale(1) rotate(0deg);
            font-size: 24px;

            &:hover {
                background-color: rgb(61, 129, 63);
                sound-in: ui.button.over;
                transform: scale(1.1) rotate(0deg);
                border: 4px rgb(37, 37, 37);
            }

            &:active {
                background-color: hsl(0, 0%, 15%);
                sound-in: ui.button.press;
                cursor: pointer;
            }
        }
    }

    .selectedd {
        opacity: 1;
        height: 400px;
        border: 4px rgb(37, 37, 37);
        background-color: #3a3a3a;
        border-radius: 1%;
        font-size: 32px;
        padding: 2%;
        background-size: 100%;
        transition: height 0.5s ease, opacity 1s ease;
    }
}
