/* CSS Document */

body{        
    background: #efefef !important;
}

.header {
    background-color: #F8F8F8 !important;
    border-bottom: 5px solid #004497 !important
}

#Header {
    margin-bottom: 110px;    
}

.Contenedor {
    padding: 25px 40px;
    background: transparent;;
}

a {    
    text-decoration: none !important;
}

/********** Template CSS **********/
:root {
    --primary: #EB1616;
    --secondary: #191C24;
    --light: #6C7293;
    --dark: #000000;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--secondary);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    transition: 0.5s;
}

.bg-secondary {
    background-color: #808081 !important;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--light);
    font-weight: 500;
    border-left: 3px solid var(--secondary);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: #fee388 !important;
    /*var(--primary);*/
    background: var(--dark);
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--secondary);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
    color: var(--light);
}

.sidebar .navbar .dropdown-item:hover,
.sidebar .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--light);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.content .navbar .dropdown-item {
    color: var(--light);
}

.content .navbar .dropdown-item:hover,
.content .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}

/* Module Cards */
.module-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-card:hover::before {
    opacity: 1;
}

.module-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.module-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    margin: 0 auto;
    margin-bottom: 30px;
}

.module-card:hover .module-icon {
    transform: scale(1.1) rotate(5deg);
}

.module-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.module-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-card {
    animation: fadeInUp 0.6s ease forwards;
}

.module-card:nth-child(1) {
    animation-delay: 0.1s;
}

.module-card:nth-child(2) {
    animation-delay: 0.2s;
}

.module-card:nth-child(3) {
    animation-delay: 0.3s;
}

.module-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        margin-left: 0;
        padding: 1rem;
    }
}


.bg-light {
    background: rgb(7, 7, 94);
    background: linear-gradient(180deg, rgba(7, 7, 94, 1) 0%, rgba(51, 45, 161, 1) 100%);
}

hr {
    margin-top: 5px;
    margin-bottom: 25px;
    border: 1 !important;    
    background-color: rgb(213 211 211);
    box-shadow: 0px 1px 0px #fff;
    box-shadow: 0px 1px 0px #ffffff;
}

.LoadDiv {
    width: 30%;
    text-align: center;    
    margin: 0 auto;
}

.Requerido {
    font-weight: bolder;
    color: red;
}

.Notificacion{
    margin: 0px 7px !important;
}

.wrapper {
    background: #f4f6f9;
}

.Contenido {
    margin-top: 40px;
}

.IconTitle{
    height: 50px;
}

.NoPadding {
    padding: 0px;
    margin: 0px;
}

.Center {
    text-align: center !important;
}

.Fondo {
    background: #7a878f;
    padding-top: 10px;
}

h1, h2 {
    color: #3f3f3f;
    font-weight: bold !important;
}

input.Mayus, textarea.Mayus {
    text-transform: uppercase;
}

.Indicador {
    position: absolute;
    top: -20px;
    background: #ff0000;
    border-radius: 5px;
    font-weight: bolder;
    left: 20px;
    font-size: 15px;
    text-align: center;
    width: 30px;
}

.row {
    clear: both;
    margin-bottom: 15px;
}

.Fieldset2 {
    border: 1px solid #a7a8ad;
    border-radius: 5px;
    padding: 0px 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.Legend2 {
    float: none;
    margin-left: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    background: #004767;
    padding: 0px 10px;
    width: auto !important;
    color: white;
}

/******************************** BOOTSTRAP *****************************/

.navbar-brand {
    padding-top: 0px !important;
    padding-bottom: .3125rem;
    margin-right: 1rem;    
    white-space: nowrap;
}

.carousel-control-next,
.carousel-control-prev /*, .carousel-indicators */ {
    filter: invert(100%);
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000000;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.progress {
    display: -ms-flexbox;
    display: flex
;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem;
    box-shadow: 0px 2px 1px 0px #000000c9 !important;
}

.bg-success {
    background-color: #00ed3b !important;
}

#TableInventarios .tooltip {
    background-color: #364552;
    border-color: #364552;
    color: white;
    padding: 5px;
    font-size: 6px;
    font-weight: bolder;
    width: 600px !important;
}
.tooltip-content {
    font-size: 12px;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #9b9b9b;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -moz-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -ms-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {            
    background-color: #ffffff !important;            
}

/**************** DISEÑOS *************/
.modal {
    overflow: scroll !important;
}

.modal-header {
    font-weight: bold;
    color: #ffffff;
    background: #6B3FEA !important;
}

.modal-body{
    background-color: #FCFCFC !important;
}

.modal-footer{
    background: #FCFCFC !important;
    border-top: none;
}

.modal-backdrop.show {
    opacity: .8;
}

.CardBody {
    background-color: #696c7a24;
    border: 1px solid #878585;
    background-image: url('../img/backgrounds.jpg');
    background-size: 100%;
}

.CardHeader {
    background: #07075e;
}

.BtnHeader {
    color: white;
    font-size: 30px;
}

.BtnHeader:hover {
    color: white;
}

.BtnModulo {
    cursor: pointer !important;
    padding: 12px;
    border-radius: 20px;
    width: 220px;    
    background: linear-gradient(2deg, rgb(137 137 137) 0%, rgb(245 245 245) 74%);    
}

.BtnModulo:hover{
    border-width: 3px;
    border-color: #000;
    box-shadow: 2px 3px 2px 1px;
}

.IconoModulo {
    font-size: 95px !important;
    color: black;
}

.TextModulo {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}

.TextDescripcion {
    font-size: 12px;
    text-align: left;
    padding-top: 20px;
}

.DetalleInventario {
    border: 2px solid #e3e3e3 !important;
    padding: 20px 50px !important;
    background-image: url('../img/backgrounds.jpg');
}

.TituloModulo {
    height: 50px;
}

.accordion>.card>.card-header {
    border-radius: 0;
    margin-bottom: -1px;
    background-color: #004767;
}

.CollapseBtn {
    color: white !important;
    font-weight: bold;
}

.CollapseBtn:hover {
    color: white !important;
}

/***************************** PERSONALIZADOS ****************************/

.btn {
    padding: 5px 10px;
}

.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: none;
}

.Radius25 {
    border-radius: 25px;
}

.Border1 {
    border: 1px solid #e3e3e3;
}

textarea {
    resize: none;
}

.User {
    font-size: 20px;
    font-weight: bolder;
    color: white;
}

.User:hover {
    color: white;
    text-decoration: none;
}

.Label {
    padding-top: 5px;
}

.modal-dialog {
    max-width: 1024px !important;
}

.tt-menu {
    background: #e3e3e3;
    width: 100%;
    padding: 5px 10px;
    top: 35px !important;
}

.btn-small {
    font-size: 13px;
    padding: 0px 5px;
    margin: 0 2px;
}

.btn.disabled, .btn:disabled {
    opacity: .45;
}

.BorderRight {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.Parpadea {
    animation-name: parpadeo;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

    -webkit-animation-name: parpadeo;
    -webkit-animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

.Resaltado {
    background: #e8e8e8 !important;
}

@-moz-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.nav-sidebar .nav-treeview {
    padding-left: 10px !important;
}

.Thumbsnail {
    height: 75px;
    width: 70px;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    box-shadow: 2px 2px 2px 0px;
}

.ThumbsnailVehiculo {
    height: 75px;
    width: 100px;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    box-shadow: 2px 2px 2px 0px;
}

.tooltip {
    background-color: #364552;
    border-color: #364552;
    color: white;
    padding: 5px;
    font-size: 10px;
    font-weight: bolder;
}

/*********************** DATATABLE *************************/

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    color: #004667;
    padding: 4px 0px;
    margin: 0px 10px;
}

.table-striped>thead {
    background: #6b6b6b;
    color: white;
}

table.dataTable > thead > tr > th, table.dataTable > thead > tr > td {        
    background: #c9c9c9 !important;
}

.dataTables_scrollHeadInner{
    margin-top: 15px;
}

label {    
    color: #000000;
}

.swal2-container.swal2-shown {
    background-color: rgba(0, 0, 0, .8);
}

.menu {
    background-color: #fafafa;
    border-color: #ddd;
    color: #444;
    width: 200px !important;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    padding-right: 10px;
}

.odd {
    background-color: rgb(245 245 245) !important;
}

.odd:hover {
    background: #fff300 !important;
    color: black !important;
}

.even {
    background-color: #e4e4e442 !important;
}

.even:hover {
    background: #fff300 !important;
    color: red !important;
}

.sorting_1 {
    background-color: #bfbfbf42 !important;
    font-weight: bolder;
}

div.dataTables_processing > div:last-child {
    display: none;
}

.Left{
    text-align: left !important;
}

.Center{
    text-align: center !important;
}

.Right{
    text-align: right !important;
}

.Justify{
    text-align: justify !important;
}
/************************ TABS ***********************/
.tab-content {
    border: 1px solid #e3e3e3;
    padding: 10px 10px;
    border-top: 0px;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 1px solid white;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    background: #DDDDDD;
    color: #364552;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #124697 !important;
    border-color: #dee2e6 #dee2e6 #fff;
}

.input-group.date .input-group-addon {
    cursor: pointer;
    padding: 7px 10px;
    border: 1px solid #e3e3e3;
    border-left: none;
    background: #f1f1f1;
    height: 38px;
}

.input-group-addon {
    cursor: pointer;
    padding: 7px 10px;
    border: 1px solid #e3e3e3;
    border-left: none;
    background: #f1f1f1;
    height: 38px;
}

/******************* Estatus de las Solicitudes *********************/
.Solicitado {}

.Solicitud_PendientePago {
    background: #ecbd4c99 !important;
}

.Solicitud_Liberado {
    background: #b6d6ff !important;
}

.Solicitud_PAGADO {
    background: #0fcf5069 !important;
}

.Solicitud_CANCELADO {
    background: #0000007d !important;
}

.Solicitud_CANCELADA{
    background: #232020bf !important;
}

.Solicitud_ConCita {
    background: #fffa977d !important;
}

.Solicitud_Bascula {
    background: #50a69d7d !important;
}

.Solicitud_VALIDADA{
    background-color: #0080004f !important;
}

.Solicitud_AUTORIZADA{
    background-color: #0080004f !important;
}

.Solicitud_PAGADA{
    background-color: #58f158a6 !important;
}

.Solicitud_RECHAZADA{
    background-color: #ff7300ba !important;
}

.Solicitud_PENDIENTE{
    background-color: #ffff0066 !important;
}

.Solicitud_FINALIZADA {
    background: #3e3d446b !important;
}

.badge-rechazada{
    background-color: #ff0205;
    color: white;
}

/************************** FORMULARIOS ************************/
.form-control:disabled, .form-control[readonly] {
    background-color: #cacaca;
    opacity: 1;
}

.Fecha{
    height: 38px !important;
}

/************************** HIGH CHARTS ************************/
.highcharts-figure,
.highcharts-data-table table {
    min-width: 320px;
    max-width: 800px;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

.rechazadoExistencia {
    background-color: #f08080 !important;
}