﻿.maintenance-modal {
	border: none;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,.25);
	background: #fff;
}

.maintenance-body {
	text-align: center;
	padding: 40px 30px 30px;
	position: relative;
}

.warning-icon-wrapper {
	margin-bottom: 20px;
}

.warning-icon {
	width: 90px;
	height: 90px;
	margin: auto;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 5px 20px rgba(0,0,0,.12);
	display: flex;
	align-items: center;
	justify-content: center;
}

	.warning-icon i {
		font-size: 42px;
		color: #f6b422;
	}

.maintenance-title {
	color: #0b5d2a;
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 32px;
}

.title-divider {
	width: 60px;
	height: 3px;
	background: #0b5d2a;
	margin: 15px auto 25px;
	border-radius: 10px;
}

.maintenance-message {
	font-size: 24px;
	font-weight: 500;
	color: #444;
	margin-bottom: 15px;
}

.maintenance-description {
	color: #666;
	font-size: 16px;
	line-height: 1.7;
	max-width: 500px;
	margin: auto;
}

.maintenance-btn {
	margin-top: 20px;
	background: linear-gradient( 135deg, #0b5d2a, #0f7a39 );
	border: none;
	color: white;
	min-width: 240px;
	height: 52px;
	border-radius: 10px;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(11, 93, 42, .25);
	transition: all .3s ease;
}

	.maintenance-btn,
	.maintenance-btn:hover,
	.maintenance-btn:focus,
	.maintenance-btn:active {
		color: #fff !important;
	}

.maintenance-btn:hover {
	box-shadow: 0 8px 20px rgba(11, 93, 42, .35);
	color: white;
}

.wave-footer {
	height: 80px;
	background: #0b8a3c;
	clip-path: ellipse(80% 100% at 50% 100%);
}

.modal-backdrop.show {
	opacity: .75;
}

.modal.show .modal-dialog {
	max-width: 650px;
}

@@media(max-width:768px) {

	.maintenance-body {
		padding: 30px 20px;
	}

	.maintenance-title {
		font-size: 24px;
	}

	.maintenance-message {
		font-size: 20px;
	}

	.maintenance-description {
		font-size: 14px;
	}

	.maintenance-btn {
		width: 100%;
	}
}

.dots {
	position: absolute;
	width: 70px;
	height: 70px;
	background-image: radial-gradient(#70b38a 1.5px, transparent 1.5px);
	background-size: 14px 14px;
	opacity: .6;
}

.dots-left {
	top: 70px;
	left: 35px;
}

.dots-right {
	top: 70px;
	right: 35px;
}
