.chose-wrapper {
    position: absolute;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
}

    .chose-message {
        color: #fff;
        max-width: 58vmin;
        text-align: center;
        font-size: 3vmin;
        margin-bottom: 5vmin;
        margin-top: -20vmin;
    }

    #chose-controls {
        width: 10vmin;
        height: 10vmin;
        border: .5vmin solid #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 6vmin;
        --webkit-appearance: none !important;
        cursor: pointer;
    }

        #chose-controls.play {
            background-image: url('../img/pause.svg');
            background-position: center;
            background-repeat: no-repeat;
            background-size: 5vmin;
        }

        #chose-controls.pause {
            background-image: url('../img/play.svg');
            background-position: 3vmin center;
            background-repeat: no-repeat;
            background-size: 5vmin;
        }

    .chose-bottom {
        text-align: right;
        width: 100%;
        max-width: 58vmin;
    }

        .chose-next {
            color: #fff;
            font-size: 2vmin;
            margin-left: auto;
            opacity: .6;
            cursor: pointer;
        }

            .chose-next:after {
                content: "\276F";
                -webkit-appearance: none !important;
                appearance: none !important;
            }

            .chose-next:hover {
                opacity: 1;
            }

@media(max-width: 800px), (max-height: 800px) {
    .chose-message {
        max-width: 90vmin;
        font-size: 5vmin;
    }

    .chose-controls {
        width: 15vmin;
        height: 15vmin;
        font-size: 9vmin;
    }

    .chose-bottom {
        max-width: 90vmin;
    }

        .chose-next {
            font-size: 5vmin;
        }
}
