
/**
* Main CSS file for the 'qtipee basic dark' theme.
*
* @author qtipee
*/

/* APP GENERAL */
.app {
  font-family: 'Muli';
  color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
}

/* APP LOGIN PAGE */
#app-login {
    background: #093646;
}
#app-login .title {
    font-size: 3em;
    text-align: center;
    margin: 80px 0 20px 0;
}
#app-login .sub-title {
    font-size: 2em;
    text-align: center;
    margin:0 0 40px 0;
}
#app-login #links {
    margin: 20px 0 0 0;
}
#app-login #links p {
    margin: 12px 0;
}
#app-login footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
#app-login footer p {
    font-size: 2.5em;
}

/* APP LOGGED IN */
#app {
    background: #111;
}
/* APP HEADER */
#app-header {
    background: #093646;
    font-size: 1.5em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
#app-header a {
    color: #f5f5f5;
    padding: 10px 25px;
    transition: all 0.4s;
}
#app-header a:hover {
    background: #f5f5f5;
    color: #000;
}
#app-header a#logout:hover {
    color: #bf0c23;
}

/* APP SIDE MENU */
#app-menu {
    width: 275px;
    height: 100%;
    background: #1c1c1c;
    padding: 15px;
    position: fixed;
    left: 0;
    top: 50px;
    bottom: 0;
    transition: all 0.5s;
    overflow: visible;
}
#app-menu.closed {
    left: -250px;
}
#app-menu #show-hide-menu {
    background: #1c1c1c;
    color: #f5f5f5;
    font-size: 1.5em;
    text-align: center;
    width: 50px;
    border-radius: 50px;
    padding: 10px;
    position: absolute;
    top: 40%;
    right: 0;
    opacity: 0;
    transition: all 0.5s;
    cursor: pointer;
}
#app-menu #show-hide-menu:hover {
    background: #555;
}
#app-menu:hover #show-hide-menu {
    opacity: 1;
    right: -25px;
}
#app-menu #show-hide-menu i{transition: all 0.5s;}
#app-menu #show-hide-menu i.closed {
    transform: rotate(-180deg);
}

/* APP MAIN SECTION */
#app-main {
    padding: 20px;
    position: fixed;
    top: 50px;
    left: 305px;
    right: 0;
    bottom: 0;
    overflow: auto;
    transition: all 0.5s;
}
#app-main.full {
    left: 55px;
}
#app-main .breadcrumb {
    background: transparent;
    font-size: 1.5em;
    padding: 0;
    margin: 0 0 20px 0;
}
#app-main .section {
    border: 1px solid #000;
    border-radius: 5px;
    padding: 30px 0 0 0;
    margin: 0 0 30px 0;
    position: relative;
}
#app-main .section::before {
    content: '';
    background: #f5f5f5;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
}

#app-loading {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
}
#app-loading #loading-icon {
    color: #28bbbb;
    font-size: 2em;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: 0.5s loading-animation ease-in-out alternate-reverse infinite;
}
@keyframes loading-animation {
    from {
        left: 47%;
    }
    to {
        left: 53%;
    }
}

/* APP HTML ELEMENTS */
/* <a> */
.app a {
    color: #f5f5f5;
    transition: all 0.4s;
}
.app a:hover {
    color: #28bb08;
}
.app a, .app a:hover, .app a:visited, .app a:focus {
    text-decoration: none;
}
.app table > thead > tr > th {
    background: #093646;
    text-align: center;
    padding: 10px 0;
}
.app table > thead > tr a {
    text-decoration: underline;
}
.app table > thead > tr a:hover {
    text-decoration: underline;
}
.app table > thead > tr.filters td {
    background: #093646;
    padding: 6px;
}
.app table > tbody {
    color: #000;
}
.app table > tbody > tr:nth-child(even) {
    background: #e5e5e5;
}
.app table > tbody > tr:nth-child(odd) {
    background: #f5f5f5;
}
.app table > tbody > tr > td {
    color: #000;
    padding: 12px 10px;
}
.app table > tbody > tr > td > a {
    color: #28bb08;
}
.app table > tbody > tr > td > a:hover {
    color: #25940d;
}
.app table > tbody .btn {
  border: 1px solid #000;
  padding: 5px;
}
.app table > tbody .btn.btn-success {
    color: #f5f5f5;
    background: #28bb08;
}
.app table > tbody .btn.btn-success:hover {
    color: #28bb08;
    background: #f5f5f5;
}
.app table > tbody .btn.btn-danger {
    color: #f5f5f5;
    background: #bf0c23;
}
.app table > tbody .btn.btn-danger:hover {
    color: #bf0c23;
    background: #f5f5f5;
}
.app table > tbody .text-success {
    color: #000;
}
.app .form-control {
    color: #000;
    background: #999;
    border: 1px solid #000;
    border-radius: 5px;
    transition: all 0.4s;
}
.app .form-control:hover {
    background: #f5f5f5;
}
.app .form-control:focus {
    background: #f5f5f5;
    box-shadow: none;
}

/* <form> */
.app form {
    text-align: center;
}
.app form .control-label {
    font-size: 1.3em;
}
.app form label {
    font-weight: normal;
}
.app form .form-control {
    color: #000;
    background: #999;
    border: 1px solid #000;
    border-radius: 5px;
    width: 300px;
    padding: 20px 10px;
    margin:10px auto 20px auto;
    transition: all 0.4s;
}
.app form .form-control:hover {
    background: #f5f5f5;
}
.app form .form-control:focus {
    background: #f5f5f5;
    box-shadow: none;
}
.app form .btn-form {
    font-size:1.3em;
    background: #28bb08;
    color: #f5f5f5;
    width: 300px;
    border: 1px solid #000;
    padding: 8px 12px;
    margin: 10px auto 20px auto;
    transition: all 0.4s;
}
.app form .btn-form:hover {
    background: #f5f5f5;
    color: #28bb08;
}
/* .btn-icon */
.app .btn-icon {
    background: #093646;
    font-size: 1.2em;
    text-align: center;
    border: 2px solid #000;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: all 0.4s;
}
.app .btn-icon a {
    padding: 20px 10px 10px 10px;
    color: #f5f5f5;
    display: block;
    transition: all 0.4s;
}
.app .btn-icon:hover {
    background: #f5f5f5;
}
.app .btn-icon a:hover {
    color: #093646;
}
.app .btn-icon i {
    font-size: 2.8em;
    margin: 0 auto 30px auto;
    display: block;
}
.app .btn-icon#usr-pref {
    background: #28bb08;
}
.app .btn-icon#usr-pref a:hover {
    color: #28bb08;
    background: #f5f5f5;
}
.app .btn-icon#mng-usrs {
    background: #d66c00;
}
.app .btn-icon#mng-usrs a:hover {
    color: #d66c00;
    background: #f5f5f5;
}
.app .btn-icon#crud {
    background: #00b2a4;
}
.app .btn-icon#crud a:hover {
    color: #00b2a4;
    background: #f5f5f5;
}
.app .btn-icon#app-settings {
    background: #9a0000;
}
.app .btn-icon#app-settings a:hover {
    color: #9a0000;
    background: #f5f5f5;
}

/* APP WIDGETS */
/* CRUD DATA TABLE */
.app #ajaxCrudDatatable {
    margin: 0 0 20px 0;
}
.app #ajaxCrudDatatable .panel.panel-primary {
    border: 1px solid #000;
}
.app #ajaxCrudDatatable .panel .panel-heading {
    background: #333;
    border: 1px solid #000;
}
.app #ajaxCrudDatatable .panel .kv-panel-before {
    background: #333;
    border: 1px solid #000;
    border-top: none;
}
.app #ajaxCrudDatatable .panel .kv-panel-after {
    background: #093646;
    border: 1px solid #000;
}
.app #ajaxCrudDatatable .panel .kv-panel-after .btn.btn-danger {
    color: #f5f5f5;
    background: #830011;
    border: 1px solid #000;
    padding: 2px 10px;
    transition: all 0.4s;
}
.app #ajaxCrudDatatable .panel .kv-panel-after .btn.btn-danger:hover {
    color: #f5f5f5;
    background: #bf0c23;
}
.app #ajaxCrudDatatable .btn-default {
    background: #777;
    border: 1px solid #000;
    transition: all 0.4s;
}
.app #ajaxCrudDatatable .btn-default:hover {
    background: #f5f5f5;
}
.app #ajaxCrudDatatable .btn-default i {
    transition: all 0.4s;
}
.app #ajaxCrudDatatable .btn-default#new:hover i {
    transform: scale(1.4);
}
.app #ajaxCrudDatatable .btn-default#refresh:hover i {
    color: #e58f0a;
    transform: rotate(360deg);
}
.app #ajaxCrudDatatable table > tbody .glyphicon {
    color: #777;
    padding: 0 1px;
    transition: all 0.4s;
}
.app #ajaxCrudDatatable table > tbody .glyphicon-eye-open:hover {
    color: #28bb08;
}
.app #ajaxCrudDatatable table > tbody .glyphicon-pencil:hover {
    color: #e58f0a;
}
.app #ajaxCrudDatatable table > tbody .glyphicon-trash:hover {
    color: #bf0c23;
}
/* MODAL */
.modal-backdrop {
    /* Fixes modal hidden by backdrop caused by absolute/fixed position. */
    position: relative;
}
.modal {
    /* Fixes modal hidden by backdrop caused by absolute/fixed position. */
    background-color: rgba(255, 255, 255, 0.4);
}
.modal .modal-content {
    color: #f5f5f5;
    border: 1px solid #000;
}
.modal .modal-header {
    background: #093646;
    border-bottom: 1px solid #000;
}
.modal .modal-header .close {
    color: #f5f5f5;
    font-size: 2em;
    opacity: 1;
    transition: all 0.4s;
}
.modal .modal-header .close:hover {
    color: #bf0c23;
    text-shadow: none;
}
.modal .modal-body {
    background: #333;
    padding: 30px 15px;
}
.modal .modal-footer {
    background: #333;
    border-top: 1px solid #000;
}
.modal .modal-footer .btn {
    padding: 7px 25px;
    transition: all 0.4s;
}
.modal .modal-footer .btn.btn-default {
    color: #bf0c23;
    background: #f5f5f5;
    border: 1px solid #bf0c23;
}
.modal .modal-footer .btn.btn-default:hover {
    color: #f5f5f5;
    background: #bf0c23;
}
.modal .modal-footer .btn.btn-primary {
    color: #f5f5f5;
    background: #28bb08;
    border: 1px solid #000;
}
.modal .modal-footer .btn.btn-primary:hover {
    color: #28bb08;
    background: #f5f5f5;
}
