html {
  min-height: 107%;
  position: relative;
  background: -webkit-linear-gradient(right, rgb(240, 235, 235) 20%, rgb(240, 235, 235) 100%);
}

body {
    height: 100%;
    margin: 0;
    margin-bottom: 0;
    background: -webkit-linear-gradient(right, rgb(240, 235, 235) 20%, rgb(240, 235, 235) 100%);
}

.card-login {
    background:#fff;
    color:#000;
    border-radius:20px;
    box-shadow: 0px 8px 10px rgba(0,0,0,0.3),inset 0px 1px 0px rgba(255,255,255,0.07)
}
.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}
.wrapper {
    display: flex;
    align-items: stretch;
}

#sidebar {
    min-width: 220px;
    max-width: 220px;
    min-height: 100vh;
    background: #fff;
    color: rgb(44, 42, 42);
    transition: all 0.4s;
    box-shadow: inset 0 0 10px 0px maroon;
}

#sidebar.active {
    margin-left: -220px;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
@media (max-width: 768px) {
    #sidebar {
        margin-left: -220px;
    }
    #sidebar.active {
        margin-left: 0;
    }
}
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: rgb(223, 221, 221);
    box-shadow: inset -2px 2px 10px -2px maroon;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #f7d4cae5;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #000;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #7195b4;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6f91ad;
    color:#fff;
}
.opciones{
    width:100px !important;
    text-align:center;
}

/*animaciones*/
.bounce-enter-active {
animation: bounce-in .5s;
}
.bounce-leave-active {
animation: bounce-in .5s reverse;
}
@keyframes bounce-in {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}


.slide-fade-enter-active {
  transition: all .3s ease;
}
.slide-fade-leave-active {
  transition: all .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to
/* .slide-fade-leave-active below version 2.1.8 */ {
  transform: translateX(10px);
  opacity: 0;
}

table.table-datos .flip-list-move {
            transition: transform 1s;
}
.list-item {
    display: inline-block;
    margin-right: 10px;
}
.list-enter-active, .list-leave-active {
    transition: all 1s;
}
.list-enter, .list-leave-to /* .list-leave-active below version 2.1.8 */ {
    opacity: 0;
    transform: translateY(30px);
}
.encapsulado{
    width:130px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.verde_custom{
    background-color:#33c547;
    color:white;
}

/*--------------------para los input con  material design de google ----------------------------*/

/* form starting stylings ------------------------------- */
.groupUX              { 
  position:relative; 
  margin-bottom:45px; 
}
.inputUX{
  font-size:18px;
  padding:10px 10px 10px 5px;
  display:block;
  width:300px;
  border:none;
  border-bottom:1px solid #757575;
}
.inputUX:focus      { outline:none; }

/* LABEL ======================================= */
.labelUX{
  color:#999; 
  font-size:18px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

/* active state */
.inputUX:focus ~ .labelUX, .inputUX:valid ~ .labelUX        {
  top:-20px;
  font-size:14px;
  color:#5264AE;
}

/* BOTTOM BARS ================================= */
.bar    { position:relative; display:block; width:300px; }
.bar:before, .bar:after     {
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#5264AE; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
.inputUX:focus ~ .bar:before, .inputUX:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.inputUX:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
@keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}