.iframe-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* Clickable area*/
.iframe--click-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 585px;
    height: 250px;
    background-color: black;
    border-radius: 20px;
    cursor: pointer;
}

.iframe--click-area > img {
    width: 70px;
    height: 70px;
}

.iframe--click-area .top-left {
    position: absolute;
    left: 30px;
    top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    line-height: 36px;
}

.iframe--click-area .top-right {
    position: absolute;
    right: 30px;
    top: 30px;
}

.iframe--click-area .top-right img {
    width: 36px;
    height: 36px;
}

.iframe--click-area .top-right img:nth-of-type(2) {
    display: none;
}

.iframe--click-area .top-right:focus img:nth-of-type(1),
.iframe--click-area .top-right:hover img:nth-of-type(1) {
    display: none;
}

.iframe--click-area .top-right:focus img:nth-of-type(2),
.iframe--click-area .top-right:hover img:nth-of-type(2) {
    display: block;
}

.iframe--click-area .bottom-right {
    display: none;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

/*Clickable icons*/
.iframe--click-icons {
    position: relative;
    display: inline-flex;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 48px;
    height: 48px;
}

.iframe--click-icons img:nth-of-type(2) {
    display: none;
}

.iframe--click-icons:focus img:nth-of-type(1),
.iframe--click-icons:hover img:nth-of-type(1) {
    display: none;
}

.iframe--click-icons:focus img:nth-of-type(2),
.iframe--click-icons:hover img:nth-of-type(2) {
    display: block;
}

@media all and (min-width: 700px) {
    /* Clickable area*/
    .iframe--click-area {
        height: 320px;
        border-radius: 24px;
    }

    .iframe--click-area > img {
        width: 84px;
        height: 84px;
    }

    .iframe--click-area .top-left {
        font-size: 24px;
    }

    .iframe--click-area .top-right img {
        width: 60px;
        height: 60px;
    }

    .iframe--click-area .bottom-right {
        display: block;
    }

    /*Clickable icons*/
    .iframe--click-icons {
        width: 80px;
        height: 80px;
    }
}