/* Minification failed. Returning unminified contents.
(118,1): run-time error CSS1019: Unexpected token, found '}'
(121,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@include'
(125,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@include'
(129,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@include'
(134,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@include'
(138,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@include'
(142,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@include'
(784,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(785,10): run-time error CSS1035: Expected colon, found '{'
(794,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(795,10): run-time error CSS1035: Expected colon, found '{'
(1608,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(1609,10): run-time error CSS1035: Expected colon, found '{'
(1620,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(1621,10): run-time error CSS1035: Expected colon, found '{'
(1632,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(1633,10): run-time error CSS1035: Expected colon, found '{'
(1642,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(1643,10): run-time error CSS1035: Expected colon, found '{'
(1652,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(1653,10): run-time error CSS1035: Expected colon, found '{'
(1662,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(1663,10): run-time error CSS1035: Expected colon, found '{'
(1672,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(1673,10): run-time error CSS1035: Expected colon, found '{'
(1682,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(1683,10): run-time error CSS1035: Expected colon, found '{'
(1692,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(1693,10): run-time error CSS1035: Expected colon, found '{'
(1704,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(1705,10): run-time error CSS1035: Expected colon, found '{'
(2692,1): run-time error CSS1019: Unexpected token, found '}'
 */
html {
    background-color: #e2e2e2;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    /*border-top: solid 10px #000;*/
    color: #333;
    font-size: .85em;
    font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
}

a {
    color: #333;
    outline: none;
    /*padding-left: 3px;
    padding-right: 3px;*/
    text-decoration: underline;
}

.modal-title {
    display: contents;
    font-weight: 700;
}

a:link, a:visited,
a:active, a:hover {
    /*color: #333;*/
}

a:hover {
    background-color: #c7d1d6;
}

header, footer, hgroup,
nav, section {
    display: block;
}

mark {
    background-color: #a6dbed;
    padding-left: 5px;
    padding-right: 5px;
}

/*checkbox switch / toggle*/
@mixin toggle-switch($toggleWidth, $toggleHeight, $handleMargin, $roundness, $on-color, $off-color) {
    $handleColor: #FFF;
    $handleHeight: $toggleHeight - ($handleMargin * 2);
    $handleWidth: $handleHeight;
    $handleRadius: $handleHeight * $roundness;
    $toggleRadius: ($toggleHeight / 2) * $roundness;
    position: relative;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    top: 0;
    left: 0;
    width: $toggleWidth;
    height: $toggleHeight;
    margin: 5px;
    border-radius: $toggleRadius;
    background: $off-color;
    box-sizing: border-box;
    box-shadow: inset 0px 1px 0px rgba(0,0,0,0.2);
    // text-indent: -9999px;
    cursor: pointer;

    //toggle when checked
    &:checked {
        background: $on-color;
        //border-color: $on-color;
    }

    //handle
    &:after {
        position: absolute;

        @if $roundness < 0.5 {
            content: '|||';
        }

        @else {
            content: '';
        }

        text-align: center;
        color: rgba(0,0,0,0.1);
        top: $handleMargin;
        left: $handleMargin;
        width: $handleWidth;
        height: $handleHeight;
        border-radius: ($handleRadius / 2);
        transition: 0.3s;
        background: $handleColor;
        box-shadow: 0px 1px 0px 1px rgba(0,0,0,0.25);
    }

    //handle when checked
    &:checked:after {
        left: calc(100% - #{$handleMargin});
        transform: translateX(-100%);
    }

    //handdle when pressed down
    &:active:after {
        width: $handleWidth * 1.5;
    }
}

//create your own classes as you wish input[type="checkbox"].toggle-switch {
    @include toggle-switch(44px, 22px, 1px, 1, blue, gray);
}

input[type="checkbox"].toggle-switch.xxs {
    @include toggle-switch(18px, 12px, 1px, 1, blue, gray);
}

input[type="checkbox"].toggle-switch.sm {
    @include toggle-switch(32px, 16px, 1px, 1, blue, gray);
}

input[type="checkbox"].toggle-switch.lg {
    @include toggle-switch(64px, 32px, 2px, 1, blue, gray);
}


input[type="checkbox"].toggle-switch.square {
    @include toggle-switch(32px, 16px, 1px, 0.1, blue, gray);
}

input[type="checkbox"].toggle-switch.long {
    @include toggle-switch(64px, 16px, 1px, 0.25, blue, gray);
}

input[type="checkbox"].toggle-switch.long {
    @include toggle-switch(64px, 16px, 1px, 0.25, #7e7, #ed5c65);
}

.course-event-cards-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping to new rows */
    gap: 30px; /* Add uniform spacing between cards */
    justify-content: space-between; /* Ensures cards distribute evenly */
    padding: 20px; /* Add padding around the container */
}

.course-event-card {
    flex: 1 1 calc(33.333% - 20px); /* Three cards per row with consistent spacing */
    margin: 10px 0; /* Adjust vertical spacing */
    background: #fff; /* White background for contrast */
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: space-between; /* Ensure footer stays at the bottom */
    transition: transform 0.2s, box-shadow 0.2s; /* Smooth transition for hover effects */
}

    .course-event-card:hover {
        transform: scale(1.03); /* Slight lift on hover for interactivity */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    }

/* New: Add background to the card header */
.course-event-card-header {
    background-color: #4c9598; /* Customize header background color */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    text-align: center;
    border-bottom: 1px solid #ddd; /* Subtle border between header and content */
}

/* Content Area */
.course-event-card-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px; /* Added margin below the title for spacing */
    padding: 0px 5px 0px 5px;
}

.course-event-card-content p {
    margin: 8px 0; /* Increased margin for better vertical spacing */
    font-size: 14px; /* Adjusted font size for readability */
    line-height: 1.5; /* Improved line spacing */
    padding: 0px 5px 0px 5px;
}

.course-event-card-content .course-event-availability {
    font-size: 12px; /* Slightly smaller font for availability badges */
    font-weight: bold;
    display: inline-block;
    padding: 5px 10px; /* Added padding for better visibility */
    border-radius: 50px; /* Rounded badge for modern look */
    text-align: center; /* Center align text inside the badge */
    min-width: 60px; /* Ensures consistent size */
}

.course-event-availability {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

    .course-event-availability.green {
        color: #fff;
        background-color: #4caf50; /* Green background for seats available */
    }

    .course-event-availability.yellow {
        color: #fff;
        background-color: #ff9800; /* Yellow background for limited seats */
    }

    .course-event-availability.red {
        color: #fff;
        background-color: #f44336; /* Red background for sold-out courses */
    }

/* Footer Area */
.course-event-card-footer {
    padding: 10px 15px;
    background: #f7f7f7; /* Light background for footer */
    border-top: 1px solid #ddd;
}

    .course-event-card-footer .btn {
        width: 100%; /* Ensure button takes up full width */
        padding: 12px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        transition: background 0.2s, transform 0.2s; /* Smooth transitions */
    }

    .course-event-card-footer .btn-primary {
        background: #0073e6; /* Default blue button color */
        color: #fff;
        border: none;
        border-radius: 5px;
    }

        .course-event-card-footer .btn-primary:hover {
            background: #005bb5; /* Darker shade on hover */
            transform: translateY(-2px); /* Slight lift on hover for interactivity */
        }

    .course-event-card-footer .btn-warning {
        background: #ff9800; /* Warning button color for limited seats */
        color: #fff;
        border: none;
        border-radius: 5px;
    }

        .course-event-card-footer .btn-warning:hover {
            background: #e68a00; /* Darker shade for warning hover */
            transform: translateY(-2px); /* Slight lift on hover */
        }

    .course-event-card-footer .btn-default {
        background: #ccc;
        color: #666;
        cursor: not-allowed;
        border-radius: 5px;
    }

/* Media Queries */
@media (max-width: 768px) {
    .course-event-card {
        flex: 1 1 100%; /* Full width on smaller screens */
    }
}



safari-checkbox-style {
    -webkit-transform: scale(1.3,1.3);
    margin: 0px 14px 4px 0px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

h1, h2, h3,
h4, h5, h6 {
    color: #000;
    margin-bottom: 0;
    padding-bottom: 0;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.75em;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

    h5 a:link, h5 a:visited, h5 a:active {
        padding: 0;
        text-decoration: none;
    }


body {
    margin: 5px;
    background: #A6A6A6
}
/*Rating*/

.links-container {
    display: inline-block;
    text-align: center;
    padding: 15px;
}

.links-button {
    margin: 10px;
    display: block;
    width: 100%;
}

.user-rating {
    direction: rtl;
    font-size: 20px;
    unicode-bidi: bidi-override;
    /*padding: 10px 30px;*/
    display: flex;
}

    .user-rating input {
        opacity: 0;
        position: relative;
        left: -18px;
        z-index: 2;
        cursor: pointer;
    }

    .user-rating span.star:before {
        color: #777777;
        content: "ï€†";
        /*padding-right: 5px;*/
    }

    .user-rating span.star {
        display: inline-block;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        position: relative;
        z-index: 1;
    }

    .user-rating span {
        margin-left: -15px;
    }

        .user-rating span.star:before {
            color: #777777;
            content: "\f006";
            /*padding-right: 5px;*/
        }

    .user-rating input:hover + span.star:before, .user-rating input:hover + span.star ~ span.star:before, .user-rating input:checked + span.star:before, .user-rating input:checked + span.star ~ span.star:before {
        color: #57994d;
        content: "\f005";
    }

.user-rating-radio {
    width: auto;
    margin-right: 5px;
}

.selected-rating {
    color: #57994d;
    font-weight: bold;
    font-size: 3em;
}

.move-to-top {
    margin-top: -40px;
    padding-top: 5px;
}


/* accordion*/
.panel-heading [data-toggle="collapse"]:after {
    font-family: 'Glyphicons Halflings';
    content: "\e072"; /* "play" icon */
    float: right;
    color: #337ab7;
    font-size: 18px;
    line-height: 22px;
    /* rotate "play" icon from > (right arrow) to down arrow */
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.panel-heading [data-toggle="collapse"].collapsed:after {
    /* rotate "play" icon from > (right arrow) to ^ (up arrow) */
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #454444;
}

/* Croppie */

label.cabinet {
    display: block;
    cursor: pointer;
}

    label.cabinet input.file {
        position: relative;
        height: 100%;
        width: auto;
        opacity: 0;
        -moz-opacity: 0;
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
        margin-top: -30px;
    }

#upload-demo {
    width: 250px;
    height: 250px;
    padding-bottom: 25px;
}


/* Tab Navigation */
.nav-tabs {
    margin: 0;
    padding: 0;
    border: 0;
}

    .nav-tabs > li > a {
        background: #DADADA;
        border-radius: 0;
        box-shadow: inset 0 -8px 7px -9px rgba(0,0,0,.4),-2px -2px 5px -2px rgba(0,0,0,.4);
    }

    .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:hover {
        background: #F5F5F5;
        box-shadow: inset 0 0 0 0 rgba(0,0,0,.4),-2px -3px 5px -2px rgba(0,0,0,.4);
    }

/* Tab Content */
.tab-pane {
    background: #F5F5F5;
    box-shadow: 0 0 4px rgba(0,0,0,.4);
    border-radius: 0;
    text-align: center;
    padding: 10px;
}

.holder {
    width: 82px;
    height: 94px;
    position: relative;
    /*margin: 20px;*/
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    float: left;
}

.month {
    width: 80px;
    height: 25px;
    border: 1px solid rgba(0,0,0,0.25);
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: inset 0px 1px 1px 0px rgba(255,255,255,0.4);
}

    .month p {
        text-align: center;
        color: white;
        font-size: 11px;
        font-weight: 600;
        text-shadow: 1px 1px 0px rgba(0,0,0,0.40);
        margin: 5px 0 0 0;
        border-bottom: 1px dashed rgba(0,0,0,0.30);
        margin: 5px 8px 0px 8px;
        padding: 0 0 1px 0;
    }

.day {
    width: 80px;
    height: 60px;
    border: 1px solid rgba(0,0,0,0.25);
    -webkit-border-bottom-right-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius-bottomright: 6px;
    -moz-border-radius-bottomleft: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    background: white;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmN2Y3ZjciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(247, 247, 247, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255, 255, 255, 1)), color-stop(100%,rgba(247, 247, 247, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%,rgba(247, 247, 247, 1) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%,rgba(247, 247, 247, 1) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%,rgba(247, 247, 247, 1) 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 1) 0%,rgba(247, 247, 247, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f7f7',GradientType=0 );
    box-shadow: 0px 1px 0px 0px #fff, 0px 2px 0px 0px #ccc,0px 3px 0px 0px #fff, 0px 4px 0px 0px #ccc;
}

    .day p {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: #444;
        text-shadow: 1px 1px 0px white;
        margin-top: 8px;
    }

.red {
    background: rgb(169,3,41);
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5MDMyOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ0JSIgc3RvcC1jb2xvcj0iIzhmMDIyMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2ZDAwMTkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, rgba(169,3,41,1) 0%, rgba(143,2,34,1) 44%, rgba(109,0,25,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(169,3,41,1)), color-stop(44%,rgba(143,2,34,1)), color-stop(100%,rgba(109,0,25,1)));
    background: -webkit-linear-gradient(top, rgba(169,3,41,1) 0%,rgba(143,2,34,1) 44%,rgba(109,0,25,1) 100%);
    background: -o-linear-gradient(top, rgba(169,3,41,1) 0%,rgba(143,2,34,1) 44%,rgba(109,0,25,1) 100%);
    background: -ms-linear-gradient(top, rgba(169,3,41,1) 0%,rgba(143,2,34,1) 44%,rgba(109,0,25,1) 100%);
    background: linear-gradient(top, rgba(169,3,41,1) 0%,rgba(143,2,34,1) 44%,rgba(109,0,25,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019',GradientType=0 );
}

.green {
    background: rgb(138,182,107);
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzhhYjY2YiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzOTgyMzUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, rgba(138,182,107,1) 0%, rgba(57,130,53,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(138,182,107,1)), color-stop(100%,rgba(57,130,53,1)));
    background: -webkit-linear-gradient(top, rgba(138,182,107,1) 0%,rgba(57,130,53,1) 100%);
    background: -o-linear-gradient(top, rgba(138,182,107,1) 0%,rgba(57,130,53,1) 100%);
    background: -ms-linear-gradient(top, rgba(138,182,107,1) 0%,rgba(57,130,53,1) 100%);
    background: linear-gradient(top, rgba(138,182,107,1) 0%,rgba(57,130,53,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8ab66b', endColorstr='#398235',GradientType=0 );
}

.blue {
    background: rgb(79,133,187);
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRmODViYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iIzI0NTg4YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(top, rgba(79,133,187,1) 0%, rgba(36,88,140,1) 99%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(79,133,187,1)), color-stop(99%,rgba(36,88,140,1)));
    background: -webkit-linear-gradient(top, rgba(79,133,187,1) 0%,rgba(36,88,140,1) 99%);
    background: -o-linear-gradient(top, rgba(79,133,187,1) 0%,rgba(36,88,140,1) 99%);
    background: -ms-linear-gradient(top, rgba(79,133,187,1) 0%,rgba(36,88,140,1) 99%);
    background: linear-gradient(top, rgba(79,133,187,1) 0%,rgba(36,88,140,1) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f85bb', endColorstr='#24588c',GradientType=0 );
}

.yellow {
    background: rgb(255,203,73);
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iI2ZmY2I0OSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmOGI1MDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, rgba(255,203,73,1) 1%, rgba(248,181,0,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(255,203,73,1)), color-stop(100%,rgba(248,181,0,1)));
    background: -webkit-linear-gradient(top, rgba(255,203,73,1) 1%,rgba(248,181,0,1) 100%);
    background: -o-linear-gradient(top, rgba(255,203,73,1) 1%,rgba(248,181,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,203,73,1) 1%,rgba(248,181,0,1) 100%);
    background: linear-gradient(top, rgba(255,203,73,1) 1%,rgba(248,181,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffcb49', endColorstr='#f8b500',GradientType=0 );
}

.response-table {
    border-bottom-color: #000;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 5px;
}
/*Supervision tables*/
.supervision-table > tbody > tr > td,
.supervision-table > tbody > tr > th,
.supervision-table > tfoot > tr > td,
.supervision-table > tfoot > tr > th,
.supervision-table > thead > tr > td,
.supervision-table > thead > tr > th {
    padding: 1px !important;
}
/*Intake Buttons*/
.intake-btn {
    line-height: 1.4 !important;
    border-radius: 2px !important;
}

.intake-glyphicon {
    margin-right: 0 !important;
}

.intake-panel {
    margin-bottom: 5px !important;
}

.intake-product-button {
    margin-top: 5px !important;
    margin-bottom: 10px !important;
    ;
}

.services-grid {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: stretch;
    flex-wrap: wrap;
}

.progress-bg-success {
    background-color: #5cb85c !important;
}

.progress-bg-info {
    background-color: #5bc0de !important;
}

.progress-bg-warning {
    background-color: #f0ad4e !important;
}

.progress-bg-danger {
    background-color: #d9534f !important;
}

.progress-bg-primary {
    background-color: #337ab7 !important;
}

.supervision-table-headings {
    text-align: center !important;
    font-size: 13px;
}

.rating {
    /*margin-bottom: 20px;*/
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

    .rating input {
        display: none;
    }

    .rating label {
        font-size: 24px;
        cursor: pointer;
    }

        .rating label:hover,
        .rating label:hover ~ label {
            color: orange;
        }

    .rating input:checked ~ label {
        color: orange;
    }

/*Loading Screen*/
/*#loadingScreen {
    background: url(../Data/Progress/Spinner.gif) no-repeat 5px 8px;
    padding-left: 25px;
}*/
/*
    Sidebar!!!!!!!!!!!!!!

*/
/* The sidebar menu */
.equal {
    flex-wrap: wrap;
    display: flex;
}

.pictureBoundaries {
    object-fit: cover;
    height: 80px;
    width: 80px;
}

.onlineOrganisation {
    border: red;
    border-width: thick;
    border-style: outset;
}

.no-padding {
    padding: 0 !important;
}

.paymentheader-images {
    height: 50px;
}

.paymentheader-title {
    display: contents;
    max-height: 50px;
}

.paymentheader-icon {
    font-size: x-large;
    vertical-align: middle;
}

.paymentheader-full-width-centered {
    width: 100%;
    align-content: center;
}

.glyphicon {
    margin-right: 10px;
}

.panel-body {
    padding: 20px;
}

    .panel-body table tr td {
        padding-left: 15px
    }

    .panel-body .table {
        margin-bottom: 0px;
    }

.padding5px {
    padding: 5px;
}

.disabled {
    color: #C0C0C0;
    opacity: 0.4;
}

.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s infinite linear;
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

.sidebar {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #222; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
}

.sidebar-padding {
    padding: 5px;
}

/* The sidebar links */
.sidebar label {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a {
    /*padding: 8px 8px 8px 32px;*/
    text-decoration: none;
    font-size: 14px;
    color: #818181;
    display: contents;
    transition: 0.3s;
}

    /* When you mouse over the navigation links, change their color */
    .sidebar a:hover {
        color: #f1f1f1;
    }

/* Position and style the close button (top right corner) */
.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    display: block;
}

/*Lecturer assignment*/
.lecturerAssignmentSuccess {
    background-color: #5cb85c !important;
    color: white;
}

.lecturerAssignmentFailure {
    background-color: #c33532 !important;
    color: white;
}

/* The button used to open the sidebar */
.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #222;
    color: white;
    padding: 10px 15px;
    border: none;
}

    .openbtn:hover {
        background-color: #444;
    }

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s; /* If you want a transition effect */
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 15px;
    }

        .sidebar a {
            font-size: 18px;
        }
}


/* hide the close x on the loading screen */
.loadingScreenWindow .ui-dialog-titlebar-close {
    display: none;
}

.service-primary-info {
    padding: 5px;
}

.services-title {
    z-index: 2;
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 10px;
    width: 87%;
    margin-left: 5px;
    margin-right: 0px;
    text-wrap: normal;
}

.services-title-text {
    color: white;
    right: 10px;
    bottom: 0px;
    left: 10px;
    width: 100%;
    margin-left: 5px;
    margin-right: 5px;
    text-wrap: normal;
    background-color: #337ab7;
    display: block;
    padding-left: 2px;
}

.notes {
    min-height: 60px;
    height: 100%;
    width: 100%;
}



/* Progress Sprite*/

#prog_step1 {
    left: 0px;
    width: 499px;
    background: url('../Data/Progress/Bookings-Wizard.jpg') 0 -5px;
    height: 107px;
    position: relative;
    text-align: center;
}

#prog_step2 {
    left: 0px;
    width: 499px;
    background: url('../Data/Progress/Bookings-Wizard.jpg') 0 -95px;
    height: 107px;
    position: relative;
}

#prog_step3 {
    left: 0px;
    width: 499px;
    background: url('../Data/Progress/Bookings-Wizard.jpg') 0 -186px;
    height: 107px;
    position: relative;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        display: none;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    #wrapper.toggled {
        padding-left: 250px;
    }

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #DB1849;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 250px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -250px;
}

.btn-default#menu-toggle, .btn-default#menu-toggle:hover, .btn-default#menu-toggle:focus {
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    color: #DB1849;
}

/*Font Awesome Buttons*/
button.btn.add::before {
    font-family: fontAwesome;
    content: "\f067\00a0";
}

button.btn.edit::before {
    font-family: fontAwesome;
    content: "\f044\00a0";
}

button.btn.save::before {
    font-family: fontAwesome;
    content: "\f00c\00a0";
}

button.btn.cancel::before {
    font-family: fontAwesome;
    content: "\f00d\00a0";
}

button.btn.note::before {
    font-family: fontAwesome;
    content: "\f249\00a0";
}

button.btn.comment::before {
    font-family: fontAwesome;
    content: "\f086\00a0";
}

button.btn.question::before {
    font-family: fontAwesome;
    content: "\f059\00a0";
}


/* Course Sidebar Styles */
.sidebar-course-nav {
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-course-nav li {
        padding-left: 20px;
        /*text-indent: 20px;*/
        line-height: 40px;
    }

        .sidebar-course-nav li a {
            display: block;
            text-decoration: none;
            color: #333;
        }

            .sidebar-course-nav li a:hover {
                text-decoration: none;
                color: #444;
                background: rgba(255, 255, 255, 0.2);
            }

            .sidebar-course-nav li a:active, .sidebar-course-nav li a:focus {
                text-decoration: none;
            }

    .sidebar-course-nav .sidebar-brand {
        text-align: left;
    }

        .sidebar-course-nav .sidebar-brand img {
            width: 75px;
        }

    .sidebar-course-nav ul {
        list-style: none;
        list-style-position: outside;
        padding: 0;
        margin: 0;
    }

        .sidebar-course-nav ul > li {
            font-size: 13px;
        }

            .sidebar-course-nav ul > li > a {
                color: #ddd;
                text-decoration: none;
                padding-left: 10px;
            }

                .sidebar-course-nav ul > li > a:hover {
                    color: #fff;
                    background: rgba(255, 255, 255, 0.6);
                }



/* Sidebar Styles */
.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-nav li {
        text-indent: 20px;
        line-height: 40px;
    }

        .sidebar-nav li a {
            display: block;
            text-decoration: none;
            color: #ddd;
        }

            .sidebar-nav li a:hover {
                text-decoration: none;
                color: #444;
                background: rgba(255, 255, 255, 0.2);
            }

            .sidebar-nav li a:active, .sidebar-nav li a:focus {
                text-decoration: none;
            }

    .sidebar-nav .sidebar-brand {
        text-align: left;
    }

        .sidebar-nav .sidebar-brand img {
            width: 75px;
        }

    .sidebar-nav ul {
        list-style: none;
        list-style-position: outside;
        padding: 0;
        margin: 0;
    }

        .sidebar-nav ul > li {
            font-size: 13px;
        }

            .sidebar-nav ul > li > a {
                color: #ddd;
                text-decoration: none;
                padding-left: 10px;
            }

                .sidebar-nav ul > li > a:hover {
                    color: #fff;
                    background: rgba(255, 255, 255, 0.6);
                }

@media(min-width:768px) {
    div.sticky-inner-wrapper {
        position: -webkit-sticky; /* Safari */
        position: sticky;
        top: 10px;
    }
}

@media(min-width:768px) {
    #sidebar-wrapper {
        width: 250px;
    }

    #wrapper {
        padding-left: 250px;
    }

        #wrapper.toggled {
            padding-left: 0;
        }

            #wrapper.toggled #sidebar-wrapper {
                width: 0;
            }

            #wrapper.toggled #page-content-wrapper {
                position: relative;
                margin-right: 0;
            }

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }
}


/* main layout
----------------------------------------------------------*/
.content-wrapper {
    margin: 0 auto;
    max-width: 960px;
}

.content-wrapper-fullscreen {
    margin: 0 auto;
    max-width: 95vw;
}

#body {
    /*background-color: #efeeef;*/
    clear: both;
    padding-bottom: 35px;
}

.navbar-brand-text {
    color: #9d9d9d;
}

    .navbar-brand-text:hover,
    .navbar-brand-text:focus {
        text-decoration: none;
        color: white;
    }

.main-banner-img {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100%;
    height: auto;
}

.main-content {
    background: url("../Images/accent.png") no-repeat;
    padding-left: 10px;
    padding-top: 30px;
}



.featured + .main-content {
    background: url("../Images/heroAccent.png") no-repeat;
}

header .content-wrapper {
    padding-top: 20px;
}

footer {
    clear: both;
    background-color: #e2e2e2;
    font-size: .8em;
    height: 100px;
}


/* site title
----------------------------------------------------------*/
.site-title {
    color: #c8c8c8;
    font-family: Rockwell, Consolas, "Courier New", Courier, monospace;
    font-size: 2.3em;
    margin: 0;
}

    .site-title a, .site-title a:hover, .site-title a:active {
        background: none;
        color: #c8c8c8;
        outline: none;
        text-decoration: none;
    }

.PastelInput input {
    width: 70px;
}

.fieldOfServicesButton {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 0px;
    margin-right: 0px;
    word-wrap: break-word;
    display: block;
}

.UnpaidSessionButtons {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

.UnpaidSessionCardBorder {
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .75rem;
    margin: 10px 0px 0px 0px;
    padding: 0px 10px 0px 10px;
}

no-border-card {
    border: 0px;
}

.panel-title-button {
    margin-left: 5px;
}

.filter-style {
    border: gray;
    border-style: ridge;
    padding: 10px;
}

.practitionerButton {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

.practitionerDetail {
    padding-top: 10px;
    padding-bottom: 10px;
}

.practitionerListDetail {
    padding-bottom: 10px;
}

.practitionerTitle {
    font-size: larger;
    font-style: normal;
    font-weight: bolder;
}

.practitionerSpeciality {
    font-size: inherit;
    font-style: italic;
    font-weight: bolder;
}

.practitionerPhoto {
    margin-top: 5px;
    margin-bottom: 2px;
    margin-left: 1px;
    margin-right: 5px;
}

.practitionerFilterHeadings {
    padding-top: 10px;
}

.practicePhoto {
    margin-top: 5px;
    margin-bottom: 2px;
    margin-left: 1px;
    margin-right: 5px;
    max-height: 80px;
}

.pairingPhoto {
    max-height: 15vh !important;
}

.courseMedia {
}

.courseImage a {
    margin-top: 5px;
    margin-bottom: 2px;
    margin-left: 1px;
    margin-right: 5px;
    width: 100%
}

.courseDetail {
    margin-left: 10px;
}

.orgHeading {
    font-size: large;
    font-style: normal;
    font-weight: bolder;
}

.courseHeading {
    font-size: x-large;
    font-style: normal;
    font-weight: bolder;
}

.courseSubHeading {
    font-size: large;
    font-style: normal;
    font-weight: bolder;
}

.coursePrice {
    font-size: larger;
    text-align: left;
    padding-bottom: 10px;
}

.courseDepositPrice {
    font-size: smaller;
    text-align: left;
    padding-bottom: 10px;
    display: inline;
}

.courseDate {
    font-size: larger;
    text-align: left;
    padding-bottom: 10px;
}

.courseLocation {
    font-size: larger;
    text-align: left;
    padding-bottom: 10px;
}

.courseDescription {
    padding: 10px;
}

.courseButtons {
    margin-bottom: 10px;
}

.courseActionContainer {
    padding: 0 !important;
}

.courseLogo {
    max-height: 40px;
}

.coursePromoVideo {
}

.courseAction {
}

.courseItemPadding {
    padding-bottom: 15px;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
}

.hiddenRow {
    display: none;
}

/* Supervision */
.supervisionInput {
    margin: 10px;
    width: auto;
}

.supervisionLabel {
    font-size: 1em;
    font-weight: 500;
}

/* TOAST MESSAGE*/
#toast {
    visibility: hidden;
    max-width: 550px;
    height: 50px;
    /*margin-left: -125px;*/
    margin: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 30px;
    font-size: 17px;
    white-space: nowrap;
}

    #toast #img {
        width: 80px;
        height: 50px;
        float: left;
        padding-top: 16px;
        padding-bottom: 16px;
        box-sizing: border-box;
        background-color: #449d44;
        color: #fff;
    }

    #toast #heading {
        width: 80px;
        height: 50px;
        float: left;
        padding-top: 16px;
        padding-bottom: 16px;
        box-sizing: border-box;
        background-color: #449d44;
        color: #fff;
    }

    #toast #desc {
        color: #fff;
        padding: 16px;
        overflow: hidden;
        white-space: nowrap;
    }

    #toast.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes expand {
    from {
        min-width: 50px
    }

    to {
        min-width: 350px
    }
}

@keyframes expand {
    from {
        min-width: 50px
    }

    to {
        min-width: 350px
    }
}

@-webkit-keyframes stay {
    from {
        min-width: 350px
    }

    to {
        min-width: 350px
    }
}

@keyframes stay {
    from {
        min-width: 350px
    }

    to {
        min-width: 350px
    }
}

@-webkit-keyframes shrink {
    from {
        min-width: 350px;
    }

    to {
        min-width: 50px;
    }
}

@keyframes shrink {
    from {
        min-width: 350px;
    }

    to {
        min-width: 50px;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}

.videoProgressIndicator {
    margin-top: 5px;
    margin-bottom: 5px !important;
    height: 5px !important;
}

/* Ribbon https://codepen.io/ijasacodez/pen/jOEbERB*/
.box {
    position: relative;
    max-width: 600px;
    width: auto;
    height: auto;
    background: #eeeeeec2;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,.125);
}

.box-content {
    padding: 0px 15px 15px 15px;
}

/* common */
.ribbon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
}

    .ribbon::before,
    .ribbon::after {
        position: absolute;
        z-index: -1;
        content: '';
        display: block;
        border: 3px solid #5cb85c;
    }

    .ribbon span {
        position: absolute;
        display: block;
        width: 165px;
        padding: 5px 0;
        background-color: #5cb85c;
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
    }

/* top left*/
.ribbon-top-left {
    top: -3px;
    left: -3px;
}

    .ribbon-top-left::before,
    .ribbon-top-left::after {
        border-top-color: transparent;
        border-left-color: transparent;
    }

    .ribbon-top-left::before {
        top: 0;
        right: 0;
    }

    .ribbon-top-left::after {
        bottom: 0;
        left: 0;
    }

    .ribbon-top-left span {
        right: -22px;
        top: 30px;
        transform: rotate(-45deg);
    }

/* top right*/
.ribbon-top-right {
    top: -3px;
    right: -3px;
}

    .ribbon-top-right::before,
    .ribbon-top-right::after {
        border-top-color: transparent;
        border-right-color: transparent;
    }

    .ribbon-top-right::before {
        top: 0;
        left: 0;
    }

    .ribbon-top-right::after {
        bottom: 0;
        right: 0;
    }

    .ribbon-top-right span {
        left: -22px;
        top: 30px;
        transform: rotate(45deg);
    }

.wdp-ribbon-left {
    display: inline-block;
    padding: 0px 5px;
    position: absolute;
    left: 0px;
    top: 10px;
    line-height: 24px;
    height: 24px;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    border-radius: 0;
    text-shadow: none;
    font-weight: normal;
    background-color: #5cb85c !important;
    color: white;
}

.wdp-ribbon-right {
    display: inline-block;
    padding: 0px 5px;
    position: absolute;
    right: 0px;
    top: 10px;
    line-height: 24px;
    height: 24px;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    border-radius: 0;
    text-shadow: none;
    font-weight: normal;
    background-color: #5cb85c !important;
    color: white;
}

.wdp-ribbon-two:before, .wdp-ribbon-two:before {
    display: inline-block;
    content: "";
    position: absolute;
    left: -14px;
    top: 0;
    border: 9px solid transparent;
    border-width: 14px 8px;
    border-right-color: #5cb85c;
}

.wdp-ribbon-two:before {
    border-color: #5cb85c;
    border-left-color: transparent !important;
    left: -9px;
}

.wdp-ribbon-four {
    right: 10px;
    top: 10px;
    line-height: 60px;
    height: 60px;
}

.wdp-ribbon-five {
    background: #5cb85c;
    right: 10px;
    top: 10px;
    padding: 0px;
    height: 60px;
    width: 60px;
    text-align: center;
    vertical-align: middle;
    line-height: 60px;
    border-radius: 50%;
}

.wdp-ribbon-six {
    background: none !important;
    position: relative;
    box-sizing: border-box;
    position: absolute;
    width: 65px;
    height: 65px;
    top: 0px;
    right: 0px;
    padding: 0px;
    overflow: hidden;
}

.wdp-ribbon-inner-wrap {
    -ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.wdp-ribbon-border {
    width: 0;
    height: 0;
    border-right: 65px solid #ff1e1e;
    border-bottom: 65px solid transparent;
    z-index: 12;
    position: relative;
    top: -20px;
}

.wdp-ribbon-text {
    font-size: 13px;
    font-weight: bold;
    line-height: 13px;
    position: absolute;
    z-index: 14;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 15px;
    left: -5px;
    width: 91px;
    text-align: center;
}


/* Events
----------------------------------------------------------*/
.event-DayNumber {
    font-size: 20px;
    line-height: 20px;
    font-weight: 300;
    display: block;
    position: relative;
    text-align: center;
    white-space: nowrap;
}


.event-DayOfWeek {
    font-size: smaller;
    line-height: 12px;
    position: relative;
    text-align: center;
    white-space: nowrap;
    text-transform: capitalize;
}

.event-Month {
    color: #fa3e3e;
    font-size: small;
    line-height: 12px;
    position: relative;
    text-align: center;
    white-space: nowrap;
}

.event-Heading {
    font-weight: bold;
    display: block;
}

.event-Description {
    font-weight: normal;
    display: block;
    color: darkgreen;
}

.event-normalblock {
    font-weight: normal;
    display: block;
}

.event-Padding {
    padding-top: 8px;
}

.event-Padding-Box {
    margin-bottom: 30px;
}

.event-Presenter {
    font-weight: normal;
    font-size: smaller;
    line-height: 12px;
}

.event-Presenter-Name {
    font-size: small;
    font-weight: bold;
    font-style: normal;
}

.event-Wrapper {
    display: inline-block;
    width: 100%;
}

.event-BookingButton {
    position: relative;
    z-index: 100;
}




/* login
----------------------------------------------------------*/
#login {
    display: block;
    font-size: .85em;
    margin: 0 0 10px;
    text-align: right;
}

    #login a {
        /*background-color: #d3dce0;*/
        margin-left: 10px;
        margin-right: 3px;
        padding: 2px 3px;
        text-decoration: none;
    }

        #login a.username {
            background: none;
            margin: 0;
            padding: 0;
            text-decoration: underline;
            color: white;
        }

    #login ul {
        margin: 0;
    }

    #login li {
        display: inline;
        list-style: none;
    }

.failure {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    display: none;
}

/* menu
----------------------------------------------------------*/
ul#menu {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 5px;
    padding: 0;
    text-align: right;
}

    ul#menu li {
        display: inline;
        list-style: none;
        padding-left: 15px;
    }

        ul#menu li a {
            background: none;
            color: #999;
            text-decoration: none;
        }

            ul#menu li a:hover {
                color: #333;
                text-decoration: none;
            }


/* page elements
----------------------------------------------------------*/
/* featured */
.featured {
    background-color: #fff;
}

    .featured .content-wrapper {
        background-color: #7ac0da;
        background-image: -ms-linear-gradient(left, #7ac0da 0%, #4c9598 100%);
        background-image: -o-linear-gradient(left, #7ac0da 0%, #4c9598 100%);
        background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #7ac0da), color-stop(1, #4c9598));
        background-image: -webkit-linear-gradient(left, #7ac0da 0%, #4c9598 100%);
        background-image: linear-gradient(left, #7ac0da 0%, #4c9598 100%);
        color: #3e5667;
        padding: 20px 40px 30px 40px;
    }

    .featured hgroup.title h1, .featured hgroup.title h2 {
        color: #fff;
    }

    .featured p {
        font-size: 1.1em;
    }

/* page titles */
hgroup.title {
    margin-bottom: 10px;
}

    hgroup.title h1, hgroup.title h2 {
        display: inline;
    }

    hgroup.title h2 {
        font-weight: normal;
        margin-left: 3px;
    }

/* features */
section.feature {
    width: 300px;
    float: left;
    padding: 10px;
}

/* ordered list */
ol.round {
    list-style-type: none;
    padding-left: 0;
}

    ol.round li {
        margin: 25px 0;
        padding-left: 45px;
    }

        ol.round li.zero {
            background: url("../Images/orderedList0.png") no-repeat;
        }

        ol.round li.one {
            background: url("../Images/orderedList1.png") no-repeat;
        }

        ol.round li.two {
            background: url("../Images/orderedList2.png") no-repeat;
        }

        ol.round li.three {
            background: url("../Images/orderedList3.png") no-repeat;
        }

        ol.round li.four {
            background: url("../Images/orderedList4.png") no-repeat;
        }

        ol.round li.five {
            background: url("../Images/orderedList5.png") no-repeat;
        }

        ol.round li.six {
            background: url("../Images/orderedList6.png") no-repeat;
        }

        ol.round li.seven {
            background: url("../Images/orderedList7.png") no-repeat;
        }

        ol.round li.eight {
            background: url("../Images/orderedList8.png") no-repeat;
        }

        ol.round li.nine {
            background: url("../Images/orderedList9.png") no-repeat;
        }

.boxsizingBorder {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* content */
article {
    float: left;
    width: 70%;
}

aside {
    float: right;
    width: 25%;
}

    aside ul {
        list-style: none;
        padding: 0;
    }

        aside ul li {
            background: url("../Images/bullet.png") no-repeat 0 50%;
            padding: 2px 0 2px 20px;
        }

.label {
    font-weight: 700;
}

/* login page */
#loginForm {
    border-right: solid 2px #c8c8c8;
    float: left;
    width: 55%;
}

    #loginForm .validation-error {
        display: block;
        margin-left: 15px;
    }

    #loginForm .validation-summary-errors ul {
        margin: 0;
        padding: 0;
    }

    #loginForm .validation-summary-errors li {
        display: inline;
        list-style: none;
        margin: 0;
    }

    #loginForm input {
        width: 250px;
    }

        #loginForm input[type="checkbox"],
        #loginForm input[type="submit"],
        #loginForm input[type="button"],
        #loginForm button {
            width: auto;
        }

#socialLoginForm {
    margin-left: 40px;
    float: left;
    width: 40%;
}

    #socialLoginForm h2 {
        margin-bottom: 5px;
    }

#socialLoginList button {
    margin-bottom: 12px;
}

#logoutForm {
    display: inline;
}

/* contact */
.contact h3 {
    font-size: 1.2em;
}

.contact p {
    margin: 5px 0 0 10px;
}

.contact iframe {
    border: 1px solid #333;
    margin: 5px 0 0 10px;
}

/* forms */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

    fieldset legend {
        display: none;
    }

    fieldset ol {
        padding: 0;
        list-style: none;
    }

        fieldset ol li {
            padding-bottom: 5px;
        }

label {
    display: block;
    font-size: 1.2em;
    font-weight: 600;
}

    label.checkbox {
        display: inline;
    }

input, textarea {
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #333;
    font-size: 1.2em;
    margin: 5px 0 6px 0;
    padding: 5px;
    width: 300px;
}

textarea {
    font-family: inherit;
    width: 500px;
}

    input:focus, textarea:focus {
        border: 1px solid #7ac0da;
    }

input[type="checkbox"] {
    background: transparent;
    border: inherit;
    width: auto;
}

input[type="submit"],
input[type="button"],
button {
    /*background-color: #d3dce0;*/
    border: 1px solid #787878;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    padding: 7px;
    margin-right: 8px;
    width: auto;
}

td input[type="submit"],
td input[type="button"],
td button {
    font-size: 1em;
    padding: 4px;
    margin-right: 4px;
}

/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}

.message-error {
    clear: both;
    color: #e80c4d;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-success {
    color: #7ac0da;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.error {
    color: #e80c4d;
}

/* styles for validation helpers */
.field-validation-error {
    color: #e80c4d;
    font-weight: bold;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #e80c4d;
    font-weight: bold;
    font-size: 1.1em;
}

.validation-summary-valid {
    display: none;
}

.fa-stack-2x {
    font-size: 1em;
}

/* tables
----------------------------------------------------------*/
table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 0.75em;
    border: 0 none;
}

th {
    font-size: 1.2em;
    text-align: left;
    border: none 0px;
    padding-left: 0;
}

    th a {
        display: block;
        position: relative;
    }

        th a:link, th a:visited, th a:active, th a:hover {
            color: #333;
            font-weight: 600;
            text-decoration: none;
            padding: 0;
        }

        th a:hover {
            color: #000;
        }

    th.asc a, th.desc a {
        margin-right: .75em;
    }

        th.asc a:after, th.desc a:after {
            display: block;
            position: absolute;
            right: 0em;
            top: 0;
            font-size: 0.75em;
        }

        th.asc a:after {
            content: '▲';
        }

        th.desc a:after {
            content: '▼';
        }

td {
    padding: 0.25em 2em 0.25em 0em;
    border: 0 none;
}

tr.pager td {
    padding: 0 0.25em 0 0;
}


/********************
*   Mobile Styles   *
********************/
@media only screen and (max-width: 850px) {



    /* header
    ----------------------------------------------------------*/
    header .float-left,
    header .float-right {
        float: none;
    }

    /* logo */
    header .site-title {
        margin: 10px;
        text-align: center;
    }

    /* login */
    #login {
        font-size: .85em;
        margin: 0 0 12px;
        text-align: center;
    }

        #login ul {
            margin: 5px 0;
            padding: 0;
        }

        #login li {
            display: inline;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        #login a {
            /*background: none;*/
            /*color: #999;*/
            font-weight: 600;
            margin: 2px;
            padding: 5px;
            text-decoration: none;
            color: #333;
            background-color: #d4d4d4;
            border-color: #8c8c8c;
        }

            #login a:hover {
                color: #333;
            }

    /* menu */
    nav {
        margin-bottom: 5px;
    }

    ul#menu {
        margin: 0;
        padding: 0;
        text-align: center;
    }

        ul#menu li {
            margin: 0;
            padding: 0;
        }


    /* main layout
    ----------------------------------------------------------*/
    .main-content,
    .featured + .main-content {
        background-position: 10px 0;
    }

    .content-wrapper {
        padding-right: 10px;
        padding-left: 10px;
    }

    .featured .content-wrapper {
        padding: 10px;
    }

    /* page content */
    article, aside {
        float: none;
        width: 100%;
    }

    /* ordered list */
    ol.round {
        list-style-type: none;
        padding-left: 0;
    }

        ol.round li {
            padding-left: 10px;
            margin: 25px 0;
        }

            ol.round li.zero,
            ol.round li.one,
            ol.round li.two,
            ol.round li.three,
            ol.round li.four,
            ol.round li.five,
            ol.round li.six,
            ol.round li.seven,
            ol.round li.eight,
            ol.round li.nine {
                background: none;
            }

    /* features */
    section.feature {
        float: none;
        padding: 10px;
        width: auto;
    }

        section.feature img {
            color: #999;
            content: attr(alt);
            font-size: 1.5em;
            font-weight: 600;
        }

    /* forms */
    input {
        width: 90%;
    }

    /* login page */
    #loginForm {
        border-right: none;
        float: none;
        width: auto;
    }

        #loginForm .validation-error {
            display: block;
            margin-left: 15px;
        }

    #socialLoginForm {
        margin-left: 0;
        float: none;
        width: auto;
    }


    ​
    /* footer
    ----------------------------------------------------------*/
    footer .float-left,
    footer .float-right {
        float: none;
    }

    footer {
        text-align: center;
        height: auto;
        padding: 10px 0;
    }

        footer p {
            margin: 0;
        }
}

.video-overlay .icon {
    position: absolute;
    background-image: url('/data/icons/play-button.png');
    margin: 0 auto;
    background-size: contain;
    width: 20%;
    height: 100px;
    top: 15%;
    left: 40%;
    background-repeat: no-repeat;
    background-position: bottom;
}

    .video-overlay .icon:hover {
        background-image: url('/data/icons/play-button-hover.png');
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

}

.ghost {
    opacity: 0.4;
}

.sortable-list-group {
    margin: 20px;
}

/* Rating Styles */
.number-rating {
    position: relative;
    padding: 1rem 0.5rem;
    min-width: 250px; /* Increased from 200px */
}

.rating-labels {
    position: relative;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
}

.rating-buttons {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem; /* Increased from 0.5rem for more spacing between buttons */
}

.rating-button-wrapper {
    text-align: center;
}

    .rating-button-wrapper input[type="radio"] {
        display: none;
    }

    .rating-button-wrapper label {
        width: 2.5rem; /* Increased from 2rem */
        height: 2.5rem; /* Increased from 2rem */
        line-height: 2.5rem; /* Increased from 2rem */
        text-align: center;
        border-radius: 0.5rem; /* Increased from 0.25rem */
        margin: 0;
        padding: 0;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 1.2rem; /* Added to make numbers bigger */
        font-weight: 500; /* Added to make numbers more visible */
        border: 1px solid #dee2e6; /* Added border for better visibility */
    }

    /* Basic state */
    .rating-button-wrapper label {
        background-color: transparent;
        color: inherit;
    }

    /* Hover state */
    .rating-button-wrapper.hover label {
        background-color: #0d6efd;
        color: white;
        opacity: 0.8;
    }

    /* Active/Selected state */
    .rating-button-wrapper.active label {
        background-color: #0d6efd;
        color: white;
        border-color: #0d6efd; /* Added to match the background */
    }

