body {
  background-color: #e2e5e8;
}

.table-input {
  max-width: 100px;
}

.app-menu {
  background-color: #505056;
}

.navbar-brand {
  color: white !important;
}

#main-menu>ul>li>a {
  color: white;
}

.container {
  max-width: 85%;
}

.container-form {
  display: flex;
  justify-content: space-between;
}

.sidebar {
  flex-basis: 19%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #f0f0f0;
}

.main {
  flex-basis: 80%;
  margin-left: 15px;
}

.input-group {
  margin-bottom: 10px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.input-group input[type="text"],
.input-group input[type="date"] {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.btn-submit {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  width: 45%;
}

.btn-submit:hover {
  background-color: #45a049;
}

#reset-btn{
  width: 45%;
  height: 43px;
}
#containerButtons{
  text-align: center;
}

table.resTable {
  word-wrap: break-word;
  width: 100%;
  background-color: #f0f0f0;
  border-collapse: collapse;
  border-width: 2px;
  border-color: #b5b5b5;
  border-style: solid;
  color: #000000;
}

table.resTable td,
table.resTable th {
  border-width: 2px;
  border-color: #b5b5b5;
  border-style: solid;
  padding: 3px;
}

table.resTable thead {
  background-color: #c4c4c4;
}

th {
  text-align: center;
}

.content {
  max-width: 400px;
}

.black-box {
  background-color: black;
  width: 10px;
  height: 10px;
}

#scroll-to-bottom {
  position: fixed;
  right: 20px;
  top: 20px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.7);
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
}

#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.7);
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
}
#scroll-to-bottom i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 15px;
  font-size: 19px;
}

#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 13px;
  font-size: 19px;
}

#scroll-to-bottom:hover {
  background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}

#scroll-to-bottom:hover i {
  color: #fff;
}

#return-to-top:hover i {
  color: #fff;
}

/* login form */

.login, .reset-password {
  min-width: 500px;
  position: absolute;
  text-align: center;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login .form-field::before {
  font-size: 20px;
  position: absolute;
  left: 15px;
  top: 17px;
  color: #888888;
  content: " ";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
}

.login .form-field:nth-child(2)::before {
  background-image: url(/public/assets/images/user-icon.png);
  width: 20px;
  height: 20px;
  top: 15px;
}

.login .form-field:nth-child(3)::before {
  background-image: url(/public/assets/images/lock-icon.png);
  width: 16px;
  height: 16px;
}

.reset-password .form-field.reset-class::before {
  background-image: url(/public/assets/images/lock-icon.png);
  width: 20px;
  height: 20px;
  top: 15px;
}

.login .form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

.login input {
  font-family: inherit;
  width: 100%;
  outline: none;
  background-color: #fff;
  border-radius: 4px;
  border: none;
  display: block;
  padding: 0.9rem 0.7rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
  color: #4A4A4A;
  text-indent: 40px;
}

.login .btn {
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  text-align: center;
  background-color: #47AB11;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
}


.auth-buttons {
  margin-right: 5px;
}

.brand-link {
  margin-top: 5px;
}

.message {
  min-width: 500px;
  position: absolute;
  text-align: center;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.message-reset {
  min-width: 500px;
  position: absolute;
  text-align: center;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%); 
}
  #pagination {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  #pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin-right: 2px;
    font-size: 20px;
    background-color: white;
  }

  #pagination a.active {
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
  }

  #pagination a:hover {
    background-color: #a1a1a1;
  }

  #pagination a.inactive {
    background-color: #cccccc;
  }

  #pagination .dots {
    margin-left: 10px;
    margin-right: 10px;
  }
#total-records {
  margin-left: auto;
}

#total-record-results {
  display: flex;
  justify-content: end;
  font-size: x-large;
}

.records-showed {
  font-size: x-large;
}

.hidden-lines {
  display: none;
}

.hidden {
  display: none;
}

.no-results-message {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 600;
}

/* Wrapper Style */

/* .wrapper{
	margin:0 auto;	
	padding-left:12%;
	padding-right:12%;
} */

.cctabs {
    width: 100%;
    margin: 50px auto;
}
.cctabs input[type="radio"] {
    opacity: 0;
}
.cctabs .fa{
	margin-right:10px;	
}
.cctabs label {
    color: #000;
    cursor: pointer;
    float: left;
    margin-right: 2px;
    padding: 0.5% 2%;
	font-size:25px;
	font-weight:bold;
}
.cctabs label:hover {
    background: -webkit-linear-gradient(#777, #666);
}
.cctabs input:checked + label {
    background: #fff;
    color: black;
	border-top:solid 2px #ebb704;
}
.cctabs input:nth-of-type(1):checked ~ .panels .panel:first-child, .cctabs input:nth-of-type(2):checked ~ .panels .panel:nth-child(2), .cctabs input:nth-of-type(3):checked ~ .panels .panel:nth-child(3), .cctabs input:nth-of-type(4):checked ~ .panels .panel:last-child {
  opacity: 1;
  transition: .3s;
	z-index:999;
}
.cctabs .panels {
    float: left;
    clear: both;
    position: relative;
    width: 100%;
    background: #fff;
}
.cctabs .panel {
    width: 100%;
    opacity: 0;
    position: absolute;
    background: #fff;
    padding: 2%;
    box-sizing: border-box;
}
.cctabs .panel h2 {
    margin: 0;
    font-family: Arial;
}

.cctabs .panel i{
	color:#ebb704;
	cursor:pointer;	
}
.cctabs .panel i:hover{
	color:#f4cc42;
}

.cctabs .headline h1 {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.6px;
    padding-bottom: 0;
    text-align: center;
    text-rendering: optimizespeed;
	margin: 10px 0;
}

.cctabs .headline hr {
    background: none repeat scroll 0 0 #ebb704;
    border: 2px solid;
    color: #ebb704;
    margin-bottom: 0;
    margin-top: 0;
    width: 30px;
}

.cctabs .headline .lead {
    font-family: "Lato",sans-serif;
    font-weight: 300;
    line-height: 1.9;
    margin: 5px 0;
    text-align: center;
}

#cc-contact input[type="text"], 
#cc-contact input[type="email"],
#cc-contact input[type="tel"],
#cc-contact input[type="password"],
#cc-contact textarea{
	width:100%;
	border:1px solid #ebb704;
	margin:0 0 5px;
	padding:10px;
	font-family: "Lato",sans-serif;
	font-size:14px;
}

#cc-contact textarea {
	height:147px;
	max-width:100%;
}

#cc-contact button[type="submit"] {
	cursor:pointer;
	width:100%;
	border:none;
	background:#ebb704;
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
}

#cc-contact button[type="submit"]:hover {
	background:#f4cc42;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

/* GRID*/
.grid {
    display: block;
    margin-left: -10px;
}
.cc-text-center{
	text-align:center;
}
.cc-mt-20{
	margin-top:50px;	
}
.unit-2,
.unit-3,
.unit-4 {
    float: left;
    border-left: 10px solid transparent;
    box-sizing: border-box;
    background-clip: padding-box;
}
.unit-1{
	width:100%;
	float:left;	
}
.unit-2 {
    width: 50%;
}

.unit-3 {
    width: 33.3%;
}

.unit-4 {
    width: 25%;
}

.historyElement {
  display: inline-block;
  width: 100%;
  list-style-type: none;
  text-align: center;
  padding: 10px;
  margin-top: 5px;
  background: #a2a2a3;
  border: 1px #000000;
  border-radius: 10px;
}
.childHistory {
  padding: 10px;
  margin-top: 40px;
  background: #d2d2d3;
  border: 1px #000000;
  border-radius: 10px;

}
.historyFrame {
  list-style-type: none;
  text-align: center;
  display: none;
  padding: 5px;
}



.container-login {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
}


.content-wrapper {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  border-radius: 0; 
  overflow: hidden;
  display: flex; 
  width: 100%;
}

.laptop {
  width: 60%; 
  height: auto;
  border: 5px solid #ffcc66; 
}

.text-container {
  width: 40%; 
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
}

h1 {
  color: #333;
  font-size: 2em;
  margin-bottom: 20px;
  margin-top: 0;
}

.login-button {
  display: block;
  margin-bottom: 20px;
  padding: 25px 50px;
  background-color: #007bff;
  color: #fff;
  font-size: 1.5em;
  text-decoration: none;
  border-radius: 15px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.login-button:hover {
  background-color: #0056b3;
}

.or-text {
  color: #333;
  margin-bottom: 20px;
}

.small {
  color: #999;
}

.emergency-login {
  padding: 15px 30px;
  font-size: 1em;
  margin-top: 20px;
}

#loginForm-emergency {
  display: none;
}

#loginForm-emergency input[type="email"],
#loginForm-emergency input[type="password"] {
  margin-bottom: 10px;
  padding: 10px 10px 10px 40px;
  width: calc(100% - 20px);
  max-width: 250px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-repeat: no-repeat; 
  background-position: left center;
}

#loginForm-emergency input[type="email"] {
  background-image: url('/public/assets/images/user-icon.png');
  background-size: 20px; 
}

#loginForm-emergency input[type="password"] {
  background-image: url('/public/assets/images/lock-icon.png');
  background-size: 20px; 
}

#loginForm-emergency button[type="submit"] {
  margin-bottom: 10px;
  padding: 10px;
  width: calc(100% - 20px); 
  max-width: 250px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  text-align: center;
}

#loginForm-emergency button[type="submit"]:hover {
  background-color: #0056b3;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.error-message {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
