@import url("animate.css");
@import url("icons.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: 'Poppins', sans-serif;
}

div#app {
  width: 100%;
}

:root {
  --main-color: #004DAB;
  --main-color-dark: #05284E;
  --main-color-light: #99BEDD;
  --secondary-color: #EE2752;
  --secondary-color-dark: #8E1D2F;
  --secondary-color-light: #D3A09D;
  --tertiary-color: #7b50b4;
  --tertiary-color-dark: #302943;
  --tertiary-color-light: #81759f;
  --text-color: #000;

  --success-color: #0AB8AF;
  --success-color-light: #87dccb;
  --success-color-dark: #576942;
  --danger-color: #E62C3A;
  --danger-color-dark: #BF222E;
  --danger-color-light: #fb7b90;
  --info-color: #514899;
  --info-color-light: #a77dfb;
  --info-color-soft: #EBE5FC;
  --info-color-dark: #7749F8;
  --warning-color: #f4ba00;
  --color-dark: #292E31;
  --color-dark-light: #51585E;
  --yellow-color: #d8ca2e;
  --default-grey: #e0e0e0;
  --default-grey-dark: #797979;
  --secondary-bandera: #D52B1E;
}

a {
  text-decoration: none;
  color: var(--main-color);
  background-color: transparent;
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: var(--main-color-light);
  background-color: transparent;
}

.hover2:hover {
  color: var(--main-color-light) !important;
}


.hover2:hover img {
  opacity: 0.7 !important;
  filter: alpha(opacity=70) !important;
  /* For IE8 and earlier */
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: var(--main-color);
}

::selection {
  color: #fff;
  background: var(--main-color);
}


.form-control::placeholder {
  font-size: 14px;
  /* Firefox, Chrome, Opera */
  color: #bfc5ca;
}

.form-control:-ms-input-placeholder {
  font-size: 14px;
  /* Internet Explorer 10-11 */
  color: #bfc5ca;
}

.form-control::-ms-input-placeholder {
  font-size: 14px;
  /* Microsoft Edge */
  color: #bfc5ca;
}


.img-grayscale {
  filter: grayscale(100%);
}

.active-link>.img-grayscale {
  filter: grayscale(0%);
  border: 2px solid #000000;
  box-sizing: content-box;
  padding: 3px
}

.active-link {
  font-weight: 700;
  font-size: 20px;
}

/************
 preloader 
***********/

div#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: rgba(255, 255, 255, 0.8) url(../images/preload.gif) no-repeat center center;
}



.preload-spinner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: rgba(0, 0, 0, 0.5) url(../images/preloadSpinner.svg) no-repeat center center;
  border-radius: 5px;
}


@-webkit-keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(130deg);
  }
}

@keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@-webkit-keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg);
  }

  50% {
    -webkit-transform: rotate(5deg);
  }

  to {
    -webkit-transform: rotate(-130deg);
  }
}

@keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }

  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.btnSpinner.loading::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid transparent;
  border-top-color: var(--default-white);
  border-right-color: var(--default-white);
  border-radius: 50%;
  margin-left: 5px;
  animation: spin 1s linear infinite;
}

.spin {
  animation: spin 1s linear infinite;
}



body {
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-family: 'Nunito', sans-serif;
  background: #F3F6F9;

  min-height: 100vh;
  display: flex;
  position: relative;
}

ul,
li {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

/*************
 Typografia
 ************/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 500;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small {
  font-weight: 400;
}

p {
  font-size: 0.875rem;
}

h1,
.h1 {
  font-size: 2.19rem;
}

h2,
.h2 {
  font-size: 1.875rem;
}

h3,
.h3 {
  font-size: 1.5rem;
}

h4,
.h4 {
  font-size: 1.125rem;
}

h5,
.h5 {
  font-size: 1rem;
}

h6,
.h6 {
  font-size: 0.9375rem;
}

p {
  font-size: 0.875rem;
}


/*************NAVBAR*/



/*header*/

.btn-menuHeader {
  padding: 8px;
  gap: 8px;
  border-radius: 30px;
  border: 1px solid var(--main-color-light);
  background: var(--default-white, #FFF);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}



nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul .nav-item {
  padding-right: 10px !important;
}

nav ul li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}

nav ul li a:hover {
  background: #1d4f71;
  color: #fff;
}

nav ul li a .fa {
  width: 16px;
  text-align: center;
  margin-right: 5px;
  float: right;
}

nav ul ul {
  background: rgba(0, 0, 0, 0.2);
}

nav ul li ul li a {

  border-left: 4px solid transparent;
  padding: 10px 20px;
}

nav ul li ul li a:hover {

  border-left: 4px solid #3498db;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--default-white, #FFF);
  background-color: var(--main-color);
}

nav ul li .nav-link {
  color: var(--color-dark);
  padding-right: 10px !important
}

nav ul li .nav-link:hover {
  color: var(--default-white,
      #FFF);
  background: var(--main-color-light);

}

nav ul li .nav-link:focus {
  color: var(--default-white,
      #FFF);
  background: var(--main-color-light);

}

.nav-tabs .nav-item .pasoActivo {
  border-right: 1px solid var(--main-color-light) !important;
  border-top: 1px solid var(--main-color-light) !important;
  border-left: 1px solid var(--main-color-light) !important;

}

.nav-tabs .nav-item .pasoDisabled {
  background: var(--default-grey) !important;
  color: var(--default-grey-dark) !important;
  border-top: 0px !important;
  border-bottom: 1px solid var(--main-color-light) !important;
  border-right: 1px solid #bebebe !important;
}

.nav-tabs .nav-item .pasoDisabled .bg-primary-dark {
  background: var(--default-grey-dark) !important;
}

.nav-tabs .nav-item .pasoDisabled .text-c-01 {
  color: var(--default-grey-dark) !important;
}

.habilitacion-container {
  position: relative;
  border-right: 1px solid var(--main-color-light) !important;
  border-left: 1px solid var(--main-color-light) !important;
  border-bottom: 1px solid var(--main-color-light) !important;
  border-radius: 10px;
}

.w-20 {
  width: 20%;
}

.w-40 {
  width: 40%;
}

.w-70 {
  width: 70%;
}

.w-99 {
  width: 99%;
}

.w-110 {
  width: 110%;
}

/*************sidebar************/
.sidebar-content {
  margin-top: 15px
}

/*--------------------sidebar-header----------------------*/

.sidebar-header {
  padding: 15px 20px;
  overflow: hidden;
  color: #fff;
  background-color: var(--secondary-color);
}



.sidebar-header .user-pic img {
  object-fit: cover;

}

.sidebar-header {
  position: relative;
  width: 100%;

}


/* Inverted rounded corners */
.ss-style-invertedrounded {
  margin-bottom: 10px;
  padding: 19px 20px 26px 33px;
  border-radius: 0 0 0 60px;
}

.ss-style-invertedrounded::before,
.ss-style-invertedrounded::after {
  left: 0;
  z-index: -1;
  height: 90px;
  background: #3498db;
}

.ss-style-invertedrounded::before {
  top: 100%;
  border-radius: 0 90px 0 0;
}

.ss-style-invertedrounded::after {
  bottom: 0;
  z-index: -1;

}

/*----------------------sidebar-menu-------------------------*/
.offcanvas-amd-menu {
  background-color: var(--main-color);
}

.offcanvas-amd-menu .offcanvas-body {
  padding: 0px;
  overflow: hidden;
}

.offcanvas-header .btn-close {
  color: #adc5e8;
}

.sidebar-menu {
  padding-bottom: 10px;

}

.offcanvas-header {
  background-color: var(--secondary-color);

}

.btn-close-menu {
  background: transparent;
  border: 0px;
  box-shadow: none;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-menu .header-menu span {
  font-weight: bold;
  font-size: 14px;
  padding: 15px 20px 5px 20px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--main-color-light)
}

.sidebar-menu ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  position: relative;
  padding: 20px;
  color: #fff;
  font-size: 18px;
}

.sidebar-menu ul li a:hover,
.sidebar-menu ul li a:active,
.sidebar-menu ul li a:focus {
  color: var(--tertiary-color-light)
}

.sidebar-menu ul li a i {
  margin-right: 10px;
  font-size: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
}

.sidebar-menu ul li a i {
  background-color: var(--main-color-dark);
  color: var(--info-color-light);
  font-size: 18px;
}

.sidebar-menu ul li a:hover>i::before {
  display: inline-block;
  animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-menu .sidebar-dropdown>a:after {
  font-family: 'Linearicons-Free';
  font-weight: 900;
  content: "\e876";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: 15px;
  top: 27px;
  font-size: 13px;
}



.sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 5px 0;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu li {
  padding-left: 25px;
  font-size: 13px;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
  content: "\e68e";
  font-family: 'themify';
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
  font-size: 15px;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu li a.active {
  background: var(--info-color-light);
  border-radius: 10px 0px 0 10px;
}

.sidebar-menu ul li a span.label,
.sidebar-menu ul li a span.badge {
  float: right;
  margin-top: 8px;
  margin-left: 5px;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
  float: right;
  margin-top: 0px;
}

.sidebar-menu .sidebar-submenu {
  display: none;
}

.sidebar-menu .sidebar-dropdown.active>a:after {
  transform: rotate(90deg);
  right: 17px;
}


.sidebar-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  background-color: var(--main-color);

}

.sidebar-footer>a {
  flex-grow: 1;
  text-align: center;

  line-height: 30px;
  position: relative;
  color: #fff;
  padding: 20px;
  display: block;
}

.sidebar-footer>a:hover {
  color: var(--main-color-light)
}


main {
  flex: 1;
  padding: 0 0 2rem 0;
  color: #1f2027;
  display: flex;
  flex-direction: column;


}

main h1 {
  margin-bottom: 1rem;
}

main .copyright {
  margin-top: auto;
  font-size: 0.9rem;
}

main .copyright span {
  color: var(--main-color);
  font-weight: 500;
  cursor: pointer;
}




/**********text ellipsis
**********/

.text-ellipsis-150 {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-ellipsis-lines-3 {
  display: -webkit-box;
  max-width: 200px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/***********
***********/
.text-no-upp {
  text-transform: none !important;
}

.text-ind-1 {
  text-indent: 30px;
}

.line-height-normal {
  line-height: normal;
}

/*************
 Color Textos 
 ************/

.text-secondary {
  color: #8f5fe8 !important;
}

.text-black {
  color: #000000 !important;
}

.text-rojo {
  color: #dd4a3e !important
}

.text-verde {
  color: #61dabf !important
}

.text-amarillo {
  color: #ffda37 !important
}

.text-naranja {
  color: #ff7707 !important
}

.text-azul {
  color: #2c69ff !important
}

.text-gris-oscuro {
  color: #39393b !important
}




.text-c-01 {
  color: var(--main-color) !important
}


.text-c-02 {
  color: var(--success-color) !important
}

.text-c-03 {
  color: var(--danger-color) !important
}

.text-c-04 {
  color: var(--info-color) !important
}

.text-c-05 {
  color: #515965 !important
}

.text-c-06 {
  color: #a4aebe !important
}

.text-c-07 {
  color: var(--secondary-color) !important
}

.text-c-08 {
  color: var(--main-color-light) !important
}

.text-c-09 {
  color: var(--main-color-dark) !important
}

.text-c-10 {
  color: var(--default-grey);
}

.text-c-11 {
  color: var(--success-color-dark);
}

.text-c-12 {
  color: var(--warning-color);
}


.required {
  color: red;
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
}

/*fondos*/


.bg-viber {
  background: linear-gradient(45deg, #00B7F1, #5fa5ba);
}

.bg-cardHome {
  background: linear-gradient(90deg, #a77dfb 0%, #7749F8 100%);
}

.bg-loginAzul {
  background: linear-gradient(90deg, #015CAB 0%, #72AFE3 100%);
}

.bg-loginRojo {
  background: var(--secondary-bandera, #D52B1E);
}

.bg-loginLeftStp {
  background: #B7B7B7;
}

.bg-loginLeftStp>div>p {
  color: #000 !important;
}

.bg-loginRightStp {
  background: linear-gradient(90deg, #000 0%, #909090 100%);
}

.bg-login {
  background: #F7F9FB;
}

.bg-body {
  background: #F7F9FB !important;
}

.bg-disabled {
  background: #a4aebe !important
}

.text-viber {
  color: #00B7F1;
}

.gradient-light {


  background: rgb(61, 90, 241);
  background: linear-gradient(180deg, rgba(61, 90, 241, 0.3267507686668417) 6%, rgba(243, 246, 249, 1) 100%);
}



.text-black {
  color: #000;
}




.bg-c-blue {
  background: linear-gradient(45deg, #60839a, #73b4ff);
}

.bg-c-pink {
  background: linear-gradient(45deg, #FF5370, #ff869a);
}

.text-c-pink {
  color: #FF5370;
}

.bg-c-green {
  background: linear-gradient(45deg, #2ed8b6, #59e0c5);
}

.text-c-green {
  color: #2ed8b6;
}

.bg-c-yellow {
  background: linear-gradient(45deg, #FFB64D, #ffcb80);
}

.bg-c-info {
  background: linear-gradient(45deg, #514899, #a77dfb);
}

.bg-c-infoLight {
  background: linear-gradient(45deg, #5b5494, #bba2ff);
}

.bg-c-infoMedium {
  background: linear-gradient(45deg, #56517e, #a77dfb);
}

.bg-c-infoDark {
  background: linear-gradient(45deg, #514899, #7749F8);
}

.text-c-yellow {
  color: #FFB64D;
}

.bg-c-orenge {
  background: linear-gradient(45deg, #FE8A7D, #feb8b0);
}

.bg-default {
  background: var(--default-grey);
}


/* ********************
Fondos
 **************/


.bg-transparent {
  background: transparent !important
}

.bg-primary {
  background: var(--main-color) !important
}

.bg-primary-dark {
  background: var(--main-color-dark) !important
}

.bg-primary-light {
  background: var(--main-color-light) !important
}

.bg-danger {
  background: var(--danger-color) !important
}

.bg-success {
  background: var(--success-color-light) !important
}

.bg-warning {
  background: var(--warning-color) !important
}

.bg-info {
  background: var(--info-color-soft) !important
}

.bg-info-dark {
  background: var(--info-color-dark) !important
}

.bg-negro {
  background: #000000 !important
}

.bg-blanco {
  background: var(--default-white, #FFF);

}

.bg-secondary-bandera {
  background: var(--secondary-bandera);

}

/*gradiente*/
.gradient-back {
  background: rgb(22, 92, 196);
  background: linear-gradient(0deg, var(--tertiary-color) 0%, var(--tertiary-color)50%, var(--secondary-color) 100%);
  position: absolute;
  height: 200px;
  width: 100%;
  left: 0px;
  right: 0px;
  top: 97px;
  z-index: -1;
  -webkit-box-shadow: -1px 7px 16px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -1px 7px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: -1px 7px 16px 0px rgba(0, 0, 0, 0.2);
}

.gradient-back-top {
  background: rgb(22, 92, 196);
  background: linear-gradient(0deg, var(--tertiary-color) 0%, var(--tertiary-color)50%, var(--secondary-color) 100%);
  position: absolute;
  height: 230px;
  width: 100%;
  left: 0px;
  right: 0px;
  top: 97px;
  z-index: 0;
  -webkit-box-shadow: -1px 7px 16px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -1px 7px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: -1px 7px 16px 0px rgba(0, 0, 0, 0.2);
}

/* Inverted rounded corners */
.gradient-back-top {
  margin-bottom: 10px;
  padding: 19px 20px 26px 33px;
  border-radius: 0 0 100px 100px;
}

.gradient-back-top::before,
.gradient-back-top::after {
  left: 0;
  z-index: -1;
  height: 90px;
  background: #3498db;
}

.gradient-back-top::before {
  top: 100%;
  border-radius: 0 90px 0 0;
}

.gradient-back-top::after {
  bottom: 0;
  z-index: -1;

}

.bg-gradiente-02 {
  background: rgb(22, 92, 196);
  background: linear-gradient(0deg, var(--tertiary-color) 0%, var(--tertiary-color)6%, var(--secondary-color) 69%);
}


.bg-gradiente-03 {
  background: rgb(22, 92, 196);
  background: linear-gradient(0deg, var(--secondary-color) 0%, rgba(52, 49, 166, 1) 18%, var(--tertiary-color) 42%);
}

.stripe-1 {
  color: white;
  background: repeating-linear-gradient(45deg,
      #606dbc,
      #606dbc 10px,
      #465298 10px,
      #465298 20px);
}

.bg-01 {
  background-color: var(--tertiary-color) !important;
}

.bg-01-01 {
  background-color: #936cc5 !important;
}

.bg-01-02 {
  background-color: #b28ee0 !important;
}

.text-bg-01 {
  color: var(--tertiary-color) !important;
}

.bg-02 {
  background-color: #F64E60 !important;
}




.text-bg-02 {
  color: #F64E60 !important;
}

.bg-03 {
  background-color: #1BC5BD !important;
}

.text-bg-03 {
  color: #1BC5BD !important;
}

.bg-04 {
  background-color: #3445E5 !important;
}


.bg-05 {
  background-color: var(--main-color-dark) !important;
}


.bg-06 {
  background-color: #303337 !important;
}

.bg-07 {
  background-color: #d4c5f3 !important;
}



.bg-08 {
  background-color: #e2e2e2 !important;
}



/*************
 Textos 
 ************/

.text-bold {
  font-weight: bold;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-no-upp {
  text-transform: none !important
}

.bg-grey-text {
  background: #2A3038;
  padding: 0 4px;
}

/*************
 weight tamaños
 ************/
.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

/*************
 Textos tamaños
 ************/
.text-9 {
  font-size: 9px !important;
}

.text-10 {
  font-size: 10px !important;
}

.text-11 {
  font-size: 11px !important;
}

.text-12 {
  font-size: 12px !important;
  ;
}

.text-13 {
  font-size: 13px !important;
}

.text-14 {
  font-size: 14px !important;
}

.text-15 {
  font-size: 15px;
}

.text-16 {
  font-size: 16px !important;
}

.text-18 {
  font-size: 18px !important;
}

.text-20 {
  font-size: 20px !important;
}

.text-24 {
  font-size: 24px !important;
}

.text-25 {
  font-size: 25px !important;
}

.text-30 {
  font-size: 30px !important;
}

.text-40 {
  font-size: 40px !important;
}

.text-50 {
  font-size: 50px !important;
}

.text-60 {
  font-size: 60px !important;
}

.text-75 {
  font-size: 75px !important;
}

.text-100 {
  font-size: 100px !important;
}

/***************
imagenes avatar
****************/
.img-circle {
  border-radius: 50%;
}

.user-avatar {
  width: 45px;
  height: 45px;
  object-fit: cover;

}

.user-avatar-mi-perfil img {
  width: 180px;
  height: 180px;
  object-fit: cover;

}

.img-index {
    background: url(../images/ilustracion-home.svg);
    background-repeat: no-repeat;
    background-position: right;
}

/************************
empty states
**********************/

/*empty state*/




.empty {

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.empty-height {
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.empty-height-400 {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.empty-height-350 {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.empty-height-100 {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.empty-img {
  height: 35vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: repeating-linear-gradient(45deg,
      #303337,
      #303337 10px,
      rgba(255, 255, 255, 0.04) 10px,
      rgba(255, 255, 255, 0.04)20px);
}


.empty-img-video {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: repeating-linear-gradient(45deg,
      #303337,
      #303337 10px,
      rgba(255, 255, 255, 0.04) 10px,
      rgba(255, 255, 255, 0.04)20px);
}



.overlay-image-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
  border-radius: 3px;
}

.capture-video-content:hover .overlay-image-video {
  display: block;
  background: rgba(0, 0, 0, .5);
}

.button-image-video {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity .35s ease;
  display: flex;
  margin: auto;
  position: absolute;
  top: 0px;
}

.button-image-video a {
  max-width: 80%;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}



.capture-video-content:hover .button-image-video {
  opacity: 1;
}

/***********
bordes
*******************/
.bo-0 {
  border: 0px !important;
}

.bot-0 {
  border-top: 0px !important;
}

.bot-6 {
  border-top: 6px solid var(--main-color) !important;
}

.bob-0 {
  border-bottom: 0px;
}

.bob-1 {
  border-bottom: 1px solid rgba(190, 195, 206, 0.75);
}

.bob-2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.bot-1 {
  border-top: 1px solid rgba(48, 52, 60, 0.75);
}

.bot-2 {
  border-top: 1px solid rgba(190, 195, 206, 0.75);
}

.bo-1 {
  border: 1px solid var(--main-color-light) !important;
}

.bo-1-2 {
  border: 1px solid var(--main-color) !important;
}

.bo-1-3 {
  border: 2px solid var(--main-color-dark) !important;
}

.bo-1-4 {
  border: 2px solid var(--main-color) !important;
}

.bo-1-5 {
  border: 2px solid var(--main-color-light) !important;
}

.bo-2 {
  border: 1px solid var(--info-color-light) !important;
}

.bo-2-2 {
  border: 3px solid var(--info-color-light) !important;
}

.bo-3 {
  border: 1px solid rgba(179, 187, 202, 0.75) !important;
}



.bol-1 {
  border-right: 1px solid rgba(74, 79, 90, 0.75);
}

.bor-1 {
  border-right: 1px solid var(--default-grey-dark) !important;
}

.bob-2 {
  border-bottom: 1px solid rgba(123, 130, 144, 0.75);
}

.bob-3 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75) !important;
}

.bol-2 {
  border-left: 2px solid var(--info-color-light) !important;
}

.border-radius-0 {
  border-radius: 0px !important;
}

.border-radius-50 {
  border-radius: 50%;
}

.border-radius-5 {
  border-radius: 5px !important;
}

.border-radius-10 {
  border-radius: 10px !important;
}

.border-radius-30 {
  border-radius: 30px !important;
}

.border-radius-topRight {
  border-top-right-radius: 10px;
}

.border-radius-topleft {
  border-top-left-radius: 10px;
}

.separador {
  border: 1px solid var(--default-grey);
  margin: 40px !important;
}





/*************
 Botones 
 ************/

.btn {
  border-radius: 3px;
  text-transform: uppercase;
  -webkit-transition-duration: 0.4s;
  /* Safari */
  transition-duration: 0.4s;
  text-decoration: none;
  overflow: hidden;
  font-weight: 600;
}





.btn.btn-rounded {
  border-radius: 50px;
}

.btn.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  line-height: 42px;
}

.btn.btn-icon-sm {
  width: 30px;
  height: 30px;
  padding: 0;
  line-height: 30px;
}

.btn.btn-icon-xs {
  width: 20px;
  height: 20px;
  padding: 0;
  line-height: 20px;
}

.btn-outline {
  border-radius: 6px;
}

.btn-outline:focus,
.btn-outline.focus {
  box-shadow: 0 0 0 0.2rem rgba(49, 49, 49, 0.5);
}

.btn-outline-white-opacity {
  color: #ffffff;
  border-color: #ffffff;
  border-width: 2px;
  background-color: rgba(252, 252, 252, 0.5);
}

.btn-outline-white-opacity:hover {
  color: #fff;
  background-color: rgba(252, 252, 252, 0.5);
  border-color: #ffffff;
}

.btn-outline-white {
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-white:hover {
  color: #fff;
  background-color: rgba(252, 252, 252, 0.5);
  border-color: #ffffff;
}

.btn-outline-info {
  color: var(--info-color);
  border-color: var(--info-color);
  border-width: 2px;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: var(--info-color-light);
  border-color: var(--info-color-light);
}

.btn-outline-dark {
  color: #141619;
  border-color: #141619;
}

.btn-outline-dark:hover {
  color: #141619;
  background-color: rgba(34, 34, 34, 0.5);
  border-color: #141619;
}

.btn-outline-primary {
  border-width: 1px;
  border-color: var(--main-color);
  background-color: var(--default-white, #FFF);
  color: var(--main-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--main-color);
  color: #fff;

}

.btn-info {
  color: var(--main-color-dark);
  background-color: var(--info-color-soft);
  border-color: var(--info-color-soft)
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
  color: rgb(255, 255, 255);
  background-color: var(--info-color-light);
  border-color: var(--info-color-light);
  box-shadow: none;
}

.btn-info.disabled,
.btn-info:disabled {
  color: rgb(189, 126, 235);
  background-color: #d1a8ec;
  border-color: #d1a8ec;
}

.btn-nextHome {
  color: var(--main-color-dark);
  background-color: var(--info-color-soft);
  border-color: var(--info-color-soft)
}

.btn-nextHome:hover,
.btn-nextHome:focus,
.btn-nextHome:active {
  color: rgb(255, 255, 255);
  background-color: var(--info-color-soft);
  border-color: var(--info-color-soft);
  box-shadow: 0px 8px 35px 0px rgba(235, 229, 252, 0.5);

}




.btn-primary {
  background-color: var(--main-color);
  border-color: var(--main-color);

}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--main-color-dark) !important;
  color: #fff;

}

.btn-danger {
  background-color: var(--danger-color);
  border-color: var(--danger-color);

}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background-color: var(--danger-color-dark) !important;
  color: #fff;

}

.btn-success {
  background-color: var(--success-color);
  border-color: var(--success-color);
  color: #fff;
  cursor: pointer;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

.btn-success:hover {
  background-color: var(--success-color-light);
  border-color: var(--success-color-light);
}

.btn-success:active {
  background-color: var(--success-color-light);
  border-color: var(--success-color-light);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}

.btn-success:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  background-color: var(--success-color-light);
  border-color: var(--success-color-light);
}

.btn-success.disabled {
  background-color: var(--success-color-light);
  border-color: var(--success-color-light);
}

/*************
 margenes y paddings
 ************/

.mr-5 {
  margin-right: 5px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-75 {
  margin-right: 75px;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mt-33 {
  margin-top: 33px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-50 {
  margin-top: 50px;
}

.ml-75 {
  margin-left: 75px !important;
}

.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pr-110 {
  padding-right: 110px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}


.p-content {
  padding-right: 120px !important;
  padding-left: 120px !important;
}

.px-cardPerfil {
  padding-left: 75px !important;
  padding-right: 75px !important;
}

/*************
 Imagenes 
 ************/

.img-lg {
  width: 92px;
  height: 92px;
}

.img-md {
  width: 60px;
  height: 60px;
}

.img-sm {
  width: 43px;
  height: 43px;
}

.img-xs {
  width: 35px;
  height: 35px;
}

.img-ss {
  width: 26px;
  height: 26px;
}

/* ********************
Gradientes
 **************/
.gradient01 {
  background: rgb(14, 17, 36);
  background: linear-gradient(90deg, rgba(14, 17, 36, 1) 0%, rgba(45, 54, 102, 1) 100%);
}






/*error page*/

.btn-error-page {
  z-index: 1;
  overflow: hidden;
  background: transparent;
  position: relative;
  padding: 8px 50px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1em;
  transition: 0.2s ease;
  font-weight: bold;
  margin: 5px 0px;
  border: 2px solid #00daef;
  color: #fff;
  text-transform: uppercase;
}






/*//////////////////////////////////////////////////////////////////
[ login ]*/
.body-login {
  background: rgb(22, 92, 196);
  background: linear-gradient(0deg, var(--secondary-color) 0%, rgba(52, 49, 166, 1) 18%, var(--tertiary-color) 42%);
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 90vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}



.wrap-login100 {
  width: 390px;
  border-radius: 10px;
  overflow: hidden;

  background: transparent;
}

.login100-form {
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
  box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
}



.login100-form-title {
  font-size: 28px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;

  display: block;
}






.showPass {
  position: absolute;
  top: 30%;
  right: 20px;
  cursor: pointer;
  font-size: 25px;
}



input {
  outline: none;
  border: none;
}


.input100.is-invalid {
  color: #dd4a3e;
  border-bottom: 2px solid #dd4a3e
}


/******circles*********/

.circle-xs {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}

.circle-sm {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}

.circle-md {
  width: 60px;
  height: 60px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}

.circle-lg {
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}

.circle-xlg {
  width: 180px;
  height: 180px;
  line-height: 75px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}

.icon-sm {
  font-size: 10px;

}

.bg-icon-sm {
  width: 15px;
  height: 15px;
  border-radius: 2px;
  text-align: center;
  line-height: 12px;

}





/******************************
contenido de las paginas
******************************/
/****************
header bottom title
****************/
.header-bottom {
  height: 70px;
  background-color: #181824;
  padding: 0 2rem;


  z-index: 1;

}

.page-header {
  margin: 0 0 1.5rem 0;
}

.page-title {
  color: var(--main-color-light);
  font-size: 1.125rem;
  margin-bottom: 0;

}

.page-subtitle {
  color: #555454;
  font-size: 14px;
  margin-bottom: 0;
}

/*Breadcrumb*/

.breadcrumb {
  display: flex;
  flex-direction: row;
  border-radius: 2px;
  list-style: outside none none;
  margin-bottom: 20px;
  padding: 8px 30px;
  margin: 0px;
  background-color: transparent;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 106%;
  border-radius: 0;
  margin-left: 90px;
  margin-top: 30px;
}

.breadcrumb>li+li:before,
.breadcrumb ol li {
  color: #A1A1A1;
}

.breadcrumb a {
  color: #7686a7;
  transition: all 0.3s ease-out;
  margin-right: 15px;
}

.breadcrumb a:hover {
  text-decoration: underline;
  transition: all 0.3s ease-out;
}

.breadcrumb .active {
  color: #0e1a35;
  font-weight: 500;
  font-size: 13px;
}


/***************
progress bar
******************/

.progress-bar.grey {
  background-color: #cccccc !important;
}

.progress-bar.blue {
  background-color: var(--info-color) !important;
}

.progress-bar.green {
  background-color: #41d1a8 !important;
}

.progress-bar.red {
  background-color: #dd4a3e !important;
}

.progress-bar.danger {
  background-color: #dd4a3e !important;
}


.progress-bar.greenBrigt {
  background-color: #3eff3f !important;
}


.progress-bar.orange {
  background-color: #f1bc0e !important;
}

.progress.progress-edic {
  width: 100%;
  height: 4px;
  border-radius: 30px;
  overflow: hidden;
  background: #d7dbe4;
  margin-top: 5px;
}

.progress.progress-edic.progress-small {
  height: 2px;
}

.progress-bar.progress-bar-edic {
  height: 4px;
  border-radius: 30px;
}

.progress-bar.progress-bar-edic.progress-bar-small {
  height: 2px;
}

.progress-details .title {
  margin-bottom: 0;
}

.progress-details .title span {
  font-size: 16px;
  color: #252525;
  display: block;
}

.progress-details .title strong {
  font-size: 14px;
  color: #434343;
  margin-bottom: 5px;
}

.progress-details .number {
  color: #474747;
  font-size: 2.2rem;
}

/*------------------------------------------------------------------
[ skeleton ]*/
.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }

  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

.skeleton-text {
  width: 100%;
  height: 0.7rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.skeleton-text__body {
  width: 75%;
}

.skeleton-footer {
  width: 30%;
}


.box-shadow-0 {
  box-shadow: none !important;
}

/************ skeleton*/


#u_0_v {
  width: 500px;
  margin: 0 auto;
}

.lightui2 {
  padding: 20px;
  background: #fff;
}


.lightui2-shimmer div {
  background: #fff;
  height: 6px;
  left: 0;
  position: absolute;
  right: 0
}

.lightui2-shimmer {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
  background: #99a1ac;
  background-image: linear-gradient(to right, #99a1ac 0%, rgb(177, 185, 194) 20%, rgb(167, 181, 195) 60%, #c1ccdb 80%, #d4dbe4 100%);
  background-repeat: no-repeat;
  background-size: 100% 104px;
  height: 40px;
  position: relative
}

.lightui1 {
  padding: 20px;
  background: #fff;
}

.lightui1-shimmer {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
  background: #99a1ac;
  background-image: linear-gradient(to right, #99a1ac 0%, rgb(177, 185, 194) 20%, rgb(167, 181, 195) 60%, #c1ccdb 80%, #d4dbe4 100%);
  background-repeat: no-repeat;
  background-size: 100% 104px;
  height: 50px;
  position: relative
}

.lightui1-shimmer div {
  background: #fff;
  height: 6px;
  left: 0;
  position: absolute;
  right: 0
}




div._2iwr {
  height: 40px;
  left: 40px;
  right: auto;
  top: 0;
  width: 8px;
}

div._2iws {
  height: 8px;
  left: 48px;
  top: 0
}

div._2iwt {
  left: 39%;
  top: 8px
}

div._2iwu {
  height: 12px;
  left: 48px;
  top: 14px
}

div._2iwv {
  left: 73%;
  top: 26px
}

div._2iww {
  height: 10px;
  left: 48px;
  top: 32px
}

div._2iwx {
  height: 20px;
  top: 40px
}

div._2iwy {
  left: 40%;
  top: 60px
}

div._2iwz {
  height: 13px;
  top: 66px
}

div._2iw- {
  left: 100%;
  top: 79px
}

div._2iw_ {
  height: 13px;
  top: 85px
}

div._2ix0 {
  left: 63%;
  top: 98px
}

@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0
  }

  100% {
    background-position: 468px 0
  }
}

@-webkit-keyframes prideShimmer {
  from {
    background-position: top left
  }

  to {
    background-position: top right
  }
}

/***************
listados
****************/
.listado-container .item-list.disabled i.ti-close {
  background-color: #a4aebe !important
}



.item-list.disabled {
  color: #9fa2a5;
  cursor: default
}

.item-list.disabled>input {
  color: #6c757d;
  cursor: default
}

.item-list {
  padding: 10px 0;
}

a.item-list {
  padding: 10px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  color: #000
}

a.item-list:hover {

  color: #212121;
  background-color: var(--main-color-light);
}

.item-list {
  padding: 10px;
}

.listado-container {
  position: relative;
  border: 1px solid var(--main-color-light) !important;
  border-radius: 10px;
}

.listado-container>.listado-header {
  border: 1px solid var(--main-color-light) !important;
  border-radius: 10px 10px 0px 0px;
  background: #fff;
}

.listado-body {
  border: 0px;
}



/*********************
Paginador
**************************/

.panel-footer-grid {
  padding: 0.25rem 1.5rem;
}

.pagination-list {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: .375rem;
}

.pagination-list .page-link {
  line-height: 1.25;
  position: relative;
  display: block;
  margin-left: -1px;
  padding: .5rem .75rem;
  color: var(--main-color-dark);
  border: 1px solid #dee2e6;
  background-color: #fff;
}

.pagination-list .page-link:hover {
  z-index: 2;
  text-decoration: none;
  color: var(--main-color-dark);
  border-color: #dee2e6;
  background-color: #dee2e6;
}

.pagination-list .page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.pagination-list .page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: .375rem;
  border-bottom-left-radius: .375rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: .375rem;
  border-bottom-right-radius: .375rem;
}

.page-item.activePag .page-link {
  z-index: 3;
  color: #fff;
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.page-item.disabled .page-link {
  cursor: auto;
  pointer-events: none;
  color: #8898aa;
  border-color: #dee2e6;
  background-color: #fff;
}

.pagination-lg .page-link {
  font-size: 1.25rem;
  line-height: 1.5;
  padding: .75rem 1.5rem;
}

.page-item .page-link,
.page-item span {
  font-size: .875rem;
  display: flex;
  width: 36px;
  height: 36px;
  margin: 0 3px;
  padding: 0;
  border-radius: 50% !important;
  align-items: center;
  justify-content: center;
}

/**********
 alturas
 **********/
.list-h150 {
  height: 150px;
}

/********
  card
  **********/
.card-loginBIG {
  /* width: 906px;
  height: 685px; */
  flex-shrink: 0;
  border-radius: 70px 0px 0px 70px;
}

.card-loginBIG-2 {
  /* width: 906px;
  height: 685px; */
  flex-shrink: 0;
  border-radius: 0px 70px 70px 0px;

}

/* .card-loginSM {
  width: 460.292px;
  height: 685px;
} */



.cardBlue-Header {

  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;

}


.stats-with-chart .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  text-align: center;
}


.card {
  position: relative;
  /* border-radius: .25rem; */
  box-shadow: 0px 8px 35px 0px rgba(0, 0, 0, 0.16);
  border: 0px;
  padding: 20px;
  border-radius: 10px;
}

.card>.card-header {

  padding: 0px 20px 20px 20px;
  background: #fff;
}

.card-header .card-title {

  color: var(--main-color-dark);
  font-size: 13px;
  margin: 0px
}

.card-header .card-title h3 {

  color: var(--main-color-dark);
  font-size: 16px;
  margin: 0px
}

.card-header .card-title h2 {

  color: var(--main-color-dark);
  font-size: 18px;
  margin: 0px
}

.card-footer {
  background-color: #fff;
}

.cardTramite {
  cursor: pointer;
}

.cardTramite:hover {
  border: 2.5px solid var(--main-color) !important;
  box-shadow: 0px 8px 35px 0px #05284e56 !important;
  color: #000 !important;
}

.cardTramite.selected {
  border: 2px solid #2ECC71 !important;
  box-shadow: 0px 8px 25px 0px #33df7b1a;
}

.cardTramite.selected>div>i {
  color: var(--default-grey-dark);
}

.cardTramite.selected>div>h2 {
  color: #24a158 !important;
}

.cardTramite.selected>div>i.iDefault {
  display: none !important;
}

.cardTramite.selected>div>img.iCheck {
  display: block !important;
}

.cardTramite.disabled {
  border: 2px solid var(--default-grey-dark) !important;
  box-shadow: 0px 8px 25px 0px var(--default-grey);
  color: var(--default-grey) !important;
  cursor: inherit;
  filter: grayscale(1);
}

.cardTramite.disabled:hover {
  border: 2px solid var(--default-grey-dark) !important;
  box-shadow: 0px 8px 25px 0px var(--default-grey) !important;
  color: var(--default-grey) !important;
}

.cardTramite.disabled>div>h2 {
  color: var(--default-grey) !important;
}

/*********
box-shadow
************/
.box-sha-0 {
  box-shadow: none !important;
}


/******************
error page
*************/


.page_error {
  background-image: url(../images/bg-errorpage.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;

}

.footer-error-page {
  position: absolute;
  bottom: 0px;
}

.validation-message {
  color: #dd4a3e;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: bold;
}

/********************
sweet alert dark
*********************/



.swal-button {
  border-radius: 1px;
}

.swal-button:focus,
.swal-button.focus {
  box-shadow: 0 0 0 0.2rem rgba(49, 49, 49, 0.5);
}

.swal-title {

  font-size: 20px;
}

.swal-text {
  font-size: 13px;

}





.swal-button--cancel {
  color: #989898;
  border: 1px solid #a8a8a8;
  background: transparent;
  min-width: 130px;
}

.swal-button--cancel:hover,
.swal-button--cancel:active,
.swal-button--cancel:focus {
  color: rgb(113, 113, 113);
  background-color: rgba(165, 165, 165, 0.5);
  border-color: #ffffff;
  box-shadow: none;
}

.swal-button--confirm {
  color: #fff;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  min-width: 130px;
}

.swal-button--confirm:hover,
.swal-button--confirm:active,
.swal-button--confirm:focus {
  color: #fff;
  border: 1px solid var(--main-color-light);
  background: var(--main-color-light);
  box-shadow: none;
}

.swal-footer {
  text-align: center;
  margin-top: 50px;
  overflow: hidden;
}


/*toastr*/

#toast-container>div {
  width: 100% !important;
}

#toast-container {
  width: 100% !important;
  right: 0px !important;
  bottom: 0px !important;
}

.toast-success {
  background-color: #3eb69e;
  border: 0px;
}

.toast-error {
  background-color: #e3564e;
  border: 0px;
}

#toast-container>.toast-info {
  background-color: #000;
}

.toast-warning {
  background-color: #F89406;
}

.toast-dark {
  background-color: #0f0e0e;
  color: #fff;
}

/*****************
  PAGINA EDICION IMAGEN
  ******************/

.cont-img-edic {
  border: 1px solid #20202a
}



.cont-img-edic img {
  height: 35vh;
  width: 100%;
  object-fit: contain;
}

.cont-video-edic video {
  height: 55vh;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

.capture-video-content {
  width: 250px;
  height: 130px;
  background: #3f4247
}

canvas.selected {
  padding: 1px;
  width: 250px;
  height: 130px;
  border: 1px solid #3e3ee4;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-shadow: 0px -1px 27px 0px rgba(62, 76, 235, 0.75) inset;
  -webkit-box-shadow: 0px -1px 27px 0px rgba(62, 76, 235, 0.75) inset;
  -moz-box-shadow: 0px -1px 27px 0px rgba(62, 76, 235, 0.75) inset;


}

.capture-video-content {
  width: 250px;
  height: 130px;
  object-fit: cover;
  overflow: hidden;
}


.footer-buttons-edit {
  position: absolute;
  bottom: 10px;
  width: 100%;
}


/*boton siguiente en edicion*/




.btn.siguiente span,
.btn.enviar span,
.btn.guardar span,
.btn.aplicar span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn.aplicar span:after {
  content: '\e852';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
  font-family: 'Linearicons-Free';
}

.btn.enviar span:after {
  content: '\e84b';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
  font-family: 'Linearicons-Free';
}

.btn.siguiente span:after {
  content: '\e876';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
  font-family: 'Linearicons-Free';
}

.btn.guardar span:after {
  content: '\f0c7';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
  font-family: 'FontAwesome';
}

.btn.siguiente:hover span,
.btn.enviar:hover span,
.btn.guardar:hover span,
.btn.aplicar:hover span {
  padding-right: 25px;
}

.btn.siguiente:hover span:after,
.btn.enviar:hover span:after,
.btn.guardar:hover span:after,
.btn.aplicar:hover span:after {
  opacity: 1;
  right: 0;
}


.btn.descarte span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn.descarte span:after {
  content: '\e811';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
  font-family: 'Linearicons-Free';
}

.btn.descarte:hover span {
  padding-right: 25px;
}

.btn.descarte:hover span:after {
  opacity: 1;
  right: 0;
}




.progress-button {
  display: inline-block;

  overflow: hidden;
  position: relative;

}

/* Ocultamos los texto originales del botón. Una vez cargado se muestran en el evento :after */

.progress-button.in-progress,
.progress-button.finished {
  color: transparent !important;
}

.progress-button.in-progress:after,
.progress-button.finished:after {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  padding-top: inherit;
  color: #fff !important;
  left: 0;
}

/* Mientras está la clase .in-progress se muestra el contenido del atributo contents */

.progress-button.in-progress:after {
  content: attr(data-loading);
}

/* La misma clase que .finished */

.progress-button.finished:after {
  content: attr(data-finished);
}

/* La barra de color crece en función del progreso */

.progress-button .tz-bar {
  background-color: #7305e1;
  height: 3px;
  bottom: 0;
  left: 0;
  width: 0;
  position: absolute;
  z-index: 1;

  border-radius: 0 0 2px 2px;

  -webkit-transition: width 0.5s, height 0.5s;
  -moz-transition: width 0.5s, height 0.5s;
  transition: width 0.5s, height 0.5s;
}

/* La barra de progreso puede ser horizontal o vertical */

.progress-button .tz-bar.background-horizontal {
  height: 100%;
  border-radius: 2px;
}

.progress-button .tz-bar.background-vertical {
  height: 0;
  top: 0;
  width: 100%;
  border-radius: 2px;
}


/*detalle*/


.symbol-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.symbol-group .symbol {
  position: relative;
  z-index: 0;
  margin-left: -10px;
  border: 2px solid #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.symbol-group .symbol:first-child {
  margin-left: 0;
}

.symbol-group .symbol:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.symbol-group.symbol-hover .symbol {
  cursor: pointer;
}

.symbol-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: ce
}

.symbol.symbol-30>img {
  width: 100%;
  max-width: 30px;
  height: 30px;
}

.symbol.symbol-circle>img {
  border-radius: 50%;
}



/**
 * EasyZoom core styles
 */

.easyzoom a {
  display: block;
}


.easyzoom {
  height: 100% !important;
}



/********svg icons*/
.svg-icon.svg-icon-main svg g [fill] {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  fill: var(--main-color) !important;
}

.svg-icon.svg-icon-primary svg g [fill] {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  fill: var(--tertiary-color) !important;
}

.svg-icon.svg-icon-primary svg:hover g [fill] {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.svg-icon.svg-logo-primary svg path {
  fill: #3d5af1 !important;
}

.svg-icon.svg-icon-danger svg g [fill] {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  fill: #dc3545 !important;
}

.svg-icon.svg-icon-warning svg g [fill] {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  fill: #c0811d !important;
}

.svg-icon.svg-icon-grey svg g [fill] {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  fill: #bbc0c3 !important;
}

.svg-icon.svg-icon-white svg g [fill] {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  fill: #ffffff !important;
}


.svg-icon.svg-icon-info svg g [fill] {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  fill: var(--secondary-color-dark) !important;
}

.svg-icon.svg-icon-sm svg {
  height: 1.25rem !important;
  width: 1.25rem !important;
}

.svg-icon.svg-icon-md svg {
  height: 1.5rem !important;
  width: 1.5rem !important;
}

.svg-icon.svg-icon-lg svg {
  height: 1.75rem !important;
  width: 1.75rem !important;
}

.svg-icon.svg-icon-xl svg {
  height: 2rem !important;
  width: 2rem !important;
}

.svg-icon.svg-icon-xxl svg {
  height: 2.25rem !important;
  width: 2.25rem !important;
}

.svg-icon.svg-icon-1x svg {
  height: 1rem !important;
  width: 1rem !important;
}

.svg-icon.svg-icon-2x svg {
  height: 2rem !important;
  width: 2rem !important;
}

.svg-icon.svg-icon-3x svg {
  height: 3rem !important;
  width: 3rem !important;
}

.svg-icon.svg-icon-4x svg {
  height: 4rem !important;
  width: 4rem !important;
}

.svg-icon.svg-icon-5x svg {
  height: 5rem !important;
  width: 5rem !important;
}

.svg-icon.svg-icon-6x svg {
  height: 6rem !important;
  width: 6rem !important;
}

.svg-icon.svg-icon-7x svg {
  height: 7rem !important;
  width: 7rem !important;
}

.svg-icon.svg-icon-8x svg {
  height: 8rem !important;
  width: 8rem !important;
}

.svg-icon.svg-icon-9x svg {
  height: 9rem !important;
  width: 9rem !important;
}

.svg-icon.svg-icon-10x svg {
  height: 10rem !important;
  width: 10rem !important;
}



/************formularios***********/

.sin-caret.dropdown-toggle:after {
  content: none
}

.dropdown-item.active,
.dropdown-item:active {
  color: #000 !important;
  text-decoration: none;
  background-color: #adc5e8
}

.form-label {
  font-size: 14px;
  color: #666;
}

.checkbox-lg .form-check-input {
  width: 1.55rem;
  height: 1.55rem;
  box-shadow: none;
}

.checkbox-lg.form-check-input {
  width: 1.55rem;
  height: 1.55rem;
  box-shadow: none;
}

.checkbox-lg .form-check-label {
  margin-left: 10px;
  margin-top: 5px;
  box-shadow: none;
}

select.form-control {
  -webkit-appearance: menulist;
}

.form-check-input.check-info:checked {
  background-color: var(--info-color-light) !important;
  border-color: var(--info-color-light) !important;
}

.form-check-input.check-success:checked {
  background-color: var(--success-color) !important;
  border-color: var(--success-color) !important;
}


.input-icon {
  position: absolute;
  top: 15px;
  left: 15px;
}

/**********
badges labels
***************/



.label-grey {
  background: #ccc
}

.label {
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 2px 7px;
  margin-right: 5px;
  font-weight: 600;
  text-transform: uppercase;
}


.label-default {
  background-color: var(--default-grey) !important;
  border-color: var(--default-grey);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}

.label-primary {
  background: var(--main-color);
  color: #FFF;
}

.label-warning {
  background: var(--warning-color);
  color: #FFF;
}

.label-info {
  background: var(--info-color-dark);
  color: #FFF;
}

.label-danger {
  background: var(--danger-color);
  color: #FFF;
}

.label-success {
  background: var(--success-color);
  color: #FFF;
}

.label-inverse-default {
  border: 1px solid;
  border-color: #e0e0e0;
  color: #e0e0e0 !important;
}

.label-inverse-primary {
  border: 1px solid;
  border-color: var(--main-color);
  color: var(--main-color) !important;
}

.label-inverse-success {
  border: 1px solid;
  border-color: var(--success-color);
  color: var(--success-color) !important;
}




.label-inverse-warning {
  border: 1px solid;
  border-color: var(--warning-color);
  color: var(--warning-color) !important;
}

.label-inverse-danger {
  border: 1px solid;
  border-color: var(--danger-color);
  color: var(--danger-color) !important;
}



.label-inverse-red {
  border: 1px solid;
  border-color: var(--danger-color-light);
  color: var(--danger-color-light) !important;
}




.label-inverse-info {
  border: 1px solid;
  border-color: var(--info-color);
  color: var(--info-color) !important;
}

.label-inverse-info-border {
  border: 1px solid;
  border-color: var(--info-color);
  color: var(--info-color) !important;
}

/*badges*/
.badge-default {
  background-color: var(--default-grey) !important;
  border-color: var(--default-grey);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}

.badge-inverse-default {
  border: 1px solid;
  border-color: #e0e0e0;
  color: #e0e0e0 !important;
}

.badge-inverse-primary {
  border: 1px solid;
  border-color: var(--main-color);
  color: var(--main-color) !important;
}

.badge-inverse-success {
  border: 1px solid;
  border-color: var(--success-color);
  color: var(--success-color) !important;
}




.badge-inverse-warning {
  border: 1px solid;
  border-color: var(--warning-color);
  color: var(--warning-color) !important;
}

.badge-inverse-danger {
  border: 1px solid;
  border-color: var(--danger-color);
  color: var(--danger-color) !important;
}



.badge-inverse-red {
  border: 1px solid;
  border-color: var(--danger-color-light);
  color: var(--danger-color-light) !important;
}




.badge-inverse-info {
  border: 1px solid;
  border-color: var(--info-color);
  color: var(--info-color) !important;
}

.badge-inverse-info-border {
  border: 1px solid;
  border-color: var(--info-color);
  color: var(--info-color) !important;
}





/*datepicker*/
.datepicker {
  padding: 20px
}

.datepicker td,
.datepicker th {
  padding: 10px
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active[disabled] {
  border-radius: 50%;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  text-align: center;

}

.datepicker table tr td.day.focused,
.datepicker table tr td.day:hover {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  align-items: center;
  font-weight: 500;
}

.datepicker table tr td.active {
  background: var(--info-color) !important;
}




/************modales***************/

.bg-title-modal {
  position: absolute;
  width: 100%;
  height: 70px;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.bg-title-modal.danger {
  background-color: #F64E60;
}




/*perfect scrollbar*/


.scroll {
  overflow-y: visible;
  overflow-x: hidden;

}

/*scrollbar menu*/
.scrollMenu {
  height: 55vh;
  overflow: hidden;
  position: relative;

}

.scrollMenu .ps-scrollbar-y-rail {
  background-color: var(--main-color-light);
  height: 100vh;
}



/*Heights*/

.min-h-500 {
  min-height: 500px;
}

.min-h-600 {
  min-height: 600px !important;
}

.min-h-620 {
  min-height: 620px !important;
}

.min-h-685 {
  min-height: 685px !important;
}

.mh-155 {
  min-height: 155px;
}

.min-h-250 {
  min-height: 250px;
}

.min-h-280 {
  min-height: 280px;
}

.min-h-300 {
  min-height: 300px;
}

.min-h-680 {
  min-height: 680px;
}

.min-h-450 {
  min-height: 450px;
}

.maxh-75 {
  max-height: 75px !important;
}

.maxh-80 {
  max-height: 80px !important;
}

.maxh-85 {
  max-height: 85px !important;
}

.maxh-90 {
  max-height: 90px !important;
}

.maxh-150 {
  max-height: 150px !important;
}

.maxh-250 {
  max-height: 250px !important;
}

.maxh-300 {
  max-height: 300px !important;
}

.maxh-400 {
  max-height: 400px !important;
}

.maxh-430 {
  max-height: 430px !important;
}

.maxh-445 {
  max-height: 445px;
}

.maxh-550 {
  max-height: 550px;
}

.maxh-600 {
  max-height: 600px !important;
}

.maxh-620 {
  max-height: 620px !important;
}

.maxh-660 {
  max-height: 660px;
}

.h-5 {
  height: 5px !important;
}

.h-8 {
  height: 8px !important;
}

.h-10 {
  height: 10px !important;
}

.h-20 {
  height: 20px !important;
}

.h-40 {
  height: 40px !important;
}

.h-65 {
  height: 65px !important;
}

.h-250 {
  height: 250px !important;
}

.h-430 {
  height: 430px !important;
}

.h-470 {
  height: 470px !important;
}



/*labrar acta*/

.img-cover {
  background-color: #f2f2f2;
  padding: 3px
}

.img-cover img {
  object-fit: cover;
  width: 100%;
  height: 100px;
}


.container-feedback-page {
  width: 320px;
}

/* Custom, iPhone Retina */
@media all and (max-width: 480px) {
  .container-feedback-page {
    width: 100%
  }
}

@media only screen and (min-width: 1200px) {}

/* Large Devices, Wide Screens */

@media only screen and (min-width: 1366px) {


  .fs-cardConfirmar>div>p {
    font-size: 11px !important;
  }

  .fs-perfilUsuario>div>p {
    font-size: 14px !important;
  }

  .d-imgIcoConfirmar>img {
    display: none;
  }

  .pd-cardConfirmar {
    padding: 10px !important;
  }

  .d-cardFirmaConfirmar {
    display: flex;
    flex-direction: column !important;
  }

  .fs-headHabilitacion {
    font-size: 20px !important;
  }

  .pd-headHabilitacion {
    padding-left: 0rem !important
  }

  .p-subHeadHabilitacion {
    font-size: 16px !important;
  }

  .maxh-titularHabilitacion {
    max-height: 130px !important;
  }

  .pd-cardTramite {
    padding: 30px !important;
    margin-right: 10px !important;
  }

  .pt-footerCredencial {
    padding-top: 1rem !important;
  }

  .pd-login {
    padding-right: 6rem !important;
  }

  .p-iconoPass {
    top: 6px;
    right: 225px;
  }

  .min-h-685 {
    min-height: 610px !important;
  }

  .cardRed-Header {

    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.29px;

  }

  .fs-CardsInfoHead {
    font-size: 14px;
  }

  .fs-ComprobanteDetalle {
    font-size: 12px;
  }

  .fs-CardsInfoTotal {
    font-size: 20px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width: 1600px) {

  .fs-cardConfirmar>div>p {
    font-size: 14px !important;
  }

  .d-imgIcoConfirmar>img {
    display: block;
  }

  .pd-cardConfirmar {
    padding: 20px !important;
  }

  .d-cardFirmaConfirmar {
    display: flex;
    flex-direction: row !important;
  }

  .fs-headHabilitacion {
    font-size: 24px !important;
  }

  .pd-headHabilitacion {
    padding-left: 1rem !important
  }

  .p-subHeadHabilitacion {
    font-size: 20px !important;
  }

  .maxh-titularHabilitacion {
    max-height: 150px !important;
  }

  .pd-cardTramite {
    padding: 20px !important;
    margin-right: 0px !important;
  }

  .pt-footerCredencial {
    padding-top: 3rem !important;
  }

  .pd-login {
    padding-right: 6rem !important;
  }

  .p-iconoPass {
    top: 6px;
    right: 280px;
  }

  .min-h-685 {
    min-height: 685px !important;
  }

  .cardRed-Header {

    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.29px;

  }

  .fs-perfilUsuario>div>p {
    font-size: 16px !important;
  }

  .fs-CardsInfoHead {
    font-size: 16px;
  }

  .fs-CardsInfoTotal {
    font-size: 24px;
  }

  .fs-ComprobanteDetalle {
    font-size: 16px;
  }
}