/* CSS Document */
/*********************** Botones de contacto ***********************/
.contacto-pc {position:fixed; z-index: 1000; left: 15px; bottom: 70px;}
.boton-whatsapp-pc {background: #25d366; width: 70px; height: 70px; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%;}
.boton-contacto-pc {margin-top: 20px; background: #006ee4;
	width: 70px;
    	height: 70px;
    	-moz-border-radius: 50%;
    	-webkit-border-radius: 50%;
    	border-radius: 50%;
}

.contacto-movil {
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 5000;
	display: inline-block;
}

.boton-whatsapp-movil {
	position: fixed;
	bottom: 0px;
	z-index: 1000;
	width: 50%;
	background-color: #25d366;
    padding-top: 5px;
	height:50px;
	/* Flexbox con prefijos para Safari en iOS */
	display: -webkit-box !important;
	display: -webkit-flex !important;
	display: flex !important;
	
	-webkit-box-pack: center !important;
	-webkit-justify-content: center !important;
	justify-content: center !important;

	-webkit-box-align: center !important;
	-webkit-align-items: center !important;
	align-items: center !important;
}

.boton-tel-movil {
	position: fixed;
	bottom: 0px;
	z-index: 1000;
	right: 0px;
	width: 50%;
	background: #006ee4;
    padding-top: 5px;
	height:50px;
	/* Flexbox con prefijos para Safari en iOS */
	display: -webkit-box !important;
	display: -webkit-flex !important;
	display: flex !important;
	
	-webkit-box-pack: center !important;
	-webkit-justify-content: center !important;
	justify-content: center !important;

	-webkit-box-align: center !important;
	-webkit-align-items: center !important;
	align-items: center !important;
}

/*** Media queries botones contacto ***/

@media (max-width:700px) {
    .contacto_movil, .boton-whatsapp-movil, .boton-tel-movil {
        visibility: visible;
    }
    .contacto_pc, .boton-whatsapp-pc, .boton-contacto-pc {
        visibility: hidden;
    }
	.contacto-movil {
		margin-top: 40px;
	}
}

@media (min-width:700px) {
    .contacto_movil, .boton-whatsapp-movil, .boton-tel-movil {
        visibility: hidden;
    }
    .contacto_pc, .boton-whatsapp-pc, .boton-contacto-pc {
        visibility: visible;
    }
}
/**** Botones de contacto ****/