﻿/*Universal Code*/
html, body {
    /*background:#f7f6f2;*/
    background: #f1f4f9;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    overflow: auto;
}

h1 {
    font-size: 2.125em;
}

h2 {
    font-size: 1.6875em;
}

h3 {
    font-size: 1.375em;
}

h4 {
    font-size: 1.125em;
}

h5 {
    font-size: 1em;
}

h6 {
    font-size: 0.8em;
}

p {
    font-size: 0.8em;
    line-height: 1.4em;
    overflow: hidden;
    text-overflow: ellipsis;
}

span.tooltip.tip-top {
    margin-top: -0.5em;
}

    p small {
        font-size: 70%;
    }

    p.topic {
        font-size: 0.7em;
        line-height: 1.5em;
        margin-bottom: 0.75em;
    }

    h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, p small, a small {
        color: #6F6F6F;
        font-size: 60%;
        line-height: 0;
        margin-bottom: 0;
    }

label small {
    font-size: 70%;
}

.button small, button small {
    color: inherit !important;
}

.waitable-button {
    margin-right: 0.5em;
}

.waitable-button i{
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    margin-left: -0.1em !important;
    margin-right: 0.1em !important;
}

.waitable-button-waiting i {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.waitable-button-waiting i:before {
    content: '\f110';
}

.waitable-button-success {
    background-color: #99dd99 !important;
    border-color: #77bb77 !important;
}

.waitable-button-success i:before {
    content: '\f00c';
}

.waitable-button-fail {
    background-color: #ff7777 !important;
    border-color: #dd5555 !important;
}

.waitable-button-fail i:before {
    content: '\f071';
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(359deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

#main-nav div.row {
    overflow: visible;
}

.main-nav-holder {
    max-height: 48px;
}

.main-nav-visible {
    display: inline-table;
    max-height: 48px;
    list-style: none;
    margin: 0;
}

.main-nav-visible li {
    display: table-cell;
    float: left;
    padding: 0 3px 0 20px;
    text-transform: uppercase;
    font-size: 12px;
}

.main-nav-visible li a {
    color: #415766;
    display: block;
}

.main-nav-visible li.active a {
    border-bottom: 4px solid #002B5C !important;
}

.main-nav-hidden {
    position: absolute;
    right: 0;
    top: 100%;
    list-style: none;
    background-color: #002b5c;
    z-index: 11;
}

.main-nav-hidden li {
    display: block;
}

.main-nav-hidden a{
    display: block;
    padding: 0 1em;
    color: #fff;
}

    .main-nav-hidden a:hover,
    .main-nav-hidden a:focus {
        background-color: #0070F0;
    }

.main-nav-overflow-toggle {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0 0.7em 0 1em;
    background-color: #002b5c;
    border: none;
    overflow: visible;
}

    .main-nav-overflow-toggle:hover,
    .main-nav-overflow-toggle:focus {
        background-color: #0070F0;
        outline: none;
        transition: none;
    }

    .main-nav-overflow-toggle .hamburger {
        position: relative;
        width: 24px;
        height: 4px;
        background: #fff;
        margin: auto;
        left: 2px;
    }

    .main-nav-overflow-toggle .hamburger::before,
    .main-nav-overflow-toggle .hamburger::after {
        content: '';
        position: absolute;
        left: 0;
        width: 24px;
        height: 4px;
        background: #fff;
    }

    .main-nav-overflow-toggle .hamburger::before {
        top: -8px;
    }

    .main-nav-overflow-toggle .hamburger::after {
        bottom: -8px;
    }

    .main-nav-overflow-toggle::after {
        display: block;
        content: attr(count);
        position: absolute;
        width: 30px;
        height: 30px;
        left: -16px;
        top: 8px;
        text-align: center;
        background-color: #002b5c;
        color: #FFFFFF;
        font-size: 10px;
        line-height: 24px;
        border-radius: 50%;
        border: 3px solid #f3f4f7;
        font-weight: bold;
    }

.normal {
    font-weight: normal;
}

input::placeholder{
    color: #767676;
}

ul, ol, dd, input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=week], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], textarea {
    font-size: 0.8em;
}

form label small.validation {
    color: #8F8F8F !important;
}

form.custom .custom.dropdown {
    height: 100%;
}

input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=week], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], textarea {
    height: 2.5125em;
}

select, input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea, .k-multiselect-wrap {
    background-color: #FFFFFF;
    border: 1px solid #767676;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
    box-sizing: border-box;
    color: #767676;
    display: block;
    font-family: inherit;
    padding: 0.3em;
    transition: box-shadow 0.45s ease 0s, border-color 0.45s ease-in-out 0s;
    width: 100%;
}

input[type=text].error, input[type=password].error, select.error, input.validationElement, select.validationElement, textarea.validationElement {
    xbackground-color: rgba(198, 15, 19, 0.1) !important;
    background-color: #f1ddde;
    border: 1px solid #c60f13 !important;
}

.validationMessage {
    display: block;
    font-weight: bold;
    color: #c60f13;
    background-color: white;
}

#condition-table input {
    display: inline;
}

#condition-table .deleteRow {
    padding: 0;
    padding-right: 0.5em;
    text-align: right;
    font-size: 0;
    color: #8f8f8f;
}

#condition-table tr:hover .deleteRow {
    font-size: 1.8em;
    cursor: pointer;
}

input:disabled + label {
    color: #ccc;
}

table input[type="file"], table input[type="checkbox"], table input[type="radio"], table select {
    margin: 0;
}


.k-ff input.k-textbox {
    height: 2.5125em !important;
}

.k-block, .k-button, .k-textbox, .k-drag-clue, .k-touch-scrollbar, .k-window, .k-window-titleless .k-window-content, .k-window-action, .k-inline-block, .k-grid .k-filter-options, .k-grouping-header .k-group-indicator, .k-autocomplete, .k-multiselect, .k-combobox, .k-dropdown, .k-dropdown-wrap, .k-datepicker, .k-timepicker, .k-colorpicker, .k-datetimepicker, .k-numerictextbox, .k-picker-wrap, .k-numeric-wrap, .k-colorpicker.k-list-container, .k-calendar-container, .k-calendar td, .k-calendar .k-link, .k-treeview .k-in, .k-editor-inline, .k-tooltip, .k-tile, .k-slider-track, .k-slider-selection, .k-upload {
    border-radius: 0 !important;
}

.k-button:hover {
    border-color: #002b5c !important;
}

.k-button:active{
    background-image: none !important;
    background-color: #002b5c !important;
    border-color: #002b5c !important;
}

.k-multiselect {
    margin: 0 0 1em;
}

.k-multiselect-wrap .k-input {
    padding: 0 !important;
    height: auto !important;
}

ul.topic {
    font-size: 0.8em;
    color: #3f3f3f;
}

hr {
    border-left: 0 solid #000000;
    border-right: 0 solid #000000;
    border-top: 1px solid #000000;
    border-bottom: 0 solid #000000;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-image: url('') none;
    clear: both;
    height: 0;
    margin: 1.25em 0 1.1875em;
    margin: 0 0 1em;
}

#course-list {
    list-style-type: none;
    padding: 0;
}

#course-list li {
    cursor: pointer;
    margin-bottom: -1px;
}

#course-list li:hover {
    background: #f3f7f1;
}

#course-list .ui-selected {
    background: #ecf5e6;
}

#course-list .ui-selected:hover {
    background: #ecf5e6;
}


.playSearchResultDetails li {
    list-style: none;
    float: left;
}

.playSearchResultDetails li:before {
    content: '\ffed';
    margin-left: 0.3em;
}

.playSearchResultDetails li:first-child:before {
    content: none;
}

a, .side-nav li a {
    color: #002B5C;
}

.fixed {
    z-index: 97 !important;
}

.hidden {
    display: none;
}

.globalsurveyitem {
    height: 5.4em;
}

.globalsurveyitem .large-8 {
    margin-top: 0.55em;
}

.tenantsurveynameassigned {
    height: 0.3em;
}

.tenantsurveynameassigned h4 {
    font-size: 1.3em;
}

.tenantsurveynameassigned h5 {
    color: #0089BA;
}

.dark-green {
    color: #078243 !important;
}

.light-green {
    color: #6ec829 !important;
}

.dark-blue {
    color: #0089ba !important;
}

.light-blue {
    color: #76C7D8 !important;
}

.dark-red {
    color: #9e0b0f !important;
}

.white {
    color: #fff !important;
}

.grey {
    color: #333 !important;
}

.light-grey {
    color: #786C6C !important;
}

.dark-grey {
    color: #8F8F8F !important;
    white-space: normal;
}

.dark-grey2 {
    color: #4f4c4c !important;
}

.dark-greyV6 {
    color: #767676 !important;
    white-space: normal;
}

.black {
    /*NeoSoft*/
    /*color: #000 !important;*/
    color: #787878 !important;
}

.progress {
    background: #dfdede;
    border: none;
    height: 1em;
    padding: 0;
}

.alert-box a.dark-green, .alert-box a.light-green, a.dark-blue, .alert-box a.light-blue, .alert-box a.dark-red, .alert-box a.white, .alert-box a.light-grey, .alert-box a.black, .alert-box a.dark-grey, .alert-box a.dark-grey2 {
    text-decoration: underline;
}

    .alert-box a.dark-green:hover, .alert-box a.light-green:hover, .alert-box a.dark-blue:hover, .alert-box a.light-blue:hover, .alert-box a.dark-red:hover, .alert-box a.white:hover, .alert-box a.light-grey:hover, .alert-box a.black:hover, .alert-box a.dark-grey:hover, .alert-box a.dark-grey2:hover {
        color: inherit !important;
    }

.alert-box.review {
    background-color: #333333;
    border-color: #272727;
    margin-bottom: 6px !important;
    margin-top: 7px !important;
    padding: 9px !important;
    text-align: center !important;
    font-weight: normal;
}

.dark-green-bg {
    background: #078243 !important;
}

.dark-red-bg {
    background: #9e0b0f !important;
}

.light-green-bg {
    background: #6ec829 !important;
}

.dark-blue-bg {
    background: #002b5c !important;
}

.light-blue-bg {
    background: #76C7D8 !important;
}

.grey-bg {
    background: #415766 !important;
}

.dark-grey-bg {
    background: #333333 !important;
}

.light-grey-bg {
    background: #8F8F8F !important;
}

.light-grey2-bg {
    background: #e6e6e6 !important;
}

.black-bg {
    background: black !important;
}

.white-bg {
    background: white !important;
}

.yellow-bg {
    background: #F9E415 !important;
}

.prescence-isonline {
    background: #078243 !important;
}

.prescence-away {
    background: #F9E415 !important;
}

.prescence-offline {
    background: #8F8F8F !important;
}

.prescence-busy {
    background: #9e0b0f !important;
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.presence {
    height: 10px;
    width: 10px;
    display: inline-block;
    margin-left: 3px;
    border-radius: 10px;
}

.clr-bth {
    clear: both !important;
}

.inverse {
    background: #3F3F3F !important;
    border-color: #272727 !important;
}

    .inverse a {
        color: #ffffff;
    }

.m0 {
    margin: 0 !important;
}

.m0auto {
    margin: 0px auto;
}

.mpoint8em {
    margin: 0.8em !important;
}

.mt0 {
    margin-top: 0 !important;
}

.mtpoint05em {
    margin-top: .05em !important;
}

.mt-10 {
    margin-top: -10px !important;
}

.mtpoint8em {
    margin-top: 0.8em !important;
}

.mt3 {
    margin-top: 3px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt8 {
    margin-top: 8px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mr4 {
    margin-right: 4px;
}

.mr5 {
    margin-right: 5px !important;
}

.mr12 {
    margin-right: 12px !important;
}

.mr-auto {
    margin-right: auto !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mbpoint25em {
    margin-bottom: .25em !important;
}

.mb2 {
    margin-bottom: 2px !important;
}

.mb3 {
    margin-bottom: 3px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb9 {
    margin-bottom: 9px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mlpoint75em {
    margin-left: .75em !important;
}

.mlpoint8em {
    margin-left: 0.8em !important;
}

.ml1point15em {
    margin-left: 1.15em !important;
}

.ml20percent {
    margin-left: 20% !important;
}

.ml7 {
    margin-left: 7px !important;
}

.ml5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: -10px !important;
}

.ml-137 {
    margin-left: -137px !important;
}

.ml9 {
    margin-left: 9px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml15 {
    margin-left: 15px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml80 {
    margin-left: 80px !important;
}

.ml-auto {
    margin-left: auto !important;
}

.max-w-70 {
    max-width: 70px !important;
}

.min-w-70 {
    min-width: 70px !important;
}

.max-h-70 {
    max-height: 70px !important;
}

.min-h-70 {
    min-height: 70px !important;
}

.max-w-100 {
    max-width: 100% !important;
}

.min-w-100 {
    min-width: 100% !important;
}

.max-h-100 {
    max-height: 100% !important;
}

.min-h-100 {
    min-height: 100% !important;
}

.min-w-247 {
    min-width: 247px;
}

.ofauto {
    overflow: auto !important;
}

.p0 {
    padding: 0 !important;
}

.p5 {
    padding: 5px !important;
}

.p15 {
    padding: 15px !important;
}

.pl4point75em {
    padding-left: 4.75em;
}

.pr4point75em {
    padding-right: 4.75em;
}

.pt0 {
    padding-top: 0 !important;
}

.pt39 {
    padding-top: 39px !important;
}

.pt0point5em {
    padding-top: 0.5em !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pb8 {
    padding-bottom: 8px !important;
}

.pbpoint02em {
    padding-bottom: .02em !important;
}

.pl0 {
    padding-left: 0 !important;
}

.pl5percent {
    padding-left: 5%;
}

.pl10 {
    padding-left: 10px;
}

.pr0 {
    padding-right: 0 !important;
}

.pr10 {
    padding-right: 10px !important;
}

.pr15 {
    padding-right: 15px !important;
}

.flt-left {
    float: left;
}

.flt-right {
    float: right;
}

.fw700 {
    font-weight: 700 !important;
}

.fw600 {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: bold !important;
}

.fs-xsmall {
    font-size: x-small !important;
}

.fs-larger {
    font-size: larger !important;
}

.fs12em {
    font-size: 12em;
}

.fs12 {
    font-size: 12px !important;
}

.fs13 {
    font-size: 13px !important;
}

.fs8em {
    font-size: 8em !important;
}

.fspoint8 {
    font-size: .8em !important;
}

.hght1 {
    height: 1px !important;
}

.rs-none {
    resize: none !important;
}

.taleft {
    text-align: left !important;
}

.ta-center {
    text-align: center !important;
}

.w-auto {
    width: auto;
}

.height25 {
    height: 25px !important;
}

.width20em {
    width: 20em !important;
}

.width40 {
    width: 40px !important;
}

.width75 {
    width: 75px !important;
}

.width65 {
    width: 65px !important;
}

.width125 {
    width: 125px !important;
}

.width150 {
    width: 150px !important;
}

.width210 {
    width: 210px !important;
}

.width250 {
    width: 250px !important;
}

.width325 {
    width: 325px !important;
}

.width300 {
    width: 300px !important;
}

.width650 {
    width: 650px !important;
}

.width100pcnt {
    width: 100% !important;
}

.dsply-il {
    display: inline !important;
}

.dsply-n {
    display: none !important;
}

.dsply-ib {
    display: inline-block;
}

.dsply-bl {
    display: block !important;
}

.vis-hid {
    visibility: hidden !important;
}

.vis-vis {
    visibility: visible !important;
}

.zindex99999 {
    z-index: 99999 !important;
}

.zindex1 {
    z-index: 1 !important;
}

.zindex0 {
    z-index: 0 !important;
}

.lst-n {
    list-style-type: none;
}


.circular {
    padding: 0;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -khtml-border-radius: 150px;
    border-radius: 150px;
    overflow: hidden;
}

.panel {
    background: #fafafc;
    border-color: #d4dae3;
}

    .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
        line-height: normal;
    }

    .panel label {
        color: #737373;
    }


.progress.success .meter {
    background: #6ec829;
}

button, .button {
    box-shadow: none;
    background-color: #002B5C;
    border-color: #002B5C;
}

    button.secondary, .button.secondary {
        /*background: #fafafc;
        border-color: #d4dae3;*/

        background-color: #e9e9e9;
        border-color: #d0d0d0;
        color: #666666;
    }

        button.secondary:hover, .button.secondary:hover {
            background: #eff0f4;
        }

    button.success, .button.success {
        background-color: #48831B;
        border-color: #48831B;
        /*background-color: #2ba6cb;
        border-color: #2284a1;*/
    }

        button.success.inverse, .button.success.inverse {
            background: #0089ba !important;
            border-color: #63b325 !important;
            color: #fff !important;
        }

            button.success.inverse:hover, .button.success.inverse:hover {
                background: #eff0f4 !important;
                /*background: #2284a1 !important;*/
            }

        button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
            background-color: #285011;
            /*background-color: #2284a1;*/
        }

    button:hover, button:focus, .button:hover, .button:focus {
        background-color: #002B5C;
    }

    button:focus-visible, .button:focus-visible {
        background-color: #0070f0;
    }

    button.review, .button.review {
        background-color: #333333;
        border-color: #272727;
    }

        button.review:hover, .button.review:hover {
            background-color: #272727;
        }

.alert-box.success {
    background-color: #5da423;
    border-color: #457a1a;
}

.memberButton {
    width: 110px;
}

    .memberButton:hover span {
        display: none;
    }

    .memberButton:hover:before {
        content: "Leave";
    }

.postfix.dark-blue-bg {
    border-color: #002B5C;
}

    .postfix.dark-blue-bg:hover {
        background-color: #005fcc !important;
    }

/*End of Universal Code*/

table.scrolling-results {
    width: 100%;
}

table.scrolling-results tbody {
    width: 100%;
    height: 350px;
    overflow-y: scroll;
    display: block;
}

table.scrolling-results tr {
    width: 100%;
}

table.scrolling-results td {
    width: 100%;
}

.tiny-gear {
    background-image: url('/Content/themes/playbook/img/Evaluate_XSmall_Active.png');
    background-size: 1.5em;
    display: block;
    width: 1.5em;
    height: 1.5em;
}

/*Login Page*/

/*.LoginPage {
    background-image:url(img/Login_BG.jpg);
    background-size:50%;
    background-repeat:no-repeat;
}*/


#bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

#bg, #overlay {
    min-width: 100%;
    min-height: 100%;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.5);
}



.login-box {
    margin: 100px 0 20px;
    background: url(img/LoginBG.png) no-repeat center;
}

.loginBranding {
    padding: 30px !important;
    color: white;
}

.loginLogo {
}

.loginHeader {
    color: white;
    font-weight: normal;
    margin-top: 40px;
}

.loginDescription {
    line-height: 1.6em;
}

.loginPanel {
    padding: 30px !important;
    background: white;
    min-height: 340px;
}

    .loginPanel form {
        margin-bottom: 0;
    }

    .loginPanel #LoginFrm .error small, .loginPanel #LoginFrm small.error {
        margin-top: -20px;
        background: #fff;
        color: #c60f13;
    }

.loginTitle {
    font-size: 18px;
    /*NeoSoft*/
    /*color: #afb3bb;*/
    color: #4f4f4f;
}

    .loginTitle a {
        font-size: 16px;
        /*NeoSoft*/
        /*color: #afb3bb;*/
        color: #4f4f4f;
    }

        .LoginPage .loginTitle a.active {
            font-size: 22px;
            color: #0089ba;
        }

.login-box input.error[type="text"], .login-box input.error[type="password"] {
    background-color: #fff;
    border: none !important;
    border-bottom: 1px solid #c60f13 !important;
    margin-bottom: 30px;
}

.login-box input[type="text"]:focus, .login-box input[type="password"]:focus, .login-box input[type="date"]:focus, input[type="datetime"]:focus, .login-box input[type="datetime-local"]:focus, .login-box input[type="month"]:focus, .login-box input[type="week"]:focus, input[type="email"]:focus, .login-box input[type="number"]:focus, .login-box input[type="search"]:focus, .login-box input[type="tel"]:focus, input[type="time"]:focus, .login-box input[type="url"]:focus, .login-box textarea:focus {
    background: #fff;
    color: #000;
}

.login-box input[type="text"], .login-box input[type="password"] {
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #afb3bb;
    margin-bottom: 30px;
}

.login-box input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.loginRemember {
    margin-bottom: 30px;
    font-size: 0.8em;
}

.socialLogin {
    xfloat: left;
    font-size: 10px;
    height: 40px;
    line-height: 40px;
    margin: 0 2px;
}

.loginRecovery {
    color: #cecfd3;
    text-align: center;
    font-size: 12px;
}

    .loginRecovery a {
        color: #cecfd3;
    }

    .contain-to-grid .top-bar { /*padding:0 15px; */
        margin-bottom: 0;
    }

.top-bar, .top-bar.expanded .title-area {
    background: #002B5C;
}

.top-bar {
    margin-bottom: 0;
}
    /*	.top-bar, .top-bar .name, .top-bar .toggle-topbar a, .top-bar-section > ul > .divider, .top-bar-section > ul > [role=separator], .top-bar-section .has-form {height: 60px;}
	.top-bar, .top-bar .name h1, .top-bar .toggle-topbar, .top-bar-section li a:not(.button) {xline-height: 60px;}
*/
    .top-bar .name {
        text-align: center;
    }

    .top-bar .top-bar-logo {
        text-align: center;
    }

        .top-bar .name img, .top-bar .top-bar-logo img { /*padding-top :7px;*/
            padding-bottom: 7px;
            padding-top: 5px;
        }


    .top-bar .row {
        max-width: 1000px;
    }

.top-bar-section ul li > a {
    color: #FFFFFF;
    font-size: 0.8125em;
}

.top-bar-section .activity-alert > a {
    padding-right: 15px !important;
}

.top-bar-section .has-dropdown .activity-alert > a:after {
    border: none;
}

.top-bar.expanded .top-bar-section {
    border-top: 2px solid #444444;
}

    .top-bar.expanded .top-bar-section .has-dropdown .activity-alert > a:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: inset 5px;
        border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
        border-left-style: solid;
        margin-right: 15px;
        margin-top: -4.5px;
        position: absolute;
        top: 22px;
        right: 0;
    }

.top-bar-section > ul > .divider, .top-bar-section > ul > [role=separator] {
    border: 3px solid #002B5C;
    background-color: #002B5C;
}

.top-bar.expanded .divider {
    border: 1px solid #444444;
}

.top-bar.expanded .message-alert, .top-bar.expanded .notification-alert, .top-bar.expanded .user-dropdown, .top-bar.expanded .has-form, .top-bar.expanded .help-menu {
    border-bottom: 0;
}

.top-bar-section .notification-alert > a:after, .top-bar-section .message-alert > a:after {
    border: none;
}

    .top-bar-section .notification-alert > a:after, .top-bar-section .help-menu > a:after {
        border: none;
    }

.top-bar-section .has-form {
    background: #002B5C;
    padding: 0;
    position: relative;
    height: 45px;
}

.top-bar form {
    height: 45px;
}

.top-bar input {
    height: 35px;
    top: 5px;
}

    .top-bar input[type=text] {
        position: relative;
        background: #FFFFFF;
        border: none;
        color: #000000;
        min-width: 325px;
        padding-left: 35px;
    }

.top-bar #searchicon {
    position: absolute;
    top: 13px;
    left: 15px;
    color: #c4c4c4;
}


.top-bar input[type=text]:focus {
    box-shadow: none;
}

.top-bar .button {
    background-color: #272727;
    border: none;
    padding: 10px 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    width: 100%;
    color: #c4c4c4;
    xbackground-color: #dcdce3;
    xcolor: #777775;
}

    .top-bar .button:hover {
        background: #000000;
        xbackground: #c4c4ca;
    }



.top-bar-section ul.notification-pane {
    background: #fff !important;
}

.top-bar .name .expanded {
    text-align: center;
}

.top-bar ul > li.toggle-topbar {
    cursor: pointer; /*display: block;*/
    height: 45px;
    position: absolute;
    right: 0;
    top: 0; /*width: 50%;*/
}

    .top-bar ul > li.toggle-topbar a {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: solid 8px;
        border-color: white transparent transparent transparent;
        padding: 0 !important;
        position: absolute;
        top: 50%;
        right: 22.5px;
        margin-top: -4px;
    }

    .top-bar ul > li.toggle-topbar:hover {
        background: none;
    }

.top-bar.expanded ul li.toggle-topbar a {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: solid 8px;
    border-color: transparent transparent rgba(255, 255, 255, 0.5) transparent;
    top: auto;
    bottom: 50%;
    margin-bottom: -4px;
}

.top-bar.expanded .has-form form input {
    height: 45px;
    top: 0;
}

/*End of Top Bar Navigation*/



.title-area .sidebar-menu-icon {
    position: absolute;
    left: 0;
    top: 0;
}

    .title-area .sidebar-menu-icon a {
        color: white;
        text-transform: uppercase;
        font-size: 0.8125em;
        font-weight: bold;
        position: relative;
        display: block;
        padding: 0 15px;
        height: 45px;
        line-height: 45px;
    }

.top-bar .title-area .sidebar-menu-icon {
    float: left;
    right: 15px;
    top: 50%;
    margin-top: -16px;
    padding-left: 40px;
}

    .top-bar .title-area .sidebar-menu-icon a {
        text-indent: -48px;
        width: 34px;
        height: 34px;
        line-height: 33px;
        padding: 0;
        color: white;
    }

        .top-bar .title-area .sidebar-menu-icon a span {
            position: absolute;
            right: 0;
            display: block;
            width: 16px;
            height: 0;
            -webkit-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
            box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
        }


#underbar {
    background-color: #002B5C;
    xbackground-color: #6ec829;
    margin: 0 auto;
    max-width: 100%;
    height: 7px;
    margin-bottom: 0;
}

    #underbar .row {
        max-width: 1000px;
        padding: 0 10px;
    }

    #underbar span {
        float: left;
        border-left: solid white 5px;
        height: 7px;
    }
        /* styled in common.js because IE7/IE8 do not support nth-child CSS attribute */
        #underbar span:nth-child(1) {
            background-color: #0089ba;
            width: 8%;
        }

        #underbar span:nth-child(2) {
            background-color: #76C7D8;
            width: 5%;
        }

        #underbar span:nth-child(3) {
            background-color: #47B964;
            width: 5%;
        }

        #underbar span:nth-child(4) {
            background-color: #078243;
            width: 82%;
        }

/* IE variation */
.ie #underbar span.bar1 {
    background-color: #0089ba;
    width: 8%;
}

.ie #underbar span.bar2 {
    background-color: #76C7D8;
    width: 5%;
}

.ie #underbar span.bar3 {
    background-color: #47B964;
    width: 5%;
}

.ie #underbar span.bar4 {
    background-color: #078243;
    width: 82%;
}


.notification {
    background: #9e0b0f;
    border-radius: 20px 20px 20px 20px;
    color: #FFFFFF;
    display: block;
    font-size: 10px;
    font-weight: bold;
    height: 16px;
    margin: 6px 1px 0 22px;
    position: absolute;
    text-align: center;
    width: 16px;
    z-index: 1;
}


ul.notification-dropdown, ul.notification-dropdown li, ul.notification-dropdown li a, ul.notification-dropdown li p {
    width: 350px !important;
    white-space: normal !important;
}

.top-bar-section .dropdown li a {
    line-height: 1.25 !important;
}

.top-bar ul.notification-dropdown li.notification-list {
    background: #272727;
}

    .top-bar ul.notification-dropdown li.notification-list:hover {
        background: #000;
    }

    .top-bar ul.notification-dropdown li.notification-list a {
        padding-left: 3em;
    }

        .top-bar ul.notification-dropdown li.notification-list a:not(.button) {
            /*background: none;*/
        }

    .top-bar ul.notification-dropdown li.notification-list .button {
        width: 40% !important;
        padding-left: 15px !important;
        margin: 1.25em;
        height: 30px;
    }

.top-bar ul.notification-dropdown .icon-li {
    left: 10px;
}

.top-bar.expanded ul.notification-dropdown, .top-bar.expanded ul.notification-dropdown li, .top-bar.expanded ul.notification-dropdown li a {
    width: 100% !important;
    white-space: normal !important;
}
/* End of Top Bar Navigation*/


/* Main Page Navigation,: appears on every page */
#main-nav {
    background: #f3f4f7;
    border-bottom: 1px solid #bac2cf;
    margin-top: 6px;
    position: relative;
    z-index: 11;
}

    #main-nav .button {
        margin-bottom: 0;
    }

    #main-nav .button-group .button {
        border: 0;
        background-color: #f3f4f7;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        /*NeoSoft*/
        color: #4f4f4f;
        /*color: #afb3bb;*/
        font-weight: normal;
        font-size: 12px;
        line-height: 45px;
        text-transform: uppercase;
    }

    #main-nav li {
        line-height: 45px;
        height: 45px;
    }

    #main-nav .button-group a.button {
        margin-bottom: 0;
        height: 45px;
        /*width:50px;*/
        border: none;
        padding: 0;
    }

        #main-nav .button-group a.button span {
            padding-right: 0;
        }

    #main-nav .button-group .button:hover {
        background-color: #f3f4f7;
        color: #000000;
        /*NeoSoft*/
        /*color:#415766;*/
    }

    #main-nav .button-group .active a {
        color: #415766;
        background-color: #f3f4f7 !important;
        border-bottom: 4px solid #6ec829 !important;
    }

    .sub-nav dd.active {
        color: #5c5c5c;
        background-color: #f3f4f7 !important;
        border-bottom: 4px solid #002B5C !important;
    }

    #main-nav .home {
        padding-left: 0;
        background: url(img/nav-sprite.png) no-repeat center 0;
        width: 50px;
    }

    #main-nav .courses {
        background: url(img/nav-sprite.png) no-repeat left -40px;
    }

    #main-nav .files {
        background: url(img/nav-sprite.png) no-repeat left -80px;
    }

    #main-nav .community {
        background: url(img/nav-sprite.png) no-repeat left -120px;
    }

    #main-nav .reports {
        background: url(img/nav-sprite.png) no-repeat left -160px;
    }

    #main-nav .admin {
        background: url(img/nav-sprite.png) no-repeat left -200px;
    }

    #main-nav .safeschool {
        background: url(img/nav-sprite.png) no-repeat left -240px;
    }

    #main-nav .coaching {
        background: url(img/nav-sprite.png) no-repeat left -280px;
    }

.invite-button {
    background: #fafafc !important;
    border-color: #6ec829 !important;
    color: #6ec829 !important;
    font-size: 12px;
    margin-top: 6px;
}

    .invite-button:hover {
        background: #eff0f4 !important;
    }

.dashboard-header, .course-header {
    border-bottom: 1px solid #BAC2CF;
    border-bottom: 1px solid #d4dae3;
    border-top: 1px solid #d4dae3;
    background: #eff0f4;
}

    .dashboard-header h4, .course-header h4 {
        color: #415766;
        font-weight: normal;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .dashboard-header .sub-nav, .course-header .sub-nav {
        display: block;
        margin: 0;
        overflow: hidden;
        padding-top: 0;
        width: auto;
        margin-bottom: 0;
    }

    .course-header .sub-nav {
        display: inline-block;
        max-width: 100%;
        position: relative;
    }

        .dashboard-header .sub-nav dd, .course-header .sub-nav dd, .dashboard-header .sub-nav .sub-nav-div {
            display: inline;
            float: left;
            font-size: 12px;
            font-weight: normal;
            margin-bottom: 10px;
            margin-top: 10px;
            margin-left: 0;
            margin-right: 20px;
            line-height: 25.2px;
        }

        .dashboard-header .sub-nav dt, .course-header .sub-nav dt{
            display: inline;
            float: left;
            font-size: 12px;
            font-weight: normal;
            margin-bottom: 10px;
            margin-top: 10px;
            margin-left: 0;
            margin-right: 0;
            line-height: 25.2px;
        }

        /*.dashboard-header .sub-nav dt.active, .dashboard-header .sub-nav dd.active {
        border-bottom: 4px solid #6ec829;
        margin-bottom:0;
        padding-bottom:6px;
    }*/

        .course-header .sub-nav dd {
            box-sizing: border-box;
            width: 100%;
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            word-break: break-all;
            word-wrap: break-word;
        }

            .dashboard-header .sub-nav dt a, .dashboard-header .sub-nav dd a, .dashboard-header .sub-nav li a, .course-header .sub-nav dt a, .course-header .sub-nav dd a, .course-header .sub-nav li a {
                font-size: 12px;
                font-weight: normal;
                /*NeoSoft*/
                color: #666666;
                /*color:#afb3bb;*/
            }

            .dashboard-header .sub-nav dt.active a, .dashboard-header .sub-nav dd.active a, .dashboard-header .sub-nav li.active a, .course-header .sub-nav dt.active a, .course-header .sub-nav dd.active a, .course-header .sub-nav li.active a {
                /*NeoSoft*/
                /*color: #415766;*/
                color: #787878;
                background: none;
                font-weight: normal;
                padding: 0;
            }

    .dashboard-header select {
        font-size: 0.8em;
    }

    .dashboard-header button, .dashboard-header .button {
        margin: 7px;
    }

.main {
    background: #FFFFFF;
    height: auto !important;
    min-height: 100%;
    height: 100%;
    position: relative; /* Required to absolutely position the footer */
    border-right: 1px solid #bac2cf;
    border-left: 1px solid #bac2cf;
    border-right: 1px solid #d4dae3;
    border-left: 1px solid #d4dae3;
    padding-bottom: 10px;
}
/* End of Main Page Code */

/* Landing Page Side Bar  Code */
.sidenav { /*background:#f2f2ea*/
    background: #f2f2f0;
    border: solid 1px #DFDFD7;
}

.maincontent {
    padding-top: 20px;
}

.right-column {
    background: #eff0f4;
    border-left: 1px solid #bac2cf;
    padding-bottom: 500000em;
     margin-bottom: -500000em;
}

    .right-column .user-container {
        display: flex;
        margin-top: 16px;
    }

    .right-column .user-img {
        flex: 0 0 auto;
    }

        .right-column .user-img img {
            margin-right: 10px;
            max-height: 60px;
            max-width: 60px;
        }

    .right-column .user-info {
        flex: 2 1 0;
    }

        .right-column .user-info .user-info-container {
            margin-bottom: 10px;
        }

        .right-column .user-info h5 {
            font-weight: normal;
            margin-bottom: 3px;
        }

    .right-column .user-title, .right-column .subheader {
        font-size: 12px;
        font-weight: normal;
        /*NeoSoft*/
        /*color: #415766;*/
        color: #5F5F5F;
        margin-top: 0;
        margin-bottom: 3px;
    }

    .right-column .dashboard-header {
        border: none;
        background: none;
    }

        .right-column .dashboard-header h5.sidebar-title {
            /*NeoSoft*/
            /*color: #415766; 7197b3*/
            color: #516C81;
            font-weight: normal;
            margin: 0;
            float: left;
        }

    .right-column span.view-all {
        font-size: 11px;
        float: right;
        margin-top: 7px;
    }

        .right-column span.view-all .count {
            margin-left: 5px;
        }

    .right-column hr {
        margin: 16px 0;
    }

    .right-column .sidebar-label {
        background: #f8f9fb;
        /*NeoSoft*/
        /*color: #91b2c5;*/
        color: #607682;
        font-size: 11px;
        font-weight: normal;
        border-radius: 1000px;
        padding: 5px 10px;
    }

    .right-column a.portal-dropdown {
        /*NeoSoft*/
        /*color: #afb3bb;*/
        color: #787878;
        font-size: 12px;
    }

    .right-column ul#portal-drop.f-dropdown::before {
        display: none;
    }

    .right-column ul#portal-drop.f-dropdown::after {
        display: none;
    }

    .right-column ul#portal-drop {
        padding: 0;
    }

        .right-column ul#portal-drop li:first-child {
            margin-top: 3px;
        }

        .right-column ul#portal-drop li {
            font-size: 12px;
            padding: 2px 10px;
        }


    .right-column select {
        font-size: 11px;
    }

    .right-column .upcoming-events ul {
        margin: 10px 0 0 16px;
    }

    .right-column .upcoming-events li {
        border-left: 2px solid #a0a0a2;
        margin: 0;
        padding: 0 0 16px 15px;
    }

        .right-column .upcoming-events li:last-child {
            border-left: none;
            padding: 0 0 16px 17px;
        }

    .right-column .upcoming-events .event-bullet {
        background: #624e85;
        border: 2px solid #eff0f4;
        border-radius: 50%;
        height: 14px;
        left: -8px;
        position: absolute;
        text-align: center;
        width: 14px;
    }

    .right-column .upcoming-events li:last-child .event-bullet {
        left: -6px;
    }

    .right-column .upcoming-events .subheader {
        margin-bottom: 0;
    }

    .right-column .upcoming-events .event-date, .right-column .user-title {
        color: #afb3bb;
        font-size: 11px;
    }

    .right-column .item-container {
        display: flex;
        margin-top: 16px;
    }

    .right-column .item-img {
        flex: 0 0 auto;
        /*display:table-cell;*/
        vertical-align: middle;
    }

        .right-column .item-img img {
            margin-right: 10px;
            height: 45px;
            width: 45px;
            object-fit: cover;
            border-radius: 50%;
        }

    .right-column .item-info {
        flex: 2 1 0;
        display: table-cell;
        vertical-align: middle;
        width: 100%;
    }

        .right-column .item-info .item-item-container {
            margin-bottom: 10px;
        }

        .right-column .item-info h6 {
            font-weight: normal;
            margin-bottom: 3px;
        }

    .right-column .item-title {
        font-size: 12px;
        font-weight: normal;
        color: #415766;
        margin-top: 0;
        margin-bottom: 3px;
    }

    .right-column .item-link {
        flex: 0 0 auto;
        display: table-cell;
        vertical-align: middle;
    }

    .right-column .item-link {
        background: #fff;
        color: #6ec829;
        border-radius: 50%;
        display: block;
        height: 25px;
        width: 25px;
        padding: 5px;
        text-align: center;
    }

        .right-column .item-link a {
            color: #0089ba;
        }

.section-header {
    color: #415766;
    margin: 15px 0;
    font-weight: normal;
}

.label.counts {
    background: #f8f9fb;
    color: #91b2c5;
}

#browse .video-panel {
    padding: .75em;
    background: #EFF0F4;
    border: 1px solid #D4DAE3;
    line-height: normal;
    margin-bottom: 0;
}

    #browse .video-panel p, #browse .trending-list-item p, #browse .trending-header p {
        color: #333333;
    }

#browse .primary {
    height: 101px;
    overflow: hidden;
}

    #browse .primary h5 {
        height: 55px;
        overflow: hidden;
    }

/*#browse .secondary {
        height:48px;
        overflow:hidden;
    }

        #browse .secondary p {
        height:30px;
        overflow:hidden;
        font-weight:bold;
    }*/

#browse .large-block-grid-1 > li, #browse .large-block-grid-2 > li, #browse .large-block-grid-3 > li, #browse .large-block-grid-4 > li {
    xpadding: 0 5px 10px;
    padding: 0;
}

#browse .trending-header {
    background: #dcdce3;
    padding: .75em;
    font-weight: bold;
    border-bottom: 2px solid white;
}

    #browse .trending-header > *:last-child, #browse .video-panel > *:last-child {
        margin-bottom: 0;
    }

    #browse .trending-header > *:first-child, #browse .video-panel > *:first-child {
        margin-top: 0;
    }

#browse .trending-list-item * {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.25em;
}

#browse ul.trending-list {
    list-style: none;
    margin-left: 0;
    height: 206px;
    background: #EFF0F4;
}

#browse .trending-list-item {
    background: #EFF0F4;
    padding: 10px;
    border-bottom: 2px solid white;
    height: 52px;
    overflow: hidden;
}

    #browse .trending-list-item:hover {
        background: #e1e2e4;
    }

    #browse .trending-list-item img {
        margin-right: 5px;
        margin-bottom: 15px;
        float: left;
    }

#recommended {
    margin-bottom: 20px;
}

    #recommended .row {
        margin: 0;
    }

    #recommended .columns {
        padding: 0;
    }

        #recommended .columns img {
            height: 100%;
            overflow-x: hidden;
        }

    #recommended ul {
        margin: 0;
    }

    #recommended li {
        padding: 0;
    }

        #recommended li li {
        }

    #recommended .panel {
        background: #272727;
        margin-bottom: 0;
        color: #ffffff;
        border: 0;
    }

    #recommended .primary {
        overflow: hidden;
        position: relative;
        height: 212px;
        color: #ffffff;
        margin: 3px;
    }

    #recommended .thumb-primary {
        background: #fafafa;
        float: left;
        height: 70%;
        overflow: hidden;
        position: relative;
        background: #272727;
    }

        #recommended .thumb-primary img {
            xheight: 100%;
            width: 100%;
        }

    #recommended .thumb-panel {
        background: #272727;
        padding: 10px;
        float: left;
        height: 30%;
        width: 100%;
        overflow: hidden;
    }

        #recommended .thumb-panel p {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    #recommended .square-thumb {
        background: #272727;
        margin-bottom: 0;
        overflow: hidden;
        color: #ffffff;
        min-height: 103px;
        vertical-align: middle;
        text-align: center;
        position: relative;
        margin: 3px;
    }

        #recommended .square-thumb i {
            height: 103px;
            line-height: 103px;
        }

    #recommended .thumb-block {
        overflow: hidden;
        position: relative;
        margin: 3px;
        background: #272727;
    }

    #recommended .thumb-meta {
        background: #272727;
        height: 103px;
        padding: 10px;
        float: right;
        width: 70%;
        color: #ffffff;
    }

        #recommended .thumb-meta p {
            overflow: hidden;
            text-overflow: ellipsis;
        }

    #recommended .thumb-hero:before {
        content: "";
        display: inline-block;
        height: 100%;
        margin-right: -0.25em;
        vertical-align: middle;
    }

    #recommended .thumb-hero {
        background: #F3F4F5;
        bottom: 0;
        overflow: hidden;
        position: absolute;
        left: 0;
        text-align: center;
        top: 0;
        color: #ffffff;
        width: 30%;
    }

        #recommended .square-thumb i, #recommended .thumb-hero i {
            vertical-align: middle;
        }
/* End of Landing Page Side Bar Code */

/* Recently Viewed Section Code */
#recently-viewed {
    margin-bottom: 20px;
}

    #recently-viewed .square-thumb {
        background: #272727;
        margin-bottom: 0;
        overflow: hidden;
        color: #ffffff;
        min-height: 70px;
        vertical-align: middle;
        text-align: center;
        position: relative;
        width: 70px;
    }

        #recently-viewed .square-thumb i {
            height: 70px;
            line-height: 70px;
        }

    #recently-viewed img {
        height: 70px;
        width: 70px;
    }
/* End of Recently Viewed Section Code */


/*#content-bank.ui-tabs { padding: 0;}
#content-bank.ui-tabs-nav { padding: 0;}
#content-bank.ui-widget-content { background: none;color: inherit;}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br, .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl, .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr  { border: 0; border-radius: 0;}
.ui-tabs .ui-tabs-nav { padding: 0;}
.ui-tabs .ui-tabs-nav li { margin: 0;top: 0;}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { background: none;border: 0;font-weight: normal;}
#content-bank .ui-tabs-panel { padding: 0;}
#content-bank .ui-tabs .ui-tabs-panel {background: 0;padding: 0;}

.ui-tabs { padding: 0; }
.ui-tabs .ui-tabs-nav { margin: 0; padding: 0; }
.ui-tabs .ui-tabs-nav li { top: 0; margin: 0; }
.ui-tabs .ui-tabs-nav li a { padding: 0; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 0; }
.ui-tabs .ui-tabs-panel { padding: 0; }*/

/* User Portfolio Section */
#portfolio-nav {
    height: 100%;
}

    #portfolio-nav .button {
        border: 0;
        background: #FAFAFC;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        font-size: 18px;
        color: #777775;
        text-transform: uppercase;
        padding: 13px 18px;
        margin: 0;
    }

    #portfolio-nav a.button {
        margin-bottom: 0;
        border: 1px solid #d4dae3;
        border-top: 0;
        border-bottom: 0;
    }

    #portfolio-nav .button:hover {
        background: #dbdbdb;
    }

    #portfolio-nav .active {
        background: #eff0f4;
    }

    #portfolio-nav .ui-state-active .button, #portfolio-nav .ui-widget-content .ui-state-active .button, #portfolio-nav .ui-widget-header .ui-state-active .button { /*background: #eff0f4;*/
        background: #ffffff;
        margin-bottom: -2px;
        border-bottom: 2px solid #ffffff;
    }

    #portfolio-nav .ui-widget-content .ui-state-active {
        margin-bottom: -1px;
        padding-bottom: 1px;
    }


#content-bank table {
    width: 100%;
    border: 0;
}

#content-bank thead {
    background: #ffffff;
}

#content-bank tbody {
    background: #eff0f4;
}

#content-bank thead .button {
    margin-bottom: 0;
}

.portfolio-item i {
    margin-right: 12px;
}

.portfolio .progress {
    width: 150px;
}

.alert-count {
    background: #9e0b0f;
    border-radius: 20px 20px 20px 20px;
    color: #FFFFFF;
    display: block;
    font-size: 10px;
    font-weight: bold;
    height: 16px;
    margin: -4px 0 0 10px;
    position: absolute;
    text-align: center;
    width: 16px;
    z-index: 1;
    line-height: 16px;
}

.upcoming-events ul {
    font-size: 11px;
    margin-bottom: 1.25em;
}

    .upcoming-events ul li {
        margin-top: 10px;
    }

.activity-feed {
    margin: 15px 0 0;
}

    .activity-feed img {
        float: left;
        margin-right: 10px;
        width: 25px;
    }
/* End of User Portfolio Section */

/* Landing Page Carousel Code:
   ::May not use:: */
.orbit-container .orbit-prev, .orbit-container .orbit-next {
    background: none;
}

.orbit-container .orbit-slides-container > * .orbit-caption {
    padding-right: 0;
    padding-left: 0;
}

.orbit-caption h1, .orbit-caption h2, .orbit-caption h3, .orbit-caption h4, .orbit-caption h5, .orbit-caption h6, .orbit-caption p, .orbit-caption ul {
    padding: 0 14px;
    margin: 0;
    font-weight: normal;
}

.orbit-caption h5 {
    font-size: 1.35em;
}

.orbit-caption hr {
    margin: 10px 0;
}

.orbit-bullets {
    top: -26px;
    margin-left: 14px;
    margin-bottom: 0;
}

    .orbit-bullets li {
        border: 0;
        background: #acacac;
        height: 12px;
        width: 12px;
    }

        .orbit-bullets li.active {
            background: #ffffff;
        }

.orbit-slide-number {
    display: none;
}
/* End of Landing Page Carousel Code: not used */

/* Off Canvas */
@media all and (min-width: 768px) {
    .title-top-margin {
        margin-top: 32px;
    }


    menu-button, .sidebar-button {
        display: none;
    }

    [role=complementary] {
        width: 30%;
        margin-left: 0;
        float: left;
        padding: 0 15px;
    }

    [role=main] {
        width: 70%;
        padding: 0 15px;
    }

    .paneled [role=main] {
        width: 100%;
        padding: 0;
        background: #f4f4f4;
        left: 0 !important;
    }

    .page-panel {
        display: block;
        min-height: 800px;
        float: none;
        margin: 0;
        width: 100%;
        background: #f8f7f7;
    }

    .hide-extras [role=main] {
        width: 100%;
    }

    .hide-extras [role=complementary] {
        display: none;
    }

    [role=navigation]#topMenu {
        display: none;
    }
}


/* Left Sidebar in the Landing Section */
#sidebar {
    padding-left: 0;
    color: #777775;
    padding-right: 0;
}

    #sidebar p {
        font-size: 1em;
        line-height: 0;
    }

    #sidebar .section-container, #sidebar .section .title {
        border-color: #dfdfd7;
        border-right: none;
        border-left: none;
    }

        #sidebar .section .title a { /*background:#f2f2ea;*/
            background: #f2f2f0;
            padding: 1.135em;
        }

            #sidebar .section .title a:hover, #sidebar .section.active {
                background: #e9e9e6;
            }

    #sidebar .title {
        text-transform: uppercase;
    }

    #sidebar i {
        margin-right: 1em;
        font-size: 16px;
        color: #777775;
        display: inline-block;
        width: 18px;
    }

    #sidebar span {
        border-left: 1px solid #cccccc;
        padding-top: 1.135em;
        padding-bottom: 1.135em;
        padding-left: 1.135em;
    }

.side-nav li {
    font-size: 1em;
}

#usercourses section p {
    font-size: 1em;
    font-weight: normal;
    line-height: 1.6;
}
/* End of Left Sidebar from Landing Section */

/* Source File is in the dashboard.css file  */
.modalWrapper {
    background: none repeat scroll 0 0 #F1F6F2;
    border: 4px solid #777777;
    color: #4D4D4F;
    float: left;
    font-size: 13px;
    position: relative;
    width: 700px;
    min-height: 400px;
}


.modalContent {
    float: left;
    padding: 20px;
    width: 660px;
}
/* End of dashboard.css code */

/* Misc ??? */
.newTabLink::after {
    content: "\f08e";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin-left: 0.5em;
    speak: none;
}

.coureProgress ul {
    float: left;
}

.coureProgress li {
    float: left;
    list-style: none;
    margin-right: 10px;
}

a {
    cursor: pointer;
}
/* End of Misc ??? */

/* Course Completion */
#grid {
    margin-bottom: 1.25em;
}

.k-grid-header-wrap table {
    margin-bottom: 0;
}

.k-grid-content table {
    margin-bottom: 0;
}
/* End of Course Completion */

/* Thumbnail Classes for the Search Results */

.thumbnail-frame {
    height: 123px;
    overflow: hidden;
    position: relative;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    border-top: 1px solid #d4dae3;
    border-right: 1px solid #d4dae3;
    border-left: 1px solid #d4dae3;
}

    .thumbnail-frame img {
        width: 100%;
        height: auto;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

.thumbnail hr {
    margin-right: -20px;
    margin-left: -20px;
}

#browse ul li .thumbnail-frame {
    height: 179px;
    overflow: hidden;
    position: relative;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
}

#browse ul li ul li .thumbnail-frame {
    height: 87px;
    overflow: hidden;
    position: relative;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
}

    #browse ul li ul li .thumbnail-frame img, #browse ul li ul li .thumbnail-frame img {
        width: 100%;
        height: auto;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

.thumbnail {
    /*background: none repeat scroll 0 0 #F4F1EE;*/
    /*border: 1px solid #CCCCCC;*/
    margin-bottom: 1.25em;
    overflow: hidden;
    position: relative;
}


    .thumbnail .panel {
        min-height: 124px;
    }

    .thumbnail ul.inline-list {
        margin-bottom: 0;
    }

    .thumbnail h5 {
        font-weight: normal;
        font-size: 14px;
        /*NeoSoft*/
        /*color: #415766;*/
        color: #002b5c;
        line-height: normal;
    }

    .thumbnail p {
        padding: 5px 15px;
        color: white;
        line-height: normal;
        font-size: 12px;
        color: #415766;
    }

a .thumbnail {
    /*NeoSoft*/
    /*color: #415766;*/
    color: #5a788c;
}

.thumbnail .caption-hover {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
    /*display: none;*/
    position: absolute;
    bottom: -50px;
    width: 100%;
    z-index: 10;
    min-height: 90px;
}

    .thumbnail .caption-hover ul.caption-hover-icons {
        margin-bottom: 0;
        width: 100%;
    }

        .thumbnail .caption-hover ul.caption-hover-icons li {
            display: inline-block;
            padding: 5px 15px;
        }

            .thumbnail .caption-hover ul.caption-hover-icons li span {
                clear: both;
                color: #F4F4F4;
                display: inline-block;
                font-size: 12px;
                font-weight: bold;
                margin-top: 2px;
                padding-left: 6px;
                position: absolute;
                text-align: right;
            }

            .thumbnail .caption-hover ul.caption-hover-icons li.likes, .thumbnail .caption-hover ul.caption-hover-icons li.add, .thumbnail .caption-hover ul.caption-hover-icons li.comments {
                color: #FBF8F5;
            }

.no-touch .thumbnail:hover .caption-hover {
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.5);
    display: block;
    bottom: 0;
    transition: .3s;
}

.label.contentTag {
    background: #ececec;
    color: #333333;
    font-size: 9px;
    font-weight: normal;
    line-height: 1.5em;
    opacity: 0.8;
    margin: 0;
    position: absolute;
    top: 10px;
    right: 10px;
}

#loadingContent ul li .thumbnail-frame {
    height: 179px;
    overflow: hidden;
    position: relative;
    background: #f6f7f8;
    border: none;
}

#loadingContent ul li ul li .thumbnail-frame {
    height: 87px;
    overflow: hidden;
    position: relative;
    background: #f6f7f8;
    border: none;
}

#loadingContent .primary, #loadingContent .video-panel {
    border: none;
}


.placeholderText1 {
    -moz-animation-duration: 1s;
    -moz-animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: placeHolderShimmer;
    -moz-animation-timing-function: linear;
    background: #f6f7f8;
    background-image: -moz-linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-image: linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    height: 8px;
    width: 80%;
    margin: 2px 2px 8px !important;
}

.placeholderText2 {
    -moz-animation-duration: 1s;
    -moz-animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: placeHolderShimmer;
    -moz-animation-timing-function: linear;
    background: #f6f7f8;
    background-image: -moz-linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-image: linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    height: 8px;
    width: 40%;
    margin: 0px 2px !important;
}

.placeholderText3 {
    -moz-animation-duration: 1s;
    -moz-animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: placeHolderShimmer;
    -moz-animation-timing-function: linear;
    background: #edeef1;
    background-image: -moz-linear-gradient(left, #edeef1 0%, #e3e4e5 20%, #edeef1 40%, #edeef1 100%);
    background-image: linear-gradient(left, #edeef1 0%, #e3e4e5 20%, #edeef1 40%, #edeef1 100%);
    background-repeat: no-repeat;
    height: 8px;
    width: 60%;
    margin: 3px 2px 4px !important;
}

.placeholderAvatar {
    -moz-animation-duration: 1s;
    -moz-animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: placeHolderShimmer;
    -moz-animation-timing-function: linear;
    background: #f6f7f8;
    background-image: -moz-linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-image: linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    height: 45px;
    width: 45px;
    margin-right: 10px;
    border-radius: 150px;
    overflow: hidden;
}

@-moz-keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

@-moz-keyframes prideShimmer {
    from {
        background-position: top left;
    }

    to {
        background-position: top right;
    }
}

/* End of Thumbnail Classes for the Search Results+ */


/* Misc Code ??? */
[class*="column"] + [class*="column"]:last-child {
    float: left;
}
/* End of Misc Code ??? */

/* Discussion's Code Misc Code */

.newDiscussionPost {
    background: #f3f4f7;
    xborder-bottom: 1px solid #dde5eb;
    xborder: 1px solid #dde5eb; /* the original value*/
    xborder: 1px solid #0089ba;
    border: 1px solid #2ba6cb;
    margin-bottom: 16px !important;
    margin-top: 16px !important;
    padding-bottom: 6px !important;
}

    .newDiscussionPost form {
        margin-bottom: 0;
    }

.messageExpiration {
    background: white;
    border-bottom: 1px solid #dde5eb;
}

    .messageExpiration label {
        margin: 0;
        padding: 12px 16px;
        background: #f9f9fb;
    }

    .messageExpiration input#expirationDate {
        margin: 0;
        border: 0;
        border-right: 1px solid #dde5eb;
        border-left: 1px solid #dde5eb;
        height: 38px;
        box-shadow: none;
    }

        .messageExpiration input#expirationDate:focus {
            background: #fff;
        }

label.districtMessage {
    float: left;
    padding: 12px 16px 11px 16px;
    margin: 0;
}

    label.districtMessage input {
        margin: 0;
    }

#submitdiscussion {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 14px;
    margin-left: 10px;
}

.new-post-container {
    display: flex;
}

    .new-post-container .post-file, .postcard .post-file {
        flex: 2 1 0;
    }

    .new-post-container .post-to {
        flex: 0 0 auto;
    }

        .new-post-container .post-to a.dropdown {
            height: 38px;
            font-size: 13px;
            text-align: right;
            xcolor: #afb3bb;
            display: table-cell;
            vertical-align: middle;
        }

    .new-post-container .post-button, .postcard .post-button {
        flex: 0 0 auto;
    }

.post-button-margin {
    margin-right: 16px;
    margin-top: 16px;
}

#discussions a.dropdown {
    color: #555555;
}

#discussions ul#drop, .postoptions ul.f-dropdown, .newDiscussionPost ul#postSelection {
    padding: 0;
}

    #discussions ul#drop.f-dropdown::before, .postoptions ul.f-dropdown::before, .newDiscussionPost ul#postSelection::before {
        display: none;
    }

    #discussions ul#drop.f-dropdown::after, .postoptions ul.f-dropdown::after, .newDiscussionPost ul#postSelection::after {
        display: none;
    }

    #discussions ul#drop li, .postoptions ul.f-dropdown li, .newDiscussionPost ul#postSelection li {
        padding: 2px 10px;
        font-size: 12px;
    }

        #discussions ul#drop li:first-child, .postoptions ul.f-dropdown li:first-child, .newDiscussionPost ul#postSelection:first-child {
            margin-top: 10px;
        }

        #discussions ul#drop li:last-child, .postoptions ul.f-dropdown li:last-child, .newDiscussionPost ul#postSelection:last-child {
            margin-bottom: 10px;
        }

#discussions #drop li a.active, .newDiscussionPost #postSelection li a.active {
    font-weight: bold;
}

.newDiscussionPost #postSelection hr {
    margin: 5px 0;
}


.discussion-field {
    position: relative;
}

    .discussion-field textarea {
        color: #525252;
        resize: none;
        padding: 16px 16px 0 16px;
        overflow: hidden;
        border: 1px solid #767676;
        box-shadow: none;
        margin: 0;
        xborder-bottom: 1px solid #dde5eb;
    }

        .discussion-field textarea:focus {
            background: #fff;
        }

/*.discussion-file
{
	background: #F2F2F2;
}*/

.discussion-file .k-upload {
    position: static !important;
}

.discussion-file .k-upload-button {
    margin: 0 !important;
    padding-top: 7px;
    padding-bottom: 4px;
}

.discussion-file .k-widget, .discussion-file .k-header {
    border: none;
    background: none;
    float: left;
    margin-left: 9px;
}

/*.discussion-file .file-upload
	{
		bottom: 0;
		cursor: inherit;
		font-size: 1000px !important;
		height: 300px;
		margin: 0;
		opacity: 0;
		padding: 0;
		position: absolute;
		right: 0;
	}*/

.discussion-file .selector-wrapper {
    margin-bottom: 0;
}

/*.discussion-field .k-upload-button
{
	position: absolute;
	right: 0;
	xtop: -65px;
    top:0;
}*/

.discussion-field .k-upload,
.discussion-field .k-upload:active,
.discussion-field .k-upload:hover,
.discussion-field .k-upload-button,
.discussion-field .k-upload-button:active,
.discussion-field .k-upload-button:hover,
.discussion-field .k-state-focused,
.discussion-field .k-state-focused:active,
.discussion-field .k-state-focused:hover {
    xbackground: none !important;
    border: none;
    box-shadow: none !important;
}

.discussion-field .k-state-focused,
.discussion-field .k-list > .k-state-focused,
.discussion-field .k-listview > .discussion-field .k-state-focused,
.discussion-field .k-grid-header th.k-state-focused,
.discussion-field td.k-state-focused,
.discussion-field .k-button:focus,
.discussion-field .k-button.k-state-focused {
    xbackground: none !important;
    border: 2px solid #002b5c !important;
    box-shadow: none !important;
}

#discussionfile .k-button {
    xbackground: none;
    border: none;
    color: #afb3bb;
}


/*.discussion-file .k-upload-button,
.discussion-field .k-state-focused
{
   	background-image: url("/Content/kendo/2013.2.716/Default/sprite.png");
	background-position: -32px -275px;
	width: 16px;
	height: 16px;
	padding: 0;
	text-indent: -9999px;
	opacity: 0.5;
}


	.discussion-file .k-upload-button:hover,
	.discussion-file .k-upload-button:active,
	.discussion-file .k-upload-button:focus,
	.discussion-field .k-state-focused:hover,
	.discussion-field .k-state-focused:active,
	.discussion-field .k-state-focused:focus,
	.discussion-field .k-button.k-state-focused
	{

       	background-image: url("/Content/kendo/2013.2.716/Default/sprite.png");
		background-position: -32px -275px;
		width: 16px;
		height: 16px;
		padding: 0;
		text-indent: -9999px;
		opacity: 1;
	}*/


.discussion-file .k-upload-button,
.discussion-field .k-state-focused {
    background-image: url("/Content/themes/plp/img/paperclip.png");
    background-color: inherit;
    background-repeat: no-repeat;
    background-position: center;
    width: 36px;
    height: 36px;
    border: none;
    box-shadow: none !important;
    text-indent: -9999px;
}

    .discussion-file .k-upload-button:hover,
    .discussion-file .k-upload-button:active,
    .discussion-file .k-upload-button:focus,
    .discussion-field .k-state-focused:hover,
    .discussion-field .k-state-focused:active,
    .discussion-field .k-state-focused:focus,
    .discussion-field .k-button.k-state-focused {
        background-image: url("/Content/themes/plp/img/paperclip.png");
        background-color: inherit !important;
        background-repeat: no-repeat;
        background-position: center;
        width: 36px;
        height: 36px;
        padding: 0;
        text-indent: -9999px;
    }

.discussion-file .k-button:hover,
.discussion-file .k-button:focus,
.discussion-file .k-button.k-state-focused,
.discussion-file .k-textbox:hover,
.discussion-file .k-state-hover,
.discussion-file .k-state-hover:hover,
.discussion-file .k-pager-wrap .k-link:hover,
.discussion-file .k-other-month.k-state-hover .discussion-file .k-link,
.discussion-file div.k-imagebrowser-dropzone em,
.discussion-file .k-draghandle:hover {
    background-image: url("/Content/themes/plp/img/paperclip.png");
    background-color: #f3f4f7;
    background-repeat: no-repeat;
    background-position: center;
}

.discussion-file .k-file {
    background-image: url("/Content/themes/plp/img/paperclip.png");
    background-color: #f3f4f7;
    background-repeat: no-repeat;
    background-position: center;
    width: 36px;
    height: 36px;
}

.discussion-file ul.k-upload-files {
    margin: 0;
    border: none;
}

#fileContainer, #commentFile {
    position: relative;
}

    #fileContainer.panel, #commentFile .panel {
        padding: 25px 16px;
        background: #f3f4f7;
        border: none;
        border-bottom: 1px solid #dce4eb;
        margin-bottom: 0;
    }

    #fileContainer .cancelUpload, #commentFile .cancelUpload {
        color: #aaaaaa;
        cursor: pointer;
        font-size: 1.375em;
        font-weight: bold;
        line-height: 1;
        position: absolute;
        right: 0.25em;
        top: 0.25em;
    }


    #fileContainer input, #commentFile input {
        font-size: 0.875em;
        height: 2.3125em;
        box-shadow: none;
    }

    #fileContainer #tagValues {
        margin-bottom: 0;
    }

#qrcode canvas {
    width: 100% !important;
}

.popular-discussion {
    font-size: .85em;
    height: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 1em;
}

    .popular-discussion img {
        display: none;
    }

#discussions .profile-image img {
    xheight: 50px;
    width: 50px;
}

#discussions button {
    margin-bottom: 0;
}

#discussions .postcard {
    /*padding: 0.6em;
	border-color: #ffffff;*/
    background: #fafafc;
    border: 1px solid #dde5eb;
    xpadding: 1em;
    margin-bottom: 12px;
}

    #discussions .postcard .post {
        padding: 12px 1px 0;
    }

    #discussions .postcard .postcomments {
        background: #eff0f4;
        border-top: 1px solid #dce4eb;
        color: #91b2c5;
        padding: 0;
    }

    #discussions .postcard .postheader {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        /*NeoSoft*/
        color: #666666;
        /*color:#afb3bb;*/
        margin-bottom: 5px;
    }

    #discussions .postcard .postcomments .postheader {
        margin: -1px 0 0;
        padding: 6px 12px;
        border-top: 1px solid #dce4eb;
    }

    #discussions .postcard .postheader h1, #discussions .postcard .postheader h2, #discussions .postcard .postheader h3, #discussions .postcard .postheader h4, #discussions .postcard .postheader h5, #discussions .postcard .postheader h6, #discussions .postcard .postheader p, #discussions .postcard .postheader a, #discussions .postcard .postheader span {
        /*NeoSoft*/
        color: #767676;
        /*color: #4f4f4f;*/
        /*color: #afb3bb;*/
        font-weight: normal;
    }

    #discussions .postcard .post .postavatar, #discussions .postcard .postcomments .postavatar {
        flex: 0 0 auto;
        position: relative;
    }

        #discussions .postcard .post .postavatar img {
            max-height: 45px;
            max-width: 45px;
            margin-right: 10px;
        }

        #discussions .postcard .postcomments .postavatar img {
            max-height: 35px;
            max-width: 35px;
            margin-right: 10px;
        }

        #discussions .postcard .post .postavatar .presence {
            position: absolute;
            right: 8px;
            top: 32px;
            height: 12px;
            width: 12px;
            border: 1px solid white;
            border-radius: 10px;
        }

        #discussions .postcard .postcomments .postavatar .presence {
            position: absolute;
            right: 5px;
            top: 21px;
            height: 12px;
            width: 12px;
            border: 1px solid white;
            border-radius: 10px;
        }

        #discussions .postcard .post .postavatar .prescence-offline {
            display: none;
        }

    #discussions .postcard .postauthor {
        flex: 2 1 0;
    }

    #discussions .postcard .postauthorname {
        margin-bottom: 3px;
    }

        #discussions .postcard .postauthorname a {
            color: #002B5C;
            text-decoration-line: underline;
        }

    #discussions .postcard .postcomments .postauthor img {
        margin: auto;
        width: 100%;
        max-width: 300px;
        max-height: 100%;
    }

    #discussions .postcard .post .postdate {
        font-size: 0.75em;
        margin-bottom: 10px;
    }

    #discussions .postcard .post .postoptions {
        flex: 0 0 auto;
    }

    #discussions .postcard .post .postoptions {
        color: #3b3b3b;
    }

    #discussions .postcard .postcontent, #discussions .postcard .postcontent p {
        /*NeoSoft*/
        color: #756867 !important;
        /*color: #4f4f4f !important;*/
        /*color: #3b3b3b !important;*/
        margin-bottom: 3px;
    }

    #discussions .postcard .postcontent a {
        text-decoration: underline;
    }

    #discussions .postcard .postactions {
        background: #eff0f4;
        padding: 12px 1px;
        color: #91b2c5;
        border-top: 1px solid #dce4eb;
    }

        #discussions .postcard .postactions h1, #discussions .postcard .postactions h2, #discussions .postcard .postactions h3, #discussions .postcard .postactions h4, #discussions .postcard .postactions h5, #discussions .postcard .postactions h6, #discussions .postcard .postactions p, #discussions .postcard .postactions a, #discussions .postcard .postactions span {
            color: #333333;
            font-weight: normal;
        }

        #discussions .postcard .postactions .label {
            xcolor: #fff !important;
        }

    #discussions .postcard .discussion-meta {
        margin-bottom: 0;
    }

    #discussions .postcard .st_sharethis {
        font-size: 12px;
        line-height: 12px;
        margin: 0;
    }

    #discussions .postcard .stButton {
        font-size: 12px;
        line-height: 12px;
        margin: 0;
        float: left;
    }

        #discussions .postcard .stButton .sharethis {
            xbackground: none !important;
        }

        #discussions .postcard .stButton .chicklets {
            color: #91b2c5;
            font-weight: normal;
            font-family: "Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif !important;
            font-size: 12px;
            line-height: 12px;
            padding: 0;
            padding-left: 20px;
            display: block;
        }


    #discussions .postcard .discussion-reply {
        background: #eff0f4;
        border-top: 1px solid #dce4eb;
        padding: 12px 1px 0;
    }

#discussions .discussion-reply .discussion-field textarea {
    border: 1px solid #dde5eb;
    padding: 5px 30px 5px 5px;
    height: auto;
    min-height: 30px;
    margin-bottom: 12px;
}

#discussions .discussion-reply #commentFile .panel {
    margin-bottom: 12px;
    background: #eff0f4;
    border-top: 1px solid #dce4eb;
}

#discussions .discussion-reply #commentFile .commenttags {
    margin-bottom: 0;
}

#discussions .discussion-reply button {
    height: auto;
    margin-bottom: 12px;
}

#discussions .icon-remove {
    /*color: #afb3bb;*/
    color: #4f4f4f;
}

.k-i-close, .k-delete {
    cursor: pointer;
}

.discussion-feed {
    margin-top: 1.25em;
}

    .discussion-feed .inline-list {
        color: #6f6f6f;
        font-size: 0.7em;
    }

    .discussion-feed .section-container > .section > .title {
        background: none;
        border: none;
        width: auto;
    }

#discussions .postcard .postcomments a.moreComments {
    float: left;
    padding: 13px 0 12px;
    font-size: 0.8em;
    line-height: 1.4em;
}

.recommendedcard {
    border-color: #002B5C !important;
    border-top-width: 7px !important;
}

    .recommendedcard .post {
        padding-top: 7px !important;
    }

.pinnedcard {
    border-color: #0089ba !important;
    border-top-width: 7px !important;
}

    .pinnedcard h1, .pinnedcard h2, .pinnedcard h3, .pinnedcard h4, .pinnedcard h5, .pinnedcard h6, .pinnedcard p, .pinnedcard a, .pinnedcard span {
        font-weight: normal !important;
        line-height: normal !important;
    }

    .pinnedcard .post {
        padding-top: 7px !important;
    }

.activepin {
    color: #002B5C !important;
}

.flaggedcard {
    border-color: #002B5C !important;
    border-top-width: 7px !important;
}

    .flaggedcard h1, .flaggedcard h2, .flaggedcard h3, .flaggedcard h4, .flaggedcard h5, .flaggedcard h6, .flaggedcard p, .flaggedcard a, .flaggedcard span {
        font-weight: normal !important;
        line-height: normal !important;
    }

    .flaggedcard .post {
        padding-top: 7px !important;
    }

.activeflag {
    color: #002B5C !important;
}

#discussions .recommendedcard #browse {
    margin-bottom: 16px;
}

#discussions .recommendedcard ul {
    margin: 0 !important;
}

#discussions .recommendedcard .thumbnail-frame {
    xborder: 1px solid #d4dae3;
}

#discussions .postcard #browse ul.gridfive li .thumbnail-frame {
    background-color: #eff0f4;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

#discussions .postcard #browse ul.gridfive li ul li .thumbnail-frame {
    height: 125px;
}

#discussions .postcard #browse .thumbnail-frame .overlay {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 40%, rgba(0, 0, 0, 1) 100%);
    bottom: 0;
    color: #fff;
    left: 0;
    position: absolute;
    width: 100%;
}

#discussions .postcard #browse ul.gridfive li .thumbnail-frame .overlay {
    padding: 2em;
}

#discussions .postcard #browse ul.gridfive li ul li .thumbnail-frame .overlay {
    padding: 15px;
}

.recommendedcard h1, .recommendedcard h2, .recommendedcard h3, .recommendedcard h4, .recommendedcard h5, .recommendedcard h6, .recommendedcard p, .recommendedcard a, .recommendedcard span {
    xcolor: #fff;
    font-weight: 500;
    xmargin: 0;
    line-height: normal;
}

.recommendeditem {
    margin-bottom: 16px !important;
    float: left;
    width: 100% !important;
}

    .recommendeditem .box-icon {
        margin-top: 23px !important;
    }

    .recommendeditem .recommended-group {
        float: left;
        padding: 0;
        position: relative;
        width: 100% !important;
    }

        .recommendeditem .recommended-group .group-img {
            border-radius: 50%;
            height: 65px;
            left: 16px;
            max-height: none !important;
            max-width: none !important;
            object-fit: cover;
            opacity: 1;
            width: 65px;
        }

        .recommendeditem .recommended-group .group-text {
            margin: 20px 0 10px !important;
            text-align: left;
        }

        .recommendeditem .recommended-group .button {
            background: #eff0f4 none repeat scroll 0 0;
            border: 1px solid #dce4eb;
            color: #3b3b3b;
            margin: 20px 0 10px;
        }

@media only screen and (max-width: 880px) {
    .recommended-group .group-text, .recommended-group {
        text-align: center !important;
    }

    /*#badges .section-container.tabs {
        min-width: 1000px;
    }*/

    /*#badges {
        width: 100%;
        overflow: scroll;
    } Keep these commented for now*/
}

#passwordChangeForm {
    padding-top: 0;
}

.passwordRules ul {
    padding-left: 1em;
}

.passwordRules li {
    list-style-type: none;
}

#passwordChangeForm button {
    min-width: 10em;
}

.passwordRulesContainer {
    padding: 0 0 0 2em;
}

.passwordRulesContainer .pwdPass {
    display: none;
    color: #090;
}

.passwordRulesContainer .pwdFail {
    color: #900;
}

.passwordRulesContainer .ruleGroupPasses .pwdPass {
    display: inline;
}

.passwordRulesContainer .ruleGroupPasses .pwdFail {
    display: none;
}

.passwordRulesContainer ul li .pwdPass {
    display: none !important;
}

.passwordRulesContainer ul li .pwdFail {
    display: inline !important;
}

.passwordRulesContainer ul li.rulePasses .pwdPass {
    display: inline !important;
}

.passwordRulesContainer ul li.rulePasses .pwdFail {
    display: none !important;
}

.box-icon-container {
    width: 100%;
    text-align: center;
}

.box-icon {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: 80px;
    margin-top: 80px;
    position: relative;
    width: 80px;
    text-align: center;
    opacity: 0.6;
}

    .box-icon i {
        color: #fff;
        ;
        font-size: 30px;
        height: 30px;
        left: 50%;
        margin-left: -15px;
        margin-top: -15px;
        position: absolute;
        text-align: center;
        top: 50%;
        width: 30px;
    }

.fileTile {
    position: relative;
    height: 95px;
    margin: 15px;
}

    .fileTile .gridExtension {
        position: absolute;
        bottom: 0;
        margin-bottom: 0;
        text-transform: none !important;
    }


.courseTile {
    height: 40px;
    margin: 15px 10px 5px;
    position: relative;
}

    .courseTile .author-container {
        width: 30%;
    }

        .courseTile .author-container img {
            border-radius: 50%;
            height: 40px !important;
            object-fit: cover;
            opacity: 1;
            width: 40px !important;
        }

.courseText {
    margin: 0 15px 15px;
    xheight: 54px;
    xoverflow: hidden;
}

/*.fileTile {
          position: relative;
          top: 50%;
          transform: translateY(-50%);
        }*/

.groupTile .overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.5) !important;
    padding: 0 !important;
}

.moreRecommended {
    text-align: center;
    background: #415766 !important;
}

    .moreRecommended span {
        font-size: 16px;
        line-height: 123px;
        font-weight: normal;
        color: white;
    }

/*Recommended Posts*/

/*Recommended Courses*/

.recommended-course {
    padding: 0;
    position: relative;
    background: #fafafc;
    float: left;
    xmin-height: 175px;
    width: 100%;
    border: 1px solid #dde5eb;
    margin-bottom: 16px !important;
}


    .recommended-course .thumbnail-frame {
        height: 75px;
        border: none;
        background-color: #373737;
        position: relative;
        width: 100%;
    }


        .recommended-course .thumbnail-frame img {
            position: relative;
        }

        .recommended-course .thumbnail-frame .course-bg {
            position: absolute;
            left: 0;
            xheight: 100%;
            width: 200%;
            opacity: 0.7;
            margin: 0 !important;
            xmax-height: 100% !important;
            max-width: 100% !important;
        }

    .recommended-course .course-container {
        position: relative;
        xtext-align: center;
        xtop: 0;
        width: 100%;
        xmargin-top: -50px;
        xdisplay: flex;
        padding-bottom: 16px;
    }

        .recommended-course .course-container .button {
            background: #eff0f4;
            border: 1px solid #dce4eb;
            xcolor: #91b2c5;
            color: #3b3b3b;
            margin: 20px 0 10px;
        }

    .recommended-course .course-img {
        border-radius: 50%;
        xdisplay: inline-block;
        height: 100px;
        object-fit: cover;
        opacity: 1;
        width: 100px;
        margin: -50px 0 0 0;
        max-height: none !important;
        max-width: none !important;
        xposition: absolute;
        xtop: 50px;
        left: 16px;
        xflex: 0 0 auto;
    }

    .recommended-course .courseText {
        xflex: 2 1 0;
        xpadding: 32px 16px 16px 132px;
        xheight: 100px;
        margin: 20px 0 10px !important;
        text-align: left;
    }

@media only screen and (max-width: 880px) {
    .recommended-course .courseText {
        text-align: center;
    }
}

.recommended-course .courseText h5 {
    color: #3b3b3b !important;
}

.recommended-course .course-container .course-info {
    position: relative;
    margin-top: 10px;
}

/*Recommended Courses End*/

nav.nav-breadcrumbs {
    padding-left: 0.8em;
    padding-top: 0.5em;
    padding-bottom: 1em;
    font-weight: bolder;
    font-size: 1.2em;
}

    nav.nav-breadcrumbs ol {
        margin: 0;
    }

    nav.nav-breadcrumbs li {
        display: inline;
    }

        nav.nav-breadcrumbs li::before {
            content: '> ';
        }

        nav.nav-breadcrumbs li:first-of-type::before {
            content: '';
        }

    nav.nav-breadcrumbs a[aria-current] {
        color: #767676;
        cursor: default;
    }

.cd-container {
    width: 90%;
    max-width: 768px;
    margin: 2em auto;
}

    .cd-container::after {
        /* clearfix */
        content: '';
        display: table;
        clear: both;
    }

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: rgba(0, 43, 92, 0.8) url(/Content/themes/plp/img/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

    .cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
        -webkit-transition: opacity .3s 0s, visibility 0s 0s;
        -moz-transition: opacity .3s 0s, visibility 0s 0s;
        transition: opacity .3s 0s, visibility 0s 0s;
    }

    .cd-top.cd-is-visible {
        /* the button becomes visible */
        visibility: visible;
        opacity: 1;
        z-index: 100;
    }

    .cd-top.cd-fade-out {
        /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
        opacity: .5;
    }

.no-touch .cd-top:hover {
    background-color: #415766;
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .move-left.open {
        left: 40px !important;
    }

    .move-left-coaching.open {
        left: 749.15px !important;
    }

    .cd-top {
        right: 20px;
        bottom: 20px;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-top {
        height: 60px;
        width: 60px;
        right: 30px;
        bottom: 30px;
    }
}



/* End of Discussion's Misc Code */

/* Item.cshtml Code */
.selector-wrapper {
    margin-bottom: 0.8em;
}

    .selector-wrapper .selector {
        padding: 0.167em 0.8em;
        margin: 0;
        border-top: solid 1px #C5C5C5;
        border-bottom: solid 1px #C5C5C5;
    }

        .selector-wrapper .selector .attributes {
            margin: 10px auto;
        }

        .selector-wrapper .selector .action {
            margin: 0.8em;
        }


.item-meta {
    display: block;
    font-size: 0.85em;
    color: #6f6f6f;
    float: left;
    margin-right: 1.375em;
    margin-bottom: 1.375em;
}

    .item-meta a {
        color: #6f6f6f;
    }

        .item-meta a:hover {
            color: #0089ba;
        }

ul.relatedResources {
    list-style: none;
}

    ul.relatedResources li {
        margin-bottom: 10px;
    }

/* End of Item.cshtml Code */

/* _discussion.cshtml Code */
.discussion-meta {
    display: block;
    font-size: 0.75em;
    color: #6f6f6f;
    float: left;
    margin-right: 1.375em;
    margin-bottom: 1.375em;
}

.notification-switch p {
    font-size: 12px;
    margin-top: 5px;
    color: #6f6f6f;
}

.title-bar {
    background: #e7e7e7;
    padding: 0.5625em 0.875em;
    overflow: hidden;
    display: block;
}

/* _userResults code*/
.user-results h6, .user-results p {
    height: 1.4em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 0.25em;
}

.user-results p {
    /*NeoSoft*/
    /*color: #4d4d4d;*/
    color: #6B6B6B;
}


/* End of _userResults code*/

/* Messages.cshtml code*/
.message-menu {
    background: #F2F2F0;
    border: 1px solid #CCCCCC;
    border-top: 0;
    margin-bottom: 0;
    border-left: 0;
    padding-bottom: 500em;
    margin-bottom: -500em;
}

    .message-menu .section-container {
        padding-top: 20px;
    }

    .message-menu > section > .title, .message-menu > .section-container.vertical-nav > .section > .title {
        border-right: 0;
        border-left: 0;
    }

        .message-menu > .section-container.vertical-nav > .section > .title a {
            padding: 0.7em;
        }

        .message-menu > .section-container.vertical-nav > .section > .title p {
            margin-bottom: 0;
        }
/* End of Messages.cshtml code*/

/* _Layout.cshtml code*/
#o-wrapper {
    position: relative;
    min-height: 100vh;
    padding-bottom: 4em;
}

.footer {
    background: #002B5C;
    padding: 24px 0 10px;
    color: #c4c4c4;
    position: absolute;
    bottom: 0;
    width: 100%;
}

    .footer a {
        color: #808080;
    }
/* End of _Layout.cshtml code*/

/* Profile Page code*/
/*#badgepanel { border: 1px solid #d9d9d9;width: 100%;padding-top: 15px;padding-bottom: 15px;margin-bottom: 15px;}*/

/*#badge {
	background: #FAFAFC;
}*/

.panel.sidebar-panel-left {
    border-left: none;
    background: none repeat scroll 0 0 #EFF0F4;
    margin-bottom: -500em;
    padding-bottom: 500em;
}

#badges .section-container.tabs {
    border-bottom: 1px solid #D4DAE3;
}

    #badges .section-container.tabs > section.active > .title, #badges .section-container.tabs > .section.active > .title {
        background: #fafafc !important;
        z-index: 0 !important;
        border-bottom: none !important;
    }

    #badges .section-container.tabs > section > .title a, #badges .section-container.tabs > .section > .title a {
        border-right: 0 !important;
        padding-bottom: 13px;
        /*NeoSoft*/
        /*color:#AAB2CA;*/
        /*color: #4f4f4f;*/
        color: #516C81;
        font-size: 0.9em;
    }

    #badges .section-container.tabs > section > .title:hover, #badges .section-container.tabs > .section > .title:hover {
        background: none !important;
    }

    #badges .section-container.tabs > section > .title a:hover, #badges .section-container.tabs > .section > .title a:hover {
        /*NeoSoft*/
        /*color:#415766 !important;*/
        color: #000 !important;
    }

#badges a.active {
    position: relative;
    border-bottom: 4px solid #002b5c !important;
    padding-bottom: 10px !important;
    /*NeoSoft*/
    /*color: #415766 !important;*/
    color: #516C81 !important;
}



/*#badge.active:after
		{
			content: "";
			position: absolute;
			top: 100%;
			left: 40%;
			border-top: 10px solid black;
			border-top-color: inherit;
			border-left: 10px solid transparent;
			border-right: 10px solid transparent;
		}*/

#badgepanel {
    border: none;
    margin-top: 2px;
    width: 100%;
}


#badges #badgepanel .newsfeedsort {
    display: none;
}


#activities {
    margin-bottom: 10px;
}

    #activities.loadmore {
        overflow: auto;
        overflow-x: hidden;
    }

    #activities p {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #activities a {
        float: left;
        width: 100%;
        /*NeoSoft*/
        /*color: #6F6F6F;*/
        /*color: #4F4F4F;*/
        color: #767676;
    }

        #activities a:hover {
            background: #e1e2e4;
        }

.activity {
    background: white;
    border-width: 2px;
}
/* End of Profile Page code*/

/* _discussion.cshtml code*/

a.message-user {
    color: #999;
}

    a.message-user:hover {
        color: #6F6F6F;
    }
/* end of _discussion.cshtml code*/

/*Navigation Search Autofill*/

.ui-helper-hidden {
    display: none;
}

.ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
    content: "";
    display: table;
}

.ui-helper-clearfix:after {
    clear: both;
}

.ui-helper-clearfix {
    zoom: 1;
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0);
}

.ui-state-disabled {
    cursor: default !important;
}

.ui-resizable {
    position: relative;
}

.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
}

.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

/* surrounding box for the navbar search */
/* Additional css changes to jQuery script in _Layout.cshtml*/
.ui-autocomplete {
    position: fixed;
    xposition: absolute;
    cursor: default;
    background: #FFFFFF;
    border-left: 1px solid #BAC2CF;
    border-right: 1px solid #BAC2CF;
    border-top: 0;
    z-index: 99999;
}

.lp-autocomplete {
    z-index: 3 !important;
    position: relative !important;
}

.ui-menu {
    list-style: none;
    padding: 2px;
    margin: 0;
    display: block;
    float: left;
}

    .ui-menu .ui-menu {
        margin-top: -3px;
    }
    /*Individual Cells for the navbar search drop down results*/
    .ui-menu .ui-menu-item {
        margin: 0;
        padding-left: 0;
        zoom: 1;
        float: left;
        clear: left;
        width: 100%;
        border-bottom: 1px solid #d4d4d4;
    }

        .ui-menu .ui-menu-item a {
            text-decoration: none;
            display: block;
            padding: .2em .4em;
            line-height: 1.5;
            zoom: 1;
            color: #4D4D4F;
        }

.ui-menu-item a:hover {
    background: #353535;
    color: #fff;
}

.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
    font-weight: normal;
    margin: -1px;
}



.section-container.tabs {
    background: #fafafc;
    border: 0;
    border-top: 1px solid #D4DAE3;
}

    .section-container.tabs > section > .title, .section-container.tabs > .section > .title {
        background: #fafafc;
        border: 0;
    }

        .section-container.tabs > section > .title a, .section-container.tabs > .section > .title a {
            border-right: 1px solid #D4DAE3;
        }

    .section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title {
        border-bottom: 1px solid #ffffff;
    }

    .section-container.tabs > section .content, .section-container.tabs > .section .content {
        border: none;
        border-top: 1px solid #D4DAE3;
    }

    .section-container.tabs > section:last-child .title, .section-container.tabs > .section:last-child .title {
        border-right: none;
    }

.right-sidebar-panel {
    background: #eff0f4;
    margin-bottom: 0;
    border: 1px solid #D9D9D9;
    border-left: 0;
    padding-bottom: 500em;
    margin-bottom: -500em;
    border-top: 0;
}

.panel.sidebar-panel {
    background: #eff0f4;
    margin-bottom: 0;
    border-right: 0;
    padding-bottom: 500em;
    margin-bottom: -500em;
}

.panel.right-sidebar-panel {
    background: #eff0f4;
    margin-bottom: 0;
    border-left: 0;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 500em;
    margin-bottom: -500em;
}

    .panel.sidebar-panel .sidebar-content, .panel.right-sidebar-panel .sidebar-content {
        margin-bottom: 1.25em;
    }

.sidebar-content .dashboard-header {
    height: 40px;
    margin-bottom: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
}

    .sidebar-content .dashboard-header p {
        font-size: 11px;
        margin: 0;
        line-height: 25px;
    }

/* File Page Kendo UI */

.userfile-upload {
    font-size: 12px;
}

div.k-treeview {
    overflow: hidden;
}

.k-treeview span.k-in {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.k-sprite {
    background-image: url("img/fileicons-sprite.png");
}

.rootfolder, .folder {
    background-position: 0 0;
}

.pdf {
    background-position: 0 -16px;
}

.doc {
    background-position: 0 -33px;
}

.xls {
    background-position: 0 -50px;
}

.ppt {
    background-position: 0 -67px;
}

.mov {
    background-position: 0 -84px;
}

.image {
    background-position: 0 -101px;
}

.html {
    background-position: 0 -186px;
}

.mp3 {
    background-position: 0 -135px;
}

.txt {
    background-position: 0 -152px;
}

.default-file {
    background-position: 0 -169px;
}

.web {
    background-position: 0 -186px;
}

.code {
    background-position: 0 -118px;
}


/* Event Calendar */

.calendar {
    width: 100px;
    margin: 20px 0;
}

.calendar-header {
    background-color: #9C2A2C;
    border-color: #8F2629 #8F2629 -moz-use-text-color;
    border-style: solid solid none;
    border-width: 1px 1px medium;
    color: #FFFFFF;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.calendar-body {
    background-color: #FAFAFA;
    border-color: #E6E6E6 #E6E6E6;
    border-right: 1px solid #E6E6E6;
    border-style: none solid solid;
    border-width: medium 1px 1px;
    color: #000000;
    font-size: 36px;
    font-weight: bold;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

.event-calendar table {
    width: 100%;
}

.event-yes {
    border-width: 0px;
    border-style: solid;
    border-color: #457A1A !important;
    font-size: 0.875em;
    font-weight: bold;
    margin-bottom: 1.25em;
    padding: 0.6875em 1.3125em 0.75em 0.6875em;
    position: relative;
    background-color: #def7f1 !important; /* original color #078243, #def7f1 */
    color: #ffffff;
}

    .event-yes a {
        color: #000;
    }

.ui-datepicker {
    height: auto;
    margin: 0 auto;
}

#ui-datepicker-div {
    display: none;
}

.ui-datepicker-calendar {
    font-size: 0.8em;
    width: 100%;
}

.ui-datepicker a {
    text-decoration: none;
    font-size: 1.2em;
}

    .ui-datepicker a:focus {
        border: 2px solid #002b5c !important;
    }

.ui-datepicker table {
    width: 100%;
}

.ui-datepicker-header {
    background: #F7F7F7;
    font-weight: bold;
    line-height: 30px;
    border-width: 1px 1px 0;
    border-style: solid;
    border-color: #DDDDDD;
}

.ui-datepicker-title {
    text-align: center;
}

.ui-datepicker thead {
    background-color: #f7f7f7;
    background-image: -moz-linear-gradient(top, #f7f7f7 0%, #f7f7f7 100%);
    background-image: -webkit-gradient(linear, left top, left bottombottom, color-stop(0%,#f7f7f7), color-stop(100%,#f7f7f7));
    background-image: -webkit-linear-gradient(top, #f7f7f7 0%,#f7f7f7 100%);
    background-image: -o-linear-gradient(top, #f7f7f7 0%,#f7f7f7 100%);
    background-image: -ms-linear-gradient(top, #f7f7f7 0%,#f7f7f7 100%);
    background-image: linear-gradient(top, #f7f7f7 0%,#f7f7f7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f7f7f7',GradientType=0 );
    border-bottom: 1px solid #bbb;
}


.ui-datepicker th, .ui-datepicker td {
    text-align: center;
}

.ui-datepicker th {
    text-transform: uppercase;
    color: #707070;
}


.ui-datepicker-today .ui-state-active {
    background: #47B964;
    color: #fff;
    position: relative;
    margin: -1px;
    padding: 6px 7px;
}

.ui-datepicker-today a {
    color: #000;
}

.ui-datepicker-prev, .ui-datepicker-next {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    background-image: url("img/arrow.png");
    background-repeat: no-repeat;
    line-height: 600%;
    overflow: hidden;
}

.ui-datepicker-prev {
    float: left;
    background-position: center -30px;
}

.ui-datepicker-next {
    float: right;
    background-position: center 0px;
}

.dp-highlight-holiday span:before, .dp-highlight-holiday a:before {
    content: "\2022\00a0";
}
/*.dp-highlight-holiday span:after, .dp-highlight-holiday a:after { content: "\A \2022"; white-space:pre; }*/
/*.dp-highlight-holiday { font-weight: bold;}*/


/* John's Added CSS Code */

/* found in userResults */

.row .results-container {
    margin-bottom: 1.25em;
}

.results-panel {
    background: #ffffff;
    border: 1px solid #d4dae3;
    padding: 1.25em;
    margin-bottom: 1.25em;
    width: 100%;
    background: #fafafc;
    height: 120px;
}

    .results-panel:hover {
        background: #EFF0F4;
    }

    .results-panel .likes-video, .results-panel .comments-video, .results-panel .duration-video {
        color: #4d4d4d;
    }

        .results-panel .likes-video i, .results-panel .comments-video i, .results-panel .duration-video i {
            margin-right: 5px;
        }

.row-results {
    padding-top: .7em !important;
    padding-bottom: .7em !important;
    border: 1px solid #ddd;
    margin: 0 0 0.7em !important;
    background: #fafafc;
}

    .row-results:hover {
        background: #EFF0F4;
    }

    .row-results .button {
        margin: 1.25em 0;
    }

.hover {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 62.5em;
    background: gray;
    *zoom: 1;
}

/*

  .row2:before, .row2:after {
    content: " ";
    display: table; }
  .row2:after {
    clear: both; }
  .row2.collapse .column,
  .row2.collapse .columns {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    float: left; }
  .row2 .row2 {
    width: auto;
    margin-left: -0.9375em;
    margin-right: -0.9375em;
    margin-top: 0;
    margin-bottom: 0;
    max-width: none;
    *zoom: 1; }
    .row2 .row2:before, .row .row:after {
      content: " ";
      display: table; }
    .row2 .row2:after {
      clear: both; }
    .row .row.collapse {
      width: auto;
      margin: 0;
      max-width: none;
      *zoom: 1; }
      .row .row.collapse:before, .row .row.collapse:after {
        content: " ";
        display: table; }
      .row .row.collapse:after {
        clear: both; }

*/

.rowsearchresults { /*not used*/
    height: 100px;
}

.link_underline:hover { /*userResults*/
    text-decoration: underline;
}

.row_workspace { /*_workspaces*/
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

    .row_workspace:hover {
        padding: 10px;
        background: #f8f8f8;
    }

.results_workspaces { /*_workspacesResults*/
    border-top: 1px solid #ddd;
    padding: 10px;
}

    .results_workspaces:hover {
        border-top: 1px solid #ddd;
        padding: 10px;
        background: #f8f8f8;
    }

.likes-video { /*_contentResults*/
    color: #FBF8F5;
    display: inline-block;
    color: #fff;
    margin-right: 15px;
}

.comments-video { /*_contentResults*/
    color: #FBF8F5;
    display: inline-block;
    color: #fff;
    margin-right: 15px;
}

.duration-video { /*_contentResults*/
    color: #FBF8F5;
    display: inline-block;
    color: #fff;
    margin-right: 15px;
}

.bg-video-search { /* doesn't work???, height issue */
    width: 100%;
    height: 100%;
    background: #4f4c4c;
    padding: 10px;
    height: 132px;
    border: 0.5px solid #ddd;
}

.profile-following { /*_following.cshtml*/
    background: #fff;
    border: 1px solid #ddd;
    height: 110px;
    margin-bottom: 10px;
    padding: 5px;
}

    .profile-following:hover { /*_following.cshtml*/
        background: #f6f6f6;
        border: 1px solid #ddd;
        padding: 5px;
    }

.profile-follower { /*_followers.cshtml*/
    background: #fff;
    border: 1px solid #ddd;
    height: 110px;
    margin-bottom: 10px;
    padding: 5px;
}

    .profile-follower:hover { /*_followers.cshtml*/
        background: #f6f6f6;
        border: 1px solid #ddd;
        padding: 5px;
    }

.profile-fav { /* _favcontent.cshtml */
    background: #fff;
    border: 1px solid #ddd;
    height: 110px;
    margin-bottom: 10px;
    padding: 5px;
}

    .profile-fav:hover { /* _favcontent.cshtml */
        background: #f6f6f6;
        border: 1px solid #ddd;
        padding: 5px;
    }

#results-tabs {
    background: none repeat scroll 0 0 #fafafc;
    border: 0;
    border-bottom: 1px solid #D4DAE3;
    margin-bottom: 1.25em;
}

    #results-tabs ul li a, #results-tabs ul li label {
        color: #5f5f5f;
        font-size: 1em;
        font-weight: normal;
        line-height: 1.4em;
        padding-bottom: 13px;
        border: none;
        margin: 0;
        padding: 0.9375em;
        display: inline-block;
        cursor: pointer;
        text-align: center;
    }

        #results-tabs ul li a, #results-tabs ul li label:hover {
            color: #000;
        }

    #results-tabs li a.active-result, #results-tabs li label.active-result {
        border-bottom: 4px solid #002B5C !important;
        /*NeoSoft*/
        /*color: #415766 !important;*/
        color: #5f5f5f !important;
        padding-bottom: 10px !important;
    }

.navbar-link { /* _navbar.cshtml */
    color: #fff;
    text-decoration: none;
}

    .navbar-link:hover { /* _navbar.cshtml */
        text-decoration: underline;
    }

.navbar-tbl { /* _navbar.cshtml */
    background: #585858;
}

.tbl-brdr { /* _navbar.cshtml */
    border-right: 1px solid #d9d9d9;
}

input.k-textbox[type="text"]:disabled {
    color: #6D6D6D;
}

input.k-textbox[type="text"]:hover:disabled {
    background: #dddddd;
    border-color: #cccccc;
}

#fileTree .k-state-selected { /* My Files left column highlighted section */
    background: none !important;
    font-weight: bold !important;
    margin: none !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 2px 4px 2px 3px !important;
}

#fileTree .k-state-focused { /* My Files left column highlighted section,  */
    background: none !important;
    font-weight: bold !important;
    margin: none !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 2px 4px 2px 3px !important;
}

#fileTree .k-state-hover { /* My Files left column highlighted section */
    background: none !important;
    margin: none !important;
    background-image: none !important;
    border: none !important;
    padding: 2px 4px 2px 3px !important;
    color: #2795B6;
    box-shadow: none !important;
    padding: none !important;
}

#fileTree .k-minus {
    /*background: none !important;*/
    border: none !important;
    /*background-image: none !important;*/
}

#fileTree .k-in {
    background: none;
}

.leftcol-cell {
    font-size: 70%;
    border-right: 1px solid #d6d6d6;
}

.midcol-cell {
    text-align: left;
    font-size: 70%;
    color: #d6d6d6 !important;
    border-right: 1px solid #d6d6d6;
}

/*.reveal-modal {
           visibility: hidden;
           display: none;
           position: fixed !important;
           left: 60% !important;
           z-index: 99;
           height: auto;
           background-color: #fff;
           margin-left: -40%;
           width: 40% !important;
           background-color: white;
           padding: 1.25em;
           border: solid 1px #666666;
           -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
           box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
           top: 50px; }*/

.notification-cell {
    padding: 10px;
    background-color: #f6f6f6;
    margin-bottom: 10px;
}

    .notification-cell:hover {
        padding: 10px;
        background-color: #f1f1f1;
        margin-bottom: 10px;
    }

.link_underline_ws { /*_workspaceResults*/
    font-weight: normal;
    margin-bottom: 2px;
    text-decoration: none;
}

    .link_underline_ws:hover { /*_workspaceResults*/
        color: #0089ba;
        margin-bottom: 2px;
        font-weight: normal;
        text-decoration: underline;
    }

.search-filter {
    font-weight: normal;
}

    .search-filter:visited {
        font-weight: bold;
    }

.roleSelect {
    background-color: #def7f1 !important;
    color: #000 !important;
}

.message-delete {
    font-weight: bold;
}

/*.ui-menu-header {
            background:;
            color:;
        }*/

.courses-list-row {
    border-bottom: 1px solid #d6d6d6 !important;
    background: white !important;
    padding-bottom: 20px;
    font-size: 14px;
}

    .courses-list-row:hover {
        background: #f9f9f9 !important;
        padding-bottom: 20px;
    }

.courses-list-data {
    font-weight: 500 !important;
    /*vertical-align:text-top !important;*/
}

    .courses-list-data button {
        margin-bottom: 0;
    }

.button-profile-search { /**/
    border-width: 1px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 1em;
    font-weight: bold;
    line-height: 1;
    position: relative;
    text-align: center;
    text-decoration: none;
    padding: 0.75em 1.5em 0.8125em;
    margin-top: 5px;
    margin-bottom: none;
}

.ws-edit-titles {
    font-weight: bold !important;
    font-size: 16px;
    margin-bottom: 3px;
    color: #4D4D4D;
    cursor: pointer;
    display: block;
}

.k-button-set {
    float: left;
    height: 30px;
    background-color: #E3E3E3 !important;
    border-color: #C5C5C5 !important;
    color: #2E2E2E !important;
    text-align: center !important;
    text-decoration: none !important;
    line-height: 1.66em !important;
    margin-top: .2em;
    padding-left: 5em;
    padding-right: 5em;
    border-style: solid;
    border-width: 1px;
    cursor: default;
    background-image: none, linear-gradient(to bottom, #F6F6F6 0px, #EAEAEA 100%);
    background-position: 50% 50%;
}

    .k-button-set:hover {
        background-color: #e1e1e1 !important;
        border-color: #C5C5C5 !important;
        color: #2E2E2E !important;
        text-align: center !important;
        text-decoration: none !important;
        line-height: 1.66em !important;
        padding-left: 5em;
        padding-right: 5em;
        border-style: solid;
        border-width: 1px;
        cursor: default;
        background-image: none, linear-gradient(to bottom, #e1e1e1 0px, #C5C5C5 100%);
        background-position: 50% 50%;
    }

    .k-upload-button:active{
        background-color: #002B5C !important;
        border-color: #002B5C !important;
        box-shadow: none !important;
    }
.tag-disclaimer {
    margin-bottom: none !important;
}

/*input[type="disclaim"], textarea {
            -moz-box-sizing: border-box;
            background-color: #FFFFFF;
            border: 1px solid #CCCCCC;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
            color: rgba(0, 0, 0, 0.75);
            display: block;
            font-family: inherit;
            font-size: 0.875em;
            height: 2.3125em;
            margin: 0 0 .2em;
            padding: 0.5em;
            transition: box-shadow 0.45s ease 0s, border-color 0.45s ease-in-out 0s;
            width: 100%;
        }*/


/* End of Reports Navigation*/
#reports-menu {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    white-space: normal !important;
    display: inline;
    height: auto !important;
    width: auto;
    padding: 3px;
    list-style: none outside none;
    font-weight: normal;
}

    #reports-menu h4 {
        font-weight: normal;
        margin: 0;
        /*Neosoft*/
        /*color: #415766;*/
        color: #537282;
    }

    #reports-menu li {
        padding: 10px 25px;
        color: #415766;
    }

        #reports-menu li a {
            /*Neosoft*/
            /*color: #415766;*/
            color: #58768a;
        }

    #reports-menu .active {
        xbackground-color: #D6D6D6 !important;
        xbackground-color: #e0e1e5 !important;
        background: #fafafc;
        border-left: 4px solid #002B5C;
        padding-left: 21px;
    }

        #reports-menu .active h4 {
            font-weight: normal;
        }

p.report-counts {
    font-size: 47px;
    font-weight: normal;
    margin-bottom: 0;
    line-height: normal;
    text-align: center;
}

p.report-counts-subtitle {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 0;
    line-height: normal;
    text-align: center;
}

.activereport {
    border-bottom: 4px solid #078243 !important;
}

.reportProgressLegend {
    margin-top: 10px;
    float: right;
}

    .reportProgressLegend p {
        margin-bottom: 0;
    }

.reportAssocNotAssigned {
    background-color:#ea9b56;
}
.reportStarted {
    background-color: #415766;
}

.reportInprogress {
    background-color: #0089ba;
}

.reportCompleted {
    background-color: #078243;
}

    .reportAssocNotAssigned h6, .reportStarted h6, .reportInprogress h6, .reportCompleted h6 {
        color: #ffffff;
        margin: 0.2em 0;
    }

.reportBoxColor {
    width: 15px;
    height: 15px;
    float: left;
    margin-right: 5px;
}

.reportHeaderBoxText {
    float: left;
    padding-right: 15px;
}

/* End of Reports Navigation*/



#adminreports {
    margin-top: 20px;
}

    #adminreports a {
        color: black;
    }

    #adminreports h4 {
        font-size: 30px;
        margin-bottom: 0;
        line-height: normal;
    }

    #adminreports p.subheader {
        font-size: 12px;
        margin-top: 0;
    }
/*#usage p, #activity p {margin-bottom:0;}*/
#coaching-kpi {
    float: left;
    margin: 15px 5px;
}

    #coaching-kpi a#badge {
        color: #222222;
    }

#courseabc .top-level {
    position: relative;
    width: 300px;
    height: 175px;
    vertical-align: middle;
    z-index: 1;
}

.coaching-report {
    position: absolute;
    z-index: 2;
    line-height: 110px;
    width: 110px;
    text-align: center;
}

    .coaching-report span {
        font-size: 30px;
    }

    .coaching-report sup {
        font-size: 18px;
    }

.course-report {
    width: 110px;
    height: 110px;
    float: left;
    margin: 0;
    padding: 0;
    top: 0;
}

.course-counts {
    width: 170px;
    height: 125px;
    float: right;
    top: 15px;
    margin: 0 10px;
}

    .course-counts p {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .course-counts .subtitle {
        font-size: 12px;
    }

.classroom-kpi {
    margin-bottom: 20px;
}

    .classroom-kpi #courseabc {
        position: relative;
        vertical-align: middle;
        z-index: 1;
    }

.classroom-chart {
    position: absolute;
    z-index: 2;
    line-height: 80px;
    width: 100px;
    text-align: center;
}

    .classroom-chart span {
        font-size: 16px;
    }

    .classroom-chart sup {
        font-size: 11px;
    }

.classroom-title {
    width: 50%;
    float: left;
}

.classroom-counts {
    width: 50%;
    height: 0px;
    float: right;
    top: 15px;
}

    .classroom-counts p {
        margin: 0;
        padding: 2px;
    }

    .classroom-counts .subtitle {
        font-size: 10px;
    }

    .classroom-counts hr {
        margin: 0;
        padding: 0;
    }


/*_bingSearchResults*/



.bing-search .panel {
    border: 0;
    background: #ebebeb;
}

.bing-search p {
    margin-bottom: 5px;
}

.bing-search h3 {
    font-weight: normal;
    font-size: 17px;
}

.bing-search cite {
    font-style: normal;
    color: #078243;
}

.bing-search-list {
    list-style-type: none;
    margin-bottom: 25px !important;
}

    .bing-search-list h3 {
        margin-bottom: 0;
    }


.bing-search-thumbnail .panel {
    height: 80px;
    padding: 1em;
    overflow: hidden;
    margin-bottom: 25px;
}

.bing-search-thumbnail h5, .bing-search-thumbnail p {
    margin: 0;
    line-height: normal;
}

.safeschools {
    display: none;
}

    .safeschools:active {
        display: normal;
    }

.rowspacing-prfl {
    margin-top: 20px;
}

.flex-video {
    xpadding-bottom: 53%;
}

    .flex-video #tch-video0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        overflow: visible !important;
    }

    .flex-video .oo-ctrls {
        width: 100% !important;
    }

#tch-video0 {
    width: 100% !important;
}
/* #tch-video0 > div {background: #e0ddd5; right: 0 !important;}
         #tch-video0 > div > div { width: 100% !important; background: #e0ddd5; right: 0 !important;}
            #tch-video0 > div > div > span {width: 100% !important; background: #e0ddd5; right: 0 !important;}
            .ooyala-player {
                width: 100% !important;
        }
            .tch-embed-box--share {display:;}*/

.profile-myfavs { /* _MyFavoriteItems.cshtml */
    border-bottom: 1px solid #ddd;
    padding-top: 10px;
    background: #fff;
}

    .profile-myfavs:hover { /* _MyFavoriteItems.cshtml */
        background: #f6f6f6;
    }

.top-fav-items { /*_MyFavoriteItems.cshtml */
    padding-left: 0px;
    padding-top: 30px;
    margin-left: 25px;
}

/*.fileownby {
            margin-top:3px;
            padding-bottom:15px;
            border-bottom:1px solid #c2c2c2; }*/

.bingDescript { /*_bingSearchResults */
    margin-bottom: .05em;
    margin-top: .05em;
    font-size: 12px;
}

.bingURL { /*_bingSearchResults */
    color: #0089ba;
    margin-bottom: 0px;
    padding-bottom: 0px;
    margin-top: .05em;
}

.bingTitle { /*_bingSearchResults */
    font-size: 15px;
    text-decoration: underline;
    color: blue;
}

.AdvSearch-SrchResults { /*_AdvancedSearch */
    margin-left: 10px;
    margin-right: 10px;
}

.AdvSearch-loading { /*_AdvancedSearch */
    position: fixed;
    top: 50%;
    left: 50%;
}

.headerBar-srchContent { /* Filters */
    background: #3F3F3F !important;
    width: 100%;
}

.wsResults-load {
    position: fixed;
    top: 50%;
    left: 58%;
}

#tblFilters h4 {
    /*margin-bottom:0.2em;*/
    line-height: normal;
    font-weight: normal;
}

    #tblFilters h4 small {
        font-size: 80%;
        cursor: pointer;
    }

#tblFilters p {
    line-height: 1.125em;
    margin-bottom: 0.1875em;
    color: #6f6f6f;
}

#tblFilters label.filterName {
    line-height: 1.125em;
    margin: 0.1875em 0;
    font-size: .75em;
}

#tblFilters hr {
    margin-top: 1em;
}

.textarea-size { /* _sendmessage */
    max-width: 100%;
    min-width: 30%;
    height: 50px;
}

/* sortable tables */
table.tablesorter {
    width: 100%;
    text-align: left;
}

    table.tablesorter thead tr .header {
        background-image: url(img/sort.gif);
        background-repeat: no-repeat;
        background-position: center right;
        cursor: pointer;
        padding: 0.5em 1em;
    }

    table.tablesorter tbody td {
        vertical-align: top;
    }

    table.tablesorter thead tr .headerSortUp {
        background-image: url(img/asc.gif);
    }

    table.tablesorter thead tr .headerSortDown {
        background-image: url(img/desc.gif);
    }

/*Style Sheet below wouldn't merge properly*/

.eventSched {
    font-size: 70%;
    border-right: 1px solid #d6d6d6;
}

.noEventSched {
    text-align: left;
    color: #d6d6d6;
    font-size: 70%;
}

.eventDay {
    width: 10%;
    font-size: 70%;
    color: black;
}

.avatarFllw { /*Following.cshtml*/
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.msgName {
    color: #5c5c5c;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.notify-rule { /*Notifications.cshtml*/
    border-bottom: 1px solid #d6d6d6;
}

.notify-avy { /*Notifications.cshtml*/
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

/*.imgBox {
            background: #fff;
            padding-top: 10px;
            min-width: 255px; }*/

.imgBoxBtn {
    height: 30px;
    margin-top: 10px;
    margin-left: 10px;
    font-size: 14px;
}

.imgBoxBtn2 {
    margin-bottom: 10px;
    margin-left: 10px;
    font-size: 14px;
}

.imgTraits {
    max-height: 225px;
    max-width: 225px;
    min-height: 225px;
    min-width: 225px;
}

.saveBtn { /*Settings.cshtml*/
    text-align: center;
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 10px;
}

.date-act { /*Settings.cshtml*/
    height: 60px;
    margin-bottom: 0px;
}

/*.rolesBox {
            list-style: none;
            line-height: .15em;
            max-height: 123px; }*/

.user-info-box {
    background: white;
}

.btnFloat {
    float: left !important;
}

.of-auto {
    overflow: auto;
}

.horizRule-uf { /*UploadedFiles*/
    color: #0089ba;
    height: 1px;
}

.fs6em { /*UploadedFiles*/
    font-size: 6em;
}

.fs2em { /*UploadedFiles*/
    font-size: 2em;
}

.textbox-constraint { /*May need to switch with textbox-constraint2, Workspace.cshtml*/
    max-width: 100%;
    min-width: 30%;
}

.save-ws {
    border: 10px solid #f1f1f1;
    background: #f1f1f1;
    height: 50px;
}

.img-invites {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.newevent-btn {
    border: 10px solid #f1f1f1;
    background: #f1f1f1;
    height: 50px;
}

.loading-pos {
    position: fixed;
    top: 50%;
    left: 58%;
}

.textwrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.messageflow {
    overflow: hidden;
    text-overflow: ellipsis;
}



/*Events: popup for dates*/
.ui-datepicker {
    z-index: 10000 !important;
    background-color: #FFFFFF;
    /*border: 1px solid;*/
}

.ui-timepicker-div .ui-widget-header {
    margin-bottom: 8px;
}

.ui-timepicker-div dl {
    text-align: left;
}

    .ui-timepicker-div dl dt {
        float: left;
        clear: left;
        padding: 0 0 0 5px;
    }

    .ui-timepicker-div dl dd {
        margin: 0 10px 10px 45%;
    }

.ui-timepicker-div td {
    font-size: 90%;
}

.ui-tpicker-grid-label {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

.ui-timepicker-rtl {
    direction: rtl;
}

    .ui-timepicker-rtl dl {
        text-align: right;
        padding: 0 5px 0 0;
    }

        .ui-timepicker-rtl dl dt {
            float: right;
            clear: right;
        }

        .ui-timepicker-rtl dl dd {
            margin: 0 45% 10px 10px;
        }

.ui-datepicker-calendar {
    z-index: 10000 !important;
}

.ui-priority-secondary {
    display: none;
}

.ui-datepicker-today a {
    /*color: red !important;*/
}

.ui-datepicker-close {
    margin-left: 60px;
}

.leftCell { /*Events Page*/
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    border-top: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

.midCell { /*Events Page*/
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    border-top: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

.rightCell { /*Events Page*/
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

/*.cancel-reason {
        max-width:326px;
        min-width:50px;}*/

.attendeeTab { /*Events Page*/
    position: relative;
    display: inline-block;
}

.dateTraits { /*Settings Page*/
    text-align: center;
    padding-top: 10px;
    padding-right: 22px;
    padding-bottom: 0px;
    padding-left: 20px;
}

.nmPadding {
    padding-left: 15px;
    padding-right: 15px;
}


/*_landing page*/
.admin-report {
    position: absolute;
    height: 90px;
    line-height: 90px;
    width: 100px;
    z-index: 2;
    text-align: center;
}

    .admin-report span {
        font-size: 30px;
    }

    .admin-report sup {
        font-size: 18px;
    }

.completion-counts {
    float: left;
    margin: 0 10px;
}

    .completion-counts p {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .completion-counts .subtitle {
        font-size: 12px;
    }

    .completion-counts hr {
        margin-bottom: 5px;
    }

.course-performance {
    position: relative;
    vertical-align: middle;
    z-index: 1;
}

.cp-grade {
    position: absolute;
    z-index: 2;
    width: 90px;
    height: 90px;
    text-align: center;
    top: 40px;
}

.cp-chart {
    position: relative;
    width: 90px;
    height: 90px;
    float: left;
}

.percentage-bars {
    width: 20%;
    height: 90px;
    float: left;
    top: 15px;
    position: relative;
    z-index: 0;
    margin-left: 10px;
}

.pb-noprogress {
    background-color: lightgrey;
    width: 100px;
    z-index: 2;
    height: 20px;
    margin-bottom: 20px;
}

.pb-noprogress2 {
    background-color: lightgrey;
    width: 100px;
    z-index: 2;
    height: 20px;
}

.pb-green {
    top: 0px;
    position: absolute;
    background-color: #5DA423;
    z-index: 1;
    height: 20px;
}

.pbg-text {
    top: 0px;
    position: absolute;
    z-index: 5;
    margin-left: 5px;
}

.pbr-text {
    position: absolute;
    z-index: 5;
    margin-left: 5px;
}

.pb-red {
    position: absolute;
    background-color: #9E0B0F;
    z-index: 1;
    height: 20px;
}

.lngrph-title {
    position: relative;
    vertical-align: middle;
    z-index: 1;
}


.helpMenuOverlay {
    background: black !important;
    width: 274px !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
    padding-bottom: 5px !important;
    padding-top: 10px !important;
    margin-top: -77px !important;
    min-height: 124px !important;
    margin-right: 35px !important;
}

.hide-me {
    visibility: hidden !important;
}

.show-me {
    visibility: visible !important;
}

.cont-help-prim {
    color: white;
    margin-top: 3px;
    margin-left: -22px;
    font-size: 12px;
}

.help-rt-caret {
    margin-top: 8px;
    font-size: 12px;
    color: #d6d6d6;
    padding-left: 0px;
    padding-right: 6px;
    padding-bottom: 8px;
}

.annotate-avy {
    max-width: 70px !important;
    min-width: 70px !important;
    max-height: 70px !important;
    min-height: 70px !important;
}

.help-rt-subcaret {
    color: #fff;
    margin-bottom: 3px;
    background-color: #333;
}

    .help-rt-subcaret:hover {
        background-color: #333;
    }

.seeMoreHelp {
    background-color: #333;
    color: #0089ba;
    font-size: 10px;
    margin-left: -15px;
}

    .seeMoreHelp:hover {
        background-color: #333;
    }

.help-drop-box {
    border: none;
    background-color: #333;
    width: 600px !important;
    left: 66px !important;
    top: 2px !important;
    padding: 10px;
}

    .help-drop-box li:hover {
        background-color: #333;
    }

.helpAnswer1 {
    padding: 0px !important;
    background-color: #333 !important;
    margin-bottom: 3px;
}

    .helpAnswer1:hover {
        background-color: #333;
    }

.helpAnswer2 {
    display: none;
}

.help-drop-box-del {
    color: #fff;
    margin-bottom: 5px;
    font-size: 12px;
    background: #333;
}

    .help-drop-box-del :hover {
        background: #333;
    }

.edit-btn-tny {
    font-size: 16px;
}



#workspaceName, #courseName {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#courseGrid, #groupGrid {
    margin-top: 10px;
}

    #courseGrid.large-block-grid-5 > li, #groupGrid.large-block-grid-5 > li {
        padding: 0 5px 5px !important;
        width: 19% !important;
    }


        #courseGrid.large-block-grid-5 > li.active, #groupGrid.large-block-grid-5 > li.active {
            width: 22% !important;
        }

            #courseGrid.large-block-grid-5 > li.active img, #groupGrid.large-block-grid-5 > li.active img {
                border-bottom: 5px solid #6ec829;
            }

/*Hover Card styling*/
.hc-details {
    border-radius: 0px !important;
    padding: 0 !important;
}

    .hc-details .button {
        margin-bottom: 5px !important;
        margin-top: 10px !important;
    }

    .hc-details .panel {
        margin-bottom: -15px;
        margin-left: -10px;
        margin-right: -10px;
        margin-top: 10px;
        border: 0;
        padding: 10px;
    }

.hc-details-open-left {
    text-align: left !important;
}

.hovercard-container {
    padding: 0;
    position: relative;
    background: #fafafa;
}


    .hovercard-container .thumbnail-frame {
        height: 100px;
        border: none;
        background-color: #373737;
        position: relative;
        width: 100%;
    }


        .hovercard-container .thumbnail-frame img {
            position: relative;
        }

        .hovercard-container .thumbnail-frame .user-bg {
            position: absolute;
            left: 0;
            height: 100%;
            width: 200%;
            opacity: 0.7;
            margin: 0 !important;
            max-height: 100% !important;
            max-width: 100% !important;
        }

    .hovercard-container .user-container {
        position: relative;
        text-align: center;
        top: 0;
        width: 100%;
        margin-top: -50px;
    }

        .hovercard-container .user-container .user-img {
            border-radius: 50%;
            display: inline-block;
            height: 80px;
            object-fit: cover;
            opacity: 1;
            width: 80px;
            margin: 0 !important;
            max-height: none !important;
            max-width: none !important;
        }

        .hovercard-container .user-container .user-info {
            position: relative;
            margin-top: 10px;
        }

    .hovercard-container .user-info button, .hovercard-container .user-info .success {
        color: #fff !important;
    }

    .hovercard-container .user-info button, .hovercard-container .user-info .secondary {
        color: #333 !important;
    }

h3#card-profile {
    color: #333 !important;
}

    h3#card-profile a {
        color: #333 !important;
    }

#card-follow {
    margin-bottom: 10px;
}

.hovercard-container h3, .hovercard-container h4 {
    color: #333 !important;
    font-weight: 500;
}

.hovercard-container p {
    margin: 0 0 15px;
    padding: 0;
    color: #dfdede;
}

.hc-details .contact-panel {
    padding: 8px 16px;
    background: #eff0f4;
    border: 1px solid #dce4eb;
    color: #91b2c5;
    line-height: normal;
    margin-bottom: 0;
    display: table;
    width: 100%;
}

    .hc-details .contact-panel .courseTitle {
        height: 80px;
    }

    .hc-details .contact-panel .more {
        display: table-cell;
        vertical-align: middle;
    }

    .hc-details .contact-panel h4 {
        color: #333333;
        font-size: 14px;
        font-weight: normal;
        line-height: normal;
    }

    .hc-details .contact-panel h5 {
        color: #4a494a;
        margin: 0;
    }

    .hc-details .contact-panel h6 {
        color: #8f8f8f;
        font-weight: normal;
        margin: 0;
    }

    .hc-details .contact-panel hr {
        margin: 10px 0;
    }

.hc-details .primary {
    height: 65px;
    overflow: hidden;
}

    .hc-details .primary h4 {
        height: 40px;
        overflow: hidden;
    }



#step1 h3, #step2 h3, #step3 h3 {
    margin: 25px 0;
    color: #0089ba;
}

#loginSequence {
    width: 355px;
    margin: auto;
}

    #loginSequence.sub-nav dd {
        margin: 1em 3em;
    }

        #loginSequence.sub-nav dt a, #loginSequence.sub-nav dd a {
            background: #fff;
            border: 1px solid #999;
            border-radius: 1000px;
            display: block;
            margin: 0;
            overflow: hidden;
            width: auto;
            padding: 0.1875em 0.7em;
            font-size: 1.15em;
        }

        #loginSequence.sub-nav dt.active a, #loginSequence.sub-nav dd.active a {
            background: #373737;
            border-color: #373737;
            color: #FFFFFF;
            cursor: default;
            font-weight: bold;
        }

#users {
    height: 505px;
    overflow: auto;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}


.ui-dialog {
    position: absolute;
    padding: .2em;
    width: 300px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #666666;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    height: auto;
    z-index: 99;
}

    .ui-dialog .ui-dialog-titlebar {
        padding: .4em 1em;
        position: relative;
    }

    .ui-dialog .ui-dialog-title {
        float: left;
        margin: .1em 16px .1em 0;
    }

    .ui-dialog .ui-dialog-titlebar-close {
        position: absolute;
        right: .3em;
        top: 50%;
        width: 19px;
        margin: -10px 0 0 0;
        padding: 1px;
        height: 18px;
    }

        .ui-dialog .ui-dialog-titlebar-close span {
            display: block;
            margin: 1px;
        }

        .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus {
            padding: 0;
        }

    .ui-dialog .ui-dialog-content {
        position: relative;
        border: 0;
        padding: .5em 1em;
        background: none;
        overflow: auto;
        zoom: 1;
    }

    .ui-dialog .ui-dialog-buttonpane {
        text-align: left;
        border-width: 1px 0 0 0;
        background-image: none;
        margin: .5em 0 0 0;
        padding: .3em 1em .5em .4em;
    }

        .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
            float: right;
        }

        .ui-dialog .ui-dialog-buttonpane button {
            margin: .5em .4em .5em 0;
            cursor: pointer;
        }

    .ui-dialog .ui-resizable-se {
        width: 14px;
        height: 14px;
        right: 3px;
        bottom: 3px;
    }

.ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

.ui-dialog-titlebar-close {
    display: none;
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 98;
}

.filterGroup {
    border-bottom: 1px solid #D0D0D0;
    margin: 0 0 10px !important;
    padding-bottom: 10px;
}

    .filterGroup select {
        margin-bottom: 5px !important;
    }

.filterHeader {
    cursor: pointer;
    margin: 0;
}

.filterGroup .subheader {
    margin: 0;
}

#tblFilters .icon-chevron-down, #tblFilters .icon-chevron-right {
    font-size: 0.8em;
}

#tblFilters .icon-chevron-right {
    margin: 0.3em 0.8em 0.3em 0;
}

#tblFilters .icon-chevron-down {
    margin: 0.3em 0.4em 0.3em 0 !important;
}

.chevron-right {
    display: inline-block;
    width: .6em;
    height: .8em;
    position: relative;
    margin: 8px 6px 0 0;
    float: left;
}

    .chevron-right:before,
    .chevron-right:after {
        display: block;
        content: "";
        width: 0;
        height: 0em;
        border-style: solid;
        position: absolute;
    }

    .chevron-right:before {
        right: 0;
        border-width: .4em 0 .4em .4em;
        border-color: transparent transparent transparent #222222;
    }

    .chevron-right:after {
        left: 0;
        border-width: .4em 0 .4em .4em;
        border-color: transparent transparent transparent #fff;
    }

.chevron-down {
    display: inline-block;
    width: .6em;
    height: .8em;
    position: relative;
    margin: 12px 6px 0 0;
    float: left;
}

    .chevron-down:before,
    .chevron-down:after {
        display: block;
        content: "";
        width: 0;
        height: 0em;
        border-style: solid;
        position: absolute;
    }

    .chevron-down:before {
        right: 0;
        border-width: .4em .4em 0 .4em;
        border-color: #222222 transparent transparent transparent;
    }

    .chevron-down:after {
        left: 0;
        border-width: .2em .2em 0 .2em;
        border-color: #fff transparent transparent transparent;
    }

.item {
    border-top: none !important;
}

#ChangePasswordModal {
    z-index: 1000;
}


/*eClassroom*/

#courseCover {
    width: 100%;
    margin: 0 auto;
    xoverflow: hidden;
    height: 250px;
}

    #courseCover h1, #courseCover h2, #courseCover h3, #courseCover h4, #courseCover h5, #courseCover h6, #courseCover p, #courseCover i, #courseCover a, #courseCover a:hover {
        color: white;
    }

    #courseCover .courseName {
        text-transform: uppercase;
        font-weight: normal;
    }

	#courseCover .courseNameSmaller {
		font-size: 20px;
		text-transform: uppercase;
        font-weight: normal;
    }

    #courseCover .coverPhoto {
        xmargin-bottom: -1000px;
        xpadding-bottom: 1000px;
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
        background: #0089ba;
        background-image: url(img/coursecover.png);
        height: 250px;
    }

    #courseCover .coverPhotoBorder {
        width: 15px;
        display: block;
        height: 125px;
    }

    #courseCover .coverContainer {
        display: table;
    }

    #courseCover .coverContent {
        height: 250px;
        display: table-cell;
        vertical-align: middle;
    }


    #courseCover .coachColumn {
        padding: 20px;
        color: white;
        background: #333333;
        height: 250px;
    }

        #courseCover .coachColumn img {
            margin-bottom: 20px;
        }

        #courseCover .coachColumn p {
            margin-bottom: 1em;
        }

        #courseCover .coachColumn .feedbackContainer {
            height: 40px;
            margin-bottom: 1em;
        }


.classmates .button-group li {
    margin: 0 -1px 0 0;
    float: right;
}

.classmates button.disabled.secondary, .classmates button.secondary[disabled], .classmates .button.disabled.secondary, .classmates .button.secondary[disabled] {
    opacity: 0.4;
}

#courseProgress .progress, .courseOutlineContainer .progress {
    background: #dfdede;
    border: none;
    height: 1em;
    padding: 0;
}

#courseProgress .progress {
    margin-top: 15px;
}

#courseProgress p {
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 25px;
    color: #808080;
}

.activitiesGroup {
    border-bottom: 1px solid #D0D0D0;
    margin-bottom: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
}

.activitiesHeader {
    cursor: pointer;
}

.activities ul li {
    margin-bottom: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
}

.large-12 .large-12 .activitiesGroup {
    border-bottom: none;
}

.courseActivities {
    border-top: 1px solid #dddddd;
    background: #fafafc;
    padding-top: 5px;
}

.courseContent {
    font-size: 0.8em;
    line-height: 1.4em;
}

    .courseContent p {
        font-size: 1em;
        margin-bottom: 1.25em !important;
    }

    .courseContent ul, .courseContent ol {
        font-size: 1em;
        margin-left: 1.25em;
    }

    .courseContent .alert-box {
        padding-right: 0.6875em;
    }

.courseOutlineContainer a {
    color: #333 !important;
}

.courseOutlineContainer h5 {
    margin-bottom: 12px;
}

.courseOutline {
    xborder-top: 1px solid #dddddd;
    background: #fafafc;
}

.activityList {
    cursor: pointer;
}

.viewForumPosts h5 {
    margin-bottom: 12px;
}

.unitForumPosts > #topics.section-container > .section > .title {
    border-left: none !important;
    border-right: none !important;
    padding-right: 30px;
    padding-left: 30px;
}

.unitForumPosts > .newDiscussion, .unitForumPosts > .newTopicCancel, .unitForumPosts > .newTopic {
    padding-right: 30px;
    padding-left: 30px;
}

.viewforum {
    line-height: 52px;
}

    .viewforum p {
        margin-bottom: 0 !important;
    }

#forumName {
    line-height: 45px;
}

    #forumName p {
        margin-bottom: 7px !important;
    }

a#printButton {
    float: right;
    font-size: 13px;
    margin-bottom: 5px;
}

#coursesidebar .sub-nav {
    color: #808080;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-top: 10px;
}

    #coursesidebar .sub-nav dt, #coursesidebar .sub-nav dd {
        margin-left: 0px;
    }

        #coursesidebar .sub-nav dt a.active, #coursesidebar .sub-nav dd a.active {
            background: #fff;
            border-radius: 0;
            color: #808080;
            font-weight: normal;
        }

.formActivity-header {
    background: none repeat scroll 0 0 #fafafc;
    border-bottom: 1px solid #d4dae3;
    border-top: 1px solid #d4dae3;
}

    .formActivity-header h4 {
        margin-top: 6px;
        margin-bottom: 7px;
    }

#latestForumActivity a {
    float: left;
    width: 100%;
}

    #latestForumActivity a:hover {
        background: #e1e2e4;
    }

.unitActivities .columns .columns {
    padding-top: 5px;
    padding-bottom: 10px;
}

.unitActivities .large-1 {
    width: 5%;
}

.unitActivities p {
    margin-bottom: 0 !important;
}


.alert-box #closeButton {
    color: #333333;
    font-size: 1.375em;
    line-height: 0;
    opacity: 0.3;
    padding: 5px 4px 4px;
    position: absolute;
    right: 0.3125em;
    top: 0.4375em;
}

#assessmentName {
    line-height: 50px;
}

.gradePanel {
    margin-bottom: 1.25em;
}

.gradePanelText {
    position: relative;
    top: 50%;
    /*transform: translateY(-50%);*/
    margin-top: 10px;
}

    .gradePanelText h1 {
        font-size: 2.75em;
        margin: 0;
        font-weight: normal;
    }

#noteUnitSelect select {
    border: 0;
    background: transparent;
    font-size: 14px;
    padding: 0;
    width: 100%;
    box-shadow: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

#noteUnitSelect {
    overflow: hidden;
    width: 100%;
}

    #noteUnitSelect select::-ms-expand {
        display: none;
    }

#listoffiles {
    margin-bottom: 1.25em;
}

    #listoffiles .section-container, #listoffiles .section-container.auto {
        margin-bottom: 0;
    }

        #listoffiles .section-container, #listoffiles .section-container.auto {
            margin-bottom: 0;
        }

            #listoffiles .section-container.vertical-nav > section:first-child .title, #listoffiles .section-container.vertical-nav > .section:first-child .title {
                border-bottom: 1px solid #cccccc;
            }

    #listoffiles section.section {
        margin-top: -1px;
    }


#frmReflection input[type="disclaim"], #frmReflection textarea {
    font-size: 1em;
    height: auto;
}

#mainmenu {
    width: 100%;
    background: #e9e9e9;
    padding: 5px 10px;
    margin-bottom: 10px;
}

    #mainmenu h5 {
        margin: 0;
        font-weight: normal;
        color: #4a494a;
    }

    #mainmenu h6 {
        margin: 0;
        font-weight: normal;
        color: #808080;
    }

    #mainmenu p {
        margin: 0;
        color: #808080;
        line-height: 40px;
    }

    #mainmenu a {
        color: #6b6868;
        display: inline-block;
        padding: 0 20px 0 10px;
    }

.menutxt_Unit, .menutxt_Activity {
    padding: 0 0 0 10px;
}

#prevnexticons .columns {
}

#prevnexticons div {
    margin: 0;
    padding-left: 10px;
    border-left: 1px solid lightgrey;
    height: 40px;
}

    #prevnexticons div:first-child {
        border: none;
        padding-left: 0;
        margin-left: 0;
    }

    #prevnexticons div:last-child a {
        padding-right: 10px;
    }

#continue-button {
    line-height: normal;
    padding: 0.5em;
    display: block;
    width: 100%;
}

    #continue-button h6 {
        line-height: normal;
        margin: 0;
    }

    #continue-button p {
        line-height: normal;
        margin: 0;
    }

/* Community Resources */

.wordFile {
    background-color: #0066ab !important;
}

.excelFile {
    background-color: #1ab83d !important;
}

.pptFile {
    background-color: #B85b19 !important;
}

.pdfFile {
    background-color: #b90500 !important;
}

.avFile {
    background-color: #555555 !important;
}

.imageFile {
    background-color: /*#2e81d5*/ #fff !important;
}

.gridExtension {
    color: white;
}

h2.gridExtension {
    margin-top: 10px;
    margin-bottom: 0;
}

h4.gridExtension {
    text-transform: uppercase;
}


.section-container.vertical-nav > .section > .title {
    background: #ffffff;
    border-color: #d4dae3;
}

    .section-container.vertical-nav > .section > .title:hover {
        background: #eff0f4;
    }

#viewcontrols li a.active {
    background-color: #d0d0d0;
}

/*Learning Plans*/

.month {
    font-size: 0.8em;
    margin: 2px 0;
    line-height: 1.4;
    color: #222222;
}

.date {
    font-size: 1.35em;
    font-weight: bold;
    color: #222222;
    margin-bottom: 5px;
}

.tag {
    margin: 0 10px 10px 0;
    float: left;
}

#learningPlans {
    margin-top: 20px;
}

    #learningPlans .goal {
        margin-top: 20px;
    }

        #learningPlans .goal .panel {
            padding: 1em 1.25em;
        }

            #learningPlans .goal .panel:hover {
                xbackground-color: #eff0f4;
            }
    /*#learningPlans .goal .topic {margin-bottom:0;}*/
    #learningPlans .activityName {
        margin-bottom: 0;
        line-height: normal;
        font-weight: normal;
    }

    #learningPlans .progress {
        height: 0.5em;
    }

        #learningPlans .progress .meter {
            height: 0.5em;
        }

    #learningPlans .topic {
        color: #8F8F8F;
    }

    #learningPlans .goal .date {
        margin-bottom: 6px;
    }

.label.notStarted {
    background: #fafafc !important;
    border: 1px solid #B45918 !important;
    color: #B45918;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
}

.label.inProgress {
    background: #fafafc !important;
    border: 1px solid #0089ba !important;
    color: #0089ba;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
}

.label.complete {
    background: #fafafc !important;
    border: 1px solid #63b325 !important;
    color: #63b325;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
}

.label.tag {
    background: #ececec;
    color: #6f6f6f;
    font-size: 9px;
    font-weight: normal;
    line-height: 1.5em !important;
}

.label.district {
    background: #8f3792;
    border: 1px solid #8f3792 !important;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.5em !important;
    color: #ffffff !important;
}

    .label.district.inverse, a.inverse .label.district {
        background: #fafafc !important;
        border: 1px solid #8f3792 !important;
        font-size: 9px;
        font-weight: 600;
        line-height: 1.5em !important;
        color: #8f3792 !important;
    }

.recommendedcard .inverse, .recommendedcard a.inverse {
    opacity: 0.5 !important;
}

.label.personal {
    background: #415766;
    border: 1px solid #415766 !important;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.5em !important;
    color: #ffffff !important;
}

    .label.personal.inverse, a.inverse .label.personal {
        background: #fafafc !important;
        border: 1px solid #415766 !important;
        font-size: 9px;
        font-weight: 600;
        line-height: 1.5em !important;
        color: #415766 !important;
    }

.label.school {
    background: #625084;
    border: 1px solid #625084 !important;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.5em !important;
    color: #ffffff !important;
}

    .label.school.inverse, a.inverse .label.school {
        background: #fafafc !important;
        border: 1px solid #625084 !important;
        font-size: 9px;
        font-weight: 600;
        line-height: 1.5em !important;
        color: #625084 !important;
    }


.suggestedFocus {
    border: 1px solid #dddddd;
    margin-bottom: 1.25em;
    margin-left: 0;
    height: 151px;
}

    .suggestedFocus .focusArea {
        padding: 12px;
        height: 116px;
    }

    .suggestedFocus .focusName {
        height: 36px;
        overflow: hidden;
    }

    .suggestedFocus .button {
        margin-bottom: 0px;
        border-right: 0;
        border-left: 0;
    }

.upcomingCoaching {
    margin-top: 20px !important;
}

    .upcomingCoaching h6 {
        margin-bottom: 0px;
    }

#default-modal {
    padding: 1em;
}

#close-newGoal-modal {
    top: 1em;
}

#default-modal label {
    margin-bottom: 0.5em;
}

#default-modal textarea {
    margin-bottom: 1em;
}

.goal #badges section.active a#badge {
    border-bottom: 4px solid #6ec829 !important;
    color: #415766 !important;
    padding-bottom: 10px !important;
}

#selected-standards .section-container > section > .title, .section-container > .section > .title, .section-container.auto > section > .title, .section-container.auto > .section > .title {
    border: 1px solid #cccccc !important;
    margin-top: -1px;
    padding: 0.9375em;
}

#selected-standards .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > .title a {
    padding: 0;
}

#btnClear, #btnSave {
    margin-bottom: 0;
}

    #coursesidebar #discussions .columns {
        padding-left: 0.4em;
        padding-right: 0.4em;
    }

#coursesidebar #submitdiscussion {
    margin-bottom: 10px;
}

#coursesidebar #discussions hr {
    margin: 10px -15px 15px;
}

#coursesidebar #discussions .panel {
    padding-right: 0;
    padding-left: 0;
}

#coursesidebar #discussions .icon-stack [class^="icon-"] {
    font-size: 0.65em;
}

#coursesidebar #discussions .icon-stack .icon-stack-base {
    font-size: 1.25em;
}

#coursesidebar #discussions .icon-stack {
    font-size: 1.25em;
    width: 1.25em;
    height: 1.25em;
    top: -25px !important;
    margin-left: -10px !important;
}

#coursesidebar #discussions .discussion-meta {
    xfont-size: 0.6em;
    margin-right: 1em;
}


#ActivityContainer h3 {
    font-weight: normal;
    margin-bottom: 0.2em;
    margin-top: 15px;
}

#ActivityContainer p {
    font-size: 0.85em;
}

    #ActivityContainer p.topic {
        font-size: 0.7em;
        color: #8f8f8f;
    }

#SelectActivity ul li a {
    color: #222222;
}

#ChosenActivity input, #ChosenActivity textarea, #GoalModal input, #GoalModal textarea {
    margin-bottom: 16px;
}

#ChosenActivity .button, #GoalModal .button {
    margin-bottom: 0;
}

#ChosenActivity form {
    margin-bottom: 0;
}

#activityList .activityType {
    font-size: 0.6em;
    font-weight: normal;
    text-transform: uppercase;
    color: #8f8f8f;
}

#activityList .activityName {
    font-size: 1em;
    font-weight: normal;
    line-height: 1.2em;
    overflow: hidden;
}

#activityList .targetDate {
    margin-bottom: 0;
    margin-top: 5px;
}

#activityList .iscomplete {
    font-size: 25px;
    text-align: center;
    cursor: pointer;
}

#activityList .icon-stack {
    height: 1em;
    line-height: 1em;
    width: 1em;
}

    #activityList .icon-stack [class^="icon-"], #activityList .icon-stack [class*=" icon-"] {
        font-size: 0.5em;
    }

    #activityList .icon-stack .icon-stack-base {
        font-size: 1em;
    }

#activityList form, #activityList input {
    margin-bottom: 0;
    color: rgba(0, 0, 0, 1);
}

#activityList input {
    font-size: 12px;
}

#activityList #targetDate {
    margin: 0 !important;
}

.activitiesSort {
    border-bottom: 1px solid #ddd;
}

.goalActivities {
    background: #fff none repeat scroll 0 0;
    border-bottom: 1px solid #ddd;
    padding: 15px 10px 10px;
}

    .goalActivities:hover {
        background: #fafafc;
    }

    .goalActivities .editActivity {
        font-size: 14px;
        color: #8f8f8f;
        margin-top: 5px;
        display: none;
    }

    .goalActivities .editActivityDate {
        font-size: 14px;
        color: #8f8f8f;
        margin-top: 5px;
        display: none;
    }

    .goalActivities .deleteActivity {
        font-size: 1.8em;
        text-align: center;
        color: #8f8f8f;
        display: none;
    }

    .goalActivities:hover .deleteActivity {
        display: block;
    }

    .goalActivities .deleteActivityFile {
        text-align: center;
        color: #8f8f8f;
        display: none;
    }

    .goalActivities:hover .deleteActivityFile {
        display: inline;
    }


    .goalActivities:hover .editActivity {
        display: block;
    }

    .goalActivities:hover .editActivityDate {
        display: block;
    }

    .goalActivities .error small, .goalActivities small.error {
        margin-top: 0;
    }

#saveActivityEdit, #cancelEdit {
    font-size: 14px;
    color: #8f8f8f;
    margin-top: 5px;
    display: block;
}

#resource-list .thumbnail {
    border: 1px solid #d4dae3;
}

#resource-list .thumbnail-frame {
    border: none;
}

#resource-list .thumbnail .panel {
    border-bottom: none;
    border-right: none;
    border-left: none;
}

#resource-list .ui-selecting .thumbnail .panel {
    background: #f3f7f1;
}

#resource-list .thumbnail:hover {
    border-color: #63b325;
}

#resource-list .ui-selected .thumbnail {
    border-color: #63b325;
}

    #resource-list .ui-selected .thumbnail .panel {
        background: #ecf5e6;
    }

#resource-list {
    list-style-type: none;
    padding: 0;
}

    #resource-list .thumbnail-frame {
        height: 108px;
    }

    #resource-list .thumbnail .panel {
        min-height: 1px;
    }

    #resource-list h4 {
        margin-bottom: 5px !important;
    }

    #resource-list h6 {
        margin-bottom: 0px;
    }

    #resource-list li {
        cursor: pointer;
    }

        #resource-list li .thumbnail .panel:hover {
            background: #f3f7f1;
        }

    #resource-list .ui-selected .thumbnail .panel:hover {
        background: #ecf5e6;
    }

/*Typeahead*/
.ui-menu {
    display: block;
    margin: 0;
    padding: 2px;
}

.typeahead {
    background: #373737;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    cursor: default;
    position: relative;
    z-index: 96;
    max-width: 750px;
    margin: 0;
}

    .typeahead li {
        padding: 0;
        border-right: 1px solid #505151;
    }

    .typeahead .header {
        background: #272727;
    }

        .typeahead .header h3 {
            color: #ffffff;
            font-size: 1.25em;
            font-weight: normal;
            margin: 15px 0;
        }

        .typeahead .header a {
            float: right;
            margin: 15px 0;
            text-align: right;
        }

        .typeahead .header .label {
            background-color: #3c3c3d;
            color: #9d9d9d;
            border-radius: 1000px;
            margin-left: 5px;
            font-weight: normal;
            padding: 0.35em 0.625em;
        }

.typeahead-menu-item {
    border-bottom: 0;
    margin: 0;
}

    .typeahead-menu-item .image {
        height: 45px;
    }

        .typeahead-menu-item .image img {
            max-height: 100%;
            width: auto;
        }

    .typeahead-menu-item .title {
        height: 45px;
        overflow: hidden;
    }

    .typeahead-menu-item h3 {
        color: #ffffff;
        font-weight: normal;
        line-height: 1.3em;
        margin: 0;
    }

    .typeahead-menu-item a {
        float: left;
        padding: 10px 0;
        width: 100%;
    }

        .typeahead-menu-item a:hover {
            background-color: #000000;
        }

        .typeahead-menu-item a h3 {
            color: #ffffff;
            font-size: 1.25em;
            font-weight: normal;
            margin: 0;
        }

        .typeahead-menu-item a p {
            color: #a1a1a1;
            font-size: 1em;
            margin: 0;
        }

/*Badges*/

#badging {
    width: 140px;
    height: 140px;
    float: left;
    margin: 20px 26px;
}

.courseBadge {
    width: 130px;
    height: 130px;
    border-radius: 1000px;
    border: 5px solid #213d51;
    background-size: auto 120px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin: 5px;
    position: relative;
}

    .courseBadge:after {
        content: '';
        position: absolute;
        top: -9px;
        left: -9px;
        right: -9px;
        bottom: -9px;
        background: #fff;
        z-index: -1;
        border-radius: 1000px;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    }

.badgeBanner {
    width: 100%;
    vertical-align: middle;
    position: relative;
}

    .badgeBanner h1 {
        display: inline-block;
        white-space: nowrap;
        text-align: center;
        text-transform: uppercase;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: 600;
        position: absolute;
        bottom: 20px;
        width: 100%;
        font-size: 0.55em;
        letter-spacing: 0.1em;
        margin: 0;
    }

        .badgeBanner h1:after, .badgeBanner h1:before {
            content: " ";
            display: block;
            position: absolute;
            bottom: -.5em;
            width: 1em;
            height: 100%;
            pointer-events: none;
            background-color: #016d93;
        }

        .badgeBanner h1:after {
            right: -.57em;
            z-index: -1;
            top: -.5em;
        }

        .badgeBanner h1:before {
            bottom: auto;
            top: -.5em;
            left: -.57em;
            z-index: -1;
        }

        .badgeBanner h1 span {
            display: inline-block;
            position: relative;
            padding: .15em .75em;
            text-decoration: none;
            background-color: #0089ba;
            color: #fff;
            width: 100%;
            padding: .65em .75em;
        }

            .badgeBanner h1 span:after, .badgeBanner h1 span:before {
                content: " ";
                display: block;
                position: absolute;
                width: 0;
                height: 0;
                bottom: -.5em;
                left: -.05em;
                pointer-events: none;
                -webkit-mask: none;
            }

            .badgeBanner h1 span:before {
                bottom: auto;
                top: -.5em;
                border-left: .5em solid transparent;
                border-bottom: 0.5em solid #163743;
            }

            .badgeBanner h1 span:after {
                left: auto;
                right: -.05em;
                border-right: .5em solid transparent;
                border-bottom: 0.5em solid #163743;
                top: -.5em;
            }

/*Email Notifications*/
#emailSettings input[type=checkbox] {
    margin-right: 17px;
    margin-top: 3px;
}

#emailSettings label {
    line-height: normal;
}

    #emailSettings label.parentSetting {
        font-size: 1em;
        font-weight: bold;
    }

.groupNotifications label {
    font-size: 12px;
    color: #6f6f6f;
    line-height: normal;
}

/*Retail Landing Page*/

#retail .thumbnail {
    margin: 16px 0 0;
}

/*#retail .thumbnail-frame {
    position: relative;
    background: #5C97FF;
    overflow: hidden;
}

#retail .thumbnail-frame:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    background-image: url("http://playbook.educatored.com/Content/themes/plp/img/coursecover.png") ;
    background-repeat: no-repeat;
    background-position: 50% 0;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
}*/

#retail .thumbnail-frame {
    height: 150px;
    /*background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%), url(http://playbook.educatored.com/Content/themes/plp/img/coursecover.png) repeat 0 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.1)), color-stop(100%,rgba(0,0,0,0.1))), url(http://playbook.educatored.com/Content/themes/plp/img/coursecover.png) repeat 0 0;
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.1) 100%), url(http://playbook.educatored.com/Content/themes/plp/img/coursecover.png) repeat 0 0;
    background: -o-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.1) 100%), url(http://playbook.educatored.com/Content/themes/plp/img/coursecover.png) repeat 0 0;
    background: -ms-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.1) 100%), url(http://playbook.educatored.com/Content/themes/plp/img/coursecover.png) repeat 0 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.1) 100%), url(http://playbook.educatored.com/Content/themes/plp/img/coursecover.png) repeat 0 0;*/
    border: none;
    padding: 16px;
    background-color: #373737;
    display: table;
    width: 100%;
}

#retail .thumbnail-container {
    display: table-cell;
    vertical-align: middle;
    height: 118px;
}

#retail .thumbnail-frame img {
    position: relative;
}

#retail .thumbnail-frame .course-bg {
    position: absolute;
    xtop: -50%;
    left: 0;
    height: 100%;
    width: 200%;
    /*-webkit-filter: blur(100px);
    -webkit-transform: translate3d(0, 0, 0);*/
    opacity: 0.7;
}

/*#retail .thumbnail-frame img {
    bottom: 0;
    height: auto;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;}*/

/*#retail .thumbnail-frame img {
    bottom: 0;
    height: auto;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;}*/
#retail .thumbnail-frame .author-container {
    float: left;
    width: 20%;
}

#retail .thumbnail-frame .author-img {
    object-fit: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 1;
}

#retail .thumbnail-frame .course-info {
    position: relative;
    float: left;
    width: 80%;
    padding-left: 10px;
}

    #retail .thumbnail-frame .course-info button, #retail .thumbnail-frame .course-info .button {
        margin-bottom: 0;
    }

#retail .thumbnail-frame h4 {
    color: #fff;
    font-weight: 500;
}

#retail .thumbnail-frame p {
    margin: 0 0 15px;
    padding: 0;
    color: #dfdede;
}

#retail .video-panel {
    padding: 1.25em;
    background: #fafafc;
    border: 1px solid #D4DAE3;
    line-height: normal;
    margin-bottom: 0;
    display: table;
    width: 100%;
}

    #retail .video-panel:hover {
        background: #eff0f4;
    }

    #retail .video-panel .courseTitle {
        height: 80px;
    }

    #retail .video-panel .more {
        display: table-cell;
        vertical-align: middle;
    }

    #retail .video-panel h4 {
        color: #333333;
        font-size: 14px;
        font-weight: normal;
        line-height: normal;
    }

    #retail .video-panel h5 {
        color: #4a494a;
        margin: 0;
    }

    #retail .video-panel h6 {
        color: #8f8f8f;
        font-weight: normal;
        margin: 0;
    }

    #retail .video-panel hr {
        margin: 10px 0;
    }

#retail .primary {
    height: 65px;
    overflow: hidden;
}

    #retail .primary h4 {
        height: 40px;
        overflow: hidden;
    }

#retail .progress {
    xmargin-top: 20px;
    height: 0.7em;
    margin: 0;
}

#retails_tabs {
    xbackground: none repeat scroll 0 0 #fafafc;
    border: 0;
    xborder-bottom: 1px solid #D4DAE3;
    margin-bottom: 1.25em;
}

#retail_tabs li {
}

#retails_tabs li a {
    color: #aab2ca;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4em;
    padding-bottom: 13px;
    border: none;
    margin: 0;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    padding: 10px 0;
    margin: 0 15px;
}

    #retails_tabs li a.active {
        border-bottom: 4px solid #6ec829 !important;
        color: #415766 !important;
        xpadding-bottom: 10px !important;
    }


header.nav-is-visible {
    transform: translateX(-260px);
}

.cd-main-content.nav-is-visible {
    transform: translateX(-260px);
}

.cd-main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    visibility: hidden;
}

    .cd-main-nav.nav-is-visible {
        visibility: visible;
    }

    .cd-main-nav li ul {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transform: translateX(260px);
    }

    .cd-main-nav.moves-out > li > a {
        /* push the navigation items to the left - and lower down opacity - when secondary nav slides in */
        transform: translateX(-100%);
        opacity: 0;
    }

    .cd-main-nav.moves-out > li > ul {
        /* reveal secondary nav */
        transform: translateX(0);
    }

@media only screen and (min-width: 1024px) {
    .cd-main-nav {
        height: 80px;
        /* padding left = logo size + logo left position*/
        padding: 0 5% 0 calc(5% + 124px);
        text-align: right;
    }

        .cd-main-nav li ul {
            height: 80px;
            background-color: #7e4d7e;
            /* padding left = logo size + logo left position*/
            padding: 0 5% 0 calc(5% + 124px);
            transform: translateY(-80px);
            transition: transform 0.3s 0.2s;
        }

            .cd-main-nav li ul li {
                opacity: 0;
                transform: translateY(-20px);
                transition: transform 0.3s 0s, opacity 0.3s 0s;
            }

        .cd-main-nav .placeholder {
            /* never visible or clickable- it is used to take up the same space as the .cd-subnav-trigger */
            display: block;
            visibility: hidden;
            opacity: 0;
            pointer-event: none;
        }

        .cd-main-nav.moves-out > li > ul {
            transition: transform 0.3s;
            transform: translateY(0);
        }

        .cd-main-nav.moves-out > li ul li {
            opacity: 1;
            transform: translateY(0);
            transition: transform 0.3s 0.2s, opacity 0.3s 0.2s;
        }

}

@media only screen and (max-width: 40em) {
    .MarkComplete h4 {
        margin-right: 10px;
    }

    .red-box {
        box-shadow: 0 0 3px #CC0000 !important;
    }

    .loginPanel {
        padding-top: 0 !important;
    }

    .loginDescription {
        margin-bottom: 0 !important;
    }
}

/* ON/OFF Switch */
.onoffswitch {
    margin-left: -50px;
    margin-right: 2em;
    position: relative;
    width: 55px;
    display: inline-block;
    font-size: 80%;
}

.onoffswitch .onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid hsl(0, 0%, 90%);
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    margin: 0;
}

.onoffswitch .onoffswitch-inner {
    width: 200%;
    margin-left: -100%;
    -webkit-transition: margin 0.15s ease-in-out;
    -o-transition: margin 0.15s ease-in-out;
    -moz-transition: margin 0.15s ease-in-out;
    transition: margin 0.15s ease-in-out;
}

.onoffswitch .onoffswitch-inner:before,
.onoffswitch .onoffswitch-inner:after {
    float: left;
    width: 50%;
    height: 24px;
    padding: 0;
    line-height: 24px;
    font-size: 80%;
    color: hsl(0, 0%, 100%);
    font-weight: normal;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.onoffswitch .onoffswitch-inner:before {
    content: attr(data-onlabel);
    padding-left: 10px;
    background-color: hsl(203, 100%, 39.1569%);
    color: hsl(0, 0%, 100%);
}

.onoffswitch .onoffswitch-inner:after {
    content: attr(data-offlabel);
    padding-right: 10px;
    background-color: hsl(0, 0%, 98%);
    color: hsl(0, 0%, 24%);
    text-align: right;
}

.onoffswitch .onoffswitch-switch {
    width: 22px;
    height: 22px;
    margin: 0;
    background: hsl(0, 0%, 100%);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 35px;
    -webkit-transition: right 0.15s ease-in-out;
    -o-transition: right 0.15s ease-in-out;
    -moz-transition: right 0.15s ease-in-out;
    transition: right 0.15s ease-in-out;
}

.toggle-group {
    position: relative;
    height: 27px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    top: 0;
    left: 20px;
    margin-top: 0;
    display: inline-block;
}

.toggle-group input[type=checkbox] {
    position: absolute;
    right: 30px;
    left: auto;
}

.toggle-group input[type=checkbox]:checked ~ .onoffswitch .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.toggle-group input[type=checkbox]:checked ~ .onoffswitch .onoffswitch-label .onoffswitch-switch {
    right: 1px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.toggle-group input[type=checkbox]:focus ~ .onoffswitch {
    outline: thin dotted #333;
    outline: 0;
}

.toggle-group label {
    width: auto;
    position: relative;
    padding-left: 0;
    padding-right: 55px;
    cursor: pointer;
    display: inline-block;
    text-align: left;
    line-height: 24px;
    z-index: 1;
    height: 24px;
    font-weight: 200;
}

.has-tooltip {
    position: relative;
}

    .has-tooltip .tooltiptext {
        visibility: hidden;
        font-style: normal;
        bottom: 150%;
        background-color: black;
        color: #fff;
        text-align: center;
        padding: 5px;
        border-radius: 6px;
        position: absolute;
        z-index: 1;
        display: inline-block;
        white-space: nowrap;
        pointer-events: none;
        left: -3px;
    }

        .has-tooltip .tooltiptext::after {
            content: " ";
            position: absolute;
            top: 100%;
            left: 5px;
            border-width: 5px;
            border-style: solid;
            border-color: black transparent transparent transparent;
        }

    .has-tooltip:hover .tooltiptext {
        visibility: visible;
    }

.contact-loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #005C7E;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: spin 2s linear infinite;
    float: right;
    margin-right: 1em;
    display: none;
}

#contact-success {
    display: none;
}

/* ==== Accessibility ===== */
.aural {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.aural:focus {
    clip: rect(0, 0, 0, 0);
    font-size: 1em;
    height: auto;
    outline: thin dotted;
    position: static !important;
    width: auto;
    overflow: visible;
}

.ada-focus-pb6blue:focus-visible {
    border: 2px solid #002b5c !important;
    outline: none !important;
    box-shadow: none !important;
    transition: none !important;
}

.ada-focus-pb6blue-outline:focus-visible {
    border: 2px solid #002b5c !important;
    box-shadow: none !important;
    transition: none !important;
}

.ada-focus-lightgray:focus-visible {
    border: 2px solid #E7EBFD;
    outline: none;
}

.ada-focus-lightblue:focus-visible {
    border: 2px solid #0070f0 !important;
    outline: none !important;
    transition: none !important;
}

.ada-focus-lightblue3:focus-visible {
    border: 3px solid #0070f0 !important;
    outline: none !important;
    transition: none !important;
}

.ada-focus-darkbluebg:focus-visible {
}

::placeholder{
    color: #767676;
}