/* CSS CONTAINER-1 */
.flip-container {
  width: 446px;
  height: 350px;
  display: flex;
  justify-content: space-around;
  perspective: 1000px;
  margin-right: 40px;
  margin: 0 auto 70px;
}
.flip-container:hover .flipper-1,
.flip-container:hover .flipper-2,
.flip-container:hover .flipper-3 {
  transform: rotateY(180deg);
  cursor: pointer;
}
.flipper-1 {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  position: relative;
  display: flex;
}
.flipper-2 {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  position: relative;
  display: flex;
}
.flipper-3 {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  position: relative;
  display: flex;
}

.front,
.back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.front img {
  width: 100%;
}
.back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  overflow-x: hidden;
}
/* width */
.back::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.back::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.back::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.back::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.back .card {
  display: flex;
  height: 120px;
}
.back .card:hover {
  opacity: 0.6;
}
.back .card img {
  width: 40%;
  height: auto;
}
.back .card .text {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
.back .card .text .nome-produto {
  font: normal normal 500 17px Montserrat;
  margin-bottom: 0px;
  padding-top: 6px;
}
.back .card .info {
  display: flex;
  width: 200px;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.back .card .info .precos {
  color: #9b9b9b;
  font: normal normal 500 14px Montserrat;
}
.back .card .info .precos p:first-child {
  margin-bottom: 0px !important;
}
.back .card .info .precos p:last-child {
  color: #ee951e;
  font: normal normal bold 18px Montserrat;
}
.back .card .info a {
  all: unset;
  cursor: pointer;
  font: normal normal bold 12px Montserrat;
  background-color: #ee951e;
  color: #ffff;
  padding: 6px 12px;
  border-radius: 8px;
}

.back .card a {
  display: flex;
  flex-direction: column;
}
@media(max-width:780px) {
  .back .card .text .nome-produto {
    font-size: 15px;
  }
  .back .card .info .precos p:last-child {
    font-size: 15px;
  }
  .back .card .info a {
    margin-right: 10px;
    font-size: 10px;
  }
  .back .card img {
    width: 40% !important;
  }
}

@media (min-width: 1900px) {
  .back .card .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    width: 50% !important;
  }
}
