.zoom-video {
    width: 100%;
    height: auto;
    padding: 0;
}

.zoom-video-section .full-screen {
    transition: 150ms;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: transparent;
    border-radius: 50%;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    cursor: pointer;
}

.zoom-video-section .full-screen:hover {
    background-color: rgba(255, 255, 255, 1);
}

@media (hover: hover) {
    .zoom-video-section .full-screen {
        opacity: 0;
    }

     .zoom-video-section:hover .full-screen {
        opacity: 1;
    }
}
