@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
:root {
  --theme-primary: #00ADEF;
}

body {
  font-family: 'Poppins', sans-serif;
}

.text-orange {
  color: #FF7733;
}

.btn-theme {
  background: var(--theme-primary);
  color: #ffffff;
}

.btn-theme:hover {
  color: #ffffff;
  background: #2485ab;
}

#goTop {
  position: fixed;
  right: 15px;
  bottom: 15px;
}

.card {
  overflow: hidden;
}

.main-wrapper {
  max-width: 620px;
}

.rating {
  cursor: pointer;
}

.btn-whats {
  background: #25d366;
}

.setup-img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 525px;
}

.img-zoom {
  max-height: 60vh;
}

.modal {
  background: rgba(0, 0, 0, .7)
}

@media screen and (min-width: 768px) {
  .zoom-carousel,
  .fa-magnifying-glass-plus
  {
    transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  .fa-magnifying-glass-plus {
    font-size: 2rem;
    pointer-events: none;
  }

  .zoom-carousel:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  .zoom-carousel:hover + .fa-magnifying-glass-plus {
    opacity: 1 !important;
  }

  .modal-dialog {
    max-width: 70vw;
  }
}

