/* FLIP MATCH GAME INNER BUTTONS */

.flip-match-game-inner-buttons {
    width: 450px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* FLIP MATCH GAME MENU BUTTON */

.flip-match-game-menu-button {
    width: 45px;
    height: 45px;
    border-radius: 0.5rem;
    border: 0;
    font-size: 1rem;
    background-color: transparent;
    cursor: pointer;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 200ms;
}

.flip-match-game-menu-button-svg {
    color: white;
}

.flip-match-game-menu-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.flip-match-game-menu-button:active {
    background-color: rgba(255,255,255,0.05);
}

/* FLIP MATCH GAME SOUND BUTTON */

.flip-match-game-sound-button {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    border-radius: 0.5rem;
}

.flip-match-game-sound-button-svg {
    color: white;
    display: none;
}

.flip-match-game-sound-button-svg-second {
    color: white;
}

.flip-match-game-sound-button:hover {
    background-color: rgba(255,255,255,0.1);
}

.flip-match-game-sound-button:active {
    background-color: rgba(255,255,255,0.05);
}

.flip-match-game-sound-button-on > .flip-match-game-sound-button-svg {
    display: block;
}

.flip-match-game-sound-button-on > .flip-match-game-sound-button-svg-second {
    display: none;
}

/* MEDIA QUERIES */

@media (max-width: 800px) {
    .flip-match-game-inner-buttons {
        width: 400px;
    }
}

@media (max-width: 500px) {
    .flip-match-game-inner-buttons {
        width: 350px;
    }
}

@media (max-width: 400px) {
    .flip-match-game-inner-buttons {
        width: 300px;
    }
}

@media (max-width: 350px) {
    .flip-match-game-inner-buttons {
        width: 280px;
    }
}