@font-face {
    font-family: 'Roboto';
    src: url("/assets/fonts/Roboto-Regular.eot");
    src: url("/assets/fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/Roboto-Regular.woff2") format("woff2"), url("/assets/fonts/Roboto-Regular.woff") format("woff"), url("/assets/fonts/Roboto-Regular.ttf") format("truetype"), url("/assets/fonts/Roboto-Regular.svg#Roboto-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url("/assets/fonts/MaterialIcons-Regular.eot"); /* For IE6-8 */
    src: local("Material Icons"), local("MaterialIcons-Regular"), url("/assets/fonts/MaterialIcons-Regular.woff2") format("woff2"), url("/assets/fonts/MaterialIcons-Regular.woff") format("woff"), url("/assets/fonts/MaterialIcons-Regular.ttf") format("truetype");
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;

    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}

* {
    font-family: 'Roboto';
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

img {
    vertical-align: middle;
}

a:hover {
    outline: 0;
    text-decoration: none;
}

a:active {
    outline: 0;
    text-decoration: none;
}

a:focus {
    outline: 0;
    text-decoration: none;
}

.container {
    margin: 0;
    padding: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    background-color: red;
}

header {
    display: table-row;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

/*
NAVBAR
*/
.navbar {
    background: #FFFFFF;
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.15);
    min-width: 275px;
    max-width: 275px;
    color: #3e3e3e;
}

.navbar mat-nav-list.mat-nav-list .mat-icon {
    margin-right: 15px;
}

.navbar a.mat-list-item {
    color: #3e3e3e;
}

.navbar a.mat-list-item .secondary-text {
    color: rgba(0, 0, 0, 0.54);
}

.navbar a.mat-list-item.active {
    background: rgba(0, 0, 0, 0.04);
}

.navbar .nav-header {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.54);
    font-weight: normal;
    text-decoration: none;
}

.navbar img.sidenav-userimg {
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
}

.content {
    padding: 25px;
}

.breadcrumb {
    padding: 0px;
}

.breadcrumb li {
    display: inline;
    list-style-type: none;
}

.breadcrumb li, .breadcrumb li a {
    color: #a0a0a0;
}
.breadcrumb li:last-child {
    color: #3e3e3e;
}

@media (max-width: 599px) {
    .content {
        padding: 0px !important;
    }
    .breadcrumb {
        padding: 0px 16px !important;
    }
}

/* MAIN PAGE */
.main {
    display: table-row;
    height: 100%;
}

/* SIDENAV */
.sidenav-container {
    height: 100%;
}

/* CONTENT */
.page-wrap {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    background-color: #f4f0e8;
}

main {
    display: table-row;
    height: 100%;
}

.content {
    padding: 25px;
}

/* POSITIONING */
.positioning-center-outer {
    display: table;
    height: 100%;
    width: 100%;
}

.positioning-center-middle {
    display: table-cell;
    vertical-align: middle;
}

/* CARD */
.mat-card {
    margin-bottom: 30px;
}

/* OTHER */
.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.mat-form-field .prefix {
    margin-right: 10px;
}

/*
SPECIAL
*/
.profile-img {
    height: 36px;
    width: 36px;
}

.topbar {
    z-index: 999;
}

.topbar-fill-remaining-space {
    flex: 1 1 auto;
}

.mat-toolbar button {
    margin-left: 8px;
}

.mat-toolbar .app-name {
    margin-right: 25px;
}

.mat-toolbar .app-icon {
    margin-right: 10px;
    margin-left: 25px;
}

a.apptitle-link,
a.apptitle-link:hover,
a.apptitle-link:visited,
a.apptitle-link:link {
    text-decoration: none;
    color: #ffffff;
}

/* global utilities */
.full-width {
    width: 100%;
}

.spacer {
    flex: 1 1 auto;
}

/* OVERLAY */
.overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
}

.overlay .spinner {
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
    position: fixed;
}


/* SKELETON SCREENS */



.skeleton-wrapper .skeleton-full {
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%), linear-gradient(#eee 100%, transparent);
    background-size: 50px 100%, 100% 100%;
    background-position: 0px 0px, 0px 0px;
    animation: skeleton-full-shine 1s infinite;
}

.skeleton-wrapper .skeleton-list {
    height: 193px;
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%), linear-gradient(#eee 100%, transparent), linear-gradient(#eee 100%, transparent), linear-gradient(#eee 100%, transparent), linear-gradient(#eee 100%, transparent);
    background-size: 50px 200px, 100% 40px, 100% 40px, 100% 40px, 100% 40px;
    background-position: 0px 0px, 0px 0px, 0px 48px, 0px 96px, 0px 144px;
    animation: skeleton-list-shine 1s infinite;
}

@keyframes skeleton-full-shine {
    to {
        background-position: 100% 0, 0 0;
    }
}

.selection-list-skeleton {
    padding-top: 12px;
}

.selection-list-skeleton .skeleton {
    height: 193px;
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%), linear-gradient(#eee 100%, transparent), linear-gradient(#eee 100%, transparent), linear-gradient(#eee 100%, transparent), linear-gradient(#eee 100%, transparent);
    background-size: 50px 200px, 100% 40px, 100% 40px, 100% 40px, 100% 40px;
    background-position: 0px 0px, 0px 0px, 0px 48px, 0px 96px, 0px 144px;
    animation: shine 1s infinite;
}

.skeleton-wrapper {
    background-color: #ffffff;
    padding-right: 12px;
}

.course-card-skeleton {
    height: 150px;
    background-repeat: no-repeat;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%), 
        radial-gradient(circle 18px, lightgray 100%, transparent 0),
        linear-gradient(#eeeeee 100%, transparent),
        linear-gradient(#eeeeee 28px, transparent 0),
        linear-gradient(#eeeeee 18px, transparent 0),
        linear-gradient(#eeeeee 18px, transparent 0),
        linear-gradient(#eeeeee 18px, transparent 0);
    background-size: 50px 200px, 54px 54px, 54px 100%, 40% 200px, 100% 200px, 100% 200px, 100% 200px;
    background-position: 0 0, 0 0, 0 0, 66px 12px, 66px 56px, 66px 84px, 66px 112px;
    animation: skeleton-highlight 1s infinite;
}

@keyframes skeleton-highlight {
    to {
        background-position: 100% 0,  0 0, 0 0, 66px 12px, 66px 56px, 66px 84px, 66px 112px;
    }
}

@keyframes course-card-shine {
    to {
        background-position: 100% 0, 7px 7px, 0 0;
    }
}

.p-5 {
    padding: 5px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.m-5 {
    margin: 5px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-25 {
    margin: 25px !important;
}

.m-30 {
    margin: 30px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}
.primary-info {
    text-align: center
}

.secondary-info {
    margin: 50px 0px;
    color: #a0a0a0;
    text-align: center;
}
.secondary-info .mat-icon, .primary-info .mat-icon {
    font-size: 60px;
    width: 60px;
}
.loading-shade {
    padding: 40px 0px;
    display: flex;
    justify-content: center;
    align-content: center;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.hover-light:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.mat-checkbox-layout {
    white-space: initial !important;
}

tbody tr:hover {
    background-color: #f5f5f5;
}