/*+++++++++++++++++++++++++++

	*INDICE:

	- COLORES
	- FUENTES, ICONOS
	- ANIMACIONES
	- GENERALES
	- TOP BAR
	- HEADER
	- NAV
	- CAROUSEL
	- SLIDER
	- PORTADA
	- INFORMACION
	- SOCIAL
	- FARMACIA
	- SERVICIOS
	- BUSCADOR
	- TIENDA
	- CARRO COMPRA WIDGET
	- LISTADO CATEGORIAS
	- TARJETA
	- CONTACTO
	- FOOTER
	- MEDIA QUERIES:
		- 600
		- 768
			- NAV
			- FOOTER
		- 992
			- HEADER
			- NAV
			- INFORMACION
		- 1200
			- NAV



+++++++++++++++++++++++++++*/


/*++++++++++++++++++++++++++++*/
/*        COLORES 		   	 */
/*++++++++++++++++++++++++++++*/

/*

	color 1   #248b3f  - VERDE OSCURO (CMYK 96,2,100,12)  (antiguo: #4e8a44)
	color 2   #ced424  - VERDE CLARO  (CMYK 28,0,100,0)  (antiguo: #c2ce33)
	color 3   #db8f1b  - NARANJA
	color 4   #344556  - GRIS OSCURO
	
	
	NUEVOS
	
	COLOR NEGRO: #000;
	
	
	
*/





/*++++++++++++++++++++++++++++*/
/*         FUENTES ICONOS    	 */
/*++++++++++++++++++++++++++++*/

/*
	FUENTE: ROBOTO
	//fonts.googleapis.com/css?family=Roboto:400,300,100,700

*/

#entrada .head h2,#entrada .head h1 {

    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
    margin: 50px 0;
    font-size: 2.3em;
}

@font-face {
    font-family: 'MetaPro';
    src: url('../fonts/MetaPro-Bold.eot');
    src: url('../fonts/MetaPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MetaPro-Bold.woff2') format('woff2'),
        url('../fonts/MetaPro-Bold.woff') format('woff'),
        url('../fonts/MetaPro-Bold.ttf') format('truetype'),
        url('../fonts/MetaPro-Bold.svg#MetaPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MetaPro-Book';
    src: url('../fonts/MetaPro-Book.eot');
    src: url('../fonts/MetaPro-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MetaPro-Book.woff2') format('woff2'),
        url('../fonts/MetaPro-Book.woff') format('woff'),
        url('../fonts/MetaPro-Book.ttf') format('truetype'),
        url('../fonts/MetaPro-Book.svg#MetaPro-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
	font-family: "Flaticon";
	src: url("../fonts/flaticon.eot");
	src: url("../fonts/flaticon.eot#iefix") format("embedded-opentype"),
	url("../fonts/flaticon.woff") format("woff"),
	url("../fonts/flaticon.ttf") format("truetype"),
	url("../fonts/flaticon.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
	font-family: Flaticon;
font-style: normal;
}.flaticon-accesory32:before {
	content: "\e000";
}
.flaticon-cross5:before {
	content: "\e001";
}
.flaticon-electrocardiogram8:before {
	content: "\e002";
}
.flaticon-erlenmeyer1:before {
	content: "\e003";
}
.flaticon-fruit190:before {
	content: "\e004";
}
.flaticon-hand70:before {
	content: "\e005";
}
.flaticon-medical91:before {
	content: "\e006";
}
.flaticon-medicines4:before {
	content: "\e007";
}


.carro_producto form {
    display: inline;
}


/*++++++++++++++++++++++++++++*/
/*         ANIMACIONES    	 */
/*++++++++++++++++++++++++++++*/



.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}


@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}






/*++++++++++++++++++++++++++++*/
/*         GENERALES    	 */
/*++++++++++++++++++++++++++++*/

body {
/*
	background-color: #f8f8f8;
	background-image: url(../img/square_bg.png);
*/
	font-size: 16px;
	color: #344556;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
}

h1, h2 {
	margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
    margin:50px 0;
    font-size: 2.3em;
	font-family: 'MetaPro';
	font-weight: bold;
}

h3 {
    font-weight: 300;
    text-align: center;
    font-size: 2.1em;
    margin-top: 40px;
}

.container {
	background-color: transparent;
/*
	margin-bottom: 15px;
	padding-bottom: 15px;
	padding-top: 15px;
*/
}


.container.topbar, header .container, footer .container  {
/*
	padding-bottom: 0;
	padding-top: 0;
*/
}

footer .container {
	background-color: transparent;
/*
	margin-bottom: 0;
	margin-top: -15px;
*/
}




.btn-primary {
    color: #fff;
/*     background-color: #248b3f; */
    background-color: rgb(119,146,143);
    border: 0;
    border-radius: 0;
    transition: background-color 0.3s;
}

.btn-primary.active,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.open>.dropdown-toggle.btn-primary {
    color: #fff;
/*     background-color: #5ca64f; */
/*    background-color: #5292aa; */
    background-color: rgba(96,119,117,1);
    border: 0;
    font-weight: 400;
}

.btn-warning {
    color: #fff;
/*     background-color: #f0ad4e; */
    background-color: rgb(196,164,127);
    border: 0;
    border-radius: 0;
    margin: 0 auto;
}

.btn-warning.active,
.btn-warning.focus,
.btn-warning:active,
.btn-warning:focus,
.btn-warning:hover {
    color: #fff;/*

    background-color: #ec971f;
    border-color: #d58512;
*/
	background-color: #9f8e79;
	border-color: #9f8e79;
}



.form-control {
	border-radius: 0;
}

textarea {
	resize: none;
}








/*++++++++++++++++++++++++++++*/
/* 	        TOPBAR    	    	*/
/*++++++++++++++++++++++++++++*/

.topbar {
/*
	background-color: #248b3f;
	background-color: #ced424;
*/
/* 	background-color: rgb(119,146,143); */
	background-color: #000;
	padding-top: 7px;
	padding-bottom: 7px;
	position: sticky;
	top: 0px;
	z-index: 99;
}

.redes {
}

.redes span {
	font-size: 1em;
	padding: 8px;
	color: #FFFFFF;
}





/*++++++++++++++++++++++++++++*/
/* 	        HEADER 	    	*/
/*++++++++++++++++++++++++++++*/

header {
/*
	background-color: #FFFFFF;
	background-color: #344556;
*/
/* 	background-color: #000; */
	background-color: rgb(119,146,143);
	position: sticky;
	top: 15px;
	z-index: 99;
}



.logo {
	margin: 10px auto 10px auto;
}





/*++++++++++++++++++++++++++++*/
/* 	         NAV 	       	*/
/*+++++++++++++++++++++++++++*/

nav {
	position: fixed;
	top: 0;
	left: -75%;
	height: 100%;
	width: 75%;
/* 	background-color: #344556; */
	background-color: #000;
	z-index: 100;
	transition: left 0.8s;
}

nav.open {
	left: 0;
}

nav a {
	display: block;
	text-transform: uppercase;
	font-weight: 400;
/* 	color: #344556; */
	color: #FFFFFF;
	font-size: 0.9em;
	padding: 10px 20px;
	text-align: center;
}

nav a:focus, nav a:hover, nav a.active {
/*
	color: #FFFFFF;
	color: #344556;
*/
	color: #000;
/* 	background-color: #ced424; */
	background-color: rgb(119,146,143);
	text-decoration: none;
	font-weight: 400;
	border-bottom: 0;
}

nav > img {
	width: 90px;
	display: block;
	margin: 20px auto;
}


.toggle-menu {
	font-size: 1.2em;
	padding: 10px;
	color: #ffffff;
	cursor: pointer;
}

.fa-times.toggle-menu {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 1.5em;
}

.mini-cart {
	position: absolute;
	bottom: 0;
	right: 0;
/* 	background-color: #ced424; */
	background-color: rgb(119,146,143);
	padding: 10px;
	color: #FFFFFF;
	z-index: 1;
}

#menu .btn-primary {
	display: block;
	padding: 10px 20px;
}


nav .redes {
	text-align: center;
	margin-top: 15px;
}

nav .redes a {
	display: inline-block;
	padding: 0;
	font-size: 1.2em;
	margin: 0 10px;
}
nav .redes a:focus, nav .redes a:hover, nav .redes a.active {
	background-color: transparent;
}


/*++++++++++++++++++++++++++++*/
/* 	       HEADER-MENU 	   	*/
/*+++++++++++++++++++++++++++*/

.header-menu {
	text-align: center;
}







/*++++++++++++++++++++++++++++*/
/* 	       CAROUSEL 	   	*/
/*+++++++++++++++++++++++++++*/

#carousel-container {
	background-color: #f8f8f8;
	padding: 70px 0;
}

#carousel {
/* 	margin: 50px 0; */
}




/*++++++++++++++++++++++++++++*/
/* 	       SLIDER 	   	*/
/*+++++++++++++++++++++++++++*/

.slider-home .col-xs-12 {
	padding: 0;
}

.slick-prev, .slick-next {
	z-index: 99;
}


.slick-prev:before, .slick-next:before {
/* 	color: #344556; */
	color: #000;
}


/*++++++++++++++++++++++++++++*/
/* 	       PORTADA 	   	*/
/*+++++++++++++++++++++++++++*/

#portada {
	text-align: center;
	padding-bottom: 50px;
}

#portada h2 {
    text-transform: uppercase;
    margin: 55px 0 -15px 0;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    animation-delay: 0.9s;
    font-size: 2em;
}
#portada h5 {
	text-transform: uppercase;
	margin: 10px 0 0 0;
/* 	color: #ced424; */
	color: rgb(119,146,143);
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
	-o-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

#portada hr {
    width: 80px;
    margin-left: auto;
    margin-right: auto;
/*     border-top: 2px solid #db8f1b; */
    border-top: 2px solid rgb(196,164,127);
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
	-o-animation-delay: 0.9s;
	animation-delay: 0.9s;
	margin-top: 0;
}

#portada p {
	text-align: center;
	padding: 0 50px;
	color: #888;
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
	-o-animation-delay: 0.9s;
	animation-delay: 0.9s;
}


#portada img {
	margin: 0 auto;
	max-width: 300px;
	-webkit-animation-delay: 0.1s;
	-moz-animation-delay: 0.1s;
	-o-animation-delay: 0.1s;
	animation-delay: 0.1s;
}


#portada img.whatsapp-home {
	max-width: 450px;
    padding-top: 58px;
    padding-bottom: 58px;
}




#portada .btn {
	-webkit-animation-delay: 1.4s;
	-moz-animation-delay: 1.4s;
	-o-animation-delay: 1.4s;
	animation-delay: 1.4s;
}




/*++++++++++++++++++++++++++++*/
/* 	       INFORMACION 	   	*/
/*+++++++++++++++++++++++++++*/

.informacion {
	margin-top: 15px;
	margin-bottom: 80px;
	overflow: hidden;
}

.informacion h3 {
	margin: 0;
    font-size: 1.2em;
	text-transform: uppercase;
/* 	color: #ffffff; */
}

.farmaexpress {
	margin-top: 15px;
	position: relative;
/* 	background-color: #ccc; */
}



.farmaexpress {
/* 	padding: 22px 0; */
/* 	background-color: #344556; */
    color: #ffffff;
	text-align: center;
}

.farmaexpress h3 {
    font-size: 2em;
    margin-bottom: 15px;
}
.farmaexpress h3 span{
    font-size: 1.3em;
}

.farmaexpress p {
	margin: 5px;
}





/*++++++++++++++++++++++++++++*/
/* 	       SOCIAL 	   	*/
/*+++++++++++++++++++++++++++*/

#social {
/* 	background-color: #ced424; */
/* 	background-color: rgb(119,146,143); */
	background-color: #000;
	text-align: center;
	padding: 8px 0;
	position: sticky;
	top: 190px;
	z-index: 99;
}

#social .redes span {
	font-size: 1.2em;
/* 	color: #344556; */
/* 	color: #000; */
color: #fff;
/* 	transition: background-color 0.3s, color 0.3s; */
	transition: transform 0.2s, color 0.2s;
}

#social .redes span:hover {
/*
	background-color: #344556;
	color: #ced424;
*/
	transform:translateY(-3px);
	color: #fff;
}

@media screen and (min-width:992px) {
	#social {
		top: 160px;
	}
}


/*++++++++++++++++++++++++++++*/
/* 	       FARMACIA 	   	*/
/*+++++++++++++++++++++++++++*/
#farmacia {
	padding: 50px 0;
/*
	background-color: #ced424;
	background-color: #344556;
*/
/* 	background-color: #000; */
	background-color: rgb(119,146,143);
}

.farmacia {
	padding: 15px;
	margin-top: 15px;
	color: #ffffff;
}

.farmacia h1,
.farmacia h2 {
	text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 0;
    text-align: center;
    font-size: 1.9em;
	text-transform: none;
	font-family: 'MetaPro-Book';
	font-weight: normal;
}

.farmacia hr {
	width: 80px;
	margin-left: auto;
	margin-right: auto;
/*
    border-top: 2px solid #db8f1b;
    border-top: 2px solid #ced424;
*/
    border-top: 2px solid rgb(196,164,127);
    margin-top: 15px;
    margin-bottom: 15px;
}

.farmacia p {
    font-weight: normal;
    text-align: center;
	font-family: 'MetaPro-Book';
	font-weight: normal;
}

#farmacia .embed-responsive-16by9 {
	margin-top: 30px;
}





/*++++++++++++++++++++++++++++*/
/* 	       SERVICIOS 	   	*/
/*+++++++++++++++++++++++++++*/




#servicio-container {
/* 	background-color: #ffffff; */
	background-color: #f8f8f8;
}

#servicios {
	padding-top: 30px;
	padding-bottom: 30px;
}

/*
.servicios h3 {
	text-align: center;
	margin: 50px;
	font-size: 2.3em;
	opacity: 0;
}
*/

.servicio {
	text-align: center;
	margin-bottom: 30px;
	opacity: 0;
	padding: 15px;
}

.servicio h4 {
	margin-bottom: 25px;
	text-transform: uppercase;
	font-size: 0.9em;
	font-weight: 700;
	font-family: 'MetaPro';
	font-weight: bold;
}

.servicio hr {
    width: 55px;
    margin-left: auto;
    margin-right: auto;
/*     border-top: 2px solid #db8f1b; */
    border-top: 2px solid rgb(196,164,127);
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.servicio p {
	color: #888;
}

.servicio-icono {
    width: 84px;
    height: 84px;
    margin: 0 auto 25px;
    line-height: 84px;
    border-radius: 42px;
    color: #248b3f;
    color: #ffffff;
/*     background: #ced424; */
    background-color: rgb(119,146,143);
    position: relative;
    border: 2px solid transparent;
    -webkit-transition: border 0.3s ease;
    -moz-transition: border 0.3s ease;
    -o-transition: border 0.3s ease;
    transition: border 0.3s ease;

}

.servicio-icono span {
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 2.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    -webkit-transition:color 0.3s ease;
    -moz-transition:color 0.3s ease;
    -o-transition:color 0.3s ease;
    transition:color 0.3s ease;
}

.servicio-icono .flaticon-electrocardiogram8 {
    margin-left: -19px;
    margin-top: -18px;
}

.servicio:hover .servicio-icono {
/*     border: 2px solid #248b3f; */
    border: 2px solid #000;
}


.servicio:hover .servicio-icono .fa {
    color: #248b3f;
}





/*++++++++++++++++++++++++++++*/
/*        GALERIA 	          */
/*++++++++++++++++++++++++++++*/

#galeria-container {
	background-color: #f8f8f8;
	padding-bottom: 40px;
}

.img-galeria {
	margin-bottom: 30px;
	border: 4px solid #ffffff;
	border-radius: 4px;
	box-shadow: 0px 0px 3px 0px rgba(126, 126, 126, 0.4);
	position: relative;
}

.img-galeria .fa {
	opacity: 0;
	font-size: 3em;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -24px;
/* 	color: #248b3f; */
	color: rgb(119,146,143);
	transform: scale(0.7);
	transition: all 0.4s;
}



.img-galeria:hover .fa {
	opacity: 1;
	transform: scale(1);
}

.img-galeria img {
	transition:all 0.4s;
}


.img-galeria:hover img {
	opacity: 0.6;
}






/*++++++++++++++++++++++++++++*/
/*        BUSCADOR 	          */
/*++++++++++++++++++++++++++++*/

.buscador {
/* 	margin-top: 30px; */
	margin-bottom: 50px;
}

.buscador .input-group-btn .btn {
	border: 1px solid #248b3f;
}




/*++++++++++++++++++++++++++++*/
/*  		  TIENDA  		 */
/*++++++++++++++++++++++++++++*/


#encargalo {
	text-align: center;
	padding-bottom: 60px;
	color: #248b3f;
}

#encargalo h4 {
	color: #248b3f;
	font-size: 1.8em;
	text-align: center;
	margin-top: -40px;
}

#encargalo p {
	font-weight: 400;
	font-size: 1em;
}

#encargalo .fa {
	font-size: 1.6em;
/* 	color: #db8f1b; */
	color: rgb(196,164,127);
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 10px;
}

#encargalo .btn {
	margin-top: 20px;
	margin-bottom: 20px;
}


#encargalo .btn .fa {
	color: #ffffff;
    margin-right: 10px;
    margin-bottom: 0px;
    vertical-align: top;
    font-size: 1.3em;
}

#encargalo .durante {
	font-size: 1.4em;
}

#encargalo .enero {
	font-size: 3em;
	color: #F38F00;
	font-weight: 700;
}





.title-express {
	margin-top: 40px;
}

.title-express + ul li {
	margin-bottom: 10px;
	font-weight: 400;
}

.title-express + ul .fa {
	color: #248b3f;
	font-size: 1.3em;
}

.table > tbody > tr > td,
.table > tbody > tr > th
{
	vertical-align: middle;
}

.listadoProductos > thead {
/* 	background-color: #344556; */
	background-color: #000;
	color: #ffffff;
}

.listadoProductos > thead > tr > th{
	font-weight: 300;
	border-bottom: none;
}

.listadoProductos th {
	font-size: 1em;
}

.listadoProductos .acenter {
	text-align: center;
}

.listadoProductos .aright {
	text-align: right;
}

.listadoProductos tr {
}

.listadoProductos > tbody > tr > td {
	border:none;
}

.productos {
	background-color: #f8f8f8;
}



.producto .producto_nombre {
	font-size: 0.9em;
	margin: 0;
	text-align: left;
	font-weight: 400;
}


.producto p, .productoFin p {
	font-size: .84em;
	margin: 0;
}

.producto [name="cantidadList"] {
	width: 40px;
	display: inline;
	padding: 6px 8px;
	height: 29px;
}


.table > tbody > .productoFin {
	border-left: none;
	border-right: none;
}

.table > tbody > .productoFin > td {
    padding: 0px 0 0 0;
    border-bottom: 1px solid #ddd;
    /* border: none; */
}

.table > tbody > .productoFin > td > p {
    padding: 0px 10px 15px 10px;
/*     border-bottom: 1px solid #ddd; */
}

.addproduct {
	padding-bottom: 8px;
}



.paginado {
	text-align: center;
}

.pagination {
	margin-left: auto;
	margin-right: auto;
}

.pagination,
.pagination > li:first-child > a,
.pagination > li:last-child > a  {
	border-radius: 0;
/* 	background-color: #f8f8f8; */
}

.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover,
.pagination > li:first-child > a:hover,
.pagination > li:last-child > a:hover{
/* 	background-color: #E9E9E9; */
/* 	color: #344556; */
	color: #000;
    border-bottom-width: 1px;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
 .pagination>.active>span:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #007b35;
    border-color: #007b35;
}

.pagination>li>a,
.pagination>li>span {
/* 	color: #344556; */
	color: #000;
/* 	background-color: #f8f8f8; */
}


/* MODAL */

.modal-content {
	border-radius: 0;
}

.modal-header {
	background-color: #248b3f;
    border-bottom: 1px solid #e5e5e5;
}

.modal-title {
	color: #ffffff;
}


/*++++++++++++++++++++++++++++*/
/*    CARRO COMPRA WIDGET  	 */
/*++++++++++++++++++++++++++++*/

.carro-compra {
	background-color: #ffffff;
	background-color: #f8f8f8;
    margin-top:25px;
}

.carro-compra hr {
    border-top: 1px dashed #b3b3b3;
}

.carro_header {
	padding: 10px;
/*
	background-color: #007B35;
	background-color: #344556;
*/
	background-color: #000;
	color: #fff;
}

.carro_header p {
	font-size: 1.2em;
	font-size: 1em;
	margin: 0;
}

.carro_body {
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    min-height: 50px;
    /* max-height: 320px; */
    /* overflow: auto; */
    font-size: 1em;
    padding: 0 10px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.carro_body .cant {
	font-size: 0.9em;
}

.carro_body h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    background-color: #f8f8f8;
    padding: 5px;
}

.carro_body .iva4 {
	background-color: #f6f6f6;
}

.carro_body .iva10 {
	background-color: #ebebeb;
}

.carro_body .iva21 {
	background-color: #d8d8d8;
}

.carro_producto {
	margin: 0;
	padding: 5px 0 10px 0;
	border-bottom: 1px dashed #c8c8c8;
	position: relative;
}

.carro_producto:last-child {
	border-bottom: none;
}

.carro_producto p {
	margin: 0;
	font-size: 0.8em;
}

.carro_producto > p:first-child {
	font-size: 0.9em;
	font-weight: bold;
}

.carro_producto p[data-precio] {
	font-weight: bold;
}

.carro_producto .glyphicon.glyphicon-remove {
	position: absolute;
	right: 0;
	top: 5px;
	padding: 0px 2px;
}

.carro_footer {
	padding: 10px;
	text-align: center;
    border: 1px solid #ddd;
    border-top:none;

}

.carro_footer hr {
	margin: 10px 0;
}

.carro_footer p {
	margin: 0;
	font-weight: bold;
}

.carro_footer .btn {
	display: inline-block;
}



.btn-primary[disabled] {
    background-color: rgba(78, 138, 67, 0.5);
    border-color: #248b3f;
}


.text-small {
	font-size: 11px;
}



/*++++++++++++++++++++++++++++*/
/*    LISTADO CATEGORIAS   	 */
/*++++++++++++++++++++++++++++*/

.categorias_header {
	padding: 10px;
/*
	background-color: #007B35;
	background-color: #344556;
*/
	background-color: #000;
	color: #fff;
}


.categorias_header p {
	font-size: 1.2em;
	font-size: 1em;
	margin: 0;
}

.listado-categorias {

}

.listado-categorias > li {
	background-color: #fff;
	background-color: #f8f8f8;
	padding: 7px 10px;
	font-size: 1em;
	cursor: pointer;
	border: 1px solid #ddd;
	margin-top: -1px;
}


.listado-categorias > li:hover {
	background-color: #eee;
}

.listado-categorias > li:last-child {
/* 	border:none; */
}

.listado-categorias > .active,
.listado-categorias > .active:hover {
	background-color: #007b35;
	border: 1px solid #007b35;
	color: #fff;
}









/*++++++++++++++++++++++++++++*/
/*    		TARJETA   		 */
/*++++++++++++++++++++++++++++*/

#ventajas {
	background-color: #ffffff;
	padding-top: 15px;
	padding-bottom: 60px;

}

#ventajas img {
	margin: 0 auto;
}

.ventajas {
	font-size: 1.4em;
}

.ventajas h3 {
	margin-top: 20px;
	font-size: 1.35em;
	text-align: center;
/* 	color: #248b3f; */
	color: rgb(119,146,143);
	text-transform: uppercase;
}


.ventajas span {
/*
	color: #007b35;
	color: #db8f1b;
*/
	color: rgb(196,164,127);
}

.ventajas p {
	margin: 20px 0;
	text-align: center;
}

.ventajas .solicitar {
	text-align: center;
	margin-top: 40px;
	font-size: 1.1em;
	margin-bottom: 40px;
}

#ventajas .boton-unirme {
	text-align: center;
}



.tarjeta-otros {
	margin-top: 40px;
	margin-bottom: 40px;
}

.tarjeta-otros h3 {
	margin-top: 20px;
    font-size: 1.6em;
    color: #248b3f;
    text-transform: uppercase;
}

.tarjeta-otros ul {
	margin-top: 20px;
}

.tarjeta-otros ul li,
.tarjeta-otros ul li {
	margin-bottom: 10px;
}
.tarjeta-otros ul li span {
/* 	color: #ced424; */
	color: rgb(119,146,143);
}


#unirme {
	background-color: #f8f8f8;
	padding-bottom: 40px;
}




/*++++++++++++++++++++++++++++*/
/* 	      NOVEDADES	       	*/
/*+++++++++++++++++++++++++++*/

#novedades h3 {
	margin: 0;
	text-decoration: none;
	text-align: left;
	font-size: 1.7em;
}

#novedades h3 a {
/* 	color: #248b3f; */
	color: rgb(119,146,143);
}

#novedades .entrada {
	margin-bottom: 40px;
}

.imagenes {
	max-width: 50%;
	margin-left: auto;
	margin-right: auto;
}

.numero {
	font-size: 25px;
	color: #393939;
	margin-right: 15px;
}




/*++++++++++++++++++++++++++++*/
/* 	      NOVEDADES	       	*/
/*+++++++++++++++++++++++++++*/

#entrada {
	padding-bottom: 30px;
}

#entrada .head h2 {
	margin-bottom: 15px;
}

#entrada .head p {
	text-align: center;
	margin: 0;
}

#entrada .content h3 {
	margin: 50px 0 20px 0;
	text-decoration: none;
	text-align: left;
	font-size: 1.7em;
}

#entrada .content img {
	margin: 30px auto;
}








/*++++++++++++++++++++++++++++*/
/* 	      CONTACTO	       	*/
/*+++++++++++++++++++++++++++*/

#respuesta {
	color: #248b3f;
}


#contactar {
	background-color: #f8f8f8;
	padding: 40px 0;
}


#contactar h4 {
	text-align: center;
	font-size: 1.5em;
	margin-bottom: 30px;
}

.contactar {
}

.contactar .fa {
/*     color: #248b3f; */
    color: rgb(119,146,143);
    float: left;
    margin: 3px 15px 20px 0px;
    font-size: 2em;
    display: block;
}

.contactar .fa-phone {
    margin-right: 15px;
}
.contactar  .fa-map-marker {
    margin-right: 20px;
}

.contactar .contactar-titles {
/* 	color: #248b3f; */
	color: rgb(196,164,127);
	font-weight: 400;
}


.contactar .redes .fa {
	float: left;
}


.contactar p a {
/* 	color: #344556; */
	color: #000;
}
.contactar p a:hover {
/* 	color: #344556; */
	color: #000;
	text-decoration: underline;
}


#mapa {
	margin-bottom: 30px;
}

#map {
	width: 100%;
	height: 350px;
/* 	margin-top: 80px; */
}



/*++++++++++++++++++++++++++++*/
/* 	         FOOTER 	  	*/
/*+++++++++++++++++++++++++++*/

footer {
/* 	background-color: #344556; */
	background-color: #000;
	color: #cccccc;
	padding-bottom: 50px;
	text-align: center;
}

footer .logo {
	margin: 16px auto 0 auto;
	display: block;
	width: 100%;
	max-width: 220px;
}

footer h5 {
	text-transform: uppercase;
	font-size: 1.2em;
	color: #ffffff;
	margin-top: 50px;
	font-family: 'MetaPro';
	font-weight: bold;
}

footer .redes + h5 {
	margin-top: 0;
}

footer .redes .fa {
	font-size: 1.8em;
/*
	color: #248b3f;
	color: #ced424;
*/
	color: rgb(119,146,143);
	transition: transform 0.2s, color 0.2s;
}

footer .redes .fa:hover {
	transform:translateY(-3px);
	color: #fff;
}


footer a {
	color: #cccccc;
	font-size: 0.9em;
    margin-right: 3px;
}

footer p a:hover {
	color: #ffffff;
}

footer p {
	font-size: 0.9em;
}

footer .fa {
/*
	color: #248b3f;
	color: #ced424;
*/
	color: rgb(119,146,143);
	display: block;
	margin: 20px 0 10px 0;
	font-size: 1.8em;
}



footer hr {
	border-color: #cccccc;
}


footer .legal a {
	display: inline-block;
	font-size: 0.75em;
	margin-right: 15px;
	width: 100%;
	margin-bottom: 10px;
}

footer .legal a:hover {
	color: #ffffff;
	text-decoration: underline;
}


.redes {
	display: inline-block;
}

footer .redes span {
	font-size: 1em;
	padding: 8px;
	color: #FFFFFF;
	display: inline-block;
	margin: 0 0 30px 0;
}




/* 600px */
@media screen and (min-width:37.5em) {

}
/* 768px */
@media screen and (min-width:48em) {




	.logo {
		margin: 10px auto;
	}

	/*++++++++++++++++++++++++++++*/
	/* 	         NAV 	       	*/
	/*+++++++++++++++++++++++++++*/
	nav {
		position: static;
		height: auto;
		width: auto;
		background-color: transparent;
		text-align: center;
	}


	nav a {
		display: inline-block;
		padding: 10px 20px;
		border-bottom: 2px solid transparent;
		transition: border-bottom 0.3s;
	}


	nav a:focus, nav a:hover, nav a.active {
		color: #FFFFFF;
		font-weight: 400;
		background-color: transparent;
/* 		border-bottom: 2px solid #db8f1b; */
		border-bottom: 2px solid rgb(196,164,127);
	}

	.toggle-menu {
		display: none;
	}

	#menu .btn-primary {
		display: inline-block;
		padding: 6px 12px;
	}






	/*++++++++++++++++++++++++++++*/
	/* 	       FOOTER 	   	*/
	/*+++++++++++++++++++++++++++*/

	footer {
		text-align: left;
	}

	footer .logo {
		margin: 16px 0 0 0;
	}


	footer a {
		display: block;
		margin-bottom: 6px;
	}

	footer .redes a {
		display: inline;
	}

	footer .fa {
/*
		color: #248b3f;
		color: #ced424;
*/
		color: rgb(119,146,143);
		display: inline;
		float: left;
		margin: 3px 10px 20px 0;
/* 		font-size: 1.3em; */
	}

	footer .fa-map-marker {
		margin-right: 16px;
	}

	footer .fa-phone {
		margin-right: 13px;
	}

	footer .legal a {
	width: auto;
}

}

/* 992px */
@media screen and (min-width:62em) {




	/*++++++++++++++++++++++++++++*/
	/* 	        HEADER 	       	*/
	/*+++++++++++++++++++++++++++*/
	.logo {
	    margin: 20px 0 20px 0;
	}


	/*++++++++++++++++++++++++++++*/
	/* 	         NAV 	       	*/
	/*+++++++++++++++++++++++++++*/
	nav {
		width: 100%;
		text-align: right;
	}


	nav a {
		padding: 0;
    	margin: 50px 13px;
	}

	nav a:last-child {
		margin-right: 0;
	}

	.mini-cart {
		position: static;
		display: inline-block;
		float: right;
	}


	#menu .btn-primary {
		margin-top: 0;
	}





	/*++++++++++++++++++++++++++++*/
	/* 	      INFORMACION      	*/
	/*+++++++++++++++++++++++++++*/
	.farmaexpress {
		margin-top: 0;
	}

}
/* 1200px */
@media screen and (min-width:75em) {

	/*++++++++++++++++++++++++++++*/
	/* 	         NAV 	       	*/
	/*+++++++++++++++++++++++++++*/


	nav a{
		padding: 0;
    	margin: 58px 20px;
    	font-size: 1em;
	}

	#menu .btn-primary {
    	margin: 54px 20px;
	}
}







/* =====================
	WHATSAPP
======================== */

.whatsapp {
    padding: 1.2rem;
    border-radius: 50%;
    background-color: #00E676;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
    z-index: 1021;
}


.whatsapp img {
    width: 35px;
    height: auto;
}








/* =====================
	IDIOMAS
======================== */

.idiomas {
	position: absolute;
    top: 1rem;
    left: 1rem;
}


.idiomas a {
	padding: 0;
	margin: 0;
	margin-left: 1rem !important;
	border: 0;
	display: inline-block;
}

.idiomas a:hover {
	border: 0;
}

/* 768px */
@media screen and (min-width:48em) {
	.idiomas {
		position: absolute;
		top: 7px;
		left: auto;
		right: 35px;
	}
}








