/****PRODUCT CARD****/

.card>.list-group a:hover {
    color: #f9cad0 !important;
}

.card>.list-group{
    border-top:none;
    list-style: none !important;
    margin-left: 1.3rem;
    margin-bottom: 1rem;
    border: none;
}

.card-body{
    padding:1.3rem !important;
}

@media screen and (max-width: 600px){
    .row{
        justify-content:center;
    }
}

/*
// .whatapps
*/
.whatapps {
    position: relative;
    z-index: 9;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s,
   visibility 0s .3s;
    transition: opacity .3s,
   visibility 0s .3s;
  }
  
  .whatapps__body {
    position: fixed;
    bottom: 80px;
    left: 0;
    top: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -20px;
  }
  
  .whatapps__container {
    margin: 0 -15px;
  }
  
  .whatapps__start,
  .whatapps__end {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    min-width: 0;
  }
  
  .whatapps__end {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  
  .whatapps__end:before {
    content: '';
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  
  .whatapps__button {
    pointer-events: auto;
    width: 39px;
    height: 39px;
    border-radius: 19.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    border: none;
    cursor: pointer;
    color: #fff;
    background: #f9cad0;
    fill: currentColor;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: background-color .15s,
   color .15s;
    transition: background-color .15s,
   color .15s;
  }
  
  [dir=ltr] .whatapps__button {
    margin-left: 80px;
    margin-right: 24px;
  }
  
  [dir=rtl] .whatapps__button {
    margin-right: 80px;
    margin-left: 24px;
  }
  
  .whatapps__button:focus {
    outline: none;
  }
  
  @media (hover: hover) {
    .whatapps__button:hover {
      color: #fff;
      background: #3d464d;
    }
  }
  
  .whatapps__button:active {
    color: #fff;
    background: #546069;
  }
  
  .whatapps__button svg {
    margin-top: -2px;
    margin-bottom: 1px;
  }
  
  .whatapps--show {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s, 0s;
            transition-delay: 0s, 0s;
  }