/* Copyright: https://wprezplugin.com - all rights reserved - 2023 */

.arv_fader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(25,25,25,0.3);
	z-index: 999999;
	display: none;
}

.arv_dialog {
	position: fixed;
	z-index: 1000000;
	background: white;
	box-shadow: 0 0 15px rgba(50,50,50,0.7);
	width: 400px;
	height: 600px;
	top: 50%;
	left: 50%;
	margin-top: -300px;
	margin-left: -200px;
	display: none;
}

/* RESPONSIVE */
@media screen and ( max-width: 420px ) { /* DIALOG MAX WIDTH + Something */
	
	.arv_dialog {
		width: 98%;
		left: 1%;
		margin-left: 0;
	}
	
}

@media screen and ( max-height : 520px ) { /* DIALOG MAX HEIGHT + Something */
	
	.arv_dialog {
		height: 98%;
		top: 1%;
		margin-top: 0;
	}
	
}

.arv_dialog_title {
	background: #ededed;
	height: 40px;
	position: relative;
}

.arv_dialog_title h2 {
	margin: 0;
	line-height: 40px;
	vertical-align: middle;
	margin-left: 10px;
	font-weight: bold;
	font-size: 100%;
}

.arv_dialog_close {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	line-height: 40px;
	display: block;
	transition: all .6s;
	background: transparent;
	text-indent: -999px;
	background-image:url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3Bopacity%3A0%3B%7D.cls-2%7Bfill%3A%23231f20%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eclose%3C%2Ftitle%3E%3Cg%20id%3D%22Layer_2%22%20data-name%3D%22Layer%202%22%3E%3Cg%20id%3D%22close%22%3E%3Cg%20id%3D%22close-2%22%20data-name%3D%22close%22%3E%3Crect%20class%3D%22cls-1%22%20width%3D%2224%22%20height%3D%2224%22%20transform%3D%22translate(24%2024)%20rotate(180)%22%2F%3E%3Cpath%20class%3D%22cls-2%22%20d%3D%22M13.41%2C12l4.3-4.29a1%2C1%2C0%2C1%2C0-1.42-1.42L12%2C10.59%2C7.71%2C6.29A1%2C1%2C0%2C0%2C0%2C6.29%2C7.71L10.59%2C12l-4.3%2C4.29a1%2C1%2C0%2C0%2C0%2C0%2C1.42%2C1%2C1%2C0%2C0%2C0%2C1.42%2C0L12%2C13.41l4.29%2C4.3a1%2C1%2C0%2C0%2C0%2C1.42%2C0%2C1%2C1%2C0%2C0%2C0%2C0-1.42Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
	background-size: 20px 20px;
	background-position: center center;
	background-repeat: no-repeat;
}

.arv_dialog_close:hover {
	background-color: rgba(185,185,185,0.4);
}

.arv_dialog_content {
	position: relative;
	width: 100%;
	height: calc( 100% - 40px );
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.arv_dialog_content .arv_item_select {
	display: none;
}

.arv_dialog_loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: rgba(125,125,125,0.1) url('loader.gif') no-repeat center center;
	display: none;
}

/* FORM */
.arv_dialog_form_element {
    margin: 20px;
}

.arv_dialog_form_element label {
    display: block;
    margin-bottom: 5px;
}

.arv_dialog_form_element input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border-top: none;
    border-left: none;
    border-right: none;
}

.arv_dialog_form_element p {
    font-size: 80%;
    margin-top: 5px;
    opacity: 0.6;
}

.arv_dialog_infobar {
	margin-top: 10px;
	border: 1px solid #27d62c;
	padding: 7px;
	font-weight: bold;
	background: #daf4d0;
	display: none;
}

.arv_dialog_infobar.error {
	border-color: #d72626;
	background: #f5cfcf;
}

