/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

  @font-face {
    font-family: 'Muli';
    font-style: normal;
    font-weight: normal;
    src: local('Muli'), url('../Muli-Regular.woff') format('woff');
  }

  @font-face {
    font-family: 'Muli Bold';
    font-style: bold;
    font-weight: bold;
    src: local('Muli Bold'), url('../Muli-Bold.woff') format('woff');
  }



html {
  color: #111;
  font-size: 1em;
  line-height: 1.4;
  font-family:'Muli', Arial, 'sans-serif', Verdana;
  font-weight:normal;
  background:#eee;
}



/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

h2{
  text-align:center;
}

header{
  background:#b072d3;
  overflow:hidden;
}

.limiter{
  width:100%;
  max-width:960px;
  margin:0 auto;
}

#logo{
  float:left;
  padding:0.5em 1em;
}

#logo img{
  width:100%;
  max-width:150px;
  display:block;
}

#menu_hmb{
  float:right;
  max-width:35px;
  margin:1em;
}

#menu_hmb img{
  display:block;
  width:100%;
}

#main_menu{
  display:none;
  float:right;
  overflow:hidden;
  padding-right:1em;
  margin:0.3em 0 0 0;
}



#main_menu li{
  float:left;
  display:block;
}

#main_menu a{
  display:block;
  text-decoration:none;
  color:white;
  font: bold 1.1em 'Muli Bold';
  padding:1.1em;
}


#main_submenu_cnt{
  display:none;
  clear:both;
  background:#7a229a;
  padding:1em 2em;
}


#main_submenu{
  overflow:hidden;
  margin:0;
  padding:0;
}

#main_submenu menu{
  margin:0;
  padding:0;
}

#main_submenu li{
  display:block;
  margin:0;
  padding:0;
  float:left;
  width:31.6%;
  margin-right:2.5%;
  margin-bottom:2em;
}

#main_submenu li:nth-child(3n){
  margin-right:0;
}

#main_submenu li a{
  color:#ddd;
  text-decoration:none;
  font-weight:bold;
  display:block;
}

#main_submenu li a:hover{
  color:white;
}

#main_submenu menu li{
  float:none;
  width:100%;
  margin:0;
}

#main_submenu menu li a{
  font-weight:normal;
}

#mobile_menu_cover{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0, 0 , 0, 0.4);
  z-index:1;
  display:none;

}

.mobile_menu_cnt{
  position:absolute;
  top:0;
  bottom:0;
  left:calc(100%);
  width:300px;
  background:#eee;
  padding:1em;
  z-index:2;
  box-sizing:border-box;
}

.menu_close, .menu_back{
  color:#999;
  text-decoration:none;
}

.mobile_menu_cnt menu{
  margin:1em 0;
  padding:0;
}

.mobile_menu_cnt li{
  display:block;
  padding:0.5em 0;
  border:0 solid #ddd;
  border-bottom-width:1px;
}

.mobile_menu_cnt li:last-child{
  border-bottom-width:0;
}

.mobile_menu_cnt li a{
  text-decoration:none;
  color:#444;
}



#footer{
  background:#7bc7c2;
  padding:1em;
  color:white;
  overflow:hidden;
}

.footer_col{
  margin-bottom:2em;
  text-align:center;
  max-width:240px;
  margin:0 auto;
}

.footer_col h3{
  margin-bottom:0;
}

.footer_col p{
  margin-top:0;
}



.footer_col menu {
  margin:0;
  padding:0;
}

.footer_col menu li{
  display:block;
}

.footer_col menu li a{
  color:white;
  text-decoration:none;
}

.footer_col input[type="text"]{
  width:70%;
  margin:0;
  border:none;
  box-sizing:border-box;
  padding:5px;
}

.footer_col input[type="button"]{
  width:30%;
  margin:0;
  border:none;
  box-sizing:border-box;
  background:#b072d3;
  color:white;
  padding:5px;
}

.breadcrumb{
  background:white;
  padding:0.5em 1em;
  color:#aaa;
  display:none;
}

.breadcrumb a{
  color:#aaa;
  text-decoration:none;
}

.breadcrumb a:hover{
  color:#b072d3;
}


.cta{
  background:#b072d3;
  border-radius:20px;
  padding:0 2em;
  color:white;
  font-size:1.2em;
  font-weight:bold;
  text-decoration:none;
  line-height:40px;
  height:40px;
  display:inline-block;
  margin:1em 0;
  text-align:center;
}

.gen_txt_cnt{
  padding:1em;
  background:white;
}

.gen_h1{
  margin:0;
  padding:1em;
  color:#b072d3;
  text-align:center;
  background:#f9f9f9;
}


@media (min-width:750px){

  #footer{
    padding:1em 3em;
    overflow:hidden;
  }
  
  .footer_col{
    width:30%;
    margin-right:5%;
    float:left;
    text-align:left;
  }

  .footer_col:last-child{
    margin-right:0;
  }

  .breadcrumb{
    padding:0.5em 3em;
  }

  .mobile_menu_cnt{
    display:none;
  }

  .breadcrumb{
    display:block;
  }

  .gen_txt_cnt{
    padding:1em 3em;
  }
  
}






/* /////////////////////////////   HOME ///////////////////////////////////////////////////// */

#slideshow img{
  width:100%;
  display:block;
}

#advantages{
  background:white;
  padding:1em 0;
}

.advantage{
  padding:1em;
  text-align:center;
  box-sizing:border-box;
}

.advantage i{
  display:block;
  background:#b072d3;
  border-radius:50%;
  padding-top:min(75px, 33%);;
  margin:0 auto;
  width:35%;
  max-width:75px;
}

.advantage h3{
  margin-bottom:0;
}

.advantage p{
  margin-top:0;
}

.limiter.paintbrush{
  background:white url(../img/pinceles.jpg) no-repeat;
}

#whats_new{
  padding:1em;
}

.whats_new{
  padding:1em;
  text-align:center;
  box-sizing:border-box;
  background:white;
  margin-bottom:2em;
  color:#111111;
}

.whats_new h3{
  font:normal 1em Muli;
  border:0 solid #ddd;
  border-top-width:1px;
  padding-top:1em;
  margin-bottom:0;
}

.whats_new p{
  font:normal 1em Muli Bold;
  margin-top:0;
}

.whats_new img{
  display:block;
  width:100%;
}

#main_categories{
  padding:1em;
}

.main_category{
  padding:1em;
  text-align:center;
  box-sizing:border-box;
  background:white;
  color:#111111;
}


.main_category img{
  display:block;
  width:100%;
}


@media (min-width:450px){

  #whats_new{
    overflow:hidden;
  }
  
  .whats_new{
    float:left;
    width:48.75%;
    margin-right:2.5%;
  }
  
  .whats_new:nth-child(2n+1){
    margin-right:0;
  }

  #main_categories{
    overflow:hidden;
  }
  
  .main_category{
    float:left;
    width:45%;
    margin-right:10%;
  }
  
  .main_category:last-child{
    margin-right:0;
  }
}


@media (min-width:750px){

  #menu_hmb{
    display:none;
  }

  #main_menu{
    display:block;
  }

  #advantages{
    overflow:hidden;
    padding:1em 3em;
  }
  
  .advantage{
    float:left;
    width:33%;
  }

  #whats_new{
    padding:1em 3em;
  }

  .whats_new{
    float:left;
    width:23.125%;
    margin-right:2.5% !important;
  }

  .whats_new:last-child{
    margin-right:0 !important;
  }

  #main_categories{
    padding:1em 3em;
  }
  
  .main_category{
    width:45%;
    margin-right:10%;
  }
}
/*                                   HOME END                                                     */



/* /////////////////////////////   CATEGORY ///////////////////////////////////////////////////// */
.category_name{
  background-size:cover;
  margin:0;
  padding:1em;
  color:#b072d3;
  text-align:center;
  background-color:#f9f9f9

}

.category_desc{
  background:white;
  padding:1em 2em;
  text-align:center;
  color:#666;
}

#category_main_products{
  padding:1em;
  background:white;
}

.category_main_product{
  padding:1em;
  text-align:center;
  box-sizing:border-box;
  background:white;
  margin-bottom:2em;
  color:#111111;
}

.category_main_product h3{
  font:normal 1em Muli;
  border:0 solid #ddd;
  border-top-width:1px;
  padding-top:1em;
  margin-bottom:0;
}

.category_main_product p{
  font:normal 1em Muli Bold;
  margin-top:0;
}

.category_main_product img{
  display:block;
  width:100%;
}

#subcategories_list{
  padding:1em;
  background:white;
}

.subcategory{
  padding:1em;
  text-align:center;
  box-sizing:border-box;
  background:white;
  color:#111111;
}

.subcategory h3{
  font-weight:normal;
  font-size:1em;
}


.subcategory img{
  display:block;
  width:100%;
}

#category_products{
  padding:1em;
  background:white;
}

.category_product{
  padding:1em;
  text-align:center;
  box-sizing:border-box;
  background:white;
  margin-bottom:2em;
  color:#111111;
}

.category_product h3{
  font:normal 1em Muli;
  border:0 solid #ddd;
  border-top-width:1px;
  padding-top:1em;
  margin-bottom:0;
}

.category_product p{
  font:normal 1em Muli Bold;
  margin-top:0;
}

.category_product img{
  display:block;
  width:100%;
}

#cat_sorter{
  overflow:hidden;
  padding:0 1em;
}

#categories_sort{
  display:block;
  width:100%;
  border:1px solid #b072d3;
  color:#b072d3;
}


@media (min-width:450px){

  #category_main_products{
    overflow:hidden;
  }
  
  .category_main_product{
    float:left;
    width:48.75%;
    margin-right:2.5%;
  }
  
  .category_main_product:nth-child(2n+1){
    margin-right:0;
  }

  #subcategories_list{
    overflow:hidden;
  }
  
  .subcategory{
    float:left;
    width:30%;
    margin-right:5%;
  }
  
  .subcategory:nth-child(3n){
    margin-right:0;
  }

  #category_products{
    overflow:hidden;
  }
  
  .category_product{
    float:left;
    width:48.75%;
    margin-right:2.5%;
  }
  
  .category_product:nth-child(2n+1){
    margin-right:0;
  }

  #categories_sort{
    max-width:250px;
    float:right;
  }
}


@media (min-width:750px){

  #category_main_products{
    padding:1em 3em;
  }

  .category_main_product{
    float:left;
    width:23.125%;
    margin-right:2.5% !important;
  }

  .category_main_product:last-child{
    margin-right:0 !important;
  }

  #subcategories_list{
    padding:1em 3em;
  }
  
  .subcategory{
    width:18.4%;
    margin-right:2%;
  }

  .subcategory:nth-child(3n){
    margin-right:2%;
  }

  .subcategory:nth-child(5n){
    margin-right:0;
  }

  #category_products{
    padding:1em 3em;
  }

  .category_product{
    float:left;
    width:30%;
    margin-right:5%;
  }

  .category_product:nth-child(2n+1){
    margin-right:5%;
  }

  .category_product:nth-child(3n+1){
    margin-right:0;
  }
}
/*                               CATEGORY END                                                     */


/* ////////////////////////////////  DETAIL  /////////////////////////////////////////////////// */

#product_detail{
  padding:1em;
  background:white;
  overflow:hidden;
}

#product_data h1{
  margin:0 0 0.5em 0;
}

#product_data h2{
  margin-bottom:0;
  text-align:left;
}

#product_data div{
  color:#666;
}

#product_data img{
  display:block;
  width:100%;
  margin:0 auto;
}




#product_purchase h3{
  font-size:2.5em;
  margin-bottom:0.2em;
  text-align:center;
}

#product_purchase h4{
  font-weight:normal;
  margin:0.2em 0;
  text-align:center;
  color:#666;
}

#product_purchase h5{
  font-weight:normal;
  margin:0.2em 0;
  text-align:center;
  color:#666;
}

#product_purchase .cta{
  width:100%;
  display:block;
  box-sizing:border-box;
  margin:1em auto;
  max-width:300px;
}


#related_products{
  padding:1em;
  background:white;
}

.related_product{
  padding:1em;
  box-sizing:border-box;
  background:white;
  margin-bottom:2em;
  color:#111111;
}

.related_product h3{
  font:normal 1em Muli;
  border:0 solid #ddd;
  border-top-width:1px;
  padding-top:1em;
  margin-bottom:0;
  text-align:center;
}

.related_product p{
  font:normal 1em Muli Bold;
  margin-top:0;
  text-align:center;
}

.related_product img{
  display:block;
  width:100%;
}






@media (min-width:450px){

  #related_products{
    overflow:hidden;
  }
  
  .related_product{
    float:left;
    width:48.75%;
    margin-right:2.5%;
  }
  
  .related_product:nth-child(2n+1){
    margin-right:0;
  }

}


@media (min-width:750px){

  #product_detail{
    padding:1em 3em;
  }

  #related_products{
    padding:1em 3em;
  }

  .related_product{
    float:left;
    width:23.125%;
    margin-right:2.5% !important;
  }

  .related_product:last-child{
    margin-right:0 !important;
  }

  #product_data{
    float:left;
    width:55%;
  }

  #product_purchase{
    float:right;
    width:40%;
    padding-top:3em;
  }
}


/*                                 DETAIL END                                                    */

