.mcwootable {
    display: flex;
    flex-flow: row wrap;
    width:100%;
    margin: 0 auto;
}

.mc_item {
    flex-basis: 50%;
    padding: 5px;
    margin-bottom:20px;
}

.mc_thumb img {
    width: 100%;
    height: auto;
}


.mc_product-selector {
    width: 100%;
}

.mc_add_info{
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    margin-top: 20px;
}

.mc_quantita {
    width: 30%;
}

.mc_formato {
    width: 100%;
}

.mc_quantita select,.mc_formato select {
    height: 50px;
    width:100%;
    padding: 0 5px;
}

.mc_add_to_cart button {
    width: 100%;
}


.mc_add_to_cart button {
    position: relative;
    padding: 16px 16px;
    background: #009579;
    border: none;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
  }
  
  
  .mc_add_to_cart  .button__text {
    transition: all 0.2s;
  }
  
  .mc_add_to_cart  .button--loading .button__text {
    visibility: hidden;
    opacity: 0;
  }
  
  .mc_add_to_cart .button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
  }

  .woocommerce ul.products li.product-category:hover a img {
    filter: none !important; 
  }
  
  @keyframes button-loading-spinner {
    from {
      transform: rotate(0turn);
    }
  
    to {
      transform: rotate(1turn);
    }
  }


  @media only screen and (min-width: 40.063em) {
    .mc_item {
        flex-basis: 50%;
    }
  }

  @media only screen and (min-width: 64.063em) {
    .mc_item {
        flex-basis: 33.33%;        
    }
  }

  @media (min-width: 576px){
    .mcwootable {
        max-width: 540px;
    }
  }  

  @media (min-width: 768px) {
    .mcwootable {
        max-width: 720px;
    }
  }  

  @media (min-width: 992px) {
    .mcwootable {
      max-width: 960px;
  }
  }  

@media (min-width: 1200px) {
  .mcwootable {
      max-width: 1140px;
  }
}


