
/*  © 2017, Carles Bataller Cucurella  [cucurella@gmail.com]  */

/*  estil general  */
* {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: Verdana;
	font-size: 11px;
}

/*  links  */
a {
	font-family: Verdana;
	font-weight: bold;
	text-decoration: none;
	font-size: 11px;
	color: #2393DD;
}
a:hover {
	color: #FF00FF;
}




/* logo */
div#logo {
	width: 100%;

	/*border: 1px solid;*/
	
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 20px;
}









/*  formularis  */
input, select, textarea {
	font-family:  Verdana;
	/*font-size: 11px;*/
	background-color: #F6F6E6;
}

.form {
	/*font-size: 11px;*/
	background-color: #EFEFEF;
}


/*  texto1 */
.texto1 {
	font-size: 18px;
}


/* cash on delivery */
#COD {
	color: red;
	font-weight: bold;
	font-style: italic;

	padding-left: 10px;
	padding-right: 10px;
	padding-top: 4px;
	padding-bottom: 4px;
}






/* tablets and smartphones */
@media screen and (max-width: 1026px) {
	body {
		font-size: 13px;
	}
	a {
		font-size: 12px;
	}
}



