HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/public_html/wp-content/plugins/ova-framework/assets/css/_ova_search_popup.scss
.ova_wrap_search_popup {
	position: relative;
	cursor: pointer;
	text-align: center;

	.ova_search_close{
		display: none;
	}
	
	&.show {
		.ova_search_popup{
			transition: all .3s ease-in-out;
			visibility: visible;
			opacity: 1;
			z-index: 9999;
		}
		.btn_close{
			display: block;
			position: absolute;
			top: 60px;
			right: 60px;
			font-size: 60px;
			color: #fff;
			z-index: 10;
			&:after{
				content: "\4b";
				opacity: 0;
				position: absolute;
				left: 0;
				top: 0;
			}

			&:hover{
				&:before{
					opacity: 0;
					transition: all 0.3s;
				}
				&:after{
					opacity: 1;
					transition: all 0.3s;
				}
			}
		}
	}
	
	i {
		right: 0;
		cursor: pointer;
		font-size: 20px;
		color: #62718d;
		transition: all 0.3s ease;
		display: inline-block;
		transform: rotateY(180deg);
		&:before{
			font-size: 20px;
		}
		&:hover {
			transition: all 0.3s ease;
		}
	}

	.ova_search_popup{
		position: fixed;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.96);
		z-index: -1;
		transition: all .3s ease-in-out;
		visibility: hidden;
		display: block;
		opacity: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: left;
		
		.search-form{
			display: flex;
			justify-content: center;
			align-items: center;
			.search-field{
				width: 70%;
				height: 60px;
				border: 0;
				-webkit-transition: all .3s;
				transition: all .3s;
				-webkit-border-radius: 0;
				border-radius: 0;
			}
			.search-submit{
				height: 60px;
				border: 0;
				-webkit-transition: all .3s;
				transition: all .3s;
				cursor: pointer;
				-webkit-border-radius: 0;
				border-radius: 0;
				&:hover{
					opacity: 0.85;
				}
			}
		}
	}
}