/* Template */
html {
    position: relative;
    min-height: 100%;
}
body {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 72px;
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 72px;
}

/* Nav */
/* Nav Bar */
.navbar {
    box-shadow: 0 8px 6px -6px rgba(0,0,0,0.1);
}
.sticky {
    position: sticky;
    top: 0;
    z-index: 510;
}

/* Side Bar */
.sidebar-sticky {
    position: sticky;
    top: 55px;
    z-index: 500;
}
:target::before {
     content: "";
     display: block;
     height: 55px;
     margin: -55px 0 0;
 }



/* Banners */
.jumbotron-title {
    color: #fff;
    font-size: 52px;
    text-align: center;
    letter-spacing: 0.15em;
    filter: drop-shadow(0 0px 20px rgba(0, 0, 0, 1));
}



/* Cards */
.card-image-top {
    object-fit: cover;
    width: 100%;
    height: 30vh;
}



/* Courses */
.course {
    margin-bottom: 1rem;
}
.course-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 991px) {
    .course {
        margin-bottom: 3rem;
    }

    .course-desc {
        margin-top: 1rem;
    }

    .course-img {
        text-align: center;
    }

    .course-btn {
        justify-content: center;
    }
}

/* Responsive Tables */
@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border-top: 1px solid #ccc;
    }

    td {
        border: none;
        border-top: 1px solid #eee;
        position: relative;
        padding-left: 50% !important;
        text-align: left;
        min-height: 49px;
    }

    td.text-right {
        text-align: left !important;
    }

    td:before {
        position: absolute;
        top: 11px;
        left: 11px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
    }

    td:before {
        content: attr(data-label);
        font-weight: bold;
    }
}


/* Chosen Select box */
.chosen-container.chosen-container-single {
    width: 100% !important;
}

.chosen-container-multi .chosen-choices {
    padding: .375rem .75rem;
    font-size: 1rem;
    color: #495057;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    background-image:none;
}

.chosen-container .chosen-results li {
    font-size:1rem;
    padding-left:1rem;
}

.chosen-container .chosen-results li.highlighted {
    background-color:#1e90ff;
    background-image:none;
}

.chosen-container-multi .chosen-choices li.search-choice {
    width:100%;
    background-image:none;
    padding:.5rem;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    top: 9px;
    right:7px;
}

.chosen-container-single .chosen-single {
    background:none;
    font-size:1rem;
    padding: .375rem .75rem;
    color: #495057;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    height: auto;
}

.chosen-container-single .chosen-single div {
    top:8px;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    background:none;
}

/* DAta Tables */
div.dataTables_wrapper div.dataTables_filter {
    text-align: left;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0;
}

div.dataTables_wrapper div.dataTables_length {
    text-align: right;
}

div.dataTables_wrapper div.dataTables_info {
    text-align: right;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: flex-start;
}

@media screen and (max-width: 767px) {
    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: center;
    }

    div.dataTables_wrapper div.dataTables_info {
        text-align: center;
    }
}

/* Quill CSS */
.ql-size-small {
    font-size: 0.75em;
}

.ql-size-large {
    font-size: 1.5em;
}

.ql-size-huge {
    font-size: 2.5em;
}