/* * {
    box-sizing: border-box;
  }
  
  body {
    background-color: #f1f1f1;
    padding: 20px;
    font-family: Arial;
  }
   */
  /* Center website */
  /* .main {
    max-width: 1000px;
    margin: auto;
  } */
  
  /* h1 {
    font-size: 50px;
    word-break: break-all;
  }
  */
#myBtnContainer {
  margin: auto;
}
  
/* Accesorios PAGE */

div#accesoriosFilter, div#rowMyBtnContainer {
  transition: all 0.5s ease;
  margin-left: 0!important;
  margin-right: 0!important;
}


.transitionsF {
  transition: all 0.5s ease;
}

  
  /* Add padding BETWEEN each column (if you want) */
  /* .row,
  .row > .column {
    padding: 8px;
  } */
  
  /* Create three equal columns that floats next to each other */
  .itemFl {
    display: none; /* Hide columns by default */
    transition: all 0.5s ease!important;
  }
  
  /* Clear floats after rows */
  /* .row:after {
    content: "";
    display: table;
    clear: both;
  }
   */
  /* Content */
  .content {
    background-color: white;
    padding: 10px;
  }
  
  /* The "show" class is added to the filtered elements */
  .viewFl {
    display: contents!important;
    transition: all 0.5s ease!important;
  }
  
  /* Style the buttons */
  .btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: #6ce0b8;
    text-decoration: underline;
    cursor: pointer;
  }
  
  /* Add a grey background color on mouse-over */
  .btn:hover {
    background-color: #ddd;
  }
  
  /* Add a dark background color to the active button */
  .btn.active {
    background-color: #666;
     color: white;
  }