.fab-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    user-select: none;
    position: absolute;
    bottom: 30px; right: 30px;
}

.fab-container :hover {
      height: 100%;
}
.fab-container .sub-button:nth-child(2) {
    transform: translateY(-80px);
}
.sub-button:nth-child(3) {
    transform: translateY(-140px);
}
.sub-button:nth-child(4) {
    transform: translateY(-200px);
}
.sub-button:nth-child(5) {
    transform: translateY(-260px);
}
.sub-button:nth-child(6) {
    transform: translateY(-320px);
}
    
.fab {
    position: relative;
    height: 70px; width: 70px;
    background-color: rgb(75, 162, 255);
    border-radius: 50%;
    z-index: 2;
}

.fab :before {
    content: " ";
    position: absolute;
    bottom: 0; right: 0;
    height: 35px; width: 35px;
    background-color: inherit;
    border-radius: 0 0 10px 0;
    z-index: -1;
}
      
.fab .fab-content {
    display: flex;
    align-items: center; justify-content: center;
    height: 100%; width: 100%;
    border-radius: 50%;
}

.fab .material-icons {
    color: white;
    font-size: 48px;
}

.fab .sub-button {
    position: absolute;
    display: flex;
    align-items: center; justify-content: center;
    bottom: 10px; right: 10px;
    height: 50px; width: 50px;
    background-color: rgb(75, 162, 255);
    border-radius: 50%;
    transition: all .3s ease;
}

.fab .sub-button :hover {
    cursor: pointer;
 }

 .fab .sub-button .material-icons {
    color: white;
    padding-top: 6px;
}

/* Botón naranja estilo Bootstrap */
.btn.btn-naranja {
    color: #fff !important;
    background-color: #e98000 !important;
    border-color: #e27f06 !important;
}

.btn.btn-naranja:hover {
    color: #fff !important;
    background-color: #e98000 !important;
    border-color: #e27f06 !important;
}

.btn.btn-naranja:focus,
.btn.btn-naranja:active,
.btn.btn-naranja.active {
    color: #fff !important;
    background-color: #e98000 !important;
    border-color: #e27f06 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.4);
}

/* Fondo oscuro a pantalla completa, por encima del modal de pedido */
.overlay-captura {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1080; /* un poco por encima del modal de Bootstrap (1055–1056 aprox) */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-full-height {
    height: calc(100% - 1rem); /* margen de Bootstrap */
    max-height: calc(100% - 1rem);
}

.modal-full-height .modal-content {
    height: 100%;
}