@media only screen and (min-width: 320px) {
	.noteModal-wrapper {
		display: none;
		position: fixed;
		z-index: 999999;
		padding-top: 20px;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		background-color: rgb(0, 0, 0);
		background-color: rgba(0, 0, 0, 0.4);
	}
}

@media only screen and (min-width: 768px) {
	.noteModal-wrapper {
		padding-top: 68px;
	}
}

.noteModal-wrapper.open {
	display: block;
}

.noteModal-wrapper img {
	display: none;
}

.noteModal-wrapper .notes-content {
	display: block;
}

.noteModal-wrapper .title-section {
	float: none;
	clear: none;
	margin-left: 0;
}

.notes-content p,
.notes-content div {
	float: none;
	clear: none;
	margin-left: 0;
}



@media only screen and (min-width: 320px) {
	.noteModal {
		position: relative;
		border: 3px solid #1965a3;
		border-radius: 10px;
		width: 100%;
		margin: auto 20px;
		padding: 0;
		background-color: #fefefe;
		-webkit-animation-name: animatetop;
		-webkit-animation-duration: 0.4s;
		animation-name: animatetop;
		animation-duration: 0.4s
	}
}

@media only screen and (min-width: 320px) {
	.noteModal {
		width: 97%;
		margin: 0 auto;
	}
}

@media only screen and (min-width: 768px) {
	.noteModal {
		margin: auto 20px;
		max-width: 980px;
		width: auto;
	}
}

@media only screen and (min-width: 1240px) {
	.noteModal {
		margin: auto;
		max-width: 980px;
		width: 100%;
	}
}

@-webkit-keyframes animatetop {
	from {top:-300px; opacity:0}
	to {top:0; opacity:1}
}

@keyframes animatetop {
	from {top:-300px; opacity:0}
	to {top:0; opacity:1}
}

.close {
	width: 20px;
	float: right;
	margin-top: -10px;
	margin-right: -10px;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

@media only screen and (min-width: 320px) {
	.noteContent {
		padding: 10px 20px;
		overflow-x: auto;
		height: 400px;
	}
}

@media only screen and (min-width: 768px) {
	.noteContent {
		padding: 20px 50px;
		height: 550px;
	}
}

@media only screen and (min-width: 1240px) {
	.noteContent {
		padding: 37px 97px;
	}
}

.notes a:hover {
	cursor: pointer;
}