@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i|Roboto:300,300i,400,400i,500,500i,700,900");

.col-md-offset-right-1 {

  margin-right: 8.33333333%;

}



/*---------------------------------------------------- */

/*----------------------------------------------------*/

ul {

  list-style: none;

  margin: 0px;

  padding: 0px;

}



a {

  text-decoration: none;

}



a:hover, a:focus {

  text-decoration: none;

  outline: none;

}



.row.m0 {

  margin: 0px;

}



.p0 {

  padding: 0px;

}



html, body {
  margin: 0;
  padding: 0;
  height: 100%; /* Asegura que la página ocupe todo el alto inicial */
}


body {
  display: flex;
  flex-direction: column; /* Apila el header, main y footer de forma vertical */
  background: #F5F2F2;
}

body,

p,

h1,

h2,

h3,

h4,

h5,

h6 {

  margin: 0px;

  padding: 0px;

}



.display_table {

  display: table;

  width: 100%;

}



.display_table_row {

  display: table-row;

}



.display_table_cell {

  display: table-cell;

  float: none !important;

}



p {

  font-size: 16px;

  line-height: 1.8;

  font-family: "Roboto", sans-serif;

  font-weight: normal;

  color: #59595b;

}



.mb-3 {

  margin-bottom: 25px;

}



.mt-3 {

  margin-top: 25px;

}



.mt-0 {

  margin-top: 0;

}



.mb-0 {

  margin-bottom: 0;

}



.form-control {

  height: 40px;

  border-radius: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}



.form-control:focus {

  -webkit-box-shadow: none;

  box-shadow: none;

}



iframe {

  border: none;

}



/* Main title css

============================================================================================ */
main {
  flex: 1; /* Empuja el footer hacia abajo llenando el espacio sobrante */
}

.main_title {

  text-align: center;

  padding-bottom: 50px;

}



.main_title h5 {

  font-size: 15px;

  color: #58585a;

  text-transform: uppercase;

  opacity: .5;

}



.main_title h2 {

  font-size: 30px;

  font-family: "Roboto", sans-serif;

  font-weight: bold;

  color: #59595b;

  text-transform: uppercase;

}



/* End Main title css

============================================================================================ */

/*---------------------------------------------------- */

/*----------------------------------------------------*/

/* Header Top Area css

============================================================================================ */







.main_header_area {

  position: absolute;

  top: 0px;

  left: 0px;

  width: 100%;

  z-index: 22;

}



.main_header_area + section,

.main_header_area + div,

.main_header_area + .row {

  margin-top: 158px;

}



@media (max-width: 991px) {

  .main_header_area + section,

  .main_header_area + div,

  .main_header_area + .row {

    margin-top: 141px;

  }

}



@media (max-width: 480px) {

  .main_header_area + section,

  .main_header_area + div,

  .main_header_area + .row {

    margin-top: 125px;

  }

}



.header_top {
  padding: 5px 0px;
  vertical-align: bottom;
}


.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    perspective: 1000px; /* Necesario para el efecto 3D */
}

.logo-container a {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.logo-img {
    max-height: 70px;
    width: auto;
}

/* Creamos la animación de un giro completo que termina de frente */
@keyframes girarHorizontal {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg); /* Da la vuelta completa y queda de frente otra vez */
    }
}

/* Al pasar el cursor, se activa la animación una sola vez y se queda quieto */
.logo-container:hover .logo-img {
    animation: girarHorizontal 0.8s ease-in-out;
}


.header_top .pull-right {

  vertical-align: middle;

  border-right-width: 10px;

}



.header_top .pull-right .header_c_text {

  display: inline-block;

  position: relative;

  margin-right: 50px;

}



.header_top .pull-right .header_c_text:before {

  content: "";

  height: 43px;

  width: 1px;

  position: absolute;

  right: -25px;

  top: 50%;

  -webkit-transform: translateY(-50%);

  -ms-transform: translateY(-50%);

  transform: translateY(-50%);

  background: #f1f1f1;

}



.header_top .pull-right .header_c_text h5 {

  font-size: 13px;

  font-family: "Roboto", sans-serif;

  color: #8f97a7;

  font-weight: normal;

  padding-bottom: 8px;

}



.header_top .pull-right .header_c_text h4 {

  font-size: 15px;

  font-family: "Roboto", sans-serif;

  color: #0c1832;

  font-weight: normal;

}



.header_top .pull-right .header_c_text:last-child {

  margin-right: 0px;

}



.header_top .pull-right .header_c_text:last-child:before {

  display: none;

}



.header_top .pull-right .header_c_text .quote_btn {

  position: relative;

  top: 1px;

}



@media (max-width: 991px) {

  .header_top .pull-right .header_c_text {

    display: none;

  }

  .header_top .pull-right .header_c_text:last-child {

    display: block;

  }

}



@media (max-width: 480px) {

  .header_top .pull-right .header_c_text .quote_btn {

    padding: 0px 18px;

    font-size: 13px;

    line-height: 38px;

    top: 7.5px;

  }

}



@media (max-width: 480px) {

  .header_top {

    padding: 10px 0px;

  }

}



@media (min-width: 992px) {

  .main_menu_area .navbar-nav > li > a:before {

    content: "";

    position: absolute;

    width: 0;

    height: 2px;

    background: #FFF;

    right: 0;

    bottom: 25%;

    -webkit-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    transition: all 0.3s ease;

  }

.main_menu_area .navbar-nav > li > a:hover:before,
  .main_menu_area .navbar-nav > li > a.active:before {
    width: 100%;
    left: 0;
  }

}



.main_menu_area {

  background: #062A63;
  

}



.main_menu_area .navbar.navbar-default {

  border: none;

  margin-bottom: 0px;

  background: transparent;

}



.main_menu_area .navbar.navbar-default .navbar-header .navbar-toggle {

  background: transparent;

  border-color: rgba(255, 255, 255, 0.35);

}



@media (max-width: 991px) {

  .main_menu_area .navbar.navbar-default .navbar-header .navbar-toggle .icon-bar {

    background: #fff;

  }

}



.main_menu_area .navbar.navbar-default .navbar-collapse {

  border-color: rgba(255, 255, 255, 0.35);

}



@media (max-width: 991px) {

  .main_menu_area .navbar.navbar-default .navbar-collapse {

    margin-bottom: 15px;

  }

}



@media (max-width: 767px) {

  .main_menu_area .navbar.navbar-default .navbar-collapse {

    max-height: 350px;

  }

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav {

  margin-left: -15px;

}



@media (max-width: 991px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav {

    margin-top: 0px;

    margin-bottom: 0px;

  }

}



@media (max-width: 767px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav {

    margin-left: 0px;

    margin-right: 0px;

  }

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li {

  margin-right: 40px;

}



@media (max-width: 1199px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav li {

    margin-right: 18px;

  }

}



@media (max-width: 991px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav li {

    margin-right: 0px;

  }

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li a {

  padding: 0px;

  color: #fff;

  background: transparent;

  font-size: 14px;

  font-family: "Roboto", sans-serif;

  text-transform: uppercase;

  font-weight: normal;

  line-height: 67px;

}



@media (max-width: 991px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav li a {

    line-height: 45px;

  }

  .main_menu_area .navbar.navbar-default .nav.navbar-nav li a i {

    float: right;

    line-height: 45px;

    padding-right: 10px;

    font-size: 20px;

  }

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li a i {

  padding-left: 3px;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li:last-child {

  margin-right: 0px;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu {

  position: relative;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul {

  padding: 0px;

  margin: 0px;

  border-radius: 0px;

  border: none;

}



@media (min-width: 992px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul {

    position: absolute;

    top: 100%;

    left: 0px;

    min-width: 232px;

    background: #FFF;

    text-align: left;

    opacity: 0;

    -webkit-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    transition: all 300ms ease;

    visibility: hidden;

    z-index: 6;

    -webkit-transform: scaleY(0.5);

    -ms-transform: scaleY(0.5);

    transform: scaleY(0.5);

    -webkit-transform-origin: 50% 0;

    -ms-transform-origin: 50% 0;

    transform-origin: 50% 0;

    display: block;

  }

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul:before {

  content: "";

  width: 0;

  height: 0;

  border-style: solid;

  border-width: 10px 10px 0 10px;

  border-color: #eeeeee transparent transparent transparent;

  position: absolute;

  right: 24px;

  top: 45px;

  z-index: 3;

  opacity: 0;

  -webkit-transition: all 400ms linear;

  -o-transition: all 400ms linear;

  transition: all 400ms linear;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li {

  display: block;

  float: none;

  margin-right: 0px;

  border-bottom: 1px solid #e4e7ef;

}



@media (max-width: 991px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li {

    border-bottom: 1px solid rgba(203, 203, 203, 0.3);

  }

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li a {

  line-height: 45px;

  color: #494848;

  font-family: "Roboto", sans-serif;

  font-weight: normal;

  font-size: 14px;

  padding: 0px 30px;

  -webkit-transition: all 300ms linear 0s;

  -o-transition: all 300ms linear 0s;

  transition: all 300ms linear 0s;

  display: block;

}



@media (max-width: 991px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li a {

    color: #fff;

    padding: 0px 15px;

  }

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li:last-child {

  border-bottom: none;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li:hover a {

  background: #efeff3;

}



@media (min-width: 992px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu:hover ul {

    left: 0px;

    visibility: visible;

    opacity: 1;

    -webkit-transform: scaleY(1);

    -ms-transform: scaleY(1);

    transform: scaleY(1);

  }

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group {

  width: 200px;

  display: block;

  position: relative;

  top: 15px;

}



@media (max-width: 991px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group {

    width: 100%;

    top: 0px;

  }

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group input {

  padding: 0px;

  border: none;

  border-radius: 5px;

  background: #092767;

  height: 37px;

  padding: 0px 30px 0px 8px;

  color: rgba(255, 255, 255, 0.5);

  font-family: "Roboto", sans-serif;

  font-weight: normal;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group input.placeholder {

  color: rgba(255, 255, 255, 0.5);

  font-family: "Roboto", sans-serif;

  font-weight: normal;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group input:-moz-placeholder {

  color: rgba(255, 255, 255, 0.5);

  font-family: "Roboto", sans-serif;

  font-weight: normal;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group input::-moz-placeholder {

  color: rgba(255, 255, 255, 0.5);

  font-family: "Roboto", sans-serif;

  font-weight: normal;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group input::-webkit-input-placeholder {

  color: rgba(255, 255, 255, 0.5);

  font-family: "Roboto", sans-serif;

  font-weight: normal;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group input:focus {

  -webkit-box-shadow: none;

  box-shadow: none;

}



@media (max-width: 991px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group input {

    height: 45px;

    border-radius: 0px;

  }

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group .input-group-btn {

  position: absolute;

  top: 0px;

  right: 0px;

}



.main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group .input-group-btn .btn-default {

  padding: 0px;

  background: transparent;

  border: none;

  position: absolute;

  right: 12px;

  top: 8px;

  color: #fff;

  z-index: 5;

}



@media (max-width: 991px) {

  .main_menu_area .navbar.navbar-default .nav.navbar-nav.navbar-right li .input-group .input-group-btn .btn-default {

    top: 11px;

  }

}



.main_menu_area.affix {

  position: fixed;

  width: 100%;

  left: 0px;

  top: 0px;

  z-index: 9999;

}



/* End Header Top Area css

============================================================================================ */

/*---------------------------------------------------- */

/*----------------------------------------------------*/

/* Button Area css

============================================================================================ */

.quote_btn {

  display: inline-block;

  padding: 0px 26px;

  background: #2ecc71;

  line-height: 47px;

  border-radius: 5px;

  color: #fff;

  font-size: 15px;

  font-family: "Roboto", sans-serif;

  font-weight: normal;

  overflow: hidden;

  text-align: center;

  position: relative;

  z-index: 2;

}



.quote_btn:before {

  content: "";

  position: absolute;

  z-index: -1;

  background: #2761d8;

  height: 250px;

  width: 300px;

  border-radius: 50%;

  left: 50%;

  -webkit-transform: translateX(-50%);

  -ms-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: 100%;

  -webkit-transition: all .7s;

  -o-transition: all .7s;

  transition: all .7s;

  z-index: -1;

}



.quote_btn:hover, .quote_btn:focus {

  color: #fff;

}



.quote_btn:hover:before, .quote_btn:focus:before {

  bottom: -50px;

}



.b_get_btn {

  display: inline-block;

  padding: 0px 60px;

  background: transparent;

  border: 1px solid #fff;

  line-height: 65px;

  border-radius: 5px;

  color: #fff;

  font-size: 17px;

  text-transform: uppercase;

  font-family: "Roboto", sans-serif;

  font-weight: normal;

  overflow: hidden;

  text-align: center;

  position: relative;

  -webkit-transition: all 300ms linear 0s;

  -o-transition: all 300ms linear 0s;

  transition: all 300ms linear 0s;

  z-index: 2;

}



.b_get_btn i {

  padding-left: 20px;

}



.b_get_btn:before {

  content: "";

  position: absolute;

  z-index: -1;

  background: #2ecc71;

  height: 280px;

  width: 330px;

  border-radius: 50%;

  left: 50%;

  -webkit-transform: translateX(-50%);

  -ms-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: 100%;

  -webkit-transition: all .7s;

  -o-transition: all .7s;

  transition: all .7s;

  z-index: -1;

}



.b_get_btn:hover, .b_get_btn:focus {

  color: #fff;

  border: 1px solid #2ecc71;

}



.b_get_btn:hover:before, .b_get_btn:focus:before {

  bottom: -50px;

}



.more_btn {

  display: inline-block;

  padding: 0px 32px;

  background: transparent;

  border: 1px solid #2761d8;

  line-height: 50px;

  border-radius: 5px;

  color: #2761d8;

  font-size: 14px;

  text-transform: uppercase;

  font-family: "Roboto", sans-serif;

  font-weight: normal;

  overflow: hidden;

  text-align: center;

  position: relative;

  -webkit-transition: all 300ms linear 0s;

  -o-transition: all 300ms linear 0s;

  transition: all 300ms linear 0s;

  z-index: 2;

}



.more_btn i {

  padding-left: 10px;

}



.more_btn:before {

  content: "";

  position: absolute;

  z-index: -1;

  background: #2761d8;

  height: 280px;

  width: 330px;

  border-radius: 50%;

  left: 50%;

  -webkit-transform: translateX(-50%);

  -ms-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: 100%;

  -webkit-transition: all .7s;

  -o-transition: all .7s;

  transition: all .7s;

  z-index: -1;

}



.more_btn:hover, .more_btn:focus {

  color: #fff;

  border: 1px solid #2761d8;

}



.more_btn:hover:before, .more_btn:focus:before {

  bottom: -50px;

}



/* End Button Area css

============================================================================================ */

/* Submit Button Area css

============================================================================================ */

.submit_blue {

  display: inline-block;

  background: transparent;

  border: 1px solid #2761d8;

  line-height: 50px;

  width: 165px;

  height: 48px;

  border-radius: 5px;

  color: #fff;

  font-size: 14px;

  line-height: 48px;

  text-transform: uppercase;

  font-family: "Roboto", sans-serif;

  font-weight: normal;

  overflow: hidden;

  text-align: center;

  position: relative;

  -webkit-transition: all 300ms linear 0s;

  -o-transition: all 300ms linear 0s;

  transition: all 300ms linear 0s;

  padding: 0px;

  outline: none !important;

  -webkit-box-shadow: none !important;

  box-shadow: none !important;

  z-index: 2;

}



.submit_blue i {

  padding-left: 10px;

}



.submit_blue:before {

  content: "";

  position: absolute;

  z-index: -1;

  background: #2761d8;

  height: 280px;

  width: 330px;

  border-radius: 50%;

  left: 50%;

  -webkit-transform: translateX(-50%);

  -ms-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

  -webkit-transition: all .7s;

  -o-transition: all .7s;

  transition: all .7s;

  z-index: -1;

}



.submit_blue:hover, .submit_blue:focus {

  color: #2761d8;

}



.submit_blue:hover:before, .submit_blue:focus:before {

  bottom: 100%;

}



/* End Submit Button Area css

============================================================================================ */

.image-source-link {

  color: #98C3D1;

}



.mfp-with-zoom .mfp-container,

.mfp-with-zoom.mfp-bg {

  opacity: 0;

  -webkit-backface-visibility: hidden;

  /* ideally, transition speed should match zoom duration */

  -webkit-transition: all 0.3s ease-out;

  -moz-transition: all 0.3s ease-out;

  -o-transition: all 0.3s ease-out;

  transition: all 0.3s ease-out;

}



.mfp-with-zoom.mfp-ready .mfp-container {

  opacity: 1;

}



.mfp-with-zoom.mfp-ready.mfp-bg {

  opacity: 0.8;

}



.mfp-with-zoom.mfp-removing .mfp-container,

.mfp-with-zoom.mfp-removing.mfp-bg {

  opacity: 0;

}



/*---------------------------------------------------- */

/*----------------------------------------------------*/

/* Main Slider Area css

============================================================================================ */

.main_slider_area .rev_slider .tp-revslider-mainul li {

  z-index: 4 !important;

}



.main_slider_area .rev_slider .tp-revslider-mainul li .slotholder {

  position: relative;

}



.main_slider_area .rev_slider .tp-revslider-mainul li .slotholder:before {

  content: "";

  background: rgba(0, 0, 0, 0.55);

  position: absolute;

  left: 0x;

  top: 0px;

  z-index: 6;

  width: 100%;

  height: 100%;

}



.main_slider_area .rev_slider .tp-revslider-mainul li .slotholder .tp-bgimg {

  z-index: 5 !important;

}



.main_slider_area .rev_slider .tp-revslider-mainul li .slider_text_box .first_text {

  color: rgba(255, 255, 255, 0.78);

  font-family: "Roboto Condensed", sans-serif;

  font-weight: 300 !important;

}



.main_slider_area .rev_slider .tp-revslider-mainul li .slider_text_box .secand_text {

  font-weight: bold !important;

  text-transform: uppercase;

  font-family: "Roboto Condensed", sans-serif;

  color: #fff;

}



.main_slider_area .rev_slider .tp-revslider-mainul li .slider_text_box .slider_btn .quote_btn {

  line-height: 54px;

}



.main_slider_area .rev_slider .tp-revslider-mainul li .slider_text_box .slider_btn .quote_btn i {

  padding-left: 15px;

}



.main_slider_area .rev_slider .ContentZoom-SmallIcon {

  background: #e7e7e9;

  height: 42px;

  width: 42px;

  text-align: center;

  color: #0d0d0d;

  font-size: 15px;

  line-height: 42px;

  -webkit-transition: all 300ms linear !important;

  -o-transition: all 300ms linear !important;

  transition: all 300ms linear !important;

  padding: 0px !important;

  color: #000 !important;

}



.main_slider_area .rev_slider .ContentZoom-SmallIcon i {

  position: absolute;

  left: 50%;

  top: 50%;

  -webkit-transform: translateX(-50%) translateY(-50%);

  -ms-transform: translateX(-50%) translateY(-50%);

  transform: translateX(-50%) translateY(-50%);

  font-size: 17px !important;

}



.main_slider_area .rev_slider .ContentZoom-SmallIcon:hover {

  background: #2761d8;

  color: #fff !important;

}



/* End Main Slider Area css

============================================================================================ */

/* Feature Slider Area css

============================================================================================ */

.feature_slider_area {

  padding-bottom: 100px;

}



.feature_slider_area .feature_row {

  margin-left: -18px;

  margin-right: -18px;

}



@media (max-width: 767px) {

  .feature_slider_area .feature_row {

    margin-right: -15px;

  }

}



.feature_slider_inner {

  margin-top: -60px;

  z-index: 10;

}



.feature_slider_inner .item {

  padding: 0px 18px;

}



.feature_slider_inner .feature_s_item {

  text-align: center;

  -webkit-box-shadow: 0px 0px 14px rgba(136, 159, 229, 0.2);

  box-shadow: 0px 0px 14px rgba(136, 159, 229, 0.2);

  padding: 20px 28px 30px 28px;

  background: #fff;

  margin-bottom: 15px;

}



.feature_slider_inner .feature_s_item .social-link {

  height: 47px;

  fill: #cddeff;

}



.feature_slider_inner .feature_s_item h4 {

  text-transform: uppercase;

  font-weight: bold;

  font-size: 24px;

  color: #2761d8;

  font-family: "Roboto Condensed", sans-serif;

  padding: 15px 0px 22px 0px;

}



.feature_slider_inner .feature_s_item p {

  font-size: 15px;

  line-height: 26px;

  color: #434345;

  font-family: "Roboto", sans-serif;

  font-weight: normal;

}



.feature_slider_inner .owl-nav .owl-prev, .feature_slider_inner .owl-nav .owl-next {

  height: 42px;

  width: 42px;

  background: #f2f5fb;

  font-size: 15px;

  color: #b5c7ed;

  text-align: center;

  line-height: 40px;

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

  -ms-transform: translateY(-50%);

  transform: translateY(-50%);

  -webkit-transition: all 300ms linear 0s;

  -o-transition: all 300ms linear 0s;

  transition: all 300ms linear 0s;

}



.feature_slider_inner .owl-nav .owl-prev:hover, .feature_slider_inner .owl-nav .owl-next:hover {

  background: #2761d8;

  color: #fff;

}



.feature_slider_inner .owl-nav .owl-prev {

  left: -60px;

}



@media (max-width: 1199px) {

  .feature_slider_inner .owl-nav .owl-prev {

    left: 0px;

  }

}



@media (max-width: 767px) {

  .feature_slider_inner .owl-nav .owl-prev {

    display: none;

  }

}



.feature_slider_inner .owl-nav .owl-next {

  right: -60px;

}



@media (max-width: 1199px) {

  .feature_slider_inner .owl-nav .owl-next {

    right: 0px;

  }

}



@media (max-width: 767px) {

  .feature_slider_inner .owl-nav .owl-next {

    display: none;

  }

}



.feature_slider_inner .owl-dots {

  position: absolute;

  left: 50%;

  -webkit-transform: translateX(-50%);

  -ms-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -40px;

}



@media (max-width: 480px) {

  .feature_slider_inner .owl-dots {

    width: 100%;

    text-align: center;

  }

}



.feature_slider_inner .owl-dots .owl-dot {

  height: 10px;

  width: 10px;

  background: #dedede;

  border-radius: 50%;

  display: inline-block;

  margin-right: 10px;

}



.feature_slider_inner .owl-dots .owl-dot:last-child {

  margin-right: 0px;

}



.feature_slider_inner .owl-dots .owl-dot.active {

  background: #2761d8;

}



/* End Feature Slider Area css

============================================================================================ */

/* Testimonials Slider Area css

============================================================================================ */

.testimonials_area {

  padding: 80px 0px;

}



.testimonials_inner {

  position: relative;

}



@media (max-width: 991px) {

  .testimonials_inner {

    padding: 0px 30px;

  }

}



.testimonials_inner .owl-prev, .testimonials_inner .owl-next {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

  -ms-transform: translateY(-50%);

  transform: translateY(-50%);

  font-size: 30px;

  color: #d6d6d6;

  cursor: pointer;

  -webkit-transition: all 300ms linear 0s;

  -o-transition: all 300ms linear 0s;

  transition: all 300ms linear 0s;

}



.testimonials_inner .owl-prev:hover, .testimonials_inner .owl-next:hover {

  color: #2761d8;

}



.testimonials_inner .owl-prev {

  left: 0px;

}



.testimonials_inner .owl-next {

  right: 0px;

}



.testimonials_slider {

  max-width: 750px;

  margin: auto;

}



.testimonials_slider .item {

  text-align: center;

}



.testimonials_slider .item img {

  width: auto;

  max-width: 100%;

  text-align: center;

  display: inline-block;

}



.testimonials_slider .item p {

  font-size: 18px;

  color: #59595b;

  font-family: "Roboto", sans-serif;

  font-weight: normal;

  line-height: 33px;

  padding: 40px 0px 25px 0px;

}



@media (max-width: 500px) {

  .testimonials_slider .item p {

    font-size: 15px;

    line-height: 28px;

  }

}



.testimonials_slider .item h4 {

  color: #2f2f30;

  font-size: 18px;

  text-transform: uppercase;

  letter-spacing: .45px;

}



/* End Testimonials Slider Area css

============================================================================================ */

/* Client Slider Area css

============================================================================================ */

.client_logo_area {

  background: #f5f7f9;

}



.client_logo_area.white_client {

  background: #fff;

}



.client_slider .item {

  text-align: center;

  line-height: 170px;

}



.client_slider .item img {

  max-width: 100%;

  width: auto;

  display: inline-block;

  -webkit-filter: grayscale(100%);

  filter: grayscale(100%);

  -webkit-transition: all 300ms linear 0s;

  -o-transition: all 300ms linear 0s;

  transition: all 300ms linear 0s;

  cursor: pointer;

}



.client_slider .item img:hover {

  -webkit-filter: grayscale(0%);

  filter: grayscale(0%);

}



/* End Client Slider Area css

============================================================================================ */

/*---------------------------------------------------- */

/*----------------------------------------------------*/

/* Feature Slider Area css

============================================================================================ */

.main_feature_area {

  overflow: hidden;

  background: #f5f7f9;

  display: -webkit-box;

  display: -webkit-flex;

  display: -ms-flexbox;

  display: flex;

}



@media (max-width: 1199px) {

  .main_feature_area {

    display: block;

  }

}



.left_feature_content {

  width: calc(50% + 210px);

  float: left;

  overflow: hidden;

  -webkit-align-self: center;

  -ms-flex-item-align: center;

  align-self: center;

  -webkit-box-flex: 1;

  -webkit-flex: 1;

  -ms-flex: 1;

  flex: 1;

  vertical-align: middle;

}



@media (max-width: 1199px) {

  .left_feature_content {

    width: 100%;

    float: none;

    padding-top: 60px;

  }

}



@media (max-width: 500px) {

  .left_feature_content {

    padding: 0px 15px;

  }

}



.left_feature_inner_text {

  max-width: 780px;

  float: right;

}



@media (max-width: 1199px) {

  .left_feature_inner_text {

    float: none;

    margin: auto;

  }

}



.left_feature_inner_text .media {

  width: calc(100% / 2);

  float: left;

  overflow: hidden;

  padding-right: 68px;

  margin-top: 0px;

  margin-bottom: 76px;

}



@media (max-width: 767px) {

  .left_feature_inner_text .media {

    padding-right: 50px;

  }

}



@media (max-width: 600px) {

  .left_feature_inner_text .media {

    padding-right: 0px;

  }

}



@media (max-width: 500px) {

  .left_feature_inner_text .media {

    width: 100%;

    float: none;

  }

}



.left_feature_inner_text .media .media-left {

  padding-right: 20px;

}



.left_feature_inner_text .media .media-left .social-link {

  height: 71px;

  width: 71px;

}



@media (max-width: 400px) {

  .left_feature_inner_text .media .media-left {

    padding-right: 15px;

  }

}



.left_feature_inner_text .media .media-body {

  vertical-align: middle;

}



.left_feature_inner_text .media .media-body h4 {

  font-size: 16px;

  color: #2f2f30;

  font-family: "Roboto", sans-serif;

  font-weight: bold;

  padding-bottom: 10px;

}



.left_feature_inner_text .media .media-body p {

  font-size: 15px;

  line-height: 26px;

  font-family: "Roboto", sans-serif;

  color: #58585a;

}



.left_feature_inner_text .media:nth-last-child(-n+2) {

  margin-bottom: 0px;

}



@media (max-width: 500px) {

  .left_feature_inner_text .media:nth-last-child(-n+2) {

    margin-bottom: 76px;

  }

}



@media (max-width: 500px) {

  .left_feature_inner_text .media:last-child {

    margin-bottom: 0px;

  }

}



.right_feature_image {

  width: calc(50% - 210px);

  float: right;

  overflow: hidden;

}



@media (max-width: 1199px) {

  .right_feature_image {

    width: 100%;

    float: none;

    margin-top: 50px;

    text-align: center;

  }

}



.right_feature_image img {

  width: 100%;

}



@media (max-width: 1420px) {

  .right_feature_image img {

    width: auto;

  }

}



@media (max-width: 1199px) {

  .right_feature_image img {

    width: 100%;

  }

}



.home_feature_icon {

  padding: 100px 0px;

}



.home_feature_icon .left_feature_inner_text {

  margin-bottom: -50px;

  overflow: hidden;

  max-width: none;

  float: none;

  padding-top: 0px;

}



.home_feature_icon .left_feature_inner_text .media {

  padding-right: 0px;

  width: 100%;

  margin-bottom: 50px;

}



.left_bullets_area {

  background: #f5f7f9;

  padding: 100px 0px;

}



@media (max-width: 767px) {

  .left_bullets_area {

    padding: 60px 0px 60px 0px;

  }

}



.left_bullets_area .analysis_market {

  margin-top: 0px;

}



.left_bullets_area .analysis_market ul {

  margin-left: 25px;

}



.left_bullets_area .analysis_market ul li a {

  position: relative;

}



.left_bullets_area .analysis_market ul li a i {

  color: #2761d8;

  position: absolute;

  left: -25px;

  top: 50%;

  -webkit-transform: translateY(-50%);

  -ms-transform: translateY(-50%);

  transform: translateY(-50%);

  -webkit-transition: all 300ms linear 0s;

  -o-transition: all 300ms linear 0s;

  transition: all 300ms linear 0s;

}



.left_bullets_area .analysis_market ul li:hover a i {

  left: -20px;

}



/* End Feature Slider Area css

============================================================================================ */

/* Job Requirement Area css

============================================================================================ */

.open_position_area {

  padding: 100px 0px;

}



.open_position_inner .section_title {

  padding-bottom: 33px;

  padding-top: 40px;

}



.open_position_inner .section_title h2 {

  font-size: 24px;

}



.open_position_inner .panel-group {

  margin-bottom: 0px;

}



.open_position_inner .panel-group .panel-default {

  border-radius: 0px;

  border-color: #e5e5e5;

  margin-top: 20px;

}



.open_position_inner .panel-group .panel-default:first-child {

  margin-top: 0px;

}



.open_position_inner .panel-group .panel-default .panel-heading {

  padding: 0px;

  border-color: #e5e5e5;

}



.open_position_inner .panel-group .panel-default .panel-heading .panel-title a {

  display: block;

  padding: 0px 20px;

  font-size: 18px;

  font-family: "Roboto", sans-serif;

  line-height: 50px;

  background: #2761d8;

  color: #fff;

  font-weight: bold;

  letter-spacing: .36px;

}



.open_position_inner .panel-group .panel-default .panel-heading .panel-title a i {

  float: right;

  line-height: 50px;

}



@media (max-width: 400px) {

  .open_position_inner .panel-group .panel-default .panel-heading .panel-title a i {

    line-height: 32px;

    position: absolute;

    right: 15px;

    top: 50%;

    -webkit-transform: translateY(-50%);

    -ms-transform: translateY(-50%);

    transform: translateY(-50%);

  }

}



.open_position_inner .panel-group .panel-default .panel-heading .panel-title a.collapsed {

  background: #fafafa;

  color: #2f2f30;

}



@media (max-width: 400px) {

  .open_position_inner .panel-group .panel-default .panel-heading .panel-title a {

    line-height: 30px;

    padding: 10px 20px;

    position: relative;

    font-size: 16px;

  }

}



.open_position_inner .panel-group .panel-collapse .panel-body {

  padding: 30px 38px 60px 40px;

  background: #fafafa;

}



@media (max-width: 480px) {

  .open_position_inner .panel-group .panel-collapse .panel-body {

    padding: 30px 20px 60px 20px;

  }

}



.open_position_inner .panel-group .panel-collapse .panel-body h3 {

  font-size: 20px;

  font-family: "Roboto", sans-serif;

  font-weight: 600;

  color: #2f2f30;

  padding-bottom: 15px;

}



.open_position_inner .panel-group .panel-collapse .panel-body p {

  font-size: 16px;

  line-height: 28px;

  color: #797979;

  letter-spacing: .44px;

  font-family: "Roboto", sans-serif;

  padding-bottom: 10px;

  font-weight: normal;

}



.open_position_inner .panel-group .panel-collapse .panel-body p + p {

  padding-bottom: 0px;

}



.open_position_inner .panel-group .panel-collapse .panel-body .submit_blue {

  line-height: 46px;

  margin-top: 40px;

}



/* End Job Requirement Area css

============================================================================================ */

/* 404 


/* ============================================================================================ 
   7. FOOTER COMPACTO INSTITUCIONAL
   ============================================================================================ */
footer.footer-compacto {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #0c1832; 
  color: #ffffff;
  padding: 18px 0px;
  margin-top: auto; 
}

.contenedor-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.redes-footer a {
  color: #ffffff;
  margin-right: 15px;
  font-size: 16px;
  opacity: 0.8;
}

.copyright-footer {
  text-align: right;
  font-size: 13px;
  color: #8f97a7;
}

.firma-empresa {
  display: inline-block;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(143, 151, 167, 0.4);
  color: #2ecc71; 
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .contenedor-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .redes-footer { margin-bottom: 12px; }
  .copyright-footer { text-align: center; }
  .firma-empresa {
    display: block;
    margin-left: 0px;
    padding-left: 0px;
    border-left: none;
    margin-top: 5px;
  }
}

/* Estilos limpios para el control de estatus de rescates */
.select-estatus-rapido {
    font-weight: bold !important;
    color: #ffffff !important;
    border: none !important;
}

.select-estatus-rapido.en-proceso {
    background-color: #f0ad4e !important; /* Amarillo Bootstrap */
}

.select-estatus-rapido.concluido {
    background-color: #337ab7 !important; /* Azul Bootstrap */
}

/* --- CONFIGURACIONES GLOBALES DE SOPORTE --- */
.display-none {
    display: none;
}

.col-estatus-rapido {
    width: 160px;
}

/* --- ESTILOS COMPLEMENTARIOS PARA EL MODAL DE SINIESTROS --- */
.modal-header-siniestro {
    background-color: #d9534f;
    color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.btn-cerrar-modal {
    color: white !important;
    opacity: 1 !important;
}

.modal-body-scroll {
    max-height: 75vh;
    overflow-y: auto;
}

/* --- CONTROL RÁPIDO DE COLORES EN SINIESTROS --- */
.select-siniestro-rapido {
    font-weight: bold !important;
    color: #ffffff !important;
    border: none !important;
}

/* Estado En Proceso: Rojo */
.select-siniestro-rapido.en-proceso {
    background-color: #d9534f !important;
}

/* Estado Concluido: Azul */
.select-siniestro-rapido.concluido {
    background-color: #337ab7 !important;
}

/* Altura fija para que ambos paneles se vean iguales */
.fixed-panel {
    min-height: 500px;
}

/* Títulos de panel (Gris Elegante) */
.panel-default > .panel-heading {
    background-color: #f8f9fa;
    color: #4a4a4a;
    border-color: #dee2e6;
    font-size: 18px !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px;
  
}

/* Estilo para las listas de guía */
.guia-lista {
    list-style: none;
    padding: 0;
}

.guia-lista li {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}
.contenedor-logo-ticket {
    margin-bottom: 5px; /* Separa el logo del texto de abajo */
}

.logo-ticket {
    max-height: 60px;   /* Ajusta este valor al alto que busques para tu logo */
    width: auto;        /* Mantiene la proporción original */
    display: block;
}

.alert-ticket { background-color: #35D0DE; border-color: #35D0DE; color: #333; }
    .mb-0 { margin-bottom: 0 !important; }
    .mb-10 { margin-bottom: 10px !important; }
    .mb-15 { margin-bottom: 15px !important; }
    .mt-4 { margin-top: 40px !important; }
    .mb-2 { margin-bottom: 20px !important; }
    .border-top { border-top: 2px solid #333; }
    .pt-1 { padding-top: 5px; }
    .style-ticket td { font-size: 12px !important; }
    
    
.titulo-ticket { background-color: #E35639; border-color: #35D0DE; color: #333; }
    .mb-0 { margin-bottom: 0 !important; }
    .mb-10 { margin-bottom: 10px !important; }
    .mb-15 { margin-bottom: 15px !important; }
    .mt-4 { margin-top: 40px !important; }
    .mb-2 { margin-bottom: 20px !important; }
    .border-top { border-top: 2px solid #333; }
    .pt-1 { padding-top: 5px; }
    .style-ticket td { font-size: 12px !important; }
    

    

.dynamic-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    
    /* Tamaño y visibilidad */
    min-width: 400px;    /* Asegura que no sea pequeña */
    padding: 25px 40px;  /* Más espacio interno = caja más grande */
    font-size: 1.3rem;   /* Texto más grande y legible */
    font-weight: bold;   /* Resalta el mensaje */
    
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); /* Sombra elegante */
    border-radius: 12px; /* Bordes redondeados */
    display: none; 
}

/* Opcional: Agranda el icono */
.dynamic-toast i {
    font-size: 1.5rem;
    margin-right: 10px;
}

@media print {
        .page-break {
            display: block;
            page-break-before: always; /* Para navegadores antiguos */
            break-before: page;        /* Estándar moderno */
        }
    }
    
    
    .custom-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}
.card-header-flex { display: flex; gap: 15px; align-items: center; }
.bg-blue { background: #4e73df; }
.view-link { color: #4e73df; font-size: 12px; text-decoration: none; font-weight: bold; margin-top: 10px; display: block; }

.chart-area {
    position: relative;
    height: 300px;
    width: 100%;
}

.chart-bar {
    position: relative;
    height: 300px;
    width: 100%;
}

#chart-incidencias, #chart-rescates, #chart-siniestros, #chart-cerrados {
    height: 100px !important;
    width: 100% !important;
}

/* Altura fija para la gráfica de incidencias diarias (la grande) */
#chart-incidencias-totales {
    height: 250px !important; /* Ajusta este valor si la quieres más alta o baja */
    width: 100% !important;
}
/* --- Contenedores Principales --- */
.dashboard-box { 
    border: 1px solid #e3e6f0 !important; 
    border-radius: 8px !important; 
    background-color: #fff !important; 
    margin-bottom: 20px; 
    overflow: hidden; 
}

.dashboard-header { 
    background-color: #f8f9fc !important; 
    border-bottom: 1px solid #e3e6f0 !important; 
    color: #5a5c69 !important; 
    font-weight: 700 !important; 
    text-transform: uppercase; 
    font-size: 13px !important; 
    padding: 12px 15px !important; 
}

.dashboard-body { padding: 20px !important; }

/* --- Grid de Pendientes --- */
.pendientes-container { display: flex; gap: 15px; padding: 10px; }

.card-pendiente { 
    flex: 1; 
    border: 1px solid #e3e6f0; 
    border-radius: 8px; 
    padding: 15px; 
    position: relative; 
    background: #fff; 
}

/* --- Elementos dentro de tarjetas --- */
.num-pendiente { font-size: 24px; font-weight: 700; color: #333; margin-bottom: 2px; }
.titulo-tarjeta { font-size: 13px; color: #5a5c69; margin-bottom: 12px; }
.icon-pendiente { position: absolute; top: 15px; right: 15px; font-size: 20px; color: #4e73df; }

.btn-outline-custom { 
    width: 100%; 
    padding: 5px; 
    border: 1px solid #d1d3e2; 
    background: transparent; 
    color: #4e73df; 
    border-radius: 4px; 
    font-size: 12px; 
    cursor: pointer;
}
.btn-outline-custom:hover { background-color: #f8f9fc; }

/* --- Alerta Inferior --- */
.alerta-pendientes { 
    background-color: #e8f4fd; 
    border: 1px solid #d1e7f9; 
    border-radius: 6px; 
    padding: 10px 15px; 
    margin: 0 10px 10px 10px; 
    display: flex; 
    align-items: center; 
    font-size: 13px; 
    color: #2c5282; 
}
.alerta-pendientes i { margin-right: 10px; }

/* --- Extras (Botones y Gráficas) --- */
.chart-pie { position: relative; width: 100%; }
.btn-outline-primary, .btn-outline-warning, .btn-outline-danger {
    border-radius: 0.5rem !important;
    font-size: 0.8rem !important;
    padding: 0.2rem 0.5rem !important;
}

.dona-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.chart-container {
    width: 140px; 
    height: 140px; 
    position: relative;
}

.total-centro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1;
}

#val-total-dona {
    font-size: 22px;
    font-weight: 800;
    color: #3a3b45;
}

.leyenda-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leyenda-item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #5a5c69;
}

.color-box {
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 2px;
}


    
 /* DASHBOARD-DEDUCIBLES*/

/* Contenedor de 5 columnas (20% cada una) */
        .col-custom { width: 20%; float: left; padding: 0 10px; }
        
        /* Estilos de las tarjetas */
        .dashboard-card { 
            border: 1px solid #e1e1e1; 
            border-radius: 12px; 
            padding: 15px; 
            background: #fff; 
            text-align: center; 
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            height: 140px; 
        }
        
        /* Círculo de icono */
        .icon-circle { 
            width: 40px; height: 40px; border-radius: 50%; 
            display: flex; align-items: center; justify-content: center; 
            margin: 0 auto 10px auto; color: white; font-size: 18px; 
        }
        
        .card-title { font-size: 9px; font-weight: bold; display: block; margin-bottom: 5px; text-transform: uppercase; }
        .card-value { font-size: 20px; font-weight: bold; margin: 0; }
        .card-desc { font-size: 9px; color: #777; }
        
        /* Colores */
        .bg-blue { background-color: #007bff; }
        .bg-orange { background-color: #f0ad4e; }
        .bg-green { background-color: #5cb85c; }
        .bg-cyan { background-color: #5bc0de; }
        .bg-purple { background-color: #6f42c1; }
        
.text-cobrado, .text-cobrado p, .text-cobrado .signo {
    color: #2e7d32 !important;
}

.text-pendiente, .text-pendiente p, .text-pendiente .signo {
    color: #c62828 !important;
}

/* Ajustes visuales */
.tarjeta-monto {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tarjeta-monto p {
    margin: 0 0 8px 0;
    font-weight: 600;
    font-size: 16px;
}

.tarjeta-monto h2 {
    margin: 0;
    display: flex;
    align-items: baseline;
    font-weight: 800;
    font-size: 40px;
}

.tarjeta-monto h2 span.signo {
    font-size: 24px;
    margin-left: 5px;
    font-weight: 600;
}

.texto-info {
    font-size: 14px;
    display: block;
    margin-top: 8px;
    font-weight: 500; /* Un poco más grueso para que resalte */
}

/* Colores de fondo */
.bg-cobrado { background-color: #e8f5e9; }
.bg-pendiente { background-color: #fceceb; }


/* Estilo general para las tablas del dashboard */
.table-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #f0f0f0;
    color: #666;
    font-size: 14px;
}

.table td {
    padding: 12px;
    border-bottom: 1px solid #f9f9f9;
    font-size: 14px;
    color: #333;
}

/* Estilos de badges */
.text-pendiente {
    background-color: #ffebee;
    color: #c62828 !important;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.text-cobrado {
    background-color: #e8f5e9;
    color: #2e7d32 !important;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Ajustes para el contenedor de la gráfica */
.grafica-contenedor {
    position: relative;
    width: 100%;
    max-width: 120px; /* Ajusta el tamaño de la dona */
    margin: 0 auto;
}

/* El texto que va en medio de la dona */
.total-central {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1;
}

.total-central span { display: block; font-weight: bold; }
#total-central { font-size: 20px; color: #333; }
.total-label { font-size: 10px; color: #666; text-transform: uppercase; }

/* Estilo para la leyenda (los puntos de colores) */
.leyenda-estatus p { margin-bottom: 8px; font-size: 13px; color: #555; }
.leyenda-estatus span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 2px;
}

/* Contenedor de cada línea de la leyenda */
.item-leyenda {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

/* El punto de color (bullet) */
.color-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border-radius: 2px; /* O usa 50% si prefieres círculos en lugar de cuadrados */
}

/*Header Totales Incidencias*/
/* Contenedor de la tarjeta con borde lateral */
.stat-box {
    border-left: 5px solid #ccc;
    padding-left: 5px;
    margin: 5px 0;
}

/* Colores de los bordes */
.border-green  { border-left-color: #1cc88a; }
.border-orange { border-left-color: #f6c23e; }
.border-blue   { border-left-color: #4e73df; }
.border-red   { border-left-color: #E62D17; }


/* TÃ­tulo pequeÃ±o */
.stat-title {
    font-size: 10px;
    font-weight: bold;
    color: #777;
    margin: 0 0 2px 0;
}

/* El bloque que contiene el nÃºmero y el icono */
.stat-main {
    display: flex;        /* ALINEACIÃ“N HORIZONTAL FORZADA */
    align-items: center;  /* Centra verticalmente el nÃºmero y el icono */
    gap: 15px;            /* Espacio entre el nÃºmero y el icono */
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.stat-icon {
    font-size: 22px;
    color: #555;
} 

.navbar-nav li a i {
    margin-right: 8px; /* Crea un pequeño espacio entre el icono y la letra */
    width: 15px;      /* Alinea los iconos perfectamente si son de distinto ancho */
    text-align: center;
}


 /*CAMBIO DE CONTRASEÑA*/
 
 .password-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 40px auto;
}

.icon-password {
    width: 80px;
    height: 80px;
    background: #f0f4ff;
    color: #0047AB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.input-wrapper input {
    border: none;
    outline: none;
    flex: 1;
    margin: 0 10px;
}



.btn-save {
    background: #0047AB;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
}

.btn-cancel {
    background: transparent;
    border: 1px solid #ccc;
    padding: 12px 25px;
    border-radius: 6px;
}


/* Transición suave para todos los iconos */
.toggle-eye {
    transition: all 0.3s ease;
    cursor: pointer;
    color: #6c757d;
}


.toggle-eye.rotate {
    transform: rotate(180deg); 
    color: #0047AB; 
}

/* Clases auxiliares limpias para los campos internos */
.info-label {
    display: block;
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.info-value {
    color: #111827;
    font-size: 14px;
    font-weight: bold;
}

.doc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f3f4f6;
}
.nav-tabs { border-bottom: 1px solid #ddd; margin-bottom: 20px; }
        .nav-tabs > li > a { color: #555; font-weight: 600; }
        .nav-tabs > li.active > a { border-top: 2px solid #337ab7; }
        .badge-status { background: #d4edda; color: #155724; padding: 6px 12px; border-radius: 4px; font-weight: bold; font-size: 14px; display: inline-block; }

/* Estilo moderno tipo tarjeta/modal flotante */
        #custom-toast {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9999;
            width: 90%;
            max-width: 480px;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: none;
            text-align: center;
            padding: 35px 30px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }
        #custom-toast .toast-close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: transparent;
            border: none;
            font-size: 18px;
            color: #2c3e50;
            cursor: pointer;
        }
        #custom-toast .toast-icon-container {
            margin-bottom: 20px;
        }
        #custom-toast .toast-icon-container i {
            font-size: 38px;
            width: 75px;
            height: 75px;
            line-height: 75px;
            border-radius: 50%;
            display: inline-block;
        }
        #custom-toast h4 {
            font-size: 22px;
            font-weight: 700;
            color: #1a252f;
            margin-top: 0;
            margin-bottom: 12px;
        }
        #custom-toast p {
            font-size: 14px;
            color: #596573;
            line-height: 1.5;
            margin-bottom: 0;
        }
        
 /* ==========================================
   ESTILOS COMPLEMENTARIOS PARA EL DASHBOARD
   ========================================== */

/* Alineaciones y Flexbox auxiliares */
.flex-row-center {
    display: flex;
    align-items: center;
}

.dashboard-item-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Contenedores de iconos para las tarjetas superiores */
.dashboard-icon-container {
    padding: 10px;
    border-radius: 10px;
    display: inline-flex;
    margin-bottom: 10px;
}
.dashboard-icon-container.blue { background: #eff6ff; color: #1d4ed8; }
.dashboard-icon-container.green { background: #ecfdf5; color: #047857; }
.dashboard-icon-container.purple { background: #f3e8ff; color: #7e22ce; }
.dashboard-icon-container.red { background: #fee2e2; color: #b91c1c; }
.dashboard-icon-container.orange { background: #ffedd5; color: #c2410c; }

/* Círculos de iconos para la lista operativa del panel izquierdo */
.dashboard-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dashboard-icon-circle.blue { background: #eff6ff; color: #1d4ed8; }
.dashboard-icon-circle.orange { background: #ffedd5; color: #c2410c; }
.dashboard-icon-circle.purple { background: #f3e8ff; color: #7e22ce; }
.dashboard-icon-circle.red { background: #fee2e2; color: #b91c1c; }

/* Badges personalizados con colores acordes */
.badge-blue { background-color: #eff6ff !important; color: #1d4ed8 !important; font-weight: 700; padding: 6px 12px; border-radius: 20px; }
.badge-orange { background-color: #ffedd5 !important; color: #c2410c !important; font-weight: 700; padding: 6px 12px; border-radius: 20px; }
.badge-purple { background-color: #f3e8ff !important; color: #7e22ce !important; font-weight: 700; padding: 6px 12px; border-radius: 20px; }
.badge-red { background-color: #fee2e2 !important; color: #b91c1c !important; font-weight: 700; padding: 6px 12px; border-radius: 20px; }


/**/


.chequeo-turno-wrapper {
    background-color: #f4f7f6;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Encabezado */
.header-row {
    margin-bottom: 20px;
}
.titulo-seccion {
    font-weight: 700;
    color: #1e293b;
    margin-top: 0;
}
.titulo-seccion i {
    font-size: 16px;
}
.btn-guardar-progreso {
    background-color: #10b981;
    border-color: #059669;
    font-weight: 600;
}

/* Filtros y Métricas Superiores */
.filtros-row {
    margin-bottom: 20px;
}
.shadow-sm {
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}
.label-filtro {
    font-weight: 600;
    font-size: 12px;
}
.tarjeta-metrica {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 5px;
}
.tarjeta-revisadas {
    background-color: #f0fdf4;
}
.tarjeta-pendientes {
    background-color: #fffbeb;
}
.etiqueta-metrica {
    font-size: 11px;
}
.valor-metrica {
    margin: 5px 0;
    font-weight: bold;
    color: #0f172a;
}
.sub-etiqueta {
    font-size: 10px;
}

/* Tabla de Chequeo */
.table-container-body {
    padding: 0 !important;
}
.tabla-chequeo {
    margin-bottom: 0 !important;
    font-size: 13px;
}
.tabla-chequeo > thead > tr {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 600;
}
.tabla-chequeo > thead > tr > th {
    border-bottom: 1px solid #e2e8f0;
    font-size: 11px;
    letter-spacing: 0.5px;
}
.tabla-chequeo > tbody > tr > td {
    vertical-align: middle !important;
    padding: 10px 8px !important;
    border-top: 1px solid #f1f5f9;
}
.radio-inline {
    font-size: 12px;
    font-weight: normal;
    color: #334155;
    margin-right: 8px;
}
.footer-paginacion {
    background-color: #fff !important;
    border-top: 1px solid #e5e7eb !important;
    padding: 10px 15px !important;
}
.info-paginacion {
    padding-top: 6px;
    font-size: 12px;
}

/* Panel Lateral Derecho */
.titulo-resumen-lateral {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    color: #1e293b;
}
.item-resumen-lateral {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.item-resumen-lateral > div {
    display: flex;
    align-items: center;
}
.icono-resumen {
    font-size: 18px;
    margin-right: 8px;
}
.texto-etiqueta-resumen {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}
.valor-resumen-lateral {
    font-weight: bold;
    font-size: 16px;
    color: #0f172a;
}
.divisor-resumen {
    margin: 15px 0;
    border-top: 1px solid #e5e7eb;
}
.titulo-progreso {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}
.valor-progreso-num {
    font-size: 12px;
    font-weight: bold;
    color: #0f172a;
}
.barra-progreso-custom {
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 8px;
}
.barra-relleno-custom {
    width: 27.91%;
    background-color: #0f172a;
    border-radius: 4px;
}
.sub-progreso {
    font-size: 11px;
}
.alerta-importante {
    margin-top: 20px;
    margin-bottom: 0;
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
    border-radius: 6px;
    padding: 12px;
}
.flex-container-alerta {
    display: flex;
    align-items: flex-start;
}
.icono-alerta {
    font-size: 16px;
    margin-right: 8px;
    margin-top: 2px;
}
.titulo-alerta {
    font-size: 12px;
}
.texto-alerta {
    font-size: 11px;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Barra de Acciones Inferior */
.row-acciones-inferior {
    margin-top: 20px;
}
.panel-acciones-body {
    padding: 12px 20px;
    background-color: #fff;
}
.flex-row-center {
    display: flex;
    align-items: center;
}
.btn-cancelar-chequeo {
    border-color: #cbd5e1;
    color: #475569;
    font-weight: 600;
}
.contenedor-botones-der {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.btn-accion-secundaria {
    border-color: #cbd5e1;
    color: #475569;
    font-weight: 600;
}
.btn-finalizar-custom {
    background-color: #10b981;
    border-color: #059669;
    font-weight: 600;
    padding: 6px 15px;
}
.flex-btn-finalizar {
    display: flex;
    align-items: center;
}
.icono-finalizar {
    font-size: 18px;
    margin-right: 8px;
}
.texto-principal-btn {
    font-size: 13px;
    line-height: 1.2;
}
.texto-secundario-btn {
    font-size: 10px;
    font-weight: normal;
    opacity: 0.9;
}

.historial-chequeos-wrapper {
    background-color: #f4f7f6;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Encabezado */
.header-row {
    margin-bottom: 20px;
}
.titulo-seccion {
    font-weight: 700;
    color: #1e293b;
    margin-top: 0;
}
.titulo-seccion i {
    font-size: 16px;
}
.btn-iniciar-chequeo {
    background-color: #10b981;
    border-color: #059669;
    font-weight: 600;
    padding: 8px 16px;
}

/* Filtros */
.filtros-row {
    margin-bottom: 20px;
}
.shadow-sm {
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}
.label-filtro {
    font-weight: 600;
    font-size: 12px;
}

/* Tabla de Historial */
.table-container-body {
    padding: 0 !important;
}
.tabla-historial {
    margin-bottom: 0 !important;
    font-size: 13px;
}
.tabla-historial > thead > tr {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 600;
}
.tabla-historial > thead > tr > th {
    border-bottom: 1px solid #e2e8f0;
    font-size: 11px;
    letter-spacing: 0.5px;
}
.tabla-historial > tbody > tr > td {
    vertical-align: middle !important;
    padding: 12px 10px !important;
    border-top: 1px solid #f1f5f9;
}
.barra-progreso-tabla {
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 2px;
    box-shadow: none;
}
.footer-paginacion {
    background-color: #fff !important;
    border-top: 1px solid #e5e7eb !important;
    padding: 10px 15px !important;
}
.info-paginacion {
    padding-top: 6px;
    font-size: 12px;
}

.banner-contenedor {
    width: 100%;
    max-height: 640px;     /* Altura máxima ideal para que luzca bien sin ocupar toda la pantalla */
    overflow: hidden;
    border-radius: 6px;    /* Opcional: esquinas ligeramente redondeadas */
    margin: 0 auto 20px auto; /* Centra el contenedor y deja espacio abajo */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



.btn-nueva-camara {
    background-color: #10b981;
    border-color: #059669;
    font-weight: 600;
    padding: 8px 16px;
}

/* Filtros */
.filtros-container {
    margin-bottom: 20px;
}
.shadow-sm {
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}
.label-filtro {
    font-weight: 600;
    font-size: 12px;
}
.btn-buscar {
    background-color: #0284c7;
    border-color: #0284c7;
    font-weight: 600;
}

/* Barra de navegación superior */

/* Navbar */


/* Tarjetas KPI Superiores */
.kpi-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
    position: relative;
    min-height: 90px;
}

.kpi-card h3 {
    margin: 4px 0 2px 0;
    font-weight: bold;
    font-size: 22px;
}

/* Dejamos espacio a la derecha para que el título no pise al icono */
.kpi-card .text-uppercase,
.kpi-card h3,
.kpi-card .small {
    display: block;
    padding-right: 25px; 
}

/* Icono flotante absoluto perfectamente alineado */
.kpi-icon-absolute {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.25;
    font-size: 22px;
}

/* Colores de bordes para tarjetas superiores */
.kpi-circulacion { border-left-color: #2ecc71 !important; }
.kpi-atiempo { border-left-color: #27ae60 !important; }
.kpi-retrasados { border-left-color: #f39c12 !important; }
.kpi-noreportan { border-left-color: #e74c3c !important; }
.kpi-finalizados { border-left-color: #95a5a6 !important; }

/* Paneles Centrales */
.panel-dashboard {
    background: #ffffff;
    border: none;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 15px;
    min-height: 290px;
}

.panel-dashboard h4 {
    font-weight: bold;
    font-size: 13px;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #ecf0f1;
    padding-bottom: 8px;
}

/* Tablas */
.table > thead > tr > th {
    background-color: #eaeded;
    color: #2c3e50;
    border-bottom: 2px solid #ddd;
    font-size: 11px;
    text-transform: uppercase;
}
.table > tbody > tr > td {
    font-size: 12px;
    vertical-align: middle !important;
}

/* Mapa */
.map-container {
    background: #e9ecef;
    border: 2px dashed #ced4da;
    border-radius: 4px;
    height: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: bold;
    font-size: 12px;
}

/* Tarjetas Footer / Inferiores */
.metric-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 12px 10px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    min-height: 75px;
    border-left: 4px solid #3498db;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-card span,
.metric-card h4 {
    padding-right: 20px;
}

/* Estilos globales C5 */
/* Estilos globales C5 */
.c5-container {
    padding-top: 250px;
    padding-bottom: 100px;
}


/* Paneles principales */
.panel.c5-panel {
    background-color: #0b1730;
    color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    padding: 10px;
}

.c5-panel-green {
    border: 1px solid #137c4e;
}

.c5-panel-blue {
    border: 1px solid #1b4b88;
}

/* Control estricto de la imagen y medios */
.media-left {
    padding-right: 15px;
    vertical-align: middle;
}

.c5-card-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.media-body {
    vertical-align: middle;
}

.c5-title {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.c5-list {
    line-height: 2.2;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*# sourceMappingURL=style.css.map */