.section-suspended-video {
    position: fixed;
    right: 60px;
    bottom: 60px;
    z-index: 1000;
}

.section-suspended-video.bl {
    right: unset;
    left: 60px;
}

.section-suspended-video_close-btn {
    position: absolute;
    right: -17px;
    top: -17px;
    z-index: 20;
    background-color: #000;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-suspended-video_close-btn.circular {
    right: 10px;
    top: 10px;
}

.section-suspended-video_close-btn.elliptical {
    right: 4px;
    top: 4px;
}

.section-suspended-video_close-btn.square {
    right: -16px;
    top: -15px;
}

.section-suspended-video_close-btn:hover {
    cursor: pointer;
    transform: scale(1.08);
}

.section-suspended-video_close-btn > svg {
    color: #fff;
}

.section-suspended-video_content {
    width: 190px;
    height: 245px;
    border-radius: 8px;
    overflow: hidden;
}

.section-suspended-video_content.circular {
    width: 203px;
    height: 203px;
    border-radius: 50%;
    overflow: hidden;
}

.section-suspended-video_content.elliptical {
    width: 160px;
    height: 211px;
    border-radius: 80px;
    overflow: hidden;
}

.section-suspended-video_content.square {
    width: 203px;
    height: 203px;
    border-radius: 8px;
    overflow: hidden;
}

.section-suspended-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section-suspended-video iframe {
    transform: scale(1.006);
    transform-origin: right center;
}

.section-suspended-video-default {
    width: 100%;
    height: 100%;
    background-color: #ddd;
}

.section-suspended-video_modal-opener_container {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.section-suspended-video_modal-opener {
    display: inline;
    width: 0;
    height: 0;
}

.section-suspended-video_play-btn-container {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 11;
    cursor: pointer;
}

.section-suspended-video_play-btn {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

.section-suspended-video-icon {
    backdrop-filter: blur(28.45px);
    border-radius: 9px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    width: 88%;
    height: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
}

.section-suspended-video-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.section-suspended-video-icon svg {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .section-suspended-video {
        right: 24px;
    }
    .section-suspended-video.bl {
        left: 24px;
    }
    .section-suspended-video_content {
        &.elliptical {
            width: 90px;
            height: 130px;
        }

        &.square,
        &.rectangle {
            width: 122px;
            height: 118px;
        }

        &.rectangle {
            aspect-ratio: 190 / 245;
            height: auto;
        }

        &.circular {
            width: 114px;
            height: 114px;
        }
    }

    .section-suspended-video_close-btn {
        width: 15px;
        height: 15px;
        right: 0;
        top: 0;

        svg {
            width: 6px;
            height: 6px;
        }

        &.circular,
        &.elliptical {
            right: 0;
            top: 0;
        }

        &.rectangle,
        &.square {
            right: -6px;
            top: -6px;
        }
    }
}