/*------------------------------------------------------------------------------------------------
----------Botón de acceso al buzón---------------------------------------------------------------*/

.buzon {
	font-size: 16px; /* Cambiar el tamaño de la tipografia */
	/*text-transform: uppercase; /* Texto en mayusculas */
	text-decoration: none;
	color: rgb(255, 255, 255, 0); /* Color del texto */
	background-color: #FFFFFF;
	float: right;
	border-radius: 25% 25% 5% 5%; /* Borde del boton */
	letter-spacing: 2px; /* Espacio entre letras */
	 /* Color de fondo */
    background-image: url("../images/buzon01.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
	
	position: fixed;
	padding-top: 2%;
	padding-bottom: 2%;
	bottom: 40px;
	right: 40px;
	/*transition: all 300ms ease 0ms;*/
    box-shadow: 3px 10px 10px 1px rgba(30, 31, 35, 0.2); /*top right bottom left*/
	z-index: 99;
}
.buzon:hover {
	background-color: rgb(255, 255, 255, .5);  /* Color de fondo al pasar el cursor */
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
	color: rgb(221, 221, 221, 0);
}


