/* here you can put your own css to customize and override the theme */
body.login .main-panel {
  width: 100% !important;
}

body.login .logo {
  color: #ebecf1;
  text-align: center;
}

body.login .main-panel>.content {
    min-height: calc(100vh - 230px);
}

body.login .main-panel .form-control:focus {
    border: 1px solid #E3E3E3 !important;
    border-left: none !important;
}

.main-panel>.content {
    min-height: calc(100vh - 170px);
}

#main-panel .form-group .text-help {
	padding-left: 1rem;
	display: block;
	color: #9e9e9e;
	font-size: 80%;
  font-weight: 400;
  margin-top: 3px;
}

#main-panel .card .card-footer {
	border-top: 1px solid #ebecf1;
}

#menu-home .fa-icon {
    font-size: 30px;
    color: #fff;
    background-color: #4caf50;
    margin: 2px 10px 5px 0px;
    border-radius: 10px;
    width: 50px;
    height: 50px;
}

.navbar .navbar-brand {
    font-size: 1.5em;
}

.table>thead>tr>th{
  font-size: 1.1em;
}

.form-control{
  border-radius: .5em;
}

input.datepicker {
  padding: .375rem .75rem;
}

.form-group .form-control, .input-group .form-control {
    padding: 10px 10px;
}

div.card .card-filter {
  border: 1px dashed #dfdfdf;
  box-shadow: none;
}

.btn-sm {
  font-size: 0.8571em !important;
}

textarea.form-control {
    border: 1px solid #E3E3E3;
    border-radius: 0;
    line-height: 2;
}

textarea.form-control:focus, textarea.form-control:active {
    border: 1px solid #f96332;
}

.form-control:focus {
    border: 1px solid #f96332;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 !important;
    color: #2c2c2c;
}

.custom-control-label {
  cursor: pointer;
}

.notifications {
  display: none;
  max-width: 350px;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 63px;
  right: 62px;
  border-radius: 5px 0px 5px 5px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.notifications h2 {
  font-size: 14px;
  padding: 10px;
  border-bottom: 1px solid #eee;
  color: #999;
  margin-bottom: 0px;
}
.notifications h2 span {
  color: #f00;
}

.notifications .notif-list {
  max-height: 300px;
  overflow-y: auto;
}

.notifications-item {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 6px 9px;
  margin-bottom: 0px;
  cursor: pointer;
}
.notifications-item:hover {
  background-color: #eee;
}
.notifications-item img {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 9px;
  border-radius: 50%;
  margin-top: 2px;
}
.notifications-item .text h4 {
  color: #777;
  font-size: 16px;
  margin-top: 3px;
}
.notifications-item .text p {
  color: #aaa;
  font-size: 12px;
}

.notify {
  animation: animSpin 1.8s ease-in-out forwards infinite, animFade 1.8s ease forwards infinite;
}

.input-group-append .input-group-text, .input-group-prepend .input-group-text{
  border-radius: .5em;
}

@keyframes animSpin {
  0% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(0deg); transform: perspective(120px) rotateY(181deg) rotateX(0deg); 
  }
  50% { -webkit-transform: perspective(120px) rotateY(0deg) rotateX(0deg); transform: perspective(120px) rotateY(0deg) rotateX(0deg); 
  }
  100% { -webkit-transform: perspective(120px) rotateY(180deg); transform: perspective(120px) rotateY(181deg); }
}
@keyframes animFade {
  0% { opacity: .95; }
  100% { opacity: 1; }
}

@media all and (min-width: 992px) {
  .sidebar .nav>li.active-pro {
    position: absolute;
    width: 100%;
    bottom: 10px;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  body.login .logo h1 {
    font-size: 2.5em;
  }
}

