/*
=====================================================================
*   Kreative v1.0 Base Stylesheet
*   url: styleshout.com
*   09-26-2013
=====================================================================

TOC:
a. Webfonts and Icon fonts
b. Reset
c. Default Styles
   1. Basic
   2. Typography
   3. Links
   4. Images
   5. Buttons
   6. Forms
d. Grid
e. Others
   1. Clearing
   2. Misc

=====================================================================  */

/* ------------------------------------------------------------------ */
/* a. Webfonts and Icon fonts
 ------------------------------------------------------------------ */

@import url("fonts.css");
@import url("font-awesome/css/font-awesome.min.css");

/* ------------------------------------------------------------------
/* b. Reset
      Adapted from:
      Normalize.css - https://github.com/necolas/normalize.css/
      HTML5 Doctor Reset - html5doctor.com/html-5-reset-stylesheet/
/* ------------------------------------------------------------------ */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
   margin: 0;
   padding: 0;
   border: 0;
   outline: 0;
   font-size: 100%;
   vertical-align: baseline;
   background: transparent;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
   display: block;
}

audio,
canvas,
video {
   display: inline-block;
}

audio:not([controls]) {
   display: none;
   height: 0;
}

[hidden] { display: none; }

code, kbd, pre, samp {
   font-family: monospace, serif;
   font-size: 1em;
}

pre {
   white-space: pre;
   white-space: pre-wrap;
   word-wrap: break-word;
}


ins {
   background-color: #ff9;
   color: #000;
   text-decoration: none;
}

mark {
   background-color: #A7F4F6;
   color: #555;
}

del { text-decoration: line-through; }

abbr[title], dfn[title] {
   border-bottom: 1px dotted;
   cursor: help;
}

table {
   border-collapse: collapse;
   border-spacing: 0;
}


/* ------------------------------------------------------------------ */
/* c. Default Styles
      Adapted from:
      Skeleton CSS Framework - http://www.getskeleton.com/
      Typeplate Typographic Starter Kit - http://typeplate.com/
/* ------------------------------------------------------------------ */

/*  1. Basic  ------------------------------------------------------- */

*,
*:before,
*:after {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

body {
	background: #151719 url(../images/bg.png);
	font: 15px/30px opensans-regular, sans-serif;
	/*color: #838C95;*/
        color: #5b5b5b;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	height: auto;
}

/*  2. Typography
       Vertical rhythm with leading derived from 6
--------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
   color: #313131;
	font-family: montserrat-regular, sans-serif;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
h1 { font-size: 42px; line-height: 48px; margin-bottom: 12px;}
h2 { font-size: 30px; line-height: 42px; margin-bottom: 6px; }
h3 { font-size: 24px; line-height: 30px; margin-bottom: 12px; }
h4 { font-size: 21px; line-height: 30px; margin-bottom: 6px; }
h5 { font-size: 18px; line-height: 30px; }
h6 { font-size: 14px; line-height: 30px; }
.subheader { }

p { margin: 0 0 24px 0; }
p img { margin: 0; }
p.lead { font: 20px/36px opensans-light, sans-serif; }

/* for 'em' and 'strong' tags, font-size and line-height should be same with
the body tag due to rendering problems on some browsers*/
em { font: 15px/30px opensans-italic, sans-serif; }
strong, b { font: 15px/30px opensans-bold, sans-serif; }
small { font-size: 11px; line-height: inherit; }



/* ---------------------------------------------------------------------
/*  Pull Quotes Markup
/*
    <aside class="pull-quote">
		<blockquote>
			<p></p>
		</blockquote>
	 </aside>
/*
/* --------------------------------------------------------------------- */
.pull-quote {
   position: relative;
	padding: 18px 30px 18px 0px;
}
.pull-quote:before,
.pull-quote:after {
	height: 1em;
	opacity: 0.45;
	position: absolute;
	font-size: 80px;
   font-family: Arial, Sans-Serif;
}
.pull-quote:before {
	content: "\201C";
	top:  33px;
	left: 0;
}
.pull-quote:after {
	content: '\201D';
	bottom: -33px;
	right: 0;
}


/* Abbreviations */
abbr {
   font-family: opensans-bold, sans-serif;
	font-variant: small-caps;
	text-transform: lowercase;
   letter-spacing: .5px;
	color: gray;
}
abbr:hover { cursor: help; }

/* drop cap */
.drop-cap:first-letter {
	float: left;
	margin: 0;
	padding: 14px 6px 0 0;
	font-size: 84px;
	font-family: /* Copperplate */ montserrat-bold, sans-serif;
   line-height: 60px;
	text-indent: 0;
	background: transparent;
	color: inherit;
}

hr { border: solid #E0E0E0; border-width: 1px 0 0; clear: both; margin: 11px 0 30px; height: 0; }


/*  3. Links  ------------------------------------------------------- */

a, a:visited {
text-decoration: none;
outline: 0;
color:#fa4026;

-webkit-transition:color .3s ease-in-out;
-moz-transition:color .3s ease-in-out;
-o-transition:color .3s ease-in-out;
transition:color .3s ease-in-out;

}

a:hover, a:focus { color:#333; }
p a, p a:visited { line-height: inherit; }


/*  4. List  --------------------------------------------------------- */

ul, ol { margin-bottom: 24px; margin-top: 12px; }
ul { list-style: none outside; }
ol { list-style: decimal; }
ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
ul.square { list-style: square outside; }
ul.circle { list-style: circle outside; }
ul.disc { list-style: disc outside; }
ul ul, ul ol,
ol ol, ol ul { margin: 6px 0 6px 30px; }
ul ul li, ul ol li,
ol ol li, ol ul li { margin-bottom: 6px; }
li { line-height: 18px; margin-bottom: 12px; }
ul.large li { }
li p { }

/* ---------------------------------------------------------------------
/*  Stats Tab Markup

    <ul class="stats-tabs">
		<li><a href="#">[value]<b>[name]</b></a></li>
	 </ul>

    Extend this object into your markup.
/*
/* --------------------------------------------------------------------- */
.stats-tabs {
   padding: 0;
   margin: 24px 0;
}
.stats-tabs li {
	display: inline-block;
	margin: 0 10px 18px 0;
	padding: 0 10px 0 0;
	border-right: 1px solid #ccc;
}
.stats-tabs li:last-child {
	margin: 0;
	padding: 0;
	border: none;
}
.stats-tabs li a {
	display: inline-block;
	font-size: 24px;
	font-family: montserrat-bold, sans-serif;
   border: none;
   color: #444;
}
.stats-tabs li a:hover {
   color:#fa4026;
}
.stats-tabs li a b {
	display: block;
	margin: 6px 0 0 0;
	font-size: 13px;
	font-family: opensans-light, sans-serif;
   color: #8B9798;
}

/* definition list */
dl { margin: 12px 0; }
dt { margin: 0; color:#fa4026; }
dd { margin: 0 0 0 20px; }

/* Lining Definition Style Markup */
.lining dt,
.lining dd {
	display: inline;
	margin: 0;
}
.lining dt + dt:before,
.lining dd + dt:before {
	content: "\A";
	white-space: pre;
}
.lining dd + dd:before {
	content: ", ";
}
.lining dd:before {
	content: ": ";
	margin-left: -0.2em;
}

/* Dictionary Definition Style Markup */
.dictionary-style dt {
	display: inline;
	counter-reset: definitions;
}
.dictionary-style dt + dt:before {
	content: ", ";
	margin-left: -0.2em;
}
.dictionary-style dd {
	display: block;
	counter-increment: definitions;
}
.dictionary-style dd:before {
	content: counter(definitions, decimal) ". ";
}

/* Pagination */
.pagination {
	margin: 36px auto;
   text-align: center;
}
.pagination ul li {
   display: inline-block;
   margin: 0;
   padding: 0;
}
.pagination .page-numbers {
   font: 15px/18px opensans-bold, sans-serif;
   display: inline-block;
	padding: 6px 10px;
   margin-right: 3px;
   margin-bottom: 6px;
	color: #6E757C;
	background-color: #E6E8EB;

	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;

   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
   -khtml-border-radius: 3px;
	border-radius: 3px;
}
.pagination .page-numbers:hover {
   background: #838A91;
   color: #fff;
}
.pagination .current,
.pagination .current:hover {
	background-color: #fa4026;
   color: #fff;
}
.pagination .inactive,
.pagination .inactive:hover {
   background-color: #E6E8EB;
	color: #A9ADB2;
}
.pagination .prev, .pagination .next {}

/*  5. Images  --------------------------------------------------------- */

img {
   max-width: 100%;
   height: auto;
}

img.pull-right { margin: 12px 0px 0px 18px; }
img.pull-left { margin: 12px 18px 0px 0px; }

/*  6. Buttons  --------------------------------------------------------- */

.button,
.button:visited,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
   font: 16px/30px montserrat-bold, sans-serif;
   background: #fa4026;
   display: inline-block;
	text-decoration: none;
   letter-spacing: 0;
   color: #fff;
	padding: 18px 18px;
	margin-bottom: 18px;
   border: none;
   cursor: pointer;
   height: auto;

    -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;

   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
   -khtml-border-radius: 3px;
   border-radius: 3px;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
   background: #3d4145;
   color: #fff;
}

.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
   background: #3d4145;
   color: #fff;
}

.button.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
	width: 100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-align: center;
}

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}


/*  7. Forms  --------------------------------------------------------- */

form { margin-bottom: 24px; }
fieldset { margin-bottom: 24px; }

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  	display: block;
   padding: 18px 18px;
   margin: 0 0 24px 0;
   border: 0;
   outline: none;
   vertical-align: middle;
   min-width: 250px;
	max-width: 100%;
   font-size: 15px;
   line-height: 24px;
	color: #738182;
	background: #CFD4D8;
}

/* select { padding: 0;
   width: 220px;
   } */

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
   color: #fff;
	background-color: #3d4145;
}

textarea { min-height: 180px; }

label,
legend {
   font: 14px/24px opensans-bold, sans-serif;
	margin: 12px 0;
   color: #3d4145;
   display: block;
}

input[type="checkbox"],
input[type="radio"] {
   font-size: 15px;
   color: #737373;
}

input[type="checkbox"] { display: inline; }

label span,
legend span {
	color: #8B9798;
   font: 14px/24px opensans-regular, sans-serif;
}

/* ------------------------------------------------------------------ */
/* d. Grid

   A simple, lightweight responsive grid.
   columns = 48px, gutter = 36px.
/* ------------------------------------------------------------------ */

/* desktop
--------------------------------------------------------------- */

.row {
   /*max-width: 1008px;*/
   max-width: 1208px;
   margin: 0 auto;

   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}
.narrow .row { max-width: 976px; }
/* fixed width for IE8 */
//.ie .row { width: 1008px ; }
.ie .row { width: 1208px ; }

.row .row { width: auto; max-width: 100% }

.col {
   position: relative;
   padding: 0 18px;
   float: left;
}

/* row clearing */
.row:before,
.row:after {
    content: " ";
    display: table;
}
.row:after {
    clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.row { *zoom: 1; }


/* removed gutters */
.row.collapsed .col,
col.collapsed { padding: 0; }

/* removed nested columns paddings */
.col .col:first-child { padding-left: 0; }
.col .col:last-child { padding-right: 0; }
/* If you'll be using IE8, use class ".last" in nested comlumns.
   ":last-child" is not supported in IE8 */
.ie .row .row .last { padding-right: 0; }

/* column widths */
.row .one-twelfth,     .row .g-1     { width: 8.33333%; }
.row .one-sixth,       .row .g-2     { width: 16.66667%; }
.row .one-fourth,      .row .g-3     { width: 25%; }
.row .one-third,       .row .g-4     { width: 33.33333%; }
.row .five-twelfths,   .row .g-5     { width: 41.66667%; }
.row .half,            .row .g-6     { width: 50%; }
.row .seven-twelfths,  .row .g-7     { width: 58.33333%; }
.row .two-thirds,      .row .g-8     { width: 66.66667%; }
.row .three-fourths,   .row .g-9     { width: 75%; }
.row .five-sixths,     .row .g-10    { width: 83.33333%; }
.row .eleven-twelfths, .row .g-11    { width: 91.66667%; }
.row .full,            .row .g-12    { width: 100%; }

/* Offsets */
.row .offset-1    { margin-left: 8.33333%; }
.row .offset-2    { margin-left: 16.66667%; }
.row .offset-3    { margin-left: 25%; }
.row .offset-4    { margin-left: 33.33333%; }
.row .offset-5    { margin-left: 41.66667%; }
.row .offset-6    { margin-left: 50%; }
.row .offset-7    { margin-left: 58.33333%; }
.row .offset-8    { margin-left: 66.66667%; }
.row .offset-9    { margin-left: 75%; }
.row .offset-10   { margin-left: 83.33333%; }
.row .offset-11   { margin-left: 91.66667%; }


/* smaller screens
--------------------------------------------------------------- */
@media only screen and (max-width: 800px) {

   /*.col { padding: 0 15px; } */

}

/* mobile wide
--------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
    .news_modal-content {
        width: 30%;
    }
   .row {
	   width: 460px;
	   margin: 0 auto;
            padding: 0;
	}
   .col {
	   width: 100% !important;
	   float: none;
	   margin-left: 0;
	   margin-right: 0;
      padding: 0 20px;
    }
    /* for nested columns */
   .col .row { width: 100%; }
   .col .row .col { padding: 0; }

   /* Offsets */
   .row .offset-1    { margin-left: 0%; }
   .row .offset-2    { margin-left: 0%; }
   .row .offset-3    { margin-left: 0%; }
   .row .offset-4    { margin-left: 0%; }
   .row .offset-5    { margin-left: 0%; }
   .row .offset-6    { margin-left: 0%; }
   .row .offset-7    { margin-left: 0%; }
   .row .offset-8    { margin-left: 0%; }
   .row .offset-9    { margin-left: 0%; }
   .row .offset-10   { margin-left: 0%; }
   .row .offset-11   { margin-left: 0%; }
}

/* mobile narrow
--------------------------------------------------------------- */
@media only screen and (max-width: 460px) {
    
   .row { width: 100%; }

}

/* larger screens
--------------------------------------------------------------- */
@media screen and (min-width: 1200px) {

   .wide .row { max-width: 1180px; }
   .wide .col { padding: 0 20px; }

}

@media screen and (min-width: 1900px) {

   .wide .row { max-width: 1680px; }
   .wide .col { padding: 0 20px; }

}


/* ------------------------------------------------------------------ */
/* e. Others
/* ------------------------------------------------------------------ */

/*  1. Clearing
    (http://nicolasgallagher.com/micro-clearfix-hack/
--------------------------------------------------------------------- */

.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf { *zoom: 1; }

/*  2. Misc -------------------------------------------------------- */

.remove-bottom { margin-bottom: 0 !important; }
.half-bottom { margin-bottom: 12px !important; }
.add-bottom { margin-bottom: 24px !important; }
.no-border { border: none; }

.align-center { text-align: center; }
.align-left   { text-align: left; }
.align-right  { text-align: right; }
.pull-left    { float: left; }
.pull-right   { float: right; }

.contenedor_rhc {
    width:100%;
    /*max-width: 1000px;*/
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.arbol_rhc {
    width: 30%;
    vertical-align: top;
    border: 1px;
    padding: 20px;
    float: left;
    box-sizing: border-box;
/*    overflow-y: auto;
    max-height: 400px;*/
}

.lista_rhc {
    width: 70%;
    vertical-align: top;
    padding: 20px 20px 20px 40px;
    float: left;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 800px;
}

.portfolio-item_rhc {
    height: 250px;
}
.portfolio-item-gal_rhc {
    height: 300px;
    width: 100%;
    /*width: 25%;*/
}
#lista_carrito {
    position: fixed;
    background: grey;
    color: black;
    top: 140px;
    /*margin-top: 30px;*/
    left: 2100px;
    width: 0px;
    /*height: 600px;*/
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    /*height: 350px;*/
    /*visibility: hidden;*/
    z-index: -1;
    box-shadow: 10px 10px 3px #D8D8D8;
    transition: height .4s;
}

#lista_cliente {
    position: fixed;
    background: grey;
    color: black;
    top: 140px;
    /*margin-top: 30px;*/
    left: 2100px;
    width: 0px;
    height: 230px;
    overflow-y: hidden; /*auto;*/
    /*height: 350px;*/
    /*visibility: hidden;*/
    z-index: -1;
    box-shadow: 10px 10px 3px #D8D8D8;
    transition: height .4s;
}

#logo_carrito {
    position: fixed;
    background: transparent;
    color: #fff;
    top:25px;
    /*margin-top: 30px;*/
    left: 2200px;
    /*display:inline-block;*/
    width: 200px; /*0px;*/
    height: auto; /*600px;*/
    overflow-y: auto;
    /*height: 350px;*/
    /*visibility: hidden;*/
    z-index: 100;  
    a, a:visited {
        color: white;
    }
    img {
        width: 50px;
    }
    
}

.lg_izq {
        padding-right: 10px;
        float: left;
        img {
            width: 50px;
        }
}
.lg_der {
    float: left;
}

.ref_carrito {
    position: fixed;
/*    background: grey;
    color: black;*/
    top:10px;
    /*margin-top: 30px;*/
    left: 2100px;
    width: 0px;
    height: 60px;
    overflow-y: auto;
    /*height: 350px;*/
    /*visibility: hidden;*/
    z-index: -1;
}

.divprod_bl5 {
    align-self: center;  padding: 2rem;
}

#nombre_logo {
    position: fixed;
    background: transparent;
    color: #fff;top:68px;
}

#quetebusq {
    height:140px;
    background-color: #3f3f3f;
}
#quetebusqo {
    vertical-align: top;
    line-height: 0px;
    margin: 0 auto 0 auto;
    margin-left: 500px;    
}

.cuadro {
    border-style: none;font: 15px opensans-regular, sans-serif;
    width: 220px;
}
        
#acomoda {
    width:55%;
    float: left;
}

#lista_carrito_s1 {
    background:#333333;color:white;
    
}
#lista_carrito_s1_aa {
        padding-left: 20px; padding-top: 0px;font-size: 80%; margin: -3px;
    }
#lista_carrito_s2 {
    max-height: 300px;overflow-y: auto; 
}
#lista_carrito_s2_prod {
    background:#F0F0F0;
}

#lista_carrito_boton {
    height: 30px; width: 90%; text-align: center; padding: 0px;margin-bottom: 10px;margin-top: -8px;
}

#bq_puto {
    width: 0px;
}
#pr_puto {
    width: 0px;
}

#newsletter {
    background-color: black;
    width: 400px;
    height: 400px;
    position: fixed; /* Stay in place */
    z-index: 9;
    overflow: auto;
}
/* The Modal (background) */
.news_modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 19; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.news_modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 30%; /*80%;*/ /* Could be more or less, depending on screen size */
    max-width: 700px;
    position: relative;
    height: auto;
}

/* The Close Button */
.news_close {
    color: black;/*#aaa;*/
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.news_close:hover,
.news_close:focus {
    color: red;/*black;*/
    text-decoration: none;
    cursor: pointer;
}

#search_logo {    
    /*margin-top: -2px;border-style: none;border-width: 0px;width: 92px;margin-left: 0px;*/
    margin-top: 2px;border-style: none;border-width: 0px;width: 72px;margin-left: 0px;
}

#row_compra_detalle {
        width: 80%;
}

#caja_botones {
    text-align: center;
}

@media screen and (max-width: 1100px) {
    #quetebusqo {
        margin-left: 390px;
    }
}

@media screen and (max-width: 950px) {
    #logo_carrito {
        top: 80px;        
    }
    #quetebusqo {
        margin-left: 200px;
    }
}
@media screen and (max-width: 900px) {
    .arbol_rhc {
        width: 100%;
    }
    .lista_rhc {
        width: 100%;
        padding: 5px 5px 5px 5px;
    }
    /* adjust sections padding top */
   #portfolio { padding-top: 20px; }
   #logo_carrito {
        top: 80px;        
    }
    #quetebusqo {
        margin-left: 0px;
        /*margin-top: 95px;*/  
        margin-top: 55px;
    }
}

@media screen and (max-width: 850px) { //767
    #logo_carrito img {
        width: 70%;
        
    }    
    #logo_carrito {top: 20px;}
    
    #search_logo {
        margin-top:0px;
        border-style: none; border-width: 0px;height: 27px;
        width: 70px;
        margin-left: 3px;
        /*margin-top: -2px;border-style: none;border-width: 0px;width: 92px;*/
    }
    #quetebusqo user {
        display: none;        
    }
}

@media screen and (max-width: 767px) { //767
    .portfolio-item_rhc {
        height: 350px;
    }
    .portfolio-item-gal_rhc {
        height: 400px;
    }
    h4 {font-size: 12px;}
    h1 {font-size: 36px;}
    #portfolio { padding-top: 0px; }
    #logo_carrito {
        top: 22px; /*50px;*/        
    }
    #logo_carrito img {
        /*width: 70%;*/  
        width: 40px;
    }
    .divprod_bl5 {
        /*padding-top: 12px;*/
        padding: 3.8rem 2rem 2rem 1.5rem;
    }
    #nombre_logo {
        display: none;
    }
    #acomoda {
        width:18%;
    }
    #quetebusqo {
        margin-left: 0px;
        margin-top: 95px;        
    }
    .cuadro {
        font: 19px opensans-regular, sans-serif;
    }
    nav {
        z-index: 150;
    }
    #lista_carrito_boton {
        width: 100%;
    }
    .news_modal-content {
        top: 100px;
        width: 80%;
    }
    #search_logo {
        margin-top:0px;
        border-style: none; border-width: 0px;
        height: 24px;
        width: 58px; /*50px;*/
        margin-left: 2px;
        /*margin-top: -2px;border-style: none;border-width: 0px;width: 92px;*/
    }
    #row_compra_detalle {
        width: 95%;
    }    
    #divprod_bloque41 {
        height: 20px;
    }
}

@media screen and (max-width: 400px) {
    .portfolio-item_rhc {
        height: 250px;
    }
    .portfolio-item-gal_rhc {
        height: 360px;
    }
    h4 {font-size: 12px;}
    h1 {font-size: 24px;}
    #portfolio { padding-top: 0px; }
    #logo_carrito {
        top: 22px; /*50px;*/        
    }
    #logo_carrito img {
        width: 60%;        
    }
    #logo_carrito div {
        padding-right: 3px;
    }
    #divprod_bloque2, #divprod_bloque3, #divprod_bloque4, #divprod_bloque5 {
        padding: 0px;
    }
    #divprod_bloque41 {
        height: 40px;
    }
    #logo_carrito img {
        /*width: 70%;*/  
        width: 40px;
    }
    .divprod_bl5 {
        /*padding-top: 12px;*/
        padding: 3.8rem 2rem 2rem 1.5rem;
    }
    #nombre_logo {
        display: none;
    }
    #quetebusq {
        height: 140px;
    }   
    .cuadro {
        font: 14px opensans-regular, sans-serif;
    } 
    #acomoda {
        width:0px;
    }
    #search_logo {
        /*margin-left: 0px;*/
        margin-left: -7px;
        margin-top: 2px;
        /*margin-top: -2px;border-style: none;border-width: 0px;width: 92px;*/
    }
    #caja_boton {
        display: block;
    }
}

@media screen and (max-height: 1024px) {
    #lista_carrito {
        max-height: 720px; overflow-y:  hidden; 
    }
    #lista_carrito_s2 {
        max-height: 520px;overflow-y: auto; 
    }
}

@media screen and (max-height: 700px) {
    #lista_carrito {
        max-height: 420px;
    }
    #lista_carrito_s2 {
    max-height: 220px;overflow-y: auto; 
    }    
    #quetebusqo user {
        display: none;        
    }
}
@media screen and (max-height: 670px) {
    #caja_boton {
        font-size: 11px;
        height: 40px;
        padding-top: 0px;
        display: block;
    }
}
@media screen and (max-height: 500px) {
    #lista_carrito {
        max-height: 320px;
    }
    #lista_carrito_s2 {
    max-height: 300px;overflow-y: auto; 
    }
    #caja_boton {
        font-size: 9px;
        height: 40px;
        padding-top: 0px;
        display: block;
    }
    #caja_botones {
        text-align:left;        
    }
}
@media screen and (max-height: 400px) {
    #lista_carrito {
        height: auto;overflow-y: auto;
    }
    #lista_carrito_s2 {
    max-height: 300px;overflow-y: auto; 
    }
    #caja_boton {
        font-size: 8px;
        height: 30px;
        padding-top: 0px;
        display: block;}
}
