/* BASIC */

html {
  /*background-color: #56baed;*/
}

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  font-size: 1.5em;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}



/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#user_data {
  /*display: flex;
  text-align: left;*/
  align-items: left;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset], .button{
  background-color: #56baed;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(95,186,233,0.4);
  box-shadow: 0 5px 5px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 10px 5px 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#submit_baja{
  background-color: #ff4700;

}

#submit_borrar{
  background-color: #8402af;

}

.button_green{
  background-color: #00af4e !important;
  -webkit-box-shadow: 0 5px 5px 0 rgba(95,175,78,0.4);
  box-shadow: 0 5px 5px 0 rgba(95,175,78,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;

}

button:disabled,
button[disabled]{
  background-color: #d8dbdd;
  -webkit-box-shadow: 0 5px 5px 0 rgba(216,219,221,1);
  box-shadow: 0 5px 5px 0 rgba(216,219,221,1);
  cursor: not-allowed;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.panel-title {
	font-size: 12px !important;
}

.panel-body {
	padding: 2px 2px !important;
}

.panel{
  
  min-width: 250px;
  padding: 2px 2px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  margin: 5px;
  border: 2px solid #bfbfbf;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

.xxxl {
	width: 90%;
}

.xxl {
	width: 300px;
}

.xl {
	width: 250px;
}

.l {
	width: 200px;
}

.s {
	width: 150px;
}

.xs {
	width: 100px;
}

.desplegar {
	display: inline-block;
	background-image: url(icons-18-white.png);
	background-position-x: -105px;
	background-position-y: 1px;
    background-repeat: no-repeat;
	height: 1.5em;
	width: 1.5em;
    cursor: pointer;
    right: -10px;
	top: -10px;
	opacity: 1 !important;
}

.desplegar-click {
	cursor: pointer;
}

.desplegar.desplegado{
	background-position-x: -213px;
	background-position-y: 1px;
}

.desplegar.plegado{
	background-position-x: -107px;
	background-position-y: 1px;
}


input[type=text], input[type=password], input[type=number], input[type=search], select {
  background-color: #f6f6f6;
  /*width: 350px;*/
  border: none;
  color: #0d0d0d;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 5px;
  border: 1px solid #bfbfbf;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.panel-body input[type=text], .panel-body input[type=password], .panel-body input[type=number], .panel-body input[type=search], .panel-body select {
	width: 85%;
}
input[readonly]{
  background-color: #e4e4e4;
  color: #969696;
}

select#editar_status {
  width: 200px;
}

input[type=text]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder {
  color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}


td.details-control {
    background: url('icons-18-white.png') no-repeat center center;
	background-position-x: -200px;
	background-position-y: 7px;
    cursor: pointer;
	background-color: #ccc;
	width: 32px;
	padding-right: 0px !important;
}
tr.shown td.details-control {
    background: url('icons-18-white.png') no-repeat center center;
	background-position-x: -177px;
	background-position-y: 7px;
    cursor: pointer;
	background-color: #ccc;
	width: 32px;
	padding-right: 0px;
}

#popup, #popup-terms {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.hidden {
	visibility: hidden;
}

.content-popup {
    margin:0px auto;
    margin-top:20px;
    position:relative;
    padding:15px;
	height:auto;
    min-height:250px;
    border-radius:4px;
    background-color:#FFFFFF;
    box-shadow: 0 2px 5px #666666;
	
	text-align: center;
}
 
.content-popup h2 {
    color:#48484B;
    border-bottom: 1px solid #48484B;
    margin-top: 0;
    padding-bottom: 4px;
}
 
.popup-overlay {
    left: 0;
	position: fixed;
    /*position: absolute;*/
    top: 0;
    width: 100%;
    z-index: 999;
    display:none;
    background-color: #777777;
    cursor: default;
    opacity: 0.7;
}
 
.close {
	background-image: url(icons-18-white.png);
	background-position-x: -65px;
	background-position-y: 7px;
    background-repeat: no-repeat;
    border-radius: 50%;
	background-color: #42BEB1;
	height: 35px;
	width: 35px;
    position: absolute;
    right: -10px;
	top: -10px;
	opacity: 1 !important;
}

.logout {
	cursor: pointer;
}

/*Datatables old version
.odd td, .even td{
	vertical-align: middle !important;
}*/

/*Datatables new version*/
.table td{
	vertical-align: middle !important;
}



.spinner {
  margin: auto;
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #09f;

  animation: spin 1s ease infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.progress {
	margin-top:10px;
	/*width: 80%;*/
}

.choices__list--dropdown .choices__item--selectable {
    padding-right: 0px !important;
}

.choices__cabecera {
	font-weight: 600;
	background-color: #ddd;
	margin-top: 1em;
}

@media only screen and (max-width: 1000px) {
  .close {
	background-position-x: -54px;
	background-position-y: 15px;
	height: 55px;
	width: 55px;
}
.panel-body input[type=text], .panel-body input[type=password], .panel-body input[type=number], .panel-body input[type=search], .panel-body select {
  width: 90%;
}

input[type=text], input[type=password], input[type=number], input[type=search], select {
  font-size: 24px;
}

.xxxl {
	width: 90%;
}

.xxl {
	width: 80%;
}

.xl {
	width: 70%;
}

.l {
	width: 60%;
}

.m {
	width: 50%;
}

.s {
	width: 40%;
}

.xs {
	width: 30%;
}

.xxs {
	width: 20%;
}
.panel-title {
	font-size: 22px !important;
}

body {
    font-size: 2.3em;
  }

input[type=button], input[type=submit], input[type=reset], .button{
  font-size: 22px;
} 

 .container {
    /*width: 100%;*/
}
.progress {
	margin-top:20px;
	height: 40px;
	/*width: 80%;*/
}
.progress-bar {
	height: 40px;
	font-size: 1.2em;
	padding-top: 10px;
}

.choices__item {
	font-size: 1.6em !important;
}
.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
	background-size: 18px !important;
	width: 45px !important;
}
.choices__list--dropdown .choices__item {
	font-size: 1.4em !important;
}

.desplegar.plegado, .desplegar.desplegado {
	background-position-y: -1px;
}
}