/* Add here all your css styles (customizations) */
#mensaje-exito{
	text-align: center;
	margin-top: 10px;
	font-size: 1.2em;
	display: none;
}
.texto-negro{
	color:black !important;
}

.bottom-derecha-contacto{
	position: fixed;
	bottom: 15px;
	right: 15px;
    font-size: 2.25em;
    color: white;
	z-index: 10000;
}

.bottom-derecha-contacto > a{
	color: white !important;
	margin-left: 5px;
}

.bottom-derecha-contacto > a > i{
	transition: all 0.5s ease-in-out;
	background-color: #20c65a;
	padding: 10px;
	border-radius: 15px;
	-webkit-box-shadow: 4px 4px 6px 0px rgba(0,0,0,0.55);
	-moz-box-shadow: 4px 4px 6px 0px rgba(0,0,0,0.55);
	box-shadow: 4px 4px 6px 0px rgba(0,0,0,0.55);
}

.bottom-derecha-contacto > a > i:hover{
	transform: scale(1.2);
}

.ocultar-pc{
	display: none;
}


@media only screen and (max-width: 768px) {
	.max-width-font{
	    max-width: 100%;
	    text-overflow: ellipsis;
	    font-size: 1px;
	    font-size: 8px !important;
	}
	.bottom-derecha-contacto{
		bottom: 10px;
		right: 10px;
	    font-size: 1.2em;
	}
	.ocultar-pc{
		display: inline;
	}
}