/* app css stylesheet */

.wrapper {
    display: flex;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    min-height: 95vh;
    background-color: rgb(245, 245, 245);
    padding: 0em;
    transition: all 0.3s;
}

#mobile-header{
    display:none;
}

#sidebar.active {
    margin-left: -250px;
}

@media (max-width: 768px) {
    #sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        margin-left: -250px;
        max-height: 100vh;
        overflow: scroll;
        padding-bottom: 2em;
    }

    #sidebar.active {
        margin-left: 0;
    }

    #mobile-header {
        display: block;
        text-align: center;
        padding: 1em;
        background-color: rgb(140, 12, 4);
    }

    #sidebar-header {
        display: none;
    }
}

#non-sidebar-content {
    width: 100%;
}

.padder {
    padding: 1.5em;
    max-width: 120em;
}

.lpadder {
    padding-left: 1.5em;
}

#sidebar-header {
    clear: both;
    text-align: center;
    padding: 3em;
    margin-bottom: 2em;
    border-bottom: 1px solid #e2e2e2;
}

#sidebar-header h1 {
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 1em;
    color: rgb(140, 12, 4);
    font-family: Proxima-nova, sans-serif;
    font-weight: bold;
    letter-spacing: 0.1em;
}

#main-nav > li {
    width: 100%;
}

#main-nav span.sidehead {
    width: 100%;
    display: block;
    padding: 0.6em;
    border-top: 1px solid #e2e2e2;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}

#main-nav > li > ul {
    margin: 0;
    padding: 0;
}

#main-nav > li > ul > li > a, #main-nav > li > a {
    padding: 0.6em;
    display: block;
    width: 100%;
}

#main-nav a:hover, #main-nav a:active {
    text-decoration: underline;
}

#main-nav li.active > a {
    background-color: white;
    color: inherit;
}

#sidebarCollapse {
    width: 2.8em;
    height: 2.8em;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
    font-size: 20px;
    opacity: 0.7;
    border-radius: 100px;
    color: black;
    background: white;
    border: none;
    padding: 1em;
    margin: 1px;
}

/*--end sidebar styles*--*/

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
    display: none !important;
}

a.trackvisit:visited {
    color: lightgray;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 7em;
    font-family: Proxima-nova, sans-serif;
    font-size: 16px;
}

del {
    color: lightgray;
}

h1, h2, h3, h4, h5 {
    font-family: Merriweather, serif;
}

.label {
    font-family: Proxima-nova, sans-serif;
    font-weight: normal;
}

.nav li {
    font-size: 14px;
    text-transform: uppercase;
}

.btn, input {
    border-radius: 3px;
    font-size: 14px;
    margin: 2px;
}

.btn-primary {
    background-color: rgb(140, 12, 4);
    border: none;
}

.label {
    margin: 2px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 7em;
    background-color: #333;
    color: #eee;
    padding-top: 2em;
}

.datatable {
    width: 100%
}

.datatable tr, .datatable td {
    overflow: auto;
    word-wrap: break-word;
    max-width: 10em;
}

.datatable tr:hover {
    border-left: 1px solid yellow;
}

.datatable tr {
    border-bottom: 1px solid lightgray;
}

#service-name {
    color: darkred;
}

.vspacer {
    margin-top: 2em;
    margin-bottom: 2em;
}

.ng-hide-add, .ng-hide-remove {
    /* ensure visibility during the transition */
    display: block !important; /* yes, important */
}

.growl-container {
    top: 4em !important;
}

.cg-busy-default-sign, .cg-busy {
    z-index: 9999999999 !important;
}

/* when hiding the picture */
.ng-hide-add {
    animation: 0.5s lightSpeedOut ease;
}

/* when showing the picture */
.ng-hide-remove {
    animation: 0.5s flipInX ease;
}

.position-fixed {
    position: fixed;
}

.pointer {
    cursor: pointer;
}

/* ANIMATIONS (FROM ANIMATE.CSS) ======================== */
/* flip in */
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        transform: perspective(400px);
        transform: perspective(400px);
        transform: perspective(400px);
    }
}

/* light speed out */
@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

/***********Wobblebar spinner*************/
@-moz-keyframes wobblebar-loader {
    0% {
        left: 4px;
    }
    3% {
        left: 104px;
    }
    6% {
        left: 4px;
    }
    9% {
        left: 104px;
    }
    12% {
        left: 4px;
    }
    15% {
        left: 104px;
    }
    18% {
        left: 32px;
    }
    27% {
        left: 32px;
    }
    30% {
        left: 104px;
    }
    33% {
        left: 4px;
    }
    36% {
        left: 104px;
    }
    39% {
        left: 4px;
    }
    42% {
        left: 104px;
    }
    45% {
        left: 4px;
    }
    48% {
        left: 104px;
    }
    51% {
        left: 52px;
    }
    63% {
        left: 52px;
    }
    66% {
        left: 4px;
    }
    69% {
        left: 104px;
    }
    72% {
        left: 4px;
    }
    75% {
        left: 104px;
    }
    78% {
        left: 4px;
    }
    81% {
        left: 104px;
    }
    84% {
        left: 72px;
    }
    94% {
        left: 72px;
    }
    97% {
        left: 104px;
    }
}

@-webkit-keyframes wobblebar-loader {
    0% {
        left: 4px;
    }
    3% {
        left: 104px;
    }
    6% {
        left: 4px;
    }
    9% {
        left: 104px;
    }
    12% {
        left: 4px;
    }
    15% {
        left: 104px;
    }
    18% {
        left: 32px;
    }
    27% {
        left: 32px;
    }
    30% {
        left: 104px;
    }
    33% {
        left: 4px;
    }
    36% {
        left: 104px;
    }
    39% {
        left: 4px;
    }
    42% {
        left: 104px;
    }
    45% {
        left: 4px;
    }
    48% {
        left: 104px;
    }
    51% {
        left: 52px;
    }
    63% {
        left: 52px;
    }
    66% {
        left: 4px;
    }
    69% {
        left: 104px;
    }
    72% {
        left: 4px;
    }
    75% {
        left: 104px;
    }
    78% {
        left: 4px;
    }
    81% {
        left: 104px;
    }
    84% {
        left: 72px;
    }
    94% {
        left: 72px;
    }
    97% {
        left: 104px;
    }
}

@keyframes wobblebar-loader {
    0% {
        left: 4px;
    }
    3% {
        left: 104px;
    }
    6% {
        left: 4px;
    }
    9% {
        left: 104px;
    }
    12% {
        left: 4px;
    }
    15% {
        left: 104px;
    }
    18% {
        left: 32px;
    }
    27% {
        left: 32px;
    }
    30% {
        left: 104px;
    }
    33% {
        left: 4px;
    }
    36% {
        left: 104px;
    }
    39% {
        left: 4px;
    }
    42% {
        left: 104px;
    }
    45% {
        left: 4px;
    }
    48% {
        left: 104px;
    }
    51% {
        left: 52px;
    }
    63% {
        left: 52px;
    }
    66% {
        left: 4px;
    }
    69% {
        left: 104px;
    }
    72% {
        left: 4px;
    }
    75% {
        left: 104px;
    }
    78% {
        left: 4px;
    }
    81% {
        left: 104px;
    }
    84% {
        left: 72px;
    }
    94% {
        left: 72px;
    }
    97% {
        left: 104px;
    }
}

/* :not(:required) hides this rule from IE9 and below */
.wobblebar-loader:not(:required) {
    margin: 2em;
    background: #dd2f00;
    -moz-border-radius: 10.66667px;
    -webkit-border-radius: 10.66667px;
    border-radius: 10.66667px;
    display: inline-block;
    overflow: hidden;
    text-indent: -9999px;
    width: 128px;
    height: 21.33333px;
    position: relative;
}

.wobblebar-loader:not(:required)::after {
    -moz-animation: wobblebar-loader 15000ms infinite ease;
    -webkit-animation: wobblebar-loader 15000ms infinite ease;
    animation: wobblebar-loader 15000ms infinite ease;
    background: white;
    display: block;
    -moz-border-radius: 7.11111px;
    -webkit-border-radius: 7.11111px;
    border-radius: 7.11111px;
    content: '';
    position: absolute;
    top: 3.55556px;
    left: 4px;
    width: 21.33333px;
    height: 14.22222px;
}

select.myselect {
    display: inline-block;
    margin: 5px;
    border: 1px solid #e2e2e4;
    min-width: 15px;
    padding: 3px 35px 3px 3px;
    font-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(http://www.stackoverflow.com/favicon.ico) 96% / 15% no-repeat white;
}

/*target Internet Explorer 9 and Internet Explorer 10:*/
@media screen and (min-width: 0\0
) {
    select.myselect {
        background: none;
        padding: 5px;
    }
}

.timetable-activity {
    float: left;
    padding: 2em;
    line-height: 1.5em;

}

.timetable-activity h3, .timetable-activity h4, .timetable-activity, .timetable-activity h5 {
    font-family: 'Adobe Garamond', Garamond, "EB Garamond", Georgia, serif;
}

.timetable-activity h3 {
    font-weight: bold;
    font-size: 16px;
    color: #CA0000;
    margin-bottom: 0;
!important
}

.timetable-activity h4 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0;
!important
}

.timetable-activity h5 {
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    color: inherit;
    margin-top: 0;
    margin-bottom: 0;
}

/**Bootstrap overrides**/
h2 small {
    color: #d5d5d5;
}

.jumbotron .container h2 {
    margin: 0;
}

.btn-primary:hover {
    background-color: #b81824;
}

.jumbotron {
    color: white;
    background-color: rgb(140, 12, 4);
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover {
    background-color: rgb(208, 63, 53);
    color: white;
}

.navbar-default {
    border-bottom: 1px solid #E0E0E0;
}

/*label, h1, h2, h3, h4, h5, h6, small, .btn-xs, select.myselect{*/
/*font-weight: 200;*/
/*font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;*/
/*}*/

label {
    font-weight: bold;
    color: #c12e2a;
}

/**angular ui switch**/

.switchlabel {
    text-align: right;
    display: inline-block;
    width: 100%;
}

.switchlabel span {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

.switch {
    background: #fff;
    border: 1px solid #dfdfdf;
    position: relative;
    display: inline-block;
    box-sizing: content-box;
    overflow: visible;
    width: 38px;
    height: 20px;
    padding: 0px;
    margin: 0px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
    transition: 0.3s ease-out all;
    -webkit-transition: 0.3s ease-out all;
    top: -1px;
}

/*adding a wide width for larger switch text*/
.switch.wide {
    width: 80px;
}

.switch small {
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0px;
    left: 0px;
    transition: 0.3s ease-out all;
    -webkit-transition: 0.3s ease-out all;
}

.switch.checked {
    background: rgb(100, 189, 99);
    border-color: rgb(100, 189, 99);
}

.switch.checked small {
    left: 22px;
}

/*wider switch text moves small further to the right*/
.switch.wide.checked small {
    left: 52px;
}

/*styles for switch-text*/
.switch .switch-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.switch .off {
    display: block;
    position: absolute;
    right: 10%;
    top: 25%;
    z-index: 0;
    color: #A9A9A9;
}

.switch .on {
    display: none;
    z-index: 0;
    color: #fff;
    position: absolute;
    top: 25%;
    left: 9%;
}

.switch.checked .off {
    display: none;
}

.switch.checked .on {
    display: block;

}

.switch.disabled {
    opacity: .50;
    cursor: not-allowed;
}

.compactlist {
    font-size: 12px;
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

.compactlist li {
    margin-top: 3px;
    border-top: 1px dotted lightblue;
    padding: 4px 0 3px 0;
}

ul.enrolled {
    list-style-type: none;
    font-size: 14px;
    margin-left: 0;
    padding-left: 0;
}

.linklike {
    color: #337ab7;
    text-decoration: underline;
}

.linklike:hover {
    color: #23527c;
    text-decoration: none;
}

.appreq .row .num h1 span {
    display: none;
}

.appreq.disabled .row .num h1 span {
    display: inline;
    padding: 5px;
    color: green;
    opacity: 1;
}

.appreq.disabled .row .txt {
    opacity: 0.2;
}

/*Online Placement Styles*/
.centered {
    text-align: center;
}

.stopwatch,#playTime {
    font-family: Merriweather, serif;
    font-size: 24px;
}

#recordButton {
    background: url(images/record-btn.png) no-repeat;
    background-size: contain;
    width: 86px;
    height: 85px;
    border: none;
}

#playButton {
    background: url(images/play-btn.png) no-repeat;
    background-size: contain;
    width: 86px;
    height: 85px;
    border: none;
}

#stopButton, #stopPlayButton {
    background: url(images/stop-btn.png) no-repeat;
    background-size: contain;
    width: 86px;
    height: 85px;
    border: none;
}

#uploadButton {
    background: url(images/upload-btn.png) no-repeat;
    background-size: contain;
    width: 86px;
    height: 85px;
    border: none;
}

#uploadButton[disabled] {
    background: url(images/upload-btn-down.png) no-repeat;
    background-size: contain;
    width: 86px;
    height: 85px;
    border: none;
}

#prevBtn {
    background: url(images/prevq-btn.png) no-repeat;
    background-size: contain;
    width: 211px;
    height: 34px;
    border: none;
    float: left;
}

#nextBtn {
    background: url(images/nextq-btn.png) no-repeat;
    background-size: contain;
    width: 211px;
    height: 34px;
    border: none;
    float: right;
}

#startBtn {
    background: url(images/start-button.png) no-repeat;
    background-size: contain;
    width: 129px;
    height: 34px;
    border: none;
    float: right;
}

#videoQ {
    width: 640px;
    height: 360px;
}

.hideControl {
    display: none !important;
}

@media (max-width: 430px) {

    #videoQ {
        width: 320px;
        height: 180px;
    }
}

#QuestionBox {
    text-align: left;
}

.jumbotron {
    margin-bottom: 0px !important;
}

.panel img,.thumbnail img,.alert img {
    width:100%;
}
.alert img {
    margin-top:0.5em;
}
/**
.modal-dialog,
.modal-content {
    height: 90vh;
}
**/

#iframeContent {
    height: 80vh;
}