.amazing-product-card {
  width: 100%;
  height: 500px;
  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);
    box-shadow: 5px 20px 30px rgba(0, 0, 0, 0.2);
  }*/

  .container {
    width: 100%;
    height: 100%;
    .top {
      width: 100%;
      height: 76%;
      /*background: url(https://s-media-cache-ak0.pinimg.com/736x/49/80/6f/49806f3f1c7483093855ebca1b8ae2c4.jpg); */
      no-repeat center center;
      -webkit-background-size: 100%;
      -moz-background-size: 100%;
      -o-background-size: 100%;
      background-size: 100%;

      .area-button-gallery
      {
        width: 50px;
        height: 50px;
        position: absolute;
        bottom: 0;
        padding:10px;
        margin:10px;
        border-radius: 30px;
        background-color: rgba(85, 85, 85, 0.4);
      }

      .area-button-ask
      {
        width: 50px;
        height: 50px;
        position: absolute;
        bottom: 0;
        right: 0;
        padding:10px;
        margin:10px;
        border-radius: 30px;
        background-color: rgba(85, 85, 85, 0.4);
      }

      .comentario{
        top:0;left:0;padding:6px; background-color:#0006;border-radius: 50px;margin-top: 10px;margin-left: 10px;
      }

    }
    .bottom {
      width: 200%;
      height: 24%;
      transition: transform 0.5s;
      &.clicked {
        transform: translateX(-50%);
      }
      h1 {
        margin: 0;
        padding: 0;
        font-size: 16pt;
      }
      p {
        margin: 0;
        padding: 0;
        font-size: 14pt;
      }
      .left {
        height: 100%;
        width: 50%;
        background: #f4f4f4;
        position: relative;
        float: left;

        .inner-left {
          width: 100%;
          height: 120px;

          .details {
            float: left;
            padding-top: 20px;
            padding-left: 10px;
            padding-right: 10px;
            /*width: calc(70% - 40px);  */
            /*width: 240px;*/
            width: 80%;
            overflow: hidden;
            text-align: justify;
          }

          @media (min-width: 992px){
            .details{
              width: 100%;
            }
          }

          .button-area {
            position: relative;
            float: right;
            width: 20%;
            height: 100%;
            border-left: 1px solid #E3E3E3;

            .button-a {
              position:absolute;
              top:0;
              right:0;
              bottom:0;
              left:0;

              i {
                margin: 0;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                top: 50%;
                font-size: 30px;
                color: #254053;
                transition: transform 0.5s;
              }

              &:hover {
                background: #a6cdde;
              }

              &:hover i {
                /*transform: translateY(5px);   */
                color: #00394b;
              }

              /*&:hover {
                background: #a6cdde;
              }
              &:hover i {
                transform: translateY(5px);
                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: #92879b;
    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;
    }
    &:hover {
      width: 100%;
      right: 0;
      top: 0;
      border-radius: 0;
      height: 76%;
      .icon {
        opacity: 0;
        right: 15px;
        top: 15px;
      }
      .contents {
        opacity: 1;
        transform: scale(1);
        transform: translateY(0);
      }
    }
    .contents {
      padding: 5%;
      opacity: 0;
      transform: scale(0.5);
      transform: translateY(-200%);
      transition: opacity 0.2s, transform 0.8s;
      table {
        text-align: left;
        width: 100%;
      }
      h1,
      p,
      table {
        color: white;
      }
      span, p {
        font-size: 16pt;
      }
    }
  }
}