@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/fontawesome.min.css";
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700');
/*estilo de navbar*/
.bg-aliceblue{
    background-color: #efefef;
}

body{
    background-image: url("../imgs/fondo4.jpg");
    background-repeat: no-repeat;
}

.btn-outline-custom {
  color: #0062be;
  background-color: transparent;
  background-image: none;
  border-color: #0062be;
}

.btn-outline-custom:hover {
  color: #fff;
  background-color: #0062be;
  border-color: #0062be;
}

.btn-outline-custom:focus, .btn-outline-custom.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-custom.disabled, .btn-outline-custom:disabled {
  color: #0062be;
  background-color: transparent;
}

.btn-outline-custom:not(:disabled):not(.disabled):active, .btn-outline-custom:not(:disabled):not(.disabled).active,
.show > .btn-outline-custom.dropdown-toggle {
  color: #fff;
  background-color: #0062be;
  border-color: #0062be;
}

.btn-outline-custom:not(:disabled):not(.disabled):active:focus, .btn-outline-custom:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-custom.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-custom-blue {
  color: #59A5F3;
  background-color: transparent;
  background-image: none;
  border-color: #59A5F3;
}

.btn-outline-custom-blue:hover {
  color: #fff;
  background-color: #59A5F3;
  border-color: #59A5F3;
}

.btn-outline-custom-blue:focus, .btn-outline-custom-blue.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-custom-blue.disabled, .btn-outline-custom-blue:disabled {
  color: #59A5F3;
  background-color: transparent;
}

.btn-outline-custom-blue:not(:disabled):not(.disabled):active, .btn-outline-custom-blue:not(:disabled):not(.disabled).active,
.show > .btn-outline-custom-blue.dropdown-toggle {
  color: #fff;
  background-color: #59A5F3;
  border-color: #59A5F3;
}

.btn-outline-custom-blue:not(:disabled):not(.disabled):active:focus, .btn-outline-custom-blue:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-custom-blue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

/*estilo de login*/
video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
}

.card-container.card {
    width: 330px;
    max-width: 350px;
    padding: 40px 40px;
    background-color: rgba(255,255,255,0.5);
}

.btn {
    font-weight: 700;
    height: 36px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
}

/*
 * Card component
 */
.card {
    background-color: #F7F7F7;
    /* just in case there no content*/
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 50px;
    /* shadows and rounded borders */
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.profile-img-card {
    width: auto;
    height: auto;
    margin: 0 0px 10px;
    display: block;
}

/*
 * Form styles
 */
.profile-name-card {
    color: #333;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 0;
    min-height: 1em;
}

.reauth-email {
    display: block;
    color: #404040;
    line-height: 2;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-signin #inputEmail,
.form-signin #inputPassword {
    direction: ltr;
    height: 44px;
    font-size: 16px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-signin .form-control:focus {
    border-color: rgb(104, 145, 162);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
}

.btn.btn-signin {
    /*background-color: #4d90fe; */
    background-color: rgb(104, 145, 162);
    /* background-color: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/
    padding: 0px;
    font-weight: 700;
    font-size: 14px;
    height: 36px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
}

.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {
    background-color: rgb(12, 97, 33);
}

.forgot-password {
    color: rgb(104, 145, 162);
}

.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus{
    color: rgb(12, 97, 33);
}

.logo{
    background-color: rgba(255,255,255,0);
    border-color: rgba(255, 255, 255,0);
    height: 6rem;
}

/*Estilos interesados*/
.colorgraph {
  height: 5px;
  border-top: 0;
  background: #c4e17f;
  border-radius: 5px;
  background-image: -webkit-linear-gradient(left, #ffe7c9 3%, #72257a, #0062be);
}

.card > .card-container-register {
    width: 650px;
    max-width: 350px;
    padding: 40px 40px;
    background-color: rgba(255,255,255,0.5);
}
small{
    font-size: 16px;
}

#btn-register{
    width: 200px;
    margin: 0 0 0 inherit;
}

/*-- Navbar layoutDashboard --*/
#menuToggle
{
  display: block;
  position: relative;
  top: 73px;
  left: 50px;
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -60px;
  left: -30px;
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  top: -60px;
  left: -30px;
  margin-bottom: 5px;
  position: relative;
  
  background: #59A5F3;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #FC6775;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 250px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 25px;
  top: 30px;
  background: rgba(239,239,239,0.75);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

.img-perfil{
    max-width: 100%;
    height: 35px;
    border-radius: 40%;
}


/* -- menu lateral -- */

@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/fontawesome.min.css";
html {

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}

html, body {
  width: 100%;
  height: 100%
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}

a {
  background-color: transparent;
  text-decoration: none;
}
a:active, a:hover {
  outline: 0;
}

h1,h2,h3,h4,h5,h6,p,ul,ol{ margin:0px; padding:0px;}


/***********************  TOP Bar ********************/
.sidebar{ width:220px;  background-color:#000;transition: all 0.5s  ease-in-out; }
.bg-defoult{background-color:#222;}
.sidebar ul{ list-style:none; margin:0px; padding:0px; }
.sidebar li a,.sidebar li a.collapsed.active{ display:block; padding:8px 12px; color:#fff;border-left:0px solid #dedede;  text-decoration:none}
.sidebar li a.active{background-color:#000;border-left:5px solid #dedede; transition: all 0.5s  ease-in-out}
.sidebar li a:hover{background-color:#000 !important;}
.sidebar li a i{ padding-right:5px;}
.sidebar ul li .sub-menu li a{ position:relative}
.sidebar ul li .sub-menu li a:before{
    font-family: FontAwesome;
    content: "\f105";
    display: inline-block;
    padding-left: 0px;
    padding-right: 10px;
    vertical-align: middle;
}
.sidebar ul li .sub-menu li a:hover:after {
    content: "";
    position: absolute;
    left: -5px;
    top: 0;
    width: 5px;
    background-color: #111;
    height: 100%;
}
.sidebar ul li .sub-menu li a:hover{ background-color:#222; padding-left:20px; transition: all 0.5s  ease-in-out}
.sub-menu{ border-left:5px solid #dedede;}
  .sidebar li a .nav-label,.sidebar li a .nav-label+span{ transition: all 0.5s  ease-in-out}
  

  .sidebar.fliph li a .nav-label,.sidebar.fliph li a .nav-label+span{ display:none;transition: all 0.5s  ease-in-out}
  .sidebar.fliph {
    width: 42px;transition: all 0.5s  ease-in-out;
   
}
  
.sidebar.fliph li{ position:relative}
.sidebar.fliph .sub-menu {
    position: absolute;
    left: 39px;
    top: 0;
    background-color: #222;
    width: 150px;
    z-index: 100;
}


.paginacion{
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.paginationjs-prev{
    border-style: solid;
    border-color: #C8C8C8;
    border-width: 1px 1px 1px 1px;
    margin-right: 5px;
    padding-right:5px; 
    padding-left:5px;
    background-color: #fff;
}

.paginationjs-page{
    border-style: solid;
    border-color: #C8C8C8;
    border-width: 1px 1px 1px 1px;
    margin-right: 5px;
    margin-left: 5px;
    padding-right:5px; 
    padding-left:5px;
    background-color: #fff;
}

.paginationjs-next{
    border-style: solid;
    border-color: #C8C8C8;
    border-width: 1px 1px 1px 1px;
    margin-right: 5px;
    padding-right:5px; 
    padding-left:5px;
    background-color: #fff;
} 

.paginationjs-prev:hover{
    border-style: solid;
    border-color: #C8C8C8;
    border-width: 1px 1px 1px 1px;
    margin-right: 5px;
    padding-right:5px; 
    padding-left:5px;
    background-color: #B7B3B3;
}

.paginationjs-page:hover{
    border-style: solid;
    border-color: #C8C8C8;
    border-width: 1px 1px 1px 1px;
    margin-right: 5px;
    margin-left: 5px;
    padding-right:5px; 
    padding-left:5px;
    background-color: #B7B3B3;
}

.paginationjs-next:hover{
    border-style: solid;
    border-color: #C8C8C8;
    border-width: 1px 1px 1px 1px;
    margin-right: 5px;
    padding-right:5px; 
    padding-left:5px;
    background-color: #B7B3B3;
} 
