/* openAppMsg Modal */
#openAppMsg.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 99994; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0, 0, 0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

@keyframes slideDown {
	0% {
		transform: translateY(-50%);
	}
	100% {
		transform: translateY(0);
	}
}

#openAppMsg .modal-content {
	margin: auto;
	padding: 0;
	border: 0;
	box-shadow: none;
	display: block;
	border-radius: 0px;
	border: 0px;
	min-width: 0px;
	min-height: 0px;
	background-image: none;
	background-color: transparent;
	overflow: visible;
	width: 480px;
	height: 720px;
	max-width: 480px;
	max-height: 720px;
	position: relative;
	z-index: 6000010;
	transition: all 5s ease-in-out;
	animation: slideDown .5s;
}
#openAppMsg .modal-content img {
	width: 100%;
}

#openAppMsg .close {
	color: #aaaaaa;
	float: right;
	font-size: 20px;
	font-weight: bold;
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 4px;
	background-color: #fff;
	border-radius: 100%;
	opacity: 1;
	transition: all 200ms;
}

#openAppMsg .close:hover,
#openAppMsg .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

@media (max-width: 480px) {
	#openAppMsg.modal {
		padding-left: 20px;
		padding-right: 20px;
	}
	#openAppMsg .modal-content {
		width: 100%;
		height: 100%;
	}
}

.modal-backdrop.show {
	opacity: .5;
}
