﻿/*_______________________________________________________________ modal ________________________________________________________________________*/
.modal-box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	overflow: auto;
	background-color: rgba(0, 24, 87, 0.7);
	z-index: 10000;
}

.modal-container {
	position: absolute;
	width: 60%;
	max-width: 800px;
	margin: auto;
	text-align: center;
	background-color: #ffffff;
	border: solid 1px #000000;
	border-radius: 2px;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 976px) {
	.modal-container {
		width: 80%;
	}
}

@media screen and (max-width: 767px) {
	.modal-container {
		width: 100%;
	}
}

.mod-content {
	position: relative;
	padding: 20px;
}

.close_m {
	position: absolute;
	top: 5px;
	right: 5px;
	display: block;
	color: #001857;
	font-size: 22px;
	line-height: 10px;
	border: none;
	text-decoration: none;
	font-weight: 600;
	padding: 5px;
}

.close:hover {
	color: #001857;
	text-decoration: none;
}

.butt-1 {
	background-color: #db0240;
	padding: 5px 25px 10px;
	color: #ffffff;
	border: none;
	font-family: 'Conv_Prohibition';
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
}

.butt-1:hover {
	background-color: #C40038;
	color: #ffffff;
}

.link-text {
	color: #001857;
	display: inline-block;
	border-bottom: solid 2px #001857;
}

.link-text:hover {
	color: #db0240;
	border-bottom: solid 2px #db0240;
}