.footer {
    position: fixed;
    bottom: 0px;
    right: 10px;
}

.login-wrapper {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    height: auto;
    padding: 0px;
    margin: 0px;
}

.login-right,
.login-left {
    display: flex;
    flex-direction: column;
}

.login-right,
.login-left {
    padding: 0px;
    height: 100vh;
}

.login-right {
    background-image: url("../images/shared/bground.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    border-left: 3px solid #ffbc49;
    opacity: 0.9;
    width: 70vw;
}

.login-left {
    width: 30vw;
}

    .login-left .login-form {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        flex-grow: 1;
        padding: 70px;
    }

    .login-left .login-title {
        text-align: left;
        color: #6d6d6d;
        font-size: 28px;
        font-weight: bold;
    }

    .login-left .login-subtitle {
        text-align: left;
        color: #6d6d6d;
        font-size: 18;
    }

    .login-left .login-label {
        color: #6d6d6d;
        font-size: 13px;
        font-weight: bold;
    }

.main-navbar,
.main-sidebar,
.right-sidebar {
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    white-space: nowrap;
}

.main-navbar {
    top: 0;
    left: 0;
}

.main-sidebar {
    left: 0;
}

.right-sidebar {
    right: 0;
}

.main-panel,
.main-navbar {
    position: relative;
    width: calc(100% - 60px);
    float: right;
    transition: width 0.3s ease-in-out;
}

.main-panel-expand,
.main-navbar-expand {
    width: calc(100% - 270px);
}

.main-content {
    width: 100%;
    height: 100%;
    padding: 50px;
}

.material-icons {
    color: lightgray !important;
    margin: 3px 5px !important;
    border: none !important;
}

    .material-icons.small {
        font-size: 12px;
        font-weight: bold;
    }

.blue:hover {
    color: #0180e0 !important;
}

.green:hover {
    color: #30962c !important;
}

.red:hover {
    color: #e11a22 !important;
}

.orange:hover {
    color: #ffa200 !important;
}

.element-hidden {
    display: none;
}

/** Keyframes */
@keyframes slide-from-right {
    100% {
        right: 0;
    }
}

@keyframes slide-to-right {
    100% {
        right: -400px;
    }
}

@keyframes slide-to-left {
    100% {
        width: calc(100% - 900px);
    }
}

@keyframes slide-from-left-to-right {
    100% {
        width: 100%;
    }
}

.navbar-wrapper {
    background-color: #f1f1f1;
    display: flex;
    height: 50px;
    width: 100%;
}

    .navbar-wrapper .navbar-content {
        width: 95%;
    }

    .navbar-wrapper .navbar-profile .logout-btn {
        position: fixed;
        right: 10px;
    }

        .navbar-wrapper .navbar-profile .logout-btn .mat-menu,
        .navbar-wrapper .navbar-profile .logout-btn .mat-icon {
            outline: none !important;
        }

        .navbar-wrapper .navbar-profile .logout-btn .mat-icon {
            font-size: 24px;
        }

.sidebar-wrapper {
    width: 280px;
    height: 100%;
}

    .sidebar-wrapper .sidebar-logo img {
        width: 60px;
        height: 50px;
    }

    .sidebar-wrapper .sidebar-logo .sidebar-logo-text {
        margin-left: 20px;
    }

    .sidebar-wrapper .sidebar-items,
    .sidebar-wrapper .sidebar-item-children {
        display: block;
        height: 100%;
        position: absolute;
    }

    .sidebar-wrapper .sidebar-items {
        background-color: #6d6d6d;
        left: 0;
        width: 60px;
    }

    .sidebar-wrapper .sidebar-item-children {
        background-color: #f1f1f1;
        color: #6d6d6d;
        left: 60px;
        transition: width 0.3s ease-in-out;
        width: 0px;
    }

        .sidebar-wrapper .sidebar-item-children h6 {
            color: #6d6d6d;
            padding: 20px 0 0 !important;
        }

        .sidebar-wrapper .sidebar-item-children hr {
            border-color: #6d6d6d;
            border-width: 3px;
            margin: 0 !important;
        }

    .sidebar-wrapper .sidebar-item-children-expand {
        padding: 10px;
        width: 210px;
    }

    .sidebar-wrapper ul {
        display: block;
        padding: 0;
        list-style-type: none;
        text-align: left;
    }

    .sidebar-wrapper a {
        margin-top: 10px;
    }

        .sidebar-wrapper a.nav-link {
            cursor: pointer;
            margin-left: 3px;
            padding: 0.4rem !important;
        }

            .sidebar-wrapper a.nav-link b {
                color: #ffffff !important;
                font-size: 18px !important;
                padding-left: 7px;
            }

            .sidebar-wrapper a.nav-link span {
                color: #6d6d6d;
                font-size: 12px !important;
            }

            .sidebar-wrapper a.nav-link:hover {
                background: rgba(255, 188, 73, 0.5);
                border-radius: 8px;
            }

    .sidebar-wrapper .active-sidebar-item {
        background: rgba(253, 253, 253, 0.27);
        border-radius: 8px;
    }

    .sidebar-wrapper .active-sidebar-item-child {
        background-color: #ffbc49;
        border-radius: 8px;
    }

.badge {
    color: #ffffff;
}

.table-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    padding: 20px;
    background-color: #f1f1f1;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    box-shadow: 4px 8px 18px #e2e2e2;
    margin-top: 50px;
}

    .table-wrapper .table-header {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

        .table-wrapper .table-header .header {
            font-size: 26px;
            font-weight: bold;
            color: #6d6d6d;
        }

    .table-wrapper .table-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

        .table-wrapper .table-content table,
        .table-wrapper .table-content th,
        .table-wrapper .table-content td {
            border: none;
        }

        .table-wrapper .table-content th {
            height: 35px !important;
            width: 100px !important;
            padding: 5px;
            margin: 5px;
            background-color: whitesmoke;
            color: #6d6d6d;
            font-size: 14px;
        }

            .table-wrapper .table-content th .column-alias,
            .table-wrapper .table-content th .column-sort {
                display: inline-block !important;
            }

            .table-wrapper .table-content th button {
                border: none;
                background: none;
            }

        .table-wrapper .table-content tr {
            height: 30px !important;
            font-size: 12px;
        }

        .table-wrapper .table-content .rows {
            border-bottom: 1px solid #f1f1f1;
        }

        .table-wrapper .table-content .row-filter {
            background: whitesmoke !important;
            border: none !important;
        }

        .table-wrapper .table-content td {
            background: #ffffff;
            padding: 5px;
            vertical-align: middle;
        }

            .table-wrapper .table-content td button {
                border: none;
                background: none;
                font-size: 14px;
                cursor: pointer;
            }

                .table-wrapper .table-content td button:hover {
                    color: #2d2d2d;
                }

            .table-wrapper .table-content td .total-count {
                color: gray;
                font-size: 14px !important;
                margin-right: 10px !important;
            }

    .table-wrapper .column-filter {
        background: none !important;
        position: relative;
        margin: 10px 0;
    }

        .table-wrapper .column-filter input {
            height: 25px;
            padding: 5px;
            outline: 0;
            border: 0px;
            border-bottom: 1px solid #6d6d6d;
            border-radius: 3px;
            transition: 0.1s all;
        }

            .table-wrapper .column-filter input::placeholder {
                font-size: 14px;
                font-style: italic;
            }

            .table-wrapper .column-filter input:focus {
                transition: 0.1s ease-out;
                border-bottom: 2px solid #2d2d2d;
                padding: 5px 5px 3px 5px;
            }

.table-wrapper-show-form {
    animation: slide-to-left 0.5s forwards;
}

.table-wrapper-close-form {
    animation: slide-from-left-to-right 0.5s forwards;
}

.paging-icon {
    display: inline-block !important;
    color: #6d6d6d;
    padding: 5px !important;
    width: 50px !important;
    height: 45px !important;
}

    .paging-icon.page-index {
        font-size: 15px;
        white-space: nowrap;
    }

.paging-wrapper {
    width: 100%;
    height: 50px;
}

    .paging-wrapper button, .paging-wrapper select {
        display: inline-block;
    }

    .paging-wrapper select, .paging-wrapper option {
        max-width: 100px !important;
    }

/*.show-form,
.hide-form {
  height: 100%;
  min-height: 600px;
  position: fixed;
  right: 0px;
  top: 50px;
  width: 900px;
}

.show-form {
  right: -900px;
  animation: slide-from-right 0.5s forwards;
}

.hide-form {
  right: 0px;
  animation: slide-to-right 0.5s;
  display: none;
}

.form-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  width:100%;

  label{
      font-size:16px;
      font-weight:100;
      padding-top: 8px;
  }
}

.form-content {
  padding: 10px;
}

.form-header {
  font-size: 17px;
  font-weight: bold;
}

.form-close-btn {
  border: none;

  position: absolute !important;
  top: 10px;
  right: 10px;
  background-color: transparent !important;

  cursor: pointer;

  >.form-close-icon{
    color: $colorGraySecondary;
  }
}

.form-group{
  margin: 10px;
  width: 500px;
}
*/
.overlay {
    background: rgba(0, 0, 0, 0.5);
    display: block;
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none !important;
    z-index: 1;
}

.spinner,
.spinner:after {
    border-radius: 50%;
    width: 7em;
    height: 7em;
}

.spinner {
    margin: 60px auto;
    font-size: 10px;
    position: absolute;
    top: 49%;
    left: 49%;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(172, 12, 12, 0.2);
    border-right: 1.1em solid rgba(172, 12, 12, 0.2);
    border-bottom: 1.1em solid rgba(172, 12, 12, 0.2);
    border-left: 1.1em solid #e11a22;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: spin 1.1s infinite linear;
    animation: spin 1.1s infinite linear;
    z-index: 10;
}

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

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

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

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

body {
    overflow-x: hidden;
}

.container {
    max-width: 100% !important;
}

/** BUTTONS */
.btn-success {
    background-color: #0180e0 !important;
}

.btn-warning {
    background-color: #ffa200 !important;
}

    .btn-warning:hover {
        background-color: #ffbc49 !important;
    }

.btn-secondary {
    background-color: #30962c !important;
    color: #ffffff !important;
}

    .btn-secondary:hover {
        background-color: #277724 !important;
    }

/** MATERIAL */
.mat-form-field {
    display: block !important;
}

.mat-form-field-infix {
    width: 420px !important;
}

    .mat-form-field-infix input {
        padding: 0px 5px !important;
    }

        .mat-form-field-infix input:focus {
            border-bottom: none !important;
            box-shadow: none !important;
        }

        .mat-form-field-infix input[type=password],
        .mat-form-field-infix input[type=text],
        .mat-form-field-infix input[type=number],
        .mat-form-field-infix textarea {
            border-bottom: none !important;
            box-shadow: none !important;
        }

    .mat-form-field-infix textarea {
        min-height: 120px;
        padding: 10px !important;
        scrollbar-width: 0px !important;
        resize: none !important;
    }

/*# sourceMappingURL=site.min.css.map */
