:root {
    --color-primario: #2980B9;
    --color-secundario: #1F618D;
}

.btn-flotante {
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    border-radius: 100%;
    background-color: var(--color-primario);
    padding: 15px 20px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    transition: all 300ms ease 0ms;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

    .btn-flotante:hover {
        background-color: var(--color-secundario);
        color: #ffffff;
        box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-7px);
    }

.btn-ejecucion{
    background-color: var(--color-primario);
    color: #ffffff;
}

.btn-ejecucion:hover {
    background-color: var(--color-secundario);
    color: #ffffff;
}

.list-hover:hover{
    background-color: #2980B9;
    color: #ffffff;
    cursor: pointer;
}

.producto-list:hover {
    box-shadow: 10px 10px 15px -3px rgba(0,0,0,0.1);
    cursor: pointer;
}

#listaDeProductos {
    max-height: 62vh;
    overflow: scroll;
}

    #listaDeProductos::-webkit-scrollbar {
        width: 5px;
    }

    #listaDeProductos::-webkit-scrollbar-thumb {
        background-color: #1F618D;
    }

    #listaDeProductos::-webkit-scrollbar-track {
        background-color: #f1f1f1;
}

#presentaciones-carrito {
    padding-left: 10px;
    padding-right: 15px;
    height: 39vh;
    overflow-y: scroll;
    overflow-x: hidden !important;
}

    #presentaciones-carrito::-webkit-scrollbar {
        width: 5px;
    }

    #presentaciones-carrito::-webkit-scrollbar-thumb {
        background-color: #1F618D;
    }

    #presentaciones-carrito::-webkit-scrollbar-track {
        background-color: #f1f1f1;
    }

    .form-number-phone::-webkit-inner-spin-button,
    .form-number-phone::-webkit-outer-spin-button {
        -webkit-appearance: none;
        appearance: none;
        margin: 0;
    }

@media only screen and (max-width: 600px) {
    .btn-flotante {
        bottom: 20px;
        right: 20px;
    }
}
