﻿.course {
    border: 1px solid #E3E2EB;
    padding: 10px;
    margin: 10px;
}

    .course:hover {
        background-color: #EDECF5;
    }

.coursetitle {
    color: #551999;
    font-size: 25px;
    font-weight: bold;
}

.course i {
    color: #551999;
    font-size: 20px;
}

.coursetime {
    background-color: #551999;
    padding: 10px;
    color: #fff;
    width: 160px;
    border-radius: 5px;
    margin: 0px 20px 20px 0px;
    font-weight: bold;
    text-align: center;
}

    .coursetime i {
        color: #fff !important;
    }

.btn-GSS {
    background-color: #551999;
    border-color: #551999;
    color: #fff;
}

    .btn-GSS:hover {
        opacity: 0.8;
        background-color: #551999 !important;
        border-color: #551999 !important;
        color: #fff;
    }

    .btn-GSS:active, .btn-GSS:focus {
        background-color: #551999 !important;
        border-color: #551999 !important;
        color: #fff;
    }

    .btn-GSS:active, .btn-GSS:focus {
        box-shadow: 0 0 0 .2rem #551999 !important;
    }

.readall-button {
    background-color: #551999 !important;
}

/* The customcheck */
.customcheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .customcheck input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    /*background-color: #2f5ea9;*/
    border-radius: 5px;
    border: 3px solid #551999;
}

/* On mouse-over, add a grey background color */
.customcheck:hover input ~ .checkmark {
    background-color: #551999;
}

/* When the checkbox is checked, add a blue background */
.customcheck input:checked ~ .checkmark {
    background-color: #551999;
    border-radius: 5px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.customcheck input:checked ~ .checkmark:after {
    display: block;
}

/* Show the checkmark when checked */
.customcheck input:checked ~ .checkmark i {
    display: none;
}

/* Style the checkmark/indicator */
.customcheck .checkmark:after {
    left: 10px;
    top: 3px;
    width: 13px;
    height: 22px;
    border: solid white;
    border-width: 0 5px 5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkmark i {
    color: #fff !important;
    font-size: 28px !important;
    padding: 6px;
    margin-right: 2px;
}

.coursetable {
    width: 100%;
    border: 1px solid #d4d4d4;
    margin: 10px 0px;
}

    .coursetable th {
        background-color: #551999;
        color: #fff;
    }

    .coursetable > thead > tr > th, .coursetable > tbody > tr > th, .coursetable > tfoot > tr > th, .coursetable > thead > tr > td, .coursetable > tbody > tr > td, .coursetable > tfoot > tr > td {
        border: 1px solid #d4d4d4;
    }

    .coursetable thead > tr > th, .coursetable tbody > tr > th, .coursetable tfoot > tr > th, .coursetable thead > tr > td, .coursetable tbody > tr > td, .coursetable tfoot > tr > td {
        padding: 8px;
        line-height: 1.428571429;
        vertical-align: top;
        border-top: 1px solid #d4d4d4;
    }

.panel-heading {
    background-color: #2f5ea9;
    color: #fff;
    padding: 10px;
    margin-bottom: 30px;
}

.btn-success{
    background-color:#551999 !important;
}