HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/frenchy/refonte2023/wordpress/wp-content/themes/gimont/assets/scss/elementor/_video.scss
.ova-video{

	.text{
		@include transaction( all, 0.3s, linear );
		display: inline-block;
		vertical-align: top;
		color:#fff;
		font-size: 20px;
		line-height: 1.2;
		margin: 45px 0 0;

		a{
			@include transaction( all, 0.3s, linear );
			color:var(--primary);
		}

		&:hover{
			a{
				@include transaction( all, 0.3s, linear );
				color: var(--heading);
			}
		}
	}
	
	.icon-content-view{
		display: inline-block;

		&.no-animation{
			.video-btn{
				&:before , &:after{
					animation:none;
				}
			}
		}

		.video-btn{
			display: flex;
			justify-content:center;
			align-items:center;
			position: relative;
			width: 100px;
			height: 100px;

			&:hover{
				cursor: pointer;

				&:before{
					@include transaction( all, 0.3s, linear );
					background-color: #fff;
				}

				i{
					@include transaction( all, 0.3s, linear );
					color: var(--primary);
				}

				&:after{
					@include transaction( all, 0.3s, linear );
					 background-color: rgba(255 , 255, 255 ,0.05);
				}
			}

			&:before{
				@include transaction( all, 0.3s, linear );
				position: absolute;
			    content: "";
			    top: 50%;
			    left: 50%;
			    border-radius: 50%;
			    transform: translate(-50%, -50%);
			    width: 85%;
			    height: 85%;
			    background-color: var(--primary);
			    z-index: 1;
			    animation: lineScale 2.5s linear infinite;
			}

			i{
				@include transaction( all, 0.3s, linear );
				font-size: 18px;
				display: inline-flex;
				color: #fff;
				z-index: 2;
			}

			&:after{
				@include transaction( all, 0.3s, linear );
				position: absolute;
			    content: "";
			    top: 50%;
			    left: 50%;
			    border-radius: 50%;
			    transform: translate(-50%, -50%);
			    width: 100%;
			    height: 100%;
			    background-color: rgba( 255, 255, 255, 0.1);
			    z-index: 0;
			    animation: lineScale 2.5s linear infinite;
			}

		}
	}

	// modal container
	.ova-modal-container {
		display: none;
		background-color: rgba( 0, 0, 0, .2 );
		align-items: center;
		justify-content: center;
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100vw;
		z-index: 10;

		.modal {
		    width: 900px;
			height: 500px;
			position: relative;

			@media screen and (max-width: 900px) {
				width: 768px;
				height: 450px;
			}

			@media screen and (max-width: 788px) {
				width: 600px;
				height: 350px;
			}

			@media screen and (max-width: 620px) {
				width: 400px;
				height: 250px;
			}

			@media screen and (max-width: 420px) {
				width: 320px;
				height: 200px;
			}

			@media screen and (max-width: 330px) {
				width: 300px;
				height: 180px;
			}

			i {
				@include transaction( all, 0.3s, ease );
			    position: absolute;
			    right: -10px;
				top: -35px;
				padding: 10px;
				cursor: pointer;
			    font-size: 12px;
			    color: #fff;
			    font-weight: 600;

				&:hover {
					color: #000;
				}
			}

			.modal-video {
				width: 100%;
				height: 100%;
				border: none;
			}
		}
	}
}

@keyframes lineScale {
	50% { 
        transform: translate(-50%, -50%) scale(1.5);
    }
    50% { 
        transform: translate(-50%, -50%) scale(0.8);
    }
}