/* $base-background: #00CC99; */
/* .productbody {
    background: #D18B49;
    color: rgba(0, 0, 0, 0.6);
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.6em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: 0.5s ease;
  } */
  
  .btn {
    border-radius: 2px;
    padding: 8px 12px;
    color: #D18B49;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s ease;
  }
  
  .card {
    background: #FFFFFF;
    max-width: 400px;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-sizing: border-box;
    padding: 28px;
    text-align: center;
  }
  
  .products {
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
    /*width: 100%;*/
    /* max-width: 400px; */
  }
  
  .product {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    width: 100%;
    /* max-width: 400px; */
  }
  .product.active {
    opacity: 1;
    visibility: visible;
    width: 100%;
    /* max-width: 250px; */
  }
  
  .thumbnail {
    margin: 0 0 30px;
    /* margin: auto; */
    /* max-width: 400px; */
    width: 100%;
  }
  .thumbnail img{
    height: 50%;
    width: 100%; 
  }
  .titleProduct {
    margin: 0 0 12px;
    color: #D18B49;
    font-size: 2.0em;
    transition: 0.5s ease;
    max-width: 300px;
  }
  
  .description {
    margin: 0 0 48px;
    font-size: 1.3em;
    max-width: 300px;
  }
  
  .footerProduct {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 -12px -12px;
  }
  
  [ripple] {
    z-index: 1;
    position: relative;
    overflow: hidden;
  }
  [ripple] .ripple {
    position: absolute;
    background: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    transform: scale(0);
    -webkit-animation: ripple 2s;
            animation: ripple 2s;
  }
  
  @-webkit-keyframes ripple {
    0% {
      transform: scale(0);
      opacity: 0.2;
    }
    100% {
      transform: scale(20);
      opacity: 0;
    }
  }
  
  @keyframes ripple {
    0% {
      transform: scale(0);
      opacity: 0.2;
    }
    100% {
      transform: scale(20);
      opacity: 0;
    }
  }




  