
    .wrapper{
  width: 250px;
  height: 100%;
  background: white;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0;
  transform: scale(0.95);
  transition: box-shadow 0.5s, transform 0.5s;
  &:hover{
    transform: scale(1);
  }
  
  .container-wrapper{
    width:100%;
    height:100%;
    .top{
      height: 75%;
      width:100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
       
      -webkit-background-size: 100%;
      -moz-background-size: 100%;
      -o-background-size: 100%;
      background-size: 100%;
      position: relative;
      &:hover .btn-card-actions{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        
      }
      &:hover .btn-card-actions:hover{
        transform: scale(1.05);
        cursor: pointer;
        transition: all 0.5s ease;
      }
      &:hover .btn-offer-time{
        opacity: 0;
        visibility: hidden;
      }
    }
    .bottom{
      width: 200%;
      height: 25%;
      transition: transform 0.5s;
      &.clicked{
        transform: translateX(-50%);
      }
      h1{
          margin:0;
          padding:0;
      }
      p{
          margin:0;
          padding:0;
      }
      .left{
        height:100%;
        width: 50%;
        background: #f4f4f4;
        position:relative;
        float:left;
        .details{
          padding: 2px 10px;
          float: left;
          width: calc(70% - 40px);
        }
        .buy{
          float:right;
          width: calc(20% - 2px);
          height:100%;
          background: #f1f1f1;
          transition: background 0.5s;
          border-left:solid thin rgba(0,0,0,0.1);
          i{
            font-size:30px;
            padding:25px 10px;
            color: #254053;
            transition: transform 0.5s;
          }
          &:hover{
            background: #A6CDDE;
          }
          &:hover i{
            color:#00394B;
          }
        }
      }
      .right{
        width: 50%;
        background: #A6CDDE;
        color: white;
        float:right;
        height:200%;
        overflow: hidden;
        .details{
          padding: 20px;
          float: right;
          width: calc(70% - 40px);
        }
        .done{
          width: calc(30% - 2px);
          float:left;
          transition: transform 0.5s;
          border-right:solid thin rgba(255,255,255,0.3);
          height:50%;
          i{
            font-size:30px;
            padding:30px;
            color: white;
          }
        }
        .remove{
          width: calc(30% - 1px);
          clear: both;
          border-right:solid thin rgba(255,255,255,0.3);
          height:50%;
          background: #BC3B59;
          transition: transform 0.5s, background 0.5s;
          &:hover{
            background: #9B2847;
          }
          &:hover i{
            transform: translateY(5px);
          }
          i{
            transition: transform 0.5s;
            font-size:30px;
            padding:30px;
            color: white;
          }
        }
        &:hover{
          .remove, .done{
            transform: translateY(-100%);
          }
        }
      }
    }
  }
  
  .inside{
    z-index:9;
    background: var(--third);
    width:140px;
    height:140px;
    position: absolute;
    top: -70px;
    right: -70px;
    border-radius: 0px 0px 200px 200px;
    transition: all 0.5s, border-radius 2s, top 1s;
    overflow: hidden;
    .icon{
      position:absolute;
      right:85px;
      top:85px;
      color:white;
      opacity: 1;
    }
    
  }
}

.btn-offer-time{
  width: 170px;
  border-radius: 5px;
  background: var(--discount);
  color: white;
  text-align: center;
  padding:5px 0px;
}

.btn-card-actions{
  width: 100px;
  border-radius: 10px;
  background: var(--third);
  color: white;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  
}

.title-h5{
  display: -webkit-box;
  -webkit-line-clamp: 2; /* cantidad de líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 190px;
  font-weight: bold;
}

.discount-badge {
    position: relative;
    top: 0px;
    left: 10px;

    background: var(--discount);
    color: #fff;
    font-weight: 500;
    font-size: 12px;

    padding: 6px 10px;
    border-radius: 4px;

    z-index: 10;
}

.price-content{
  display: flex;
  align-items: center;
}