﻿.DetailText {
    display: none;
    padding: 5px;
}

#FOS-container.FOS-shown .DetailText.active {
    display: block;
}

#FOS-list {
    height: 300px;
    margin-left: 0px;
    -webkit-transition: margin 1s ease;
    -moz-transition: margin 1s ease;
    -o-transition: margin 1s ease;
    -ms-transition: margin 1s ease;
    transition: margin 1s ease;
}

#FOS-info {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: #38373B;
    color: white;
    z-index: 999;
    height: 0px;
    width: 0px;
    -webkit-transition: width 1s ease;
    -moz-transition: width 1s ease;
    -o-transition: width 1s ease;
    -ms-transition: width 1s ease;
    transition: width 1s ease;
}

@media screen and (max-width: 768px) {
    #FOS-container.FOS-shown #FOS-info {
        position: absolute;
        display: block;
        right: 0px;
        top: 150px;
        width: auto;
        height: 150px;
    }

    #FOS-container.FOS-shown #FOS-list {
        height: 150px;
    }
}

@media screen and (min-width: 768px) {
    #FOS-container.FOS-shown #FOS-info {
        display: block;
        top: 0px;
        width: 40%;
        height: auto;
    }

    #FOS-container.FOS-shown #FOS-list {
        margin-left: 40%;
    }
}

.results tr[visible='false'],
.no-result {
    display: none;
}

.results tr[visible='true'] {
    display: table-row;
}


.counter {
    padding: 8px;
    color: #ccc;
}

.Answer {
    position: relative;
    padding-left: 60px;
    user-drag: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
}

    .Answer:before {
        position: absolute;
        font-family: 'Glyphicons Halflings';
        content: "\e157";
        float: left;
        color: #F0F0F0;
        margin-top: -10px;
        margin-left: -60px;
        vertical-align: bottom;
        padding-left: 15px;
        padding-right: 15px;
        height: 100%;
        vertical-align: middle;
        line-height: 35px;
    }

    .Answer:hover:before {
        content: "\e013";
        color: grey;
        background-color: white;
        border-right: 1px solid #ddd;
    }

    .Answer.active {
        color: inherit;
        background-color: white;
        border-color: #DDD;
        color: #029DDD;
        font-weight: bold;
    }

        .Answer.active:hover {
            background-color: #f5f5f5;
            color: #555;
            border: 1px solid #ddd;
        }

        .Answer.active:before {
            font-family: 'Glyphicons Halflings';
            content: "\e013";
            float: left;
            color: #029DDD;
            font-weight: normal;
        }

    .Answer.fosdisabled {
        background-color: #ccc;
    }

        .Answer.fosdisabled.active {
            color: inherit;
            border-color: #DDD;
            color: inherit;
            font-weight: bold;
        }

.fos-li {
    border: 1px solid white;
}

    .fos-li-disabled {
        
        background-color: #ccc;
    }

.incontexthelp {
    display: none;
}

.Question {
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

    .Question:last-of-type {
        background-color: #DDD;
    }

    .Question .panel-title {
        position: relative;
        padding-left: 30px;
    }

    .Question .panel-heading {
        cursor: pointer;
    }

body.modal-open {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}

.Question.CurrentQ .panel-heading {
    cursor: auto;
}

.Question .panel-title:before {
    position: absolute;
    height: 100%;
    margin-left: -40px;
    font-family: 'Glyphicons Halflings';
    content: "\e085";
    float: left;
    margin-right: 10px;
    font-size: 25px;
    margin-top: -6px;
    line-height: 30px;
    color: #F0AD4E;
}


.Question .panel-title:before {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}


.Question.Answered .panel-title:before {
    color: #ABABAB !important;
    -webkit-animation: rotate2 0.5s 1 ease-out;
    animation: rotate2 0.5s 1 ease-out;
    content: "\e084";
}

.CurrentQ {
    background-color: white;
    -webkit-box-shadow: 0px 0px 3px 2px rgba(112,112,112,1);
    -moz-box-shadow: 0px 0px 3px 2px rgba(112,112,112,1);
    box-shadow: 0px 0px 3px 2px rgba(112,112,112,1);
    background-color: #029DDD;
}

    .CurrentQ .questionfooter {
        display: none;
    }

    .CurrentQ .panel-title div:hover {
        cursor: default;
    }

    .CurrentQ .incontexthelp {
        display: block;
    }

    .CurrentQ .panel-heading {
        border-bottom: 1px solid #ddd;
    }

.Question.Answered.CurrentQ .panel-title:before {
    color: #38373B !important;
}

.panel {
    margin-bottom: 0px;
}


.inside .main {
    padding: 0px;
}

#allContents {
    padding: 5px;
    padding-top: 0px;
}

.modal-footer, .modal-header {
    padding: 5px;
}


@media screen and (min-width: 768px) {
    #allContents {
        padding: 0px;
        padding-top: 0px;
    }

    .modal-header {
        padding: 15px;
    }
}

@-webkit-keyframes rotate2 {
    0% {
        -webkit-transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(90deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@keyframes rotate2 {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(90deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}


.easyapp-wrapper-div {
    /*overflow: scroll;*/
    height: 300px;
    overflow-y: auto;
}

    .easyapp-wrapper-div table {
        -moz-box-shadow: inset 0 8px 8px -8px #696868, inset 0 -8px 8px -8px #696868;
        -webkit-box-shadow: inset 0 8px 8px -8px #696868, inset 0 -8px 8px -8px #696868;
        box-shadow: inset 0 8px 8px -8px #696868, inset 0 -8px 8px -8px #696868;
    }

        .easyapp-wrapper-div table tr {
            background-color: white;
            border: 0px;
        }

            .easyapp-wrapper-div table tr:hover {
                background-color: #efefef;
            }

                .easyapp-wrapper-div table tr:hover td {
                    background-color: #efefef;
                }

.activeCell {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
}

.input-group * {
    border-radius: 0px;
    height: inherit;
}

/*
.panel-body .form-group {
    margin-right: 0;
    margin-left: 0;
} 

.panel-body .form-group .search {
    padding-right: 0px;
    padding-left: 2px;
}*/

.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -ms-animation: spin .7s infinite linear;
    -webkit-animation: spinw .7s infinite linear;
    -moz-animation: spinm .7s infinite linear;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spinw {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spinm {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

EA_Disclaimer {
    margin: 20px;
    padding: 20px;
    border: 1px solid #CCC;
    background-color: white;
    box-shadow: 5px 5px 5px grey;
}


.EA_schoolleaver {
    background-color: white;
}


.EA_CondOffer {
    background-color: white;
}

    .EA_CondOffer a {
        color: #00B0F0;
    }

.offerTable {
    border-collapse: collapse;
}

    .offerTable tr th {
        background: #009EDD;
        color: white;
        padding: 5px;
        text-align: center;
        border: 1px dotted #CCC;
    }

    .offerTable tr {
        height: 20px;
    }

    .offerTable td {
        border: 1px dotted #CCC;
        padding: 5px;
    }

.apply-btn span:first-child {
    padding-right: 50px;
}

.apply-btn:hover {
    color: #fff;
    text-decoration: none;
}

.apply-btn {
    background: #009edd;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

.success-btn {
    background: #00DD79;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}


.course-search-widget {
    margin-bottom: 20px;
}

.panel-title span {
    display: none;
}


body {
    -ms-overflow-style: scrollbar;
}

.helpButton {
    border-radius: 10px 10px 0px 0px;
    position: fixed;
    right: -40px;
    top: 80%;
    background-color: #38373B;
    border: 1px solid white;
    z-index: 1000;
    color: white;
    padding: 1px;
    text-align: center;
    font-size: 14px;
    transform: rotate(270deg);
    opacity: 0.75;
}

.helpDiv.activeHelp {
    display: block;
}

#firstHelpDiv button {
    width: 100%;
    text-align: left;
}

    #firstHelpDiv button span {
        padding-right: 20px;
    }

.helpDiv {
    display: none;
    max-width: 300px;
    border-radius: 5px 0px 0px 5px;
    position: fixed;
    right: -2px;
    bottom: 20px;
    background-color: white;
    border: 1px solid black;
    z-index: 1000;
}

.helpButton .sideButton {
    padding: 5px 10px 0px 10px;
}

.sideButton:hover {
    cursor: pointer;
}


.helpDiv.activeHelp {
}

.helpButton:hover {
    opacity: 1.0;
}

input {
    max-width: 100%;
}

table.offeringsList th {
    background-color: #f5f5f5;
    color: #525252;
}

tr.courseListRow {
    background-color: white;
    border: 0px;
}

    tr.courseListRow:hover {
        background-color: #ccc;
    }

        tr.courseListRow:hover td {
            background-color: #ccc;
        }

.condition-question label {
    font-weight: normal;
}

.condition-question > label > input {
    float: left;
}

.condition-question > label > div {
    margin-left: 20px;
    display: block;
}

.btn-upload {
    display: inline-block;
    padding: 6px 12px;
    margin: 0px 0px 0px 20px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.file-list {
    margin-left: 20px;
}

.file-upload-input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    -ms-filter: 'alpha(opacity=0)';
    font-size: 200px;
    direction: ltr;
    cursor: pointer;
}

.file-block {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    margin: 0px 5px 5px 0px;
}

.file-block-progressing {
    background-color: rgba(91,192,222,0.5);
    border-color: #46b8da;
}

.file-block-complete {
    background-color: rgba(91,192,222,1);
    border-color: #46b8da;
}

.file-block-error {
    background-color: rgba(201,48,48,0.5);
    border-color: #ac2925;
}

.file-name {
    display: inline-block;
    /*white-space: nowrap;*/
    position: relative;
    padding: 6px 12px;
    margin: 0px 32px 0px 0px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: white;
    text-decoration: none;
    text-align: left;
}

    .file-name > a, .file-name > a:hover, .file-name > a:visited, .file-name > a:active {
        color: white;
        margin: 0px;
        padding: 0px;
    }

.file-upload-progress {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    display: block;
    text-wrap: none;
    text-overflow: clip;
    background-color: rgba(91,192,222,1);
    border-radius: 4px;
    border-width: 0px;
}

.file-upload-control-button {
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: white;
    border: none;
    background: none;
    opacity: 0.5;
    padding: 0px;
    margin: 4px 6px 0px 0px;
    position: absolute;
    top: 0px;
    right: 6px;
}

    .file-upload-control-button:hover,
    .file-upload-control-button:focus {
        text-decoration: none;
        cursor: pointer;
        opacity: 1;
    }

    .file-upload-control-button > i {
        font-size: 14px;
    }

.file-upload-error-message {
    clear: both;
    font-size: small;
    padding: 0px 12px 3px 12px;
    margin: 0px 32px 0px 0px;
    color: red;
    display: block;
    text-align: left;
}

.file-upload-error-message {
    clear: both;
    font-size: small;
    padding: 0px 12px 3px 12px;
    margin: 0px 32px 0px 0px;
    color: red;
    display: block;
    text-align: left;
}

.Group_Heading h2.panel-title:hover {
    cursor: pointer;
}

.incontexthelp {
    cursor: pointer;
}


.panel-heading h2 {
    padding-top: 7px;
    padding-bottom: 7px;
}

.Group_Heading .panel-heading {
    position: relative;
}

    .Group_Heading .panel-heading:after {
        font-family: 'Glyphicons Halflings';
        content: "\e114";
        float: right;
        position: absolute;
        line-height: 55px;
        right: 0px;
        top: 0px;
        color: white;
        width: 30px;
        padding-left: 10px;
    }

.CurrentG .Group_Heading .panel-heading:after {
    content: "\e080";
}

.Group_Heading {
    border-radius: 2px;
    margin-top: 10px;
    border-width: 2px;
    position: relative;
}

    .Group_Heading:first-of-type {
        margin-top: 0px;
    }
/*
    .Group_Heading:hover {
       margin-bottom:70px;
    }
    .Group_Heading:hover:after {
        z-index:1000;
        background-color:white;
        position:absolute;
        bottom:-55px;
        width:33%;
        left:33%;
        height:30px;
        text-align:center;
        color: #bbb;
        padding:5px;
        padding-bottom:0px;
        border:2px dashed #ccc;
        display:block;
        border-radius:5px;
        content:'click to see questions for this category';
    }

    .CurrentG .Group_Heading:hover {
        margin-bottom:10px;
    }
    .CurrentG .Group_Heading:hover:after {
        display:none;
    }
*/
/* Shows a upward facing triangle 
    .Group_Heading.CurrentG:after {
        position: absolute;
        bottom: -4px;
        left: 5%;
        content: '';
        margin-left: -15px;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid white;
    }
        */

.CurrentG .Group_Heading {
    border-color: #029DDD;
    margin-bottom: 10px;
}

    .CurrentG .Group_Heading .panel-heading {
        background-color: #029DDD;
        color: white;
        border-bottom: 0px;
    }

.group {
    margin-bottom: 10px;
}

.CurrentG .Group_Heading {
    margin-bottom: 10px;
}

.Group_Heading {
    cursor: pointer;
}

.CurrentG .Group_Heading {
    cursor: default;
}

#courseTables {
    margin-top: 15px;
}

.informationBlock:after {
    content: 'Congratulations!';
    -webkit-animation: informationText 20s 1 linear;
    animation: informationText 20s 1 linear;
    text-wrap: normal;
    background: #ddd;
    width: 300px;
    height: 100px;
    display: inline-block;
    vertical-align: middle;
    margin-right: .5em;
    margin-left: 1em;
    padding: 10px;
}

.informationBlock:before {
    font-size: 60px;
    color: #ABABAB !important;
    font-family: 'Glyphicons Halflings';
    -webkit-animation: information 20s 1 linear;
    animation: information 20s 1 linear;
    content: "\e084";
}

.Course_Cat .list-group-item:hover {
    cursor: pointer;
}

#COMainContent {
    margin-left: 0px;
}

#COMainHeader {
    margin-top: 0px;
}

.COImage {
    display: none;
}

.COTableCell {
    min-width: 0px;
}

@media screen and (min-width: 568px) {
    #COMainContent {
        margin-left: 55px;
    }

    #COMainHeader {
        margin-top: 110px;
    }

    .COImage {
        display: block;
    }

    .COTableCell {
        min-width: 120px;
    }
}

@media print {
    .EA_CondOffer p {
        font-size: 9pt;
        margin-bottom: 0.8em;
    }

    #COMainContent {
        margin-left: 0px;
    }

    #COMainContent {
        margin-left: 55px;
    }

    #COMainHeader {
        margin-top: 110px;
    }

    .COImage {
        display: block;
    }

    .COTableCell {
        min-width: 120px;
    }

    @page {
        margin: 1cm;
    }

    .EA_CondOffer > div {
        margin-top: 10px;
    }
}
