/* start - NUMBER INPUT WITHOUT ARROWS */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* end - NUMBER INPUT WITHOUT ARROWS */

.form-control:focus,
.form-select:focus {
  outline: none; /* Removes the default browser outline */
  -webkit-box-shadow: none;
          box-shadow: none; /* Removes the Bootstrap focus shadow */
}

h4 {
    font-size: 1.35rem;
}

h5 {
    font-size: 1.15rem;
}

.form-select--small {
    font-size: small;
    background-size: 9px auto; /* Adjust 12px to your desired smaller width */
    padding-right: 1rem;
}

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}

.w-70 {
    width: 70%;
}

.w-60 {
    width: 60%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

.w-20 {
    width: 20%;
}

.card {
    border: 0;
}

.lp-section1 {
    background-image: linear-gradient(143deg, #273F4F 0%, #21252A 100%)
    }

.fs-6-5 {
    font-size: 18px;
}

.fs-7 {
    font-size: small;
}

.fs-8 {
    font-size: 11px;
    line-height: 1.7;
}

.pointer {
    cursor: pointer;
}

.card-selected-start {
    border-left: 7px solid var(--bs-primary);
}

.h-over-top {
    position: relative;
    top: 12px;
    z-index: 90;
}

.text-h-input {
  line-height: 38px;
}

.border-dashed {
  border-style: dashed;
}

.btn:hover, .increase_hover:hover {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 10;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

.btn-sm:hover, .increase_hover_big:hover {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 10;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}


.increase_hover_min:hover {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 10;
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
}


@media (min-width: 992px) {

.floating_summary {
    position: sticky;
    top: 80px;
  }

.w-lg-35 {
    width: 35%;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

}

.img-max-450 {
    max-width: 450px;
    max-height: 450px;
}

.img-max-360 {
    max-width: 360px;
    max-height: 360px;
}

.img-max-300 {
    max-width: 300px;
    max-height: 300px;
}

.img-max-270 {
    max-width: 270px;
    max-height: 270px;
}

.img-max-200 {
    max-width: 200px;
    max-height: 200px;
}

.img-max-150 {
    max-width: 150px;
    max-height: 150px;
}

.form-int {
    padding-left: 36px;
    padding-right: 36px;
    text-align: center;
}

.btn-minus {
  margin-right: -32px;
  z-index: 10;
  cursor: pointer;
}

.btn-plus {
  margin-left: -32px;
  z-index: 10;
  cursor: pointer;
}

.group-int-btns {
    height: 38px;
    margin-top: -38px;
}

@media print {

  /* Esconde tudo da página */
  body > *:not(.dmxLightboxOverlay) {
    display: none !important;
  }

  /* Mostra apenas o overlay ativo */
  .dmxLightboxOverlay {
    display: none !important;
  }

  .dmxLightboxOverlay.dmxLightboxVisible {
    display: block !important;
    position: static !important;
    height: auto !important;
    background: white !important;
  }

  /* Remove comportamento de slider */
  .dmxLightboxSlider {
    position: static !important;
    height: auto !important;
    -webkit-transform: none !important;
            transform: none !important;
    white-space: normal !important;
  }

  /*Mantém apenas o primeiro slide */
  .dmxLightboxImage {
    display: none !important;
    height: auto !important;
  }

  .dmxLightboxImage:first-child {
    display: block !important;
  }

  /* Ajuste da imagem */
  .dmxLightboxImage img {
    display: block !important;
    margin: 0 auto;
    max-width: 100%;
    max-height: 95vh;
    page-break-inside: avoid;
  }

  /* Remove botões */
  .dmxLightboxButton,
  .dmxLightboxSpinner,
  .dmxLightboxImage::before,
  figcaption {
    display: none !important;
  }

}