﻿body {
    margin: 0;
    padding: 0;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transition: 1s;
}

    .preloader:before {
        content: '';
        position: absolute;
        left: 0;
        width: 50%;
        height: 100%;
        background: #000;
    }

/* Cambiar estilos de autocompletado por navegadores*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: inherit;
    /*-webkit-box-shadow: 0 0 0px 1000px #000 inset;*/
    transition: background-color 5000s ease-in-out 0s;
}

::placeholder {
    color: #D3DCE6;
}

.input-sae::placeholder {
    opacity: 1;
}

/* ------------ INPUT CHECKBOX SETS ------------*/
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type=checkbox],
    input[type=radio] {
        --active: #275EFE;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover: #275EFE;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

        input[type=checkbox]:after,
        input[type=radio]:after {
            content: "";
            display: block;
            left: 0;
            top: 0;
            position: absolute;
            transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
        }

        input[type=checkbox]:checked,
        input[type=radio]:checked {
            --b: var(--active);
            --bc: var(--active);
            --d-o: .3s;
            --d-t: .6s;
            --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
        }

        input[type=checkbox]:disabled,
        input[type=radio]:disabled {
            --b: var(--disabled);
            cursor: not-allowed;
            opacity: 0.9;
        }

            input[type=checkbox]:disabled:checked,
            input[type=radio]:disabled:checked {
                --b: var(--disabled-inner);
                --bc: var(--border);
                background-color: lightslategray;
            }

            input[type=checkbox]:disabled + label,
            input[type=radio]:disabled + label {
                cursor: not-allowed;
            }

        input[type=checkbox]:hover:not(:checked):not(:disabled),
        input[type=radio]:hover:not(:checked):not(:disabled) {
            --bc: var(--border-hover);
        }

        input[type=checkbox]:focus,
        input[type=radio]:focus {
            box-shadow: 0 0 0 var(--focus);
        }

        input[type=checkbox]:not(.switch),
        input[type=radio]:not(.switch) {
            width: 21px;
        }

            input[type=checkbox]:not(.switch):after,
            input[type=radio]:not(.switch):after {
                opacity: var(--o, 0);
            }

            input[type=checkbox]:not(.switch):checked,
            input[type=radio]:not(.switch):checked {
                --o: 1;
            }

        input[type=checkbox] + label,
        input[type=radio] + label {
            font-size: 14px;
            line-height: 21px;
            display: inline-block;
            vertical-align: top;
            cursor: pointer;
            margin-left: 4px;
        }

        input[type=checkbox]:not(.switch) {
            border-radius: 7px;
        }

            input[type=checkbox]:not(.switch):after {
                width: 5px;
                height: 9px;
                border: 2px solid var(--active-inner);
                border-top: 0;
                border-left: 0;
                left: 7px;
                top: 4px;
                transform: rotate(var(--r, 20deg));
            }

            input[type=checkbox]:not(.switch):checked {
                --r: 43deg;
            }

        input[type=checkbox].switch {
            width: 38px;
            border-radius: 11px;
        }

            input[type=checkbox].switch:after {
                left: 2px;
                top: 2px;
                border-radius: 50%;
                width: 15px;
                height: 15px;
                background: var(--ab, var(--border));
                transform: translateX(var(--x, 0));
            }

            input[type=checkbox].switch:checked {
                --ab: var(--active-inner);
                --x: 17px;
            }

            input[type=checkbox].switch:disabled:not(:checked):after {
                opacity: 0.6;
            }

    input[type=radio] {
        border-radius: 50%;
    }

        input[type=radio]:after {
            width: 19px;
            height: 19px;
            border-radius: 50%;
            background: var(--active-inner);
            opacity: 0;
            transform: scale(var(--s, 0.7));
        }

        input[type=radio]:checked {
            --s: .5;
        }
}


/* ------------ Login ------------*/

.bg-login {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url(../img/fondo-sae-v.2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #5699EF;
}

.wrapper-login {
    position: relative;
    background-color: #ffffff;
    width: 62vh;
    color: inherit;
    padding: 15px 20px 20px 20px;
    border-radius: 8px;
    box-shadow: 0px 6px 12px rgb(58 58 58 / 15%);
}

/* Estilos para el input */
.input-login-sae {
    height: 48px;
    background-image: none;
    background-color: transparent !important;
    color: rgba(60, 72, 88, 1) !important;
    font-size: 14px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #D3DCE6;
    padding-left: 42px;
    padding-right: 0;
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    display: block;
    width: 100%;
    letter-spacing: 0.3px;
    font-weight: 400;
    line-height: 1.5;
}

    /* Modificar el tamaño y color del placeholder */
    .input-login-sae::placeholder {
        
        color: rgba(0, 0, 0, 0.4);
        font-weight:800;
    }


    .input-login-sae:focus {
        outline: none;
        border-bottom: 1px solid #1572E8;
    }

        .input-login-sae:focus + .icon {
            border: 1px solid #ffffff;
            background-color: #B4CEF0;
            color: #1572E8;
        }

/*input[type="checkbox"] {
    transition: all 0.2s cubic-bezier(0.65, 0, 0.076, 1);
}

input[type="checkbox"]:checked {
    transform: scale(1.1);
    background: #1572E8;
    box-shadow: inset 0 0 0 10px #1572E8;
    border: 1px solid #3C4858;
}

input[type="checkbox"] + label{
    margin: 0 10px;
}

input[type="checkbox"]:checked + label {
    color: #1572E8;
}*/

.form-group .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    border: 1px solid #D3DCE6;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: -2px;
    bottom: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    font-size: 18px;
}

/* ------------ Navbar Menu Dropdown------------*/
.navbar-blue {
    background: linear-gradient(90deg, #1570E4 0%, #0A4DA4 100%);
    box-shadow: 0px 8px 16px rgba(58, 58, 58, 0.2);
    z-index: 50;
}

.mini-sidebar-sae {
    padding: 30px 0;
    margin: 0px 6px;
}

.sidebar-sae {
    padding: 30px 0;
    margin: 0px 13px;
}

ul#side-menu.nav.metismenu > li > a {
    border-radius: 8px;
}

.navbar-header {
    display: flex;
    align-items: center;
}

    .navbar-header img {
        height: 24px;
        width: inherit;
    }

/*.sidebar-collapse {
    margin: 0px 13px;
}*/
.nav .nav-second-level {
    border-left: 4px solid #F8F8F8;
}

.wrapper-btn-dropdown {
    margin: 16px 32px;
    margin-left: -5rem;
}

.btn-rounded-dropdown {
    background: #F8F8F8;
    border: 1px solid #E1E3E6;
    border-radius: 50%;
    color: #757D8A;
    padding: 0.2655rem 0.3625rem;
    font-size: 9px;
    transition: .3s;
}

    .btn-rounded-dropdown:hover {
        background-color: #EDF5FE;
        color: #1572E8;
        border-color: #5699EF;
    }

.navbar-static-top .dropdown-menu-sae {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2), 0px 2px 0px #1269DB;
    right: 14px;
    top: 88%;
    left: auto;
    padding: 4px 14px;
    max-width: 16rem;
    min-width: 14rem;
    transition: 0.3s all;
    border-radius: 5px;
}

.dropdown-menu-sae::after {
    content: "";
    position: absolute;
    transition: all 0.3s ease-in;
    top: -17px;
    left: calc(87% - 10px);
    border-top: 10px solid transparent;
    border-bottom: 8px solid #FFFFFF;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.dropdown-menu-sae .btn-link-dropdown {
    padding: 12px 0 12px 4px;
    text-align: left;
    color: #3C4858;
    width: 100%;
    border-radius: 0px;
    transition: .3s;
}

.btn-link-dropdown:hover {
    background-color: #1269DB;
    border-radius:12px;
    color: #f8f8f8;
}

.divider-dropdown-sae {
    height: 0;
    margin: 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}
/* ------------ Hamburger Menu Icon ------------*/
.hamburger-menu {
    width: 5rem;
    height: 4rem;
    position: relative;
    cursor: pointer;
    display: inline-block;
    border-radius: 0px 50px 50px 0px;
    transition: 2s;
}

    .hamburger-menu span {
        background-color: #C3C7CE;
        position: absolute;
        border-radius: 2px;
        transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    }

    .hamburger-menu:hover span {
        background-color: #F8F8F8;
        transition: .3s;
    }


    .hamburger-menu span:nth-child(1) {
        width: 40%;
        height: 3px;
        display: block;
        top: 33%;
        left: 25%;
    }

    .hamburger-menu span:nth-child(2) {
        width: 40%;
        height: 3px;
        display: block;
        top: 47%;
        left: 25%;
    }

    .hamburger-menu span:nth-child(3) {
        width: 40%;
        height: 3px;
        display: block;
        bottom: 33%;
        left: 25%;
    }

    .hamburger-menu:not(.open):hover span:nth-child(1) {
        width: 40%;
        display: block;
        top: 33%;
        left: 25%;
        transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    }

.hamburger-menu(.open):hover span:nth-child(2) {
    width: 40%;
    display: block;
    top: 47%;
    left: 25%;
    transition: .4s cubic-bezier(.8, .5, .2, 1.4);
}

.hamburger-menu(.open):hover span:nth-child(3) {
    width: 40%;
    display: block;
    bottom: 33%;
    left: 25%;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
}

.hamburger-menu.open span:nth-child(1) {
    left: 25%;
    top: 33%;
    width: 35%;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    transition-delay: 150ms;
}

.hamburger-menu.open span:nth-child(2) {
    left: 25%;
    top: 47%;
    width: 20%;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    transition-delay: 50ms;
}

.hamburger-menu.open span:nth-child(3) {
    bottom: 33%;
    left: 25%;
    width: 9%;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    transition-delay: 100ms;
}

/* ------------ Header Row ------------*/

.bg-linear-blue {
    background: linear-gradient(90deg, #1570E4 0%, #0A4DA4 100%);
    padding-bottom: 3.5em;
}

.header-h4-bold {
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    color: #f8f8f8;
}

.header-h4 {
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 24px;
    color: rgba(248, 248, 248, 0.7);
    width: inherit;
}

.header-h3 {
    font-size: 1.875em;
    font-weight: 600;
    line-height: 1.5em;
    margin-top: 10px;
    margin-bottom: 10px;
}

.breadcrumb-sae {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    border-radius: 0.25rem;
    color: #f8f8f8;
}

ol.breadcrumb-sae li + li:before {
    padding: 0px 0.25rem;
    color: #B4CEF0;
    content: "/\00a0";
}

ol.breadcrumb-sae li a {
    color: #B4CEF0;
    text-decoration: none;
}

    ol.breadcrumb-sae li a:hover {
        color: #f8f8f8;
    }

/* ------------ Cards ------------*/
.card-content-sae {
    clear: both;
    margin-bottom: 25px;
    margin-top: -3.5em;
    padding: 0;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0px 6px 12px rgb(58 58 58 / 15%);
}

/* ------------ Buttons ------------*/
.btn-floating {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    width: 12rem;
    height: auto;
    background: red;
}

    .btn-floating .btn-floating--icon {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        margin: 0;
        width: 100%;
        height: 3rem;
    }

        .btn-floating .btn-floating--icon::before {
            transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
            content: '';
            position: absolute;
            background-position: left top;
            top: 0;
            right: 0;
            width: 3rem;
            height: 100%;
            border-radius: 1.625rem;
            background: linear-gradient(180deg, #1770E3 -10.23%, #0B4EA5 114.77%);
            box-shadow: 0px 2px 9px rgba(56, 78, 105, 0.25);
        }

        .btn-floating .btn-floating--icon i {
            transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
            position: absolute;
            top: 34%;
            right: 9%;
            margin: auto;
        }

    .btn-floating .btn-floating--text {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: absolute;
        top: 0;
        left: 0;
        padding: 0.75rem 0;
        margin: 0 0 0 1.85rem;
        color: #1572E8;
        font-weight: 600;
        line-height: 1.6;
        text-align: center;
    }

    .btn-floating:hover .btn-floating--icon::before {
        width: 100%;
    }

    .btn-floating:hover .btn-floating--text {
        color: #fff;
    }

.btn-sae-primary {
    /*background: linear-gradient(180deg, 0%, 100%);*/
    background: linear-gradient(to bottom, #1570E4, #0A4DA4);
    letter-spacing: 0.3px;
    border-radius: 5px;
    font-weight: 500;
    color: #fefefe;
    transition: all 0.3s;
    border:none;
}

    .btn-sae-primary:hover {
        background: linear-gradient(to bottom, #1570E4, #0A4DA4);
        opacity: 0.8;
        color: #fefefe;
    }

    .btn-sae-primary:focus {
        background: linear-gradient(to bottom, #1570E4, #0A4DA4);
        border: 1px solid #D3DCE6;
        box-sizing: border-box;
        box-shadow: inset 0px 4px 4px rgba(109, 116, 252, 0.4);
    }

.btn-sae-secondary {
    background-color: #FEFEFE;
    letter-spacing: 0.3px;
    border-radius: 5px;
    border: 1px solid #E1E3E6;
    font-weight: 500;
    color: #1572E8;
    transition: all 0.3s;
}

    .btn-sae-secondary:hover {
        background-color: #EDF5FE;
        border-color: #1572E8;
        color: #1572E8;
    }

    .btn-sae-secondary:focus {
        background-color: #EDF5FE;
        box-shadow: inset 0px 4px 4px rgba(21, 114, 232, 0.4);
        border-color: #1572E8;
        color: #1572E8;
    }

.btn-sae-primary-link {
    transition: all 0.3s;
    background-color: transparent;
    font-weight: 500;
    color: #1572E8;
    transform: scale(1);
}

    .btn-sae-primary-link:hover {
        color: rgba(68, 138, 255, 0.7);
    }

    .btn-sae-primary-link:focus {
        transform: scale(0.981);
        box-shadow: none;
    }

/*------ Buttons Actions--------*/

/*--------Violeta*/
.btn-one {
    color: #5554D6;
    background-color: #F8F8F8;
    border: 1px solid #E1E3E6;
    border-radius: 4px;
    transform: scale(1);
    transition: 0.3s;
}

    .btn-one:hover {
        color: #5554D6;
        border: 1px solid #5554D6;
        background-color: #C5CBFF;
        transform: scale(.9);
    }

/*--------Amarillo*/
.btn-two {
    color: #E6BA4F;
    background-color: #F8F8F8;
    border: 1px solid #E1E3E6;
    border-radius: 4px;
    transform: scale(1);
    transition: 0.3s;
}

    .btn-two:hover {
        color: #E6BA4F;
        border: 1px solid #E6BA4F;
        background-color: #FAF3C9;
        transform: scale(.9);
    }

/*--------Celeste*/
.btn-three {
    color: #52B2D8;
    background-color: #F8F8F8;
    border: 1px solid #E1E3E6;
    border-radius: 4px;
    transform: scale(1);
    transition: 0.3s;
}

    .btn-three:hover {
        color: #52B2D8;
        border: 1px solid #52B2D8;
        background-color: #C2EDFF;
        transform: scale(.9);
    }

/*--------Naranja*/
.btn-four {
    color: #F18B44;
    background-color: #F8F8F8;
    border: 1px solid #E1E3E6;
    border-radius: 4px;
    transform: scale(1);
    transition: 0.3s;
}

    .btn-four:hover {
        color: #F18B44;
        border: 1px solid #F18B44;
        background-color: #FEDEC7;
        transform: scale(.9);
    }

/*--------Verde*/
.btn-five {
    color: #37BC89;
    background-color: #F8F8F8;
    border: 1px solid #E1E3E6;
    border-radius: 4px;
    transform: scale(1);
    transition: 0.3s;
}

    .btn-five:hover {
        color: #37BC89;
        border: 1px solid #37BC89;
        background-color: #C3EBDC;
        transform: scale(.9);
    }

/*--------Rojo*/
.btn-six {
    color: #EE4E43;
    background-color: #F8F8F8;
    border: 1px solid #E1E3E6;
    border-radius: 4px;
    transform: scale(1);
    transition: 0.3s;
}

    .btn-six:hover {
        color: #EE4E43;
        border: 1px solid #EE4E43;
        background-color: #FBCAC7;
        transform: scale(.9);
    }

/* ------------ Form elements ------------*/

.label-sae {
    font-family: 'Bebas Neue', cursive;
    position: absolute;
    top: -24px;
    left: 16px;
    letter-spacing: 0.5px;
    font-weight: 400;
    transition: all 0.3s;
    color: #8492A6;
}

.input-sae {
    background-color: #FFFFFF;
    background-image: none;
    outline: none;
    color: inherit;
    display: block;
    padding: 9px 12px;
    transition: border-color 0.35s ease-in-out 0s, box-shadow 0.25s ease-in-out 0s;
    width: 100%;
    border-radius: 5px;
    font-size: 0.9rem;
    border: 1px solid #D3DCE6;
}

    .input-sae:focus {
        border: 1px solid #1572E8;
        box-shadow: 0 0 0 0.25rem rgb(21 114 232 / 25%);
    }

        .input-sae:focus + label {
            color: #3C4858;
        }
.table-sae-item-style{
    text-align: center;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;

}
.table-sae {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: transparent;
    text-align: center;
}

    .table-sae tbody th {
        padding: 6px 0px;
        background-color: #ffffff;
        font-family: Bebas Neue;
        font-weight: 400;
        color: #8492A6;
        font-size: 1rem;
        letter-spacing: .3px;
        border-bottom: 1px solid #C2CEDB;
        text-align: center;
    }

    .table-sae tbody td {
        padding: 8px 0px;
        color: #3C4858;
        border-bottom: 1px solid #C2CEDB;
    }

    .table-sae > tbody td:first-child {
        font-weight: 500;
    }

    .table-sae tbody tr:nth-of-type(odd) {
        background-color: #EEF3F6;
    }

    .table-sae table:last-child tbody td {
        border-bottom: 1px solid transparent;
    }

    .table-sae table:last-child tbody tr:first-child {
        background-color: transparent;
    }

    .table-sae table:last-child tbody tr td span {
        padding: .6rem .9rem;
        font-weight: 600;
        background-color: #1572E8;
        color: #FEFEFE;
        border-radius: 8px;
        box-shadow: 0px 0px 6px 1px #1572E8;
    }

    .table-sae table:last-child tbody tr td a {
        padding: .6rem .9rem;
        font-weight: 600;
        background-color: transparent;
        color: #787878;
        transition: 0.3s all;
    }

        .table-sae table:last-child tbody tr td a:hover {
            color: #1269DB;
        }

.badge__no-iniciado {
    background-color: #E1E3E6;
    color: #757D8A;
    border: 1px solid #757D8A;
    border-radius: 1.25rem;
}

.badge__terminado {
    background-color: #E6F4E7;
    color: #82C785;
    border: 1px solid #82C785;
    border-radius: 1.25rem;
}

.badge__en-proceso {
    background-color: #FFF1DB;
    color: #FFB74D;
    border: 1px solid #FFB74D;
    border-radius: 1.25rem;
}

.badge__cancelado {
    background-color: #FFE8EA;
    color: #DB4558;
    border: 1px solid #DB4558;
    border-radius: 1.25rem;
}

/* Custom  input hidden and his label */

.input-file-hidden {
    position: absolute;
    visibility: hidden;
    z-index: -1;
}

.showName-icon {
    background-color: #E0EEFB;
    color: #62ACED;
    font-size: 20px;
    font-weight: 400;
    border-left: 4px solid #62ACED;
    border-bottom: 1px solid #62ACED;
    border-top: 1px solid #62ACED;
    line-height: 1;
    padding: 9px 12px 4px 12px;
    text-align: center;
    border-radius: 3px 0 0 3px;
}

#showName {
    padding: 6px 12px;
    font-size: 0.9rem;
    border-radius: 0 3px 3px 0;
    background-color: #E0EEFB;
    border-bottom: 1px solid #62ACED;
    border-top: 1px solid #62ACED;
    border-right: 1px solid #62ACED;
    cursor: pointer;
    color: #757D8A;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
    transition: 0.3s;
}
.container-centrado {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100vh !important; /* Esto asegura que el contenedor se ajuste al 100% de la altura de la ventana */
}

/* ------------ Backgrounds colors ------------*/
.bg-one, .bg-one:hover {
    background-color: #C2EDFF;
    color: #52B2D8;
}

.bg-two, .bg-two:hover {
    background-color: #FFF1DB;
    color: #FFB74D;
}

.bg-three, .bg-three:hover {
    background-color: #BCEDC0;
    color: #37BC89;
}

.bg-four, .bg-four:hover {
    background-color: #FFE8EA;
    color: #DB4558;
}
.btnNotificacion {
    margin-top:1rem;
    margin-left:45rem;
}

.tableFacturacion{

}
/* ------------ Media Querys ------------*/
@media (max-width: 562px) {
    .navbar-header img {
        display: none;
    }
}

.btn-buscar{
    margin-left: 54rem;
}
@media (max-width: 1305px){
    .btn-buscar{
        margin-left: 0rem;
    }
}

.btn-descargar-Excel {
    margin-left: -4rem;
    margin-top: -1.5rem;
}
@media (max-width: 1300px){
    .btn-descargar-Excel {
        margin-left: -24rem;
        margin-top: 2rem;
    }
}
@media (max-width: 991px){
    .btn-descargar-Excel{
        margin-top: 2rem;
        margin-left: -30rem;
    }
}
@media (max-width: 893px) {
    .btn-descargar-Excel {
        margin-top: 2rem;
        margin-left: -42rem;
    }
}
@media (max-width: 564px) {
    .btn-descargar-Excel {
        margin-top: -1.6rem;
        margin-left: -42rem;
    }
}

.btn-ocultar-filtros {
    margin-top:-4rem;
}
.btn-ocultar-filtros-consultargestiones {
    margin-top: -4rem;
}

@media (max-width: 1340px) {
    .btn-ocultar-filtros-consultargestiones {
        margin-left: -26.6rem;
    }
}

@media (max-width: 991px) {
    .btn-ocultar-filtros-consultargestiones {
        margin-left: -55.1rem;
        margin-top: -2rem;
    }
}

@media (max-width: 1340px) {
    .btn-ocultar-filtros {
        margin-left: -26.6rem;
    }
}
@media (max-width: 991px) {
    .btn-ocultar-filtros {
        margin-left: -53.6rem;
        margin-top: -2rem;
    }
}

@media (max-width: 1320px) {
    .btnNotificacion{
        margin-left:-5rem;
    }
    .table-sae tbody th {
        text-wrap: nowrap !important;    
    }
}
@media (max-width: 950px){
    .tableFacturacion tbody th {
        text-wrap: wrap !important
    }
}
.excel {
    margin-left: -4rem;
    margin-top: -2rem;
}

@media (max-width:1070px) {
    .excel {
        margin-left: -6rem;
        width: auto;
        
    }
}
@media (max-width:801px) {
    .excel {
        margin-left: -17rem;
        font-size:xx-small;
        margin-top: 10rem;        
    }
}
@media (max-width:585px) {
    .excel {
        margin-left: -12rem;
        margin-top: 11rem;
        font-size: xx-small;       
    }
}
.information {
    font-size: 16px;
    width: 41rem;
}
@media(max-width: 1300px){
    .information{
        width: auto;
    }
}


