
/* NUBO_MOBILE_NATIVE_SHEET_GLOBAL_V4_START */

@media (max-width: 820px) {
  .nubo-mobile-sheet-global-v4 {
    --nubo-sheet-global-y: 0px;

    position: relative !important;

    transform:
      translate3d(
        0,
        var(--nubo-sheet-global-y),
        0
      )
      !important;

    transition:
      transform 380ms
      cubic-bezier(
        0.22,
        1.18,
        0.34,
        1
      )
      !important;

    will-change: transform;
    backface-visibility: hidden;
    overscroll-behavior: contain;
  }

  .nubo-mobile-sheet-global-v4.is-global-sheet-dragging {
    transition: none !important;
  }

  .nubo-mobile-sheet-global-v4.is-global-sheet-closing {
    transition:
      transform 220ms
      cubic-bezier(
        0.4,
        0,
        1,
        1
      )
      !important;

    pointer-events: none;
  }

  /*
   * Mismo tirador para todos los menús
   * inferiores de la versión móvil.
   */
  .nubo-mobile-sheet-global-v4__handle {
    -webkit-appearance: none !important;
    appearance: none !important;

    position: relative !important;
    z-index: 100 !important;

    order: -999 !important;
    grid-column: 1 / -1 !important;

    display: grid !important;
    place-items: center !important;

    flex: 0 0 40px !important;
    align-self: stretch !important;

    width: 100% !important;
    min-width: 100% !important;

    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    cursor: grab;

    touch-action: none !important;

    -webkit-user-select: none !important;
    user-select: none !important;

    -webkit-tap-highlight-color: transparent;
  }

  .nubo-mobile-sheet-global-v4__bar {
    display: block !important;

    width:
      clamp(
        54px,
        15vw,
        66px
      )
      !important;

    height: 5px !important;
    min-height: 5px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 999px !important;

    background: #d6d9de !important;

    box-shadow:
      inset 0 1px 0
      rgba(255, 255, 255, 0.84)
      !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;

    transform: translateZ(0);

    transition:
      width 150ms ease,
      background-color 150ms ease,
      transform 150ms ease;
  }

  .nubo-mobile-sheet-global-v4.is-global-sheet-dragging
  .nubo-mobile-sheet-global-v4__handle {
    cursor: grabbing;
  }

  .nubo-mobile-sheet-global-v4.is-global-sheet-dragging
  .nubo-mobile-sheet-global-v4__bar {
    width:
      clamp(
        60px,
        17vw,
        74px
      )
      !important;

    background: #9fbeb1 !important;

    transform: scaleY(1.08);
  }

  .nubo-mobile-sheet-global-v4
  .modal__body {
    overscroll-behavior: contain;
    touch-action: pan-y;

    -webkit-overflow-scrolling: touch;
  }

  .nubo-mobile-sheet-global-v4
  button:not(
    .nubo-mobile-sheet-global-v4__handle
  ),
  .nubo-mobile-sheet-global-v4 input,
  .nubo-mobile-sheet-global-v4 select,
  .nubo-mobile-sheet-global-v4 textarea,
  .nubo-mobile-sheet-global-v4 a {
    touch-action: manipulation;
  }
}

@media
(max-width: 820px)
and
(orientation: landscape) {
  .nubo-mobile-sheet-global-v4__handle {
    flex-basis: 34px !important;

    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
  }

  .nubo-mobile-sheet-global-v4__bar {
    height: 4px !important;
    min-height: 4px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nubo-mobile-sheet-global-v4,
  .nubo-mobile-sheet-global-v4__bar {
    transition-duration: 1ms !important;
  }
}

/* NUBO_MOBILE_NATIVE_SHEET_GLOBAL_V4_END */
