/* Modal stilleri */
/* var(--r) */
		
.modalh6{
	font-size:1.5vw;
	margin:-1.5vw 0 0 0;
	color:#dd0000;
}

.modalimg{
	position:absolute;
	width:70%;
	height:auto;
	opacity:.1;
	z-index:-1;
}

.modalOverlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 9999;
	backdrop-filter: blur(5px);
	-moz-backdrop-filter: blur(5px);
}

.modalCab {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
	padding: 2vw 2vw 1vw 2vw;
	max-width: 80vw;
	width: 35vw;
	border-radius:.8vw;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	text-align: center;
	overflow:hidden;
	background: -moz-linear-gradient(top, #ffffff 0%, #cccccc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#cccccc));
	background: -webkit-linear-gradient(top, #ffffff 0%,#cccccc 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#cccccc 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#cccccc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cccccc',GradientType=0 );
	background: linear-gradient(top, #ffffff 0%,#cccccc 100%);
}

.modalCab p {
	color:#000;
	text-shadow:none;
	text-align:justify;
	font-weight:300;
}

.modalCab hr {margin:.8vw;}

.modalKapat {
	position: absolute;
	top: .5vw;
	right: .55vw;
	width:1.8vw;
	height:1.8vw;
	font-size: 1.7vw;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	border-radius: 50%;
	background:#e81123;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
	line-height:1.1;
}
.modalKapat:hover {
	filter:brightness(2);
}

/* Buton stilleri */
.modalCab button {
	background-color: #dd0000;
	color: #fff;
	padding: 0.5vw 1vw;
	border: none;
	border-radius: 5px;
	font-size: 1vw;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin:0;
}

.modalCab button:hover {
	filter:brightness(2);
}

/* Mobil Responsive */
@media screen and (max-width: 799px) {
	.modalKapat {
		top:2vw;
		right:2.2vw;
		width:6.6vw;
		height:6.6vw;
		font-size:6vw;
	}
	.modalCab {
		width: 80vw;
		padding: 6vw 6vw 3vw 6vw;
		border-radius:3vw;
	}
	.modalh6{
		font-size:5vw;
		margin:-4vw 0 0 0;
	}
	.modalCab hr {margin:2vw;}
	.modalCab button {
		padding: 2vw 4vw;
		border-radius: 5px;
		font-size: 4vw;
		background-color:#dd0000;
		color:#fff;
	}
}