﻿/*
npm install -g uglifycss
uglifycss main.css --output main.min.css

dotnet tool install -g Microsoft.Web.LibraryManager.Cli
libman install uglifycss -d wwwroot/css/ -p cdnjs
*/

/*Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;1,600&display=swap");
@import url("/css/open-iconic/font/css/open-iconic-bootstrap.min.css");
/*Utilities*/
/*COLORES*/
/*FONT-SIZES*/
/*FONT-FAMILY*/
/*Partials*/
@keyframes expand {
    from {
        opacity: 0;
        top: 50px;
    }
}

.logo-canal {
    width: 30px;
    max-width: 30px;
    border-radius: 6px;
}

.main-navbar {
    background-color: #2c343b;
    padding: 0;
    height: auto !important;
}

    .main-navbar .navbar-collapse {
        height: 100%;
    }

    .main-navbar .nav-item {
        position: relative;
    }

        .main-navbar .nav-item .nav-link {
            color: #fff;
            font-size: 1rem;
            font-weight: 400;
            padding: 0.6rem 1.3rem;
            cursor: pointer;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            transition-property: background-color, color;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            height: 100%;
        }

            .main-navbar .nav-item .nav-link:hover {
                color: #337ab7;
            }

            .main-navbar .nav-item .nav-link i {
                font-size: 1rem;
                vertical-align: middle;
                margin-right: 6px;
            }

        .main-navbar .nav-item.active-menu-link {
            border-radius: 0;
            background-color: #337ab7;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            transition-property: background-color, color;
        }

            .main-navbar .nav-item.active-menu-link .nav-link {
                color: #fff;
            }

    .main-navbar .sub-menu-box {
        width: 250px;
        background-color: #fff;
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px 14px;
        z-index: 99;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    }

        .main-navbar .sub-menu-box a {
            font-size: 0.875rem;
            font-weight: 400;
            color: #959eaf;
            width: 100%;
            margin: 10px 0 4px;
            cursor: pointer;
            padding: 0;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            transition-property: background-color, color;
        }

            .main-navbar .sub-menu-box a:hover {
                color: #337ab7;
            }

            .main-navbar .sub-menu-box a i {
                margin-right: 10px;
                font-size: 1rem;
            }

        .main-navbar .sub-menu-box .active-submenu-link {
            color: #337ab7;
        }

    .main-navbar .menu-box {
        width: 250px;
        background-color: #fff;
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px 14px;
        z-index: 99;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        right: 0;
        width: 380px;
        padding: 0;
    }

        .main-navbar .menu-box a {
            font-size: 0.875rem;
            font-weight: 400;
            color: #959eaf;
            width: 100%;
            margin: 10px 0 4px;
            cursor: pointer;
            padding: 0;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            transition-property: background-color, color;
        }

            .main-navbar .menu-box a:hover {
                color: #337ab7;
            }

            .main-navbar .menu-box a i {
                margin-right: 10px;
                font-size: 1rem;
            }

        .main-navbar .menu-box .menu-header-content {
            padding: 2rem 1rem;
            width: 100%;
        }

            .main-navbar .menu-box .menu-header-content p {
                display: block;
                margin: 5px 0 23px;
                cursor: pointer;
            }

                .main-navbar .menu-box .menu-header-content p i {
                    margin-right: 5px;
                    font-size: 1rem;
                }

                .main-navbar .menu-box .menu-header-content p:last-child {
                    margin-bottom: 0;
                }

                .main-navbar .menu-box .menu-header-content p:hover {
                    color: #337ab7 !important;
                    text-decoration: none;
                    -webkit-transition: all 0.2s ease-in;
                    -moz-transition: all 0.2s ease-in;
                    -o-transition: all 0.2s ease-in;
                    transition: all 0.2s ease-in;
                    transition-property: background-color, color;
                }

            .main-navbar .menu-box .menu-header-content button:hover {
                color: #000;
                background-color: #337ab7;
                -webkit-transition: all 0.2s ease-in;
                -moz-transition: all 0.2s ease-in;
                -o-transition: all 0.2s ease-in;
                transition: all 0.2s ease-in;
                transition-property: background-color, color;
            }

    .main-navbar .icon-profile {
        font-size: 2rem !important;
        vertical-align: middle;
        color: #fff;
        margin-right: 20px;
        cursor: pointer;
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        transition-property: background-color, color;
    }

        .main-navbar .icon-profile:hover {
            color: gray;
        }

    .main-navbar .submenu-marcas {
        width: 250px;
        background-color: #fff;
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px 14px;
        z-index: 99;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        right: 0;
        width: auto;
        min-width: 170px;
        padding: 0;
        right: -15px;
        font-size: 0.875rem;
        top: 50px;
    }

        .main-navbar .submenu-marcas a {
            font-size: 0.875rem;
            font-weight: 400;
            color: #959eaf;
            width: 100%;
            margin: 10px 0 4px;
            cursor: pointer;
            padding: 0;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            transition-property: background-color, color;
        }

            .main-navbar .submenu-marcas a:hover {
                color: #337ab7;
            }

            .main-navbar .submenu-marcas a i {
                margin-right: 10px;
                font-size: 1rem;
            }

        .main-navbar .submenu-marcas a {
            white-space: nowrap;
            margin: 0;
            padding: 0 15px;
            border-bottom: 1px solid #eee;
            font-weight: 500;
        }

            .main-navbar .submenu-marcas a:last-child {
                border-bottom: none;
            }

            .main-navbar .submenu-marcas a:hover {
                background-color: #f6f6f6;
            }

            .main-navbar .submenu-marcas a img {
                border-radius: 6px;
                width: 35px;
                margin: 12px 10px 12px 0;
            }

.icon-marcas {
    background-color: #212529;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    transition-property: background-color, color;
    border-radius: 5px;
    min-width: 60px;
    min-height: 60px;
    max-height: 60px;
    max-width: 60px;
}

/*Login Page*/
.login {
    height: 100vh;
}

    .login .resto {
        background-image: url("../assets/bg-resto.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        padding: 40px 45px;
    }

        .login .resto .logo {
            width: 383px;
            height: 143px;
            background: #000;
            padding: 9px 0;
            text-align: center;
        }

            .login .resto .logo img {
                width: 81%;
            }

            .login .resto .logo p.logo-title {
                text-align: center;
                font-size: 1.25rem;
                margin: 11px 0;
                font-weight: 300;
                color: rgba(255, 255, 255, 0.7);
            }

.login-form-wrapper {
    background-image: url("../assets/bg-login.jpg");
}

    .login-form-wrapper .login-form {
        background-color: #000;
        width: 100%;
        max-width: 450px;
        padding: 40px 0 10px;
    }

    .login-form-wrapper .login-form-title {
        padding: 0;
        color: #fff;
        font-size: 2.5rem !important;
        font-weight: 500;
        text-align: center;
    }

    .login-form-wrapper .login-form .form-group {
        padding: 0 16px;
    }

    .login-form-wrapper .login-form .form-check-input {
        opacity: 0;
    }

        .login-form-wrapper .login-form .form-check-input:checked ~ .form-check-label::after {
            background-image: url("../assets/check-icon.png");
        }

    .login-form-wrapper .login-form .form-check-label {
        margin-bottom: 0;
        color: #fff;
        opacity: 0.5;
        font-size: 0.75rem;
        font-weight: 400;
        position: relative;
        left: 30px;
    }

        .login-form-wrapper .login-form .form-check-label::after {
            position: absolute;
            top: 0;
            left: -30px;
            display: block;
            width: 18px;
            height: 18px;
            content: "";
            background: 50%/50% 50% no-repeat;
            z-index: 99999;
            border: 1px solid;
            border-radius: 4px;
        }

    .login-form-wrapper .login-form .olvido-pass a {
        color: #337ab7;
        font-size: 0.875rem;
        font-weight: 400;
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        transition-property: background-color, color;
    }

        .login-form-wrapper .login-form .olvido-pass a:hover {
            text-decoration: none;
        }

.login .form-control {
    border: none;
    height: 50px;
    margin-top: 1.25rem;
    background-color: rgba(247, 247, 249, 0.7);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: 0.75rem;
}

    .login .form-control:focus {
        color: #fff;
    }

/*.login .resto {
    background-image: url('../assets/bg-resto.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 45px;
}

.login .resto .logo {
    width: 383px;
    height: 143px;
    background: #000;
    padding: 9px 0;
}

.login .resto .logo img {
    width: 81%;
}

.login p.logo-title {
    text-align: center;
    font-size: $font-20;
    margin: 11px 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.login .login-form-wrapper {
    background-image: url('../assets/bg-login.jpg');
}

.login .form-control {
    border: none;
    height: 50px;
    margin-top: 1.25rem;
    background-color: rgba(247,247,249,.7);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: $font-12;
}

.login .form-control:focus {
    color: #fff;
}


.login .login-form-wrapper .login-form {
    background-color: #000;
    width: 100%;
    max-width: 450px;
    padding: 40px 0 10px;
}

.login .login-form-wrapper .login-form .login-form-title {
    padding: 0;
    color: #fff;
    font-size: $font-40 !important;
    font-weight: 500;
    text-align: center;
}

.login .login-form-wrapper .login-form .form-group {
    padding: 0 16px;
}

.login .login-form-wrapper .login-form .form-check-input {
    opacity: 0;
}

.login .login-form-wrapper .login-form .form-check-label {
    margin-bottom: 0;
    color: #fff;
    opacity: 0.5;
    font-size: $font-12;
    font-weight: 400;
    position: relative;
    left: 30px;
}

.login .login-form-wrapper .login-form .form-check-label::after {
    position: absolute;
    top: 0;
    left: -30px;
    display: block;
    width: 18px;
    height: 18px;
    content: "";
    background: 50%/50% 50% no-repeat;
    z-index: 99999;
    border: 1px solid;
    border-radius: 4px;
}

.login .login-form-wrapper .login-form .form-check-input:checked ~ .form-check-label::after {
    background-image: url('../assets/check-icon.png');
}

.login .login-form-wrapper .login-form .olvido-pass a {
    color: $azul-primario;
    font-size: $font-14;
    font-weight: 400;
    @include hover-transitions;
}

.login .login-form-wrapper .login-form .olvido-pass a:hover {
    text-decoration: none;
}*/
/*General*/
.spinner-loading {
    margin-top: 3px;
}

/*Toolbar*/
.toolbar-pedidos {
    height: auto;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 3rem 0;
    background-color: #f6f6f6;
}

    .toolbar-pedidos .daterangepicker {
        -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        border: none;
    }

        .toolbar-pedidos .daterangepicker .ranges ul li {
            font-size: 0.6875rem;
            font-weight: 400;
            color: #959eaf;
        }

            .toolbar-pedidos .daterangepicker .ranges ul li.active, .toolbar-pedidos .daterangepicker .ranges ul li:hover {
                color: #fff;
                background-color: #337ab7;
            }

        .toolbar-pedidos .daterangepicker .drp-buttons .btn {
            font-size: 0.75rem !important;
        }

    .toolbar-pedidos .datepicker.form-control {
        border: 1px solid #d5d9e1;
        font-size: 0.75rem;
        padding: 0.35rem .75rem;
        height: auto;
        color: #959eaf;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    }

.toolbar-pedidos-date .datepicker button {
    background: #959eaf;
    border: none;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    transition-property: background-color, color;
}

    .toolbar-pedidos-date .datepicker button:hover {
        background: #337ab7;
    }

.toolbar-pedidos-today button {
    width: 48%;
    max-width: 165px;
}

.toolbar-pedidos-search {
    display: flex;
    justify-content: flex-end;
    /*@include dropdown-select;*/
}

.toolbar-estados {
    background-color: #fff;
    border-bottom: 1px solid #d5d9e1;
}

.toolbar-pedidos-search .form-control {
    border: 1px solid #d5d9e1;
    font-size: 0.75rem;
    padding: 0.35rem .75rem;
    height: auto;
    color: #959eaf;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
}

/*Calendarios*/
.datepicker .dropdown-menu {
    color: #737577;
    border-radius: 6px;
}

    .datepicker .dropdown-menu .modal-header {
        background-color: #f6f6f6;
        border: none;
    }

        .datepicker .dropdown-menu .modal-header .btn-link {
            border-radius: 0;
            background: #337ab7;
            color: #fff !important;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            transition-property: background-color, color;
        }

            .datepicker .dropdown-menu .modal-header .btn-link:hover {
                background-color: #959eaf;
                color: #fff;
            }

            .datepicker .dropdown-menu .modal-header .btn-link.roller-cancel-btn {
                border-top-left-radius: 6px;
            }

            .datepicker .dropdown-menu .modal-header .btn-link.roller-apply-btn {
                border-top-right-radius: 6px;
            }

        .datepicker .dropdown-menu .modal-header .modal-title {
            font-weight: 500;
        }

    .datepicker .dropdown-menu .modal-body .nav-tabs .nav-item .nav-link {
        font-size: 0.75rem;
        color: #737577;
    }

        .datepicker .dropdown-menu .modal-body .nav-tabs .nav-item .nav-link.active {
            color: #337ab7;
        }

    .datepicker .dropdown-menu .modal-body .card-footer {
        background-color: #f6f6f6;
    }

        .datepicker .dropdown-menu .modal-body .card-footer button {
            background: #337ab7;
            color: #fff !important;
            padding: .3rem .75rem;
            font-size: 0.875rem;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            transition-property: background-color, color;
        }

            .datepicker .dropdown-menu .modal-body .card-footer button:hover {
                background-color: #959eaf;
                color: #fff;
            }

    .datepicker .dropdown-menu .modal-body .rollers-container .roller-container {
        font-size: 0.75rem;
    }

        .datepicker .dropdown-menu .modal-body .rollers-container .roller-container .roller-title {
            font-family: "Poppins", sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            opacity: 1;
            color: #737577 !important;
        }

.grilla-demoras table tr th {
    min-width: 150px;
    width: 150px;
}

.grilla-pivot table {
    border-color: #d5d9e1 !important;
    border-bottom: 1px solid #d5d9e1 !important;
}

    .grilla-pivot table th {
        text-align: left !important;
    }

    .grilla-pivot table tr:nth-child(even) {
        background-color: #fff;
    }

    .grilla-pivot table thead tr th span {
        font-weight: 400 !important;
        font-size: 0.75rem;
    }

    .grilla-pivot table thead .dxpg-header {
        font-size: 0.75rem;
        font-weight: 500 !important;
    }

        .grilla-pivot table thead .dxpg-header.dxpg-npc {
            background: #fff;
        }

            .grilla-pivot table thead .dxpg-header.dxpg-npc .btn-link {
                font-size: 0.75rem;
                font-weight: 500 !important;
                text-transform: capitalize;
            }

        .grilla-pivot table thead .dxpg-header.dxpg-total {
            background: #fff;
        }

            .grilla-pivot table thead .dxpg-header.dxpg-total.table-active {
                text-transform: capitalize;
            }

    .grilla-pivot table thead .dxpg-area-row {
        background: #fff;
    }

        .grilla-pivot table thead .dxpg-area-row .btn-link {
            background-color: #337ab7 !important;
            border: none;
            color: #fff !important;
            font-size: 0.875rem;
            padding: .3rem .75rem;
            border-radius: 2px !important;
            -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
            -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
            box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        }

            .grilla-pivot table thead .dxpg-area-row .btn-link:hover {
                background-color: #959eaf !important;
            }

            .grilla-pivot table thead .dxpg-area-row .btn-link i {
                font-size: 0.75rem;
                vertical-align: middle;
                margin-right: 3px;
            }

            .grilla-pivot table thead .dxpg-area-row .btn-link:hover {
                text-decoration: none;
            }

            .grilla-pivot table thead .dxpg-area-row .btn-link .oi {
                color: #fff;
            }

    .grilla-pivot table thead .dxpg-area-data {
        background: #fff;
    }

        .grilla-pivot table thead .dxpg-area-data .btn-link {
            background-color: #337ab7 !important;
            border: none;
            color: #fff !important;
            font-size: 0.875rem;
            padding: .3rem .75rem;
            border-radius: 2px !important;
            -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
            -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
            box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        }

            .grilla-pivot table thead .dxpg-area-data .btn-link:hover {
                background-color: #959eaf !important;
            }

            .grilla-pivot table thead .dxpg-area-data .btn-link i {
                font-size: 0.75rem;
                vertical-align: middle;
                margin-right: 3px;
            }

            .grilla-pivot table thead .dxpg-area-data .btn-link:hover {
                text-decoration: none;
            }

            .grilla-pivot table thead .dxpg-area-data .btn-link .oi {
                color: #fff;
            }

        .grilla-pivot table thead .dxpg-area-data .btn-link {
            font-size: 0.75rem;
        }

    .grilla-pivot table thead .dxpg-area-column {
        background: #fff;
    }

        .grilla-pivot table thead .dxpg-area-column .btn-link {
            background-color: #337ab7 !important;
            border: none;
            color: #fff !important;
            font-size: 0.875rem;
            padding: .3rem .75rem;
            border-radius: 2px !important;
            -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
            -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
            box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        }

            .grilla-pivot table thead .dxpg-area-column .btn-link:hover {
                background-color: #959eaf !important;
            }

            .grilla-pivot table thead .dxpg-area-column .btn-link i {
                font-size: 0.75rem;
                vertical-align: middle;
                margin-right: 3px;
            }

            .grilla-pivot table thead .dxpg-area-column .btn-link:hover {
                text-decoration: none;
            }

            .grilla-pivot table thead .dxpg-area-column .btn-link .oi {
                color: #fff;
            }

    .grilla-pivot table tbody tr:last-child {
        border-bottom: 1px solid #d5d9e1 !important;
    }

    .grilla-pivot table tbody .dxpg-npc {
        background: #fff;
    }

        .grilla-pivot table tbody .dxpg-npc .btn-link {
            font-size: 0.75rem;
        }

    .grilla-pivot table tbody .dxpg-total-row .dxpg-data.dxpg-total.table-active {
        background: #eaeaea;
    }

.customtooltip {
    display: none;
    background-color: #337ab7;
    margin-left: 1px;
    margin-top: 4px;
    padding: 10px 20px;
    position: absolute;
    z-index: 999;
    width: 180px;
    height: auto;
    border-radius: 6px;
    color: #fff;
    text-align: left;
}

    .customtooltip a {
        color: #fff;
        margin-top: 10px;
    }

.tooltipHolder {
    cursor: pointer;
}

    .tooltipHolder:hover .customtooltip {
        display: inline-block;
    }

.dxbs-pager .dx-pager {
    justify-content: flex-start;
}

.dxbs-pager .pagination .page-item .page-link {
    background-color: #337ab7;
    border: none;
    color: #fff;
    font-size: 0.875rem;
    padding: .3rem .75rem;
    cursor: pointer !important;
    margin: 0 1px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    transition-property: background-color, color;
}

    .dxbs-pager .pagination .page-item .page-link:hover {
        background-color: #959eaf;
        color: #fff;
    }

    .dxbs-pager .pagination .page-item .page-link.page-count {
        border-radius: 3px;
        margin-left: 3px;
    }

    .dxbs-pager .pagination .page-item .page-link input {
        border: none;
        font-weight: 500;
    }

.hide-now .roller-footer {
    display: none;
}

.statusBar {
    background-color: #007bff;
    padding: 10px;
    margin: 5px;
    width: 100%;
    color: white;
    border-radius: 10px;
    text-align: center;
}

InputText {
    border-width: 0px;
}

.popup {
    height: calc(100vh - 3.5rem);
}

    .popup > .modal-content {
        top: 50%;
        transform: translate(0%, -50%);
    }

.dxbs-tagbox .form-control-sm .dx-blazor-tagbox-input-wrapper {
    width: 100%;
}

.control-panel {
    padding: 1rem;
}

    .control-panel .quick-stats-item {
        padding: 1.2rem 1.2rem 1.8rem;
        border-radius: 2px;
        margin-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }

    .control-panel .quick-stats-item-info {
        width: 100%;
    }

    .control-panel .quick-stats-item-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 3rem;
        color: #fff;
        height: 100%;
    }

    .control-panel .quick-stats-item-monto {
        font-weight: bold;
        margin: 0;
        font-size: 1.5rem !important;
        color: #fff;
    }

    .control-panel .quick-stats-item-desc {
        font-size: 1.1875rem;
        display: block;
        color: rgba(255, 255, 255, 0.8);
    }

    .control-panel .bg-green {
        background-color: #32c787 !important;
    }

    .control-panel .bg-light-green {
        background-color: #8BC34A !important;
    }

    .control-panel .bg-orange {
        background-color: #FF9800 !important;
    }

    .control-panel .bg-cyan {
        background-color: #00BCD4 !important;
    }

    .control-panel .bg-info {
        background-color: #03A9F4 !important;
    }

    .control-panel .bg-danger {
        background-color: #ff6b68 !important;
    }

.control-panel-item {
    margin: 15px 0;
}

.control-panel-item-header {
    padding: 1rem;
}

    .control-panel-item-header h4 {
        font-size: 1.1875rem;
        font-weight: 400;
        color: #fff;
    }

.control-panel table thead tr th {
    background-color: #f6f6f6;
}

.tipo-venta-wrapper {
    background-color: #00BCD4;
    overflow: hidden;
}

.tipo-venta-content {
    padding: 0 1rem 1rem;
}

    .tipo-venta-content h3 {
        font-size: 1.5rem !important;
        color: #fff;
    }

.progress-bar-item {
    padding: 1rem 1rem 0;
}

.progress-bar-item-heading {
    font-size: 0.75rem;
}

    .progress-bar-item-heading .nombre-item {
        font-weight: 500;
    }

.progress-bar-item .dx-progressbar .dx-progressbar-status {
    display: none;
}

#editorMapa {
    height: 82%;
    position: fixed !important;
    width: 100%;
    left: 0;
}

.lista-lateral-restaurantes {
    position: fixed;
    width: 250px;
    top: 126px;
    right: 0;
    background-color: #fff;
    height: 88vh;
    z-index: 999;
    padding: 40px 25px 0;
    -webkit-transition: right .3s ease-in;
    /* Chrome < 26, Safari < 7 */
    -moz-transition: right .3s ease-in-out;
    /* Firefox < 16 */
    -o-transition: right .3s ease-in-out;
    /* Opera < 12.10 */
    transition: right .3s ease-in-out;
    /* Chrome 26-35, Safari, Opera 15-23 */
    transition: right .3s ease-in-out;
    /* IE10+, Firefox 16+, Chrome 36+, Opera 12.10 */
}

    .lista-lateral-restaurantes.isClosed {
        right: -250px;
    }

    .lista-lateral-restaurantes .cerrar-lista {
        position: absolute;
        top: 8px;
        right: 8px;
        cursor: pointer;
        font-size: 1.5rem;
    }

    .lista-lateral-restaurantes .abrir-lista {
        position: absolute;
        top: 22px;
        left: -27px;
        cursor: pointer;
        color: #fff;
        font-size: 2rem;
    }

    .lista-lateral-restaurantes .hide {
        display: none;
    }

    .lista-lateral-restaurantes ul {
        list-style: none;
        padding: 0;
        margin-bottom: 5px;
        color: #959eaf;
    }

        .lista-lateral-restaurantes ul li {
            list-style: none;
        }

            .lista-lateral-restaurantes ul li.zona-wrapper {
                border-bottom: 1px solid #ededed;
                padding: 5px 0;
            }

            .lista-lateral-restaurantes ul li i {
                margin-left: 5px;
                color: #337ab7;
                font-size: 0.875rem;
                vertical-align: middle;
                cursor: pointer;
            }

        .lista-lateral-restaurantes ul .zona-item {
            font-size: 0.875rem;
            padding-left: 25px;
            margin: 6px 0 3px;
        }

/*General*/
#scrolling-container {
        height: auto;
    width: 100%;
    overflow-x: auto;
    -webkit-box-shadow: 0 2px 18px 1px rgba(149, 158, 175, 0.5) !important;
    -moz-box-shadow: 0 2px 18px 1px rgba(149, 158, 175, 0.5) !important;
    box-shadow: 0 2px 18px 1px rgba(149, 158, 175, 0.5) !important;
    border-radius: 2px;
}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.main {
    flex: 1;
}

    .main .top-row {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
        justify-content: flex-end;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.sidebar {
    background-image: linear-gradient(180deg, #052767 0%, #3a0647 70%);
}

    .sidebar.top-row {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .sidebar.navbar-brand {
        font-size: 1rem;
    }

    .sidebar.oi {
        width: 2rem;
        font-size: 1rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar.nav-item {
        font-size: 0.875rem;
        padding-bottom: 0.5rem;
    }

        .sidebar.nav-item:first-of-type {
            padding-top: 1rem;
        }

        .sidebar.nav-item:last-of-type {
            padding-bottom: 1rem;
        }

        .sidebar.nav-item a {
            color: #d7d7d7;
            border-radius: 4px;
            height: 3rem;
            display: flex;
            align-items: center;
            line-height: 3rem;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            transition-property: background-color, color;
        }

            .sidebar.nav-item a.active {
                background-color: rgba(255, 255, 255, 0.25);
                color: white;
            }

                .sidebar.nav-item a.active:hover {
                    background-color: rgba(255, 255, 255, 0.1);
                    color: white;
                }

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

    .validation-message.msge-alerta {
        font-size: 0.75rem;
        margin-top: 5px;
    }

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/*END CHECKEAR*/
.pointer {
    cursor: pointer;
}

/*Wrappers bloques*/
.wrapper-bloque {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    background-color: #fff;
    border-radius: 2px;
    padding: 10px;
}

/*Botones*/
.btn-filtros {
    background-color: #fff;
    border: none;
    width: 100%;
    height: 50px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    font-size: 0.875rem;
    color: #a7b1c2;
    border-radius: 0;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
}

    .btn-filtros.btn-dark {
        background-color: #337ab7;
        color: #fff;
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        transition-property: background-color, color;
    }

        .btn-filtros.btn-dark:hover, .btn-filtros.btn-dark:active {
            background-color: #959eaf !important;
            color: #fff;
        }

    .btn-filtros:hover {
        background-color: #eee;
        color: #a7b1c2;
    }

/*Textos*/
h3,
h2 {
    color: #959eaf;
    font-size: 2rem !important;
    font-weight: 500 !important;
}

h2 {
    font-size: 1.75rem !important;
}

    h2.titulo-reporte {
        color: #fff;
        font-weight: 500 !important;
        font-size: 1.25rem !important;
        border-left: 3px solid #fff;
        padding-left: 15px;
        margin: 0 0 0 15px;
    }

.gris-primario, .gris-primario-12, .gris-primario-14 {
    color: #959eaf !important;
    margin-bottom: 0;
}

.gris-primario-12 {
    font-size: 0.75rem !important;
}

.gris-primario-14 {
    font-size: 0.875rem !important;
}

.gris-secundario, .gris-secundario-14 {
    color: #737577 !important;
    margin-bottom: 0;
}

.gris-secundario-14 {
    font-size: 0.875rem !important;
}

.white-space-no {
    white-space: nowrap;
}

.green-check {
    color: green;
}

.red-cross {
    color: #dc3545;
}

.blue-info {
    color: #337ab7;
}

html,
body {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
    height: 100%;
}

.main-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .main-wrapper .container-fluid {
        flex: 1 0 auto;
        background-color: #f6f6f6;
    }

        .main-wrapper .container-fluid .header-title {
            background-color: #337ab7;
            padding: 20px 0;
            border-bottom: 1px solid #d5d9e1;
        }

form .input-transparent {
    background-color: black !important;
    border: none;
    border-bottom: 1px solid #116790 !important;
    border-radius: 0;
    color: #fff;
}

.form-control,
.dxbs-tagbox-input {
    /* Chrome/Opera/Safari */
}

    .form-control::-webkit-input-placeholder,
    .dxbs-tagbox-input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #959eaf !important;
        font-size: 0.8rem !important;
        font-weight: 400 !important;
    }

    .form-control::-moz-placeholder,
    .dxbs-tagbox-input::-moz-placeholder {
        /* Firefox 19+ */
        color: #959eaf !important;
        font-size: 0.8rem !important;
        font-weight: 400 !important;
    }

    .form-control:-ms-input-placeholder,
    .dxbs-tagbox-input:-ms-input-placeholder {
        /* IE 10+ */
        color: #959eaf !important;
        font-size: 0.8rem !important;
        font-weight: 400 !important;
    }

    .form-control:-moz-placeholder,
    .dxbs-tagbox-input:-moz-placeholder {
        /* Firefox 18- */
        color: #959eaf !important;
        font-size: 0.8rem !important;
        font-weight: 400 !important;
    }

    .form-control:focus {
        color: #495057;
    }

.busqueda-sucursales {
    position: relative;
    width: 100%;
    /*.select-all-check {
        background-color: #fff;
        padding: .25rem 1rem;
        margin-left: 3px;
        border: 1px solid #d5d9e1;
        width: 100%;
        border-bottom: none;
        @include flexbox;
        justify-content: flex-end;

        .button-blue {
            font-size: $font-12;
            height: 28px;
            span {
                vertical-align: middle;
            }
            i {
                color: #fff;
                margin-right: 0;
                font-size: $font-14;
            }
        }
    }*/
}

.search-sucursales {
    margin-left: 3px;
    width: 100%;
    max-height: 56px;
    overflow: auto;
    border: 1px solid #d5d9e1;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
}

    .search-sucursales .dropdown-menu {
        border: none;
    }

        .search-sucursales .dropdown-menu .dropdown-item {
            font-size: 0.75rem;
            font-weight: 400;
            color: #959eaf;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            transition-property: background-color, color;
        }

            .search-sucursales .dropdown-menu .dropdown-item:hover, .search-sucursales .dropdown-menu .dropdown-item:active {
                background-color: transparent;
                color: #337ab7;
            }

    .search-sucursales .dx-texteditor-container .dx-texteditor-input-container {
        padding: 0;
    }

        .search-sucursales .dx-texteditor-container .dx-texteditor-input-container .dx-placeholder {
            color: #959eaf !important;
            font-size: 0.8rem !important;
            font-weight: 400 !important;
        }

        .search-sucursales .dx-texteditor-container .dx-texteditor-input-container .dx-tag .dx-tag-content {
            background-color: #eaeaea;
            color: #959eaf;
            font-size: 0.75rem;
        }

        .search-sucursales .dx-texteditor-container .dx-texteditor-input-container .dx-texteditor-input {
            color: #959eaf !important;
            font-size: 0.8rem !important;
            font-weight: 400 !important;
        }

    .search-sucursales .dropdown-menu .dropdown-item {
        padding-left: 16px;
    }

        .search-sucursales .dropdown-menu .dropdown-item::before {
            content: "";
            position: relative;
            opacity: 1;
            background-color: transparent;
            border: 1px solid #959eaf;
            padding: 0px 9px;
            border-radius: 3px;
            margin-right: 5px;
        }

        .search-sucursales .dropdown-menu .dropdown-item.dxbs-listbox-active::before {
            content: url("../assets/check-icon-white.png");
            background-color: #337ab7;
            padding: 1px 5px;
            border: none;
            margin-right: 2px;
        }

    .search-sucursales .form-control {
        border: 1px solid #d5d9e1;
        font-size: 0.75rem;
        padding: 0.35rem .75rem;
        height: auto;
        color: #959eaf;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
        box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    }

.search-sucursales-pedidos .dx-dropdown-list-container {
    /*display: none !important;*/
    /*.dropdown-menu {
                top: 70px!important;
            }*/
}

.search-sucursales .dx-blazor-tagbox.form-control {
    border-radius: 3px !important;
    border-bottom: none;
    border-top: none;
}

.search-sucursales-wrapper {
    position: absolute;
    width: 100%;
    z-index: 999;
    margin-top: 3px;
}

    .search-sucursales-wrapper .form-control {
        box-shadow: none !important;
    }

.search-sucursales.dropdown-sucursales {
    min-height: 130px;
}

    .search-sucursales.dropdown-sucursales ul li div {
        line-height: 23px;
    }

        .search-sucursales.dropdown-sucursales ul li div span {
            font-size: 0.75rem;
            color: #959eaf;
        }

    .search-sucursales.dropdown-sucursales ul li.dxbs-listbox-active .custom-control-label::before {
        border-color: #337ab7;
        background-color: #337ab7;
    }

.orderStates {
    background-color: blue;
}

.dx-overlay-wrapper .dx-overlay-content .dx-scrollable-wrapper .dx-scrollable-content .dx-list-item,
.dx-overlay-wrapper .dx-overlay-content .dx-scrollable-wrapper .dx-scrollable-content .dx-list-select-all {
    font-size: 0.875rem;
    font-weight: 300;
    color: #959eaf;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    transition-property: background-color, color;
}

.dx-overlay-wrapper .dx-overlay-content .dx-scrollable-wrapper .dx-scrollable-content .dx-checkbox {
    margin-top: -3px;
}

    .dx-overlay-wrapper .dx-overlay-content .dx-scrollable-wrapper .dx-scrollable-content .dx-checkbox .dx-checkbox-container .dx-checkbox-icon {
        width: 18px;
        height: 18px;
    }

    .dx-overlay-wrapper .dx-overlay-content .dx-scrollable-wrapper .dx-scrollable-content .dx-checkbox.dx-list-select-all-checkbox {
        margin-top: 0 !important;
    }

.dx-overlay-wrapper .dx-overlay-content .dx-toolbar-items-container .dx-toolbar-button .dx-button {
    background-color: #337ab7 !important;
    border: none;
    color: #fff !important;
    font-size: 0.875rem;
    padding: .3rem .75rem;
    border-radius: 2px !important;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
}

    .dx-overlay-wrapper .dx-overlay-content .dx-toolbar-items-container .dx-toolbar-button .dx-button:hover {
        background-color: #959eaf !important;
    }

    .dx-overlay-wrapper .dx-overlay-content .dx-toolbar-items-container .dx-toolbar-button .dx-button i {
        font-size: 0.75rem;
        vertical-align: middle;
        margin-right: 3px;
    }

    .dx-overlay-wrapper .dx-overlay-content .dx-toolbar-items-container .dx-toolbar-button .dx-button .dx-button-content {
        padding: 3px 0;
    }

.button-blue,
.btn-primary {
    background-color: #337ab7 !important;
    border: none;
    color: #fff !important;
    font-size: 0.875rem;
    padding: .3rem .75rem;
    border-radius: 2px !important;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    transition-property: background-color, color;
}

    .button-blue:hover,
    .btn-primary:hover {
        background-color: #959eaf !important;
    }

    .button-blue i,
    .btn-primary i {
        font-size: 0.75rem;
        vertical-align: middle;
        margin-right: 3px;
    }

.button-blue-full {
    background-color: #337ab7;
    border: none;
    width: 100%;
    height: 50px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    font-size: 0.75rem;
    border-radius: 2px !important;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    transition-property: background-color, color;
}

    .button-blue-full:hover {
        background-color: #fff;
        color: #337ab7;
    }

.spinner-loading {
    color: #337ab7;
    font-size: 1.5rem;
}

.spinner-border {
    color: #337ab7;
    font-size: 0.875rem;
}

.msge-warning {
    font-size: 0.75rem;
    color: red;
    margin: 10px 0;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.overlay-icon {
    color: #337ab7;
    font-size: 3rem;
    position: absolute;
}

.overlay-title {
    color: #337ab7;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.overlay-white {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .overlay-white i {
        color: #337ab7;
        font-size: 3rem;
    }

.to-cap {
    text-transform: capitalize;
}

.btn {
    font-family: "Poppins", sans-serif !important;
    font-weight: 400 !important;
}

.btn-primary {
    font-size: 0.875rem !important;
    padding: .3rem .75rem !important;
}

.pointer {
    cursor: pointer;
}

/*Detalle Pedido*/
.no-border-left {
    border-left: none !important;
}

.no-border-right {
    border-right: none !important;
}

/*Pop Ups*/
.popup-danger .custom-header {
    background-color: #dc3545 !important;
    padding: 10px 15px;
}

.popup-danger .modal-body {
    color: #dc3545;
}

    .popup-danger .modal-body .input-group .form-control {
        height: calc(1.5em + .5rem + 7px);
    }

.popup-danger .modal-footer {
    padding: 10px;
}

    .popup-danger .modal-footer button {
        background-color: #dc3545 !important;
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        transition-property: background-color, color;
    }

        .popup-danger .modal-footer button:hover {
            background-color: #959eaf !important;
        }

.popup-primary .custom-header {
    background-color: #337ab7 !important;
    padding: 10px 15px;
}

.popup-primary .modal-body {
    color: #337ab7;
}

    .popup-primary .modal-body .input-group .form-control {
        height: calc(1.5em + .5rem + 7px);
    }

.popup-primary .modal-footer {
    padding: 10px;
}

    .popup-primary .modal-footer button {
        background-color: #337ab7 !important;
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        transition-property: background-color, color;
    }

        .popup-primary .modal-footer button:hover {
            background-color: #959eaf !important;
        }

/*Footer*/
.footer {
    border-top: none !important;
    background-color: #fff !important;
    color: #737577 !important;
    flex-shrink: 0;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    -moz-box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
    box-shadow: 0px 0px 5px 0px rgba(149, 158, 175, 0.5) !important;
}

    .footer img {
        max-width: 60px;
    }

    .footer p {
        margin: 0 0 0 25px;
        font-size: 0.75rem;
        color: #737577;
    }

    .footer .version {
        margin: 0 0 0 2px;
        padding: 12px;
        font-size: 0.65rem;
        background-color: green;
        color: #fff;
        border-radius: 10px;
    }

/*Responsive*/
@media (max-width: 1140px) {
    .toolbar-pedidos-search .search-btn {
        padding: .3rem 0rem;
    }

    .orderFormPopup {
        max-width: 95vw;
        margin: 2% auto;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 25px;
    }
    /*Pedidos*/
    .toolbar-pedidos {
        height: auto;
        padding: 25px 0;
    }

    .toolbar-pedidos-date .datepicker {
        margin-bottom: 16px;
    }

    .toolbar-pedidos-date .toolbar-pedidos-today {
        text-align: center;
    }

        .toolbar-pedidos-date .toolbar-pedidos-today button {
            width: 100%;
            max-width: 100%;
        }
}

@media (max-width: 767px) {
    .login .resto .logo {
        width: 100% !important;
        height: auto !important;
    }

        .login .resto .logo p.logo-title {
            font-size: 0.75rem !important;
        }

    .grilla-pedidos-container {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

    .grilla-pedidos table tbody td {
        padding: 2px 2px;
        font-size: 0.625rem;
        font-weight: 400;
    }

        .grilla-pedidos table tbody td .button-blue,
        .grilla-pedidos table tbody td tr th {
            font-size: 0.625rem !important;
        }

    .toolbar-pedidos .daterangepicker .drp-buttons .btn {
        font-size: 0.75rem !important;
    }

    .toolbar-pedidos .daterangepicker td.in-range, .toolbar-pedidos .daterangepicker td.active {
        font-size: 0.625rem !important;
    }

    .calendar .daterangtable td {
        font-size: 0.625rem !important;
    }
}

@media (max-width: 540px) {
    .main-navbar .nav-item .nav-link {
        font-size: 0.625rem;
        padding: .5rem;
    }

        .main-navbar .nav-item .nav-link i {
            font-size: 0.625rem;
        }

    .main-navbar .icon-profile {
        font-size: 1rem !important;
    }

    .main-navbar .sub-menu-box {
        width: 195px;
        padding: 10px;
    }

        .main-navbar .sub-menu-box a {
            font-size: 0.625rem;
        }

    .daterangepicker .calendar-table th,
    .daterangepicker .calendar-table td {
        line-height: 18px !important;
        font-size: 0.625rem !important;
        height: 19px !important;
    }

    #myNav ul {
        display: flex;
        justify-content: space-between;
        list-style-type: none;
        padding: 0;
    }

        #myNav ul.right-align {
            justify-content: flex-end;
        }
}
