.cardProduct{
  width: 100%;
  padding: calc(var(--defaultSpace) * 2);
  border: 1px solid #eee;
  border-radius: calc(var(--defaultSpace) / 2);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: calc(var(--defaultSpace) * 3);
}

.editor{
  width: 140px;
  padding: calc(var(--defaultSpace) / 2);
  border-radius: 100px;
  border: 1.5px solid var(--mainColor);
  margin: var(--space);
  display: table;
}

.titleProduct{
  text-align: center;
  margin: var(--space);
}

.titleProduct h2{
  font-weight: var(--fwBolder);
  margin-bottom: calc(var(--defaultSpace) / 2);
}

.titleProduct p{
  color: #888;
  margin-bottom: 0;
}

.boxPrice{
  width: 100%;
  margin-bottom: calc(var(--defaultSpace) * 2);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  color: #888;
}

.oldPrice{width: 25%;}

.newPrice{
  width: calc(75% - 10px);
  text-align: right;
}

.newPrice small{font-size: 1.6rem;}

.priceNumber{
  font-size: 3rem;
  font-weight: var(--fwBolder);
  color: #00be9c;
}

.btCheckout{
  width: 100%;
  max-width: 440px;
  font-size: 1.45rem;
  font-weight: var(--fwNormal);
  font-family: inherit;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.35rem;
  position: relative;
  padding: 1rem var(--defaultSpace);
  margin: 0 auto;
  color: rgba(255, 255, 255, 1);
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.15) 20%, rgba(0,0,0, 0) 80%); */
  background-color: var(--btnsColor);
  cursor: pointer;
  border-radius: 3px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  display: block;
}

.btCheckout:after{
  content: "";
  width: 100%;
  height: calc(100% - 4px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.0);
  border-bottom: solid 4px rgba(0, 0, 0, 0.25);
  display: block;
}

.btCheckout:hover{
  background: linear-gradient(to top, rgba(255, 255, 255, 0.2) 10%, rgba(0,0,0, 0) 90%);
  background-color: var(--btnsColor);
  transform: scale(1.02);
  transition: 0.2s;
}

.btCheckout img{
  height: 20px;
  margin-right: 15px;
}

.btCheckout span{
  position: relative;
  top: -2px;
}

@media only screen and (min-width: 768px){
  .cardProduct{
    width: calc(50% - 30px);
    margin: 0 15px calc(var(--defaultSpace) * 3);
  }

  .titleProduct{
    min-height: 110px;
    margin-bottom: var(--defaultSpace);
  }

  .productDescription{min-height: 200px;}
}

@media only screen and (min-width: 1000px){
  .cardProduct{width: calc(33.3% - 30px);}

  .productDescription{
    min-height: 260px;
    font-size: 1.15rem;
    line-height: 1.75rem;
  }
}

@media only screen and (min-width: 1280px){
  .productDescription{
    min-height: 230px;
    font-size: 1.3rem;
    line-height: 1.75rem;
  }
}
