@import url('https://fonts.googleapis.com/css2?family=Exo: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');

    body{
        font-family: 'Exo';
    }
    .icon-delete:hover{
        cursor:pointer;
    }
    label{
        margin-top: 10px;
        font-weight: 600;
        color:crimson;
        margin-bottom: 2px;
    }

    .div_lanche{
        border: 1px solid #f2f2f2;
        border-radius: 10px;
        
        margin-left: 0.8em;
    }
    @media screen  and (min-width:992px){
        .div_lanche{            
            max-width: 45%;
            
        margin-left: 2em;
        }
    }
    .div_lanche:hover{
        
        background-color: #F0F0F0;
        cursor: pointer;
    }
    .main_lanches{
        padding: 10px;
    }
    @media screen  and (min-width:992px){
        .main_lanches{
            max-height: 500px;
            overflow-x: hidden;
            overflow-y: auto;
            padding: 10px;
        }
    }


    .img-fluid-custom{
        max-height: 100px;
    }
    
    .flex-shrink-0 {
        flex-basis: 100px; /* Define um tamanho base para o contêiner da imagem */
    }
    
    .flex-grow-1 {
        overflow: hidden; /* Previne que o texto saia fora do contêiner */
    }
    
    p, small {
        white-space: nowrap; /* Mantém o texto em uma única linha */
        overflow: hidden;
        text-overflow: ellipsis; /* Adiciona "..." se o texto for muito longo */
    }
    
    .flex-shrink-1 {
        min-width: 50px; /* Define uma largura mínima para o preço */
    }

    .title{
        color: crimson;
        font-size: 18px;
    }

    .subtitle{
        color: lightslategray;
        font-size: 15px; 
    }
    
    .select2-selection__rendered {
        line-height: 33px !important;
    }

    .select2-container .select2-selection--single {
        height: 37px !important;
    }

    .select2-selection__arrow {
        height: 35px !important;
    }

    .select2-container .select2-search__field {
        margin-bottom: 6px !important;
        font-size: inherit !important;
        font-family: inherit !important;
        padding-left: 4px !important;
    }
    .table thead th{
        padding:8px;
        font-size: 10pt;
        background-color: #fff;
        font-weight: 600;
        border-collapse: collapse;
        border:0px solid #d2d2d2;
    }
    h4{
        font-weight: 500 !important;
        color: #888;
    }

    .select2-container--default .select2-results>.select2-results__options {
        max-height: 400px; /* Aumente ou diminua para ajustar */
        overflow-y: auto;
    }

    .floating-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        border-radius: 50%; /* Isso torna o botão redondo */
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ajusta a visibilidade do botão com base na classe 'hide' */
    .floating-btn.hide {
        display: none;
    }
    
    @media (min-width: 768px) {
        /* Esconde o botão em dispositivos maiores que 768px */
        .floating-btn {
            display: none;
        }
    }

    .link-point{
        color: crimson;
    }

    #labelmantenhaLogado:hover{
        cursor: pointer;
    }

    .table-point thead th{
        background-color: crimson;
        color: #fff;
    }
    .table-point{
        width: 100%;
        font-size: 10pt;
        font-weight: 500;
    }
    .table-point tr:hover{
        background-color:crimson ;
        color: #FFF;
        cursor:pointer;
        font-weight: 600;
    }
    .table-point tr td{
        vertical-align: middle;
    }