/*body {
  font-family: 'PT Sans', sans-serif;
  background-color: #E6D6A6;
}
h4 {color: #323580; font-size: 18px;}
.logo {margin-top: 20px;}
.texto{ color: #323580; font-size: 16px; padding: 10px 10px;}*/

#modal {
	/* the modal is on top of the main content and covers the entire wieport*/
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	/* hide the modal window */
	opacity: 0;
	visibility: hidden;
	transition: all .2s;
	z-index: 9999;
}

#modal img { max-width: 100%; }

#modal.is-visible {
	/* show the modal window */
	opacity: 1;
	visibility: visible;
	transition: all .3s ease-in-out;
	/*background: #fff;*/
}

#modal .modal-content {
	/* center modal content */
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	/* content basic style */
	width: 90%;
	/*max-width: 500px;*/
	/*padding: 2em;*/
	/*background-color: #FFF;*/
	/*background: #000;*/
	/*border: 2px solid white;*/
	/*padding: 1.7rem;*/
	transition: all .3s ease-in-out;
	border-radius: 8px;
	font-size: 1.2rem;
	text-align: center; 
}

#close-modal {
	position: absolute;
	top: 8px;
	right: 8px;
	color: #fff;
	/*background: #000;*/
	padding: 6px 12px;
	border: 1px solid #fff;
	border-radius: 8px;
}

#close-modal:hover {
	cursor: pointer;
}

#logo-small {
	padding: 2rem;
	text-align: center;
}

#logo-small img {
	/*max-width: 140px;*/
}

.modal-content {
	margin: 90px auto;
	width: 90%;
	/*max-width: 800px;*/
	max-width: 595px;
	position: relative;
}
@media screen and (max-width:768px) {
	p { font-size: 13px; line-height: 1.2}

	h4#usuarios { font-size: 18px; margin-bottom: 12px; }
	#logo-small img {
		width: 90px;
	}

	#modal .modal-content {
		margin-top: 20%;
		position: inline;
}
i.fa-whatsapp {
	padding: 0 2px;
}