How to change the place of a default X (close item) of a lightbox video?

Hi!
I didn’t found the way to change the place of a default X (close item) of a lightbox video.
Does anyone knows how to do it without code? otherwise, if it’s not possible, how should I do it with code?
Thanks!
N.


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

Its position is controlled by default CSS code in the base CSS file. All lightbox styles are prefixed with .w-lightbox-*. You can inspect the CSS to see how it is built. It may be easier to manipulate another third-party lightbox component which is designed to be modified. Personally I choose to use FancyBox. Going down either path requires coding. If that’s not your bag you could study, or hire a coder. We like paid work.

.w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s
}