﻿/*------------------------------------------------------------------
[Master Stylesheet]

Project:    JSP-Build
Version:    1.1
Last change:    05/02/08 
Assigned to:    Sutty
Primary use:    @client name@ JSP Styles 
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[conflict with our CSS and theirs]
/*------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Panel-Body]
/*------------------------------------------------------------------*/
.panel {
    padding: 25px !important;
    box-shadow: 3px 8px 8px 3px rgba(84,76,76,.2);
    margin-bottom: 15px !important;
}

    .panel h1 {
        font-size: 18px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }
/*------------------------------------------------------------------
[Search Widget]
/*------------------------------------------------------------------*/

/*form control*/
.form-control {
}
/*Search Widget Addons*/
.input-group {
    margin-bottom: 5px;
}

.input-group-addon {
    background-color: #fff;
    border-right: 0px !important;
    border-radius: 0px !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.input-group .form-control {
    border-left: 0px !important;
}

.input-group-addon .fa {
    font-size: 20px;
}

.input-group-addon i {
    width: 13px;
}

/*------------------------------------------------------------------
[Job Display Home Layout]
/*------------------------------------------------------------------*/
/*Pagination*/
.pagination {
    margin-bottom: 0px !important;
    text-align: center;
}

.job-count {
}

.pagination > li > a {
}

    .pagination > li > a:hover {
    }

.pagination > .active > a {
}

.no-result {
    text-align: center;
}
/*------------------------------------------------------------------
[Individual Job Display]
/*------------------------------------------------------------------*/

/*layout*/
.panel-body-title {
}

/*Job view sidebar*/
@media only screen and (min-width: 800px) {
    .sticky {
        position: sticky;
        top: 1%;
    }
}

/*Document View*/
#document-outer {
    display: none;
}

/*Social Share*/
.social-ul {
    padding: 0px !important;
}

.social-list {
    list-style-type: none;
}

.share-links {
    color: #333333;
    display: inline-block;
    width: 38px;
    height: 38px;
    border: 2px solid #333333;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    font-size: 20px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    line-height: 35px;
    margin-right: 5px;
    margin-top: 5px;
}

.fa-2x {
    font-size: 1em;
}
/*------------------------------------------------------------------
[Buttons]
/*------------------------------------------------------------------*/
.btn-widget {
}

    .btn-widget:active, .btn-widget:focus, .btn-widget:hover, .btn-widget:visited {
    }

.btn-primary, .btn-sidebar {
}

    .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .btn-primary:visited, .btn-sidebar:active, .btn-sidebar:focus, .btn-sidebar:hover, .btn-sidebar:visited {
    }

.btn-sidebar {
    width: 100%;
}

.btn-secondary {
}

    .btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover, .btn-secondary:visited {
    }


/*------------------------------------------------------------------
[Self Build Application Form]
/*------------------------------------------------------------------*/

/*Application Form*/
/*Counter*/
body {
    counter-reset: section;
    overflow: initial !important;
}

label {
}

#application-rendered-form .dz-message {
    padding: 25px;
}

.required-flag {
    color: red;
}

.panel-heading {
    padding-left: 35px;
    position: relative;
}

    .panel-heading:before {
        color: rgb(255, 255, 255);
        content: counter(section);
        counter-increment: section 1;
        font-size: 18px;
        height: 25px;
        line-height: 25px;
        position: absolute;
        top: 35%;
        transform: translateY(-50%);
        text-align: center;
        width: 25px;
        background: orange;
        border-radius: 50%;
        left: 0%;
    }

#application-rendered-form .panel {
    margin: 0px !important;
    border: none !important;
}

.radio-question label {
    margin-right: 0px !important;
    background-color: transparent !important;
    padding: 5px !important;
}

#continuation-link {
    border-left: 1px #cccccc solid !important;
}

/*buttons*/
#btnCreateApplication, .complete-application-form, .btn-success {
    width: 100%;
}

.btn-info {
    width: 100%;
}

.back-button {
    margin-bottom: 15px;
}
/*------------------------------------------------------------------
[Self Build Application Form sidebar]
/*------------------------------------------------------------------*/
/*About My Application*/
/*.about-app ul {
    list-style-type: none;
    padding-left: 0px;
}*/
.about-app ul {
    list-style-type: none !important;
    padding-left: 0px !important;
    margin-left: 0px !important;
}

.tickList {
    list-style-type: none;
    position: relative;
    padding-left: 35px;
    display: block;
    margin: 0 0 10px 0;
    color: #000;
    text-align: left;
}

    .tickList::before {
        content: "";
        height: 25px;
        left: 0px;
        position: absolute;
        top: 0px;
        width: 25px;
        background: url(../../../Content/skins/icon--tick-green.svg) 50% center / 60% no-repeat;
        /*background-color: #294270;*/
        border-radius: 50%;
    }
/*Accordian*/
.accordion-Description {
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    width: 100%;
    border: none;
    transition: 0.4s;
    background-color: transparent;
}

    .active, .accordion-Description:hover {
        background-color: transparent;
    }

    .accordion-Description:after {
        content: '\002B';
        color: #777;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

.about-app .active:after {
    content: "\2212";
}

.description-Panel {
    padding: 0px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

    .description-Panel ul {
        padding-left: 25px !important;
    }

        .description-Panel ul li {
            list-style-type: disc !important;
        }

    .description-Panel ol li {
        list-style-type: decimal !important;
    }

.accordion-Description:focus {
    background-color: transparent !important;
    outline: none !important;
}

/*layout*/
.form-answer .text-center {
    text-align: left !important;
}
/*detailed capture forms*/
#data-capture-rendered-form h1 {
    display: none;
}

body {
    font: 124%/1.5 "MuseoSans-500", sans-serif !important;
}

ul, ol {
    margin-top: 0;
    margin-bottom: 0;
}

section#hero {
    float: left;
    height: 492px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

#hero div.bx-wrapper {
    float: left;
    position: absolute;
    width: 100% !important;
}

#hero ul#slider {
    height: 540px;
    list-style-type: none;
}

    #hero ul#slider li {
        background-position: 0px -120px;
        background-repeat: no-repeat;
        height: 540px;
        background-size: cover;
    }

#coursecta {
    margin: 311px 0 30px 0;
    width: 100%;
    float: left;
}

@media screen and (min-width: 768px) {
    body.home section#coursecta, body.home section#coursecta.open {
        margin-top: 492px;
    }

    section#hero {
        float: left;
        height: 387px;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 1;
    }
    h3.job-count.ng-binding {
    display: none;
}
}

#hero ul#slider li article {
    padding: 20px 0 20px 20px;
    width: 88%;
    background-color: #f2a900;
    float: left;
    height: 162px;
    margin-top: 186px;
    opacity: 0.9;
}

@media screen and (min-width: 768px) {
    #hero ul#slider li article {
        margin-top: 242px;
    }
}

@media screen and (min-width: 640px) {
    #hero ul#slider li article {
        width: 50%;
    }
}

#hero ul#slider li article h2 {
    font-size: 3.48em;
    width: 80%;
    margin-top: 41px;
    color:white;
}

.input-group {
    margin-bottom: 5px;
    width: 100%;
}

.homesearch {
    background: #f2a900 !important;
    padding: 15px 25px !important;
    margin-top: -10px;
}

.homesearch input#btnSearch {
        background: none;
        color: white;
        border: 1px solid white;
        padding: 6px 29px;
        width: 100%;
    }


    .homesearch .pull-right.pa-b {
        width: 100%;
    }


@media screen and (min-width: 768px){
nav#subnav {
    width: 224px;
    margin-right: 12px;
    font-size: 1.08em;
    padding: 0px 0 0 15px !important;
    background: none !important;
    top: 0 !important;
    position: initial !important;
}

    nav#subnav ul li a {
        color: #00859b !important;
        display: block;
        padding: 10px 6px 10px 16px;
    }
    nav#subnav > ul#first > li.active > a {
        background-color: #f2a900 !important;
        color: white !important;
    }

    nav#subnav ul#first > li {
        background-color: white !important;
        border-bottom: 1px solid #fff !important;
        color: #00859b !important;
    }

   }


@media screen and (min-width: 1024px) {
    .three-col #content {
        width: 75.7% !important;
        position: initial;
    }

    .content-first {
        margin-top: -194px;
    }
}


.aboutimage {
    width: 100%;
    margin-top: -21px;
    margin-bottom: 19px;
}

a.viewalljobs {
    float: right;
    margin-top: -38px;
    color: #f2a900;
    font-weight: 600;
    border: 1px solid #f2a900;
    padding: 4px 10px;
    text-decoration: none;
}

a.viewrolejobs {
    max-width: 49%;
    width: 50%;
    display: inline-block;
    padding-right: 15px;
    padding-left: 15px;
}

.viewrolejobs img {
    width: 100%;
}

#myCarousel h3, #myCarousel2 h3, #myCarouselMobile h3{
    text-align: center;
    font-weight: 600;
}

#myCarousel i.fa, #myCarousel2 i.fa {
    text-align: center;
    color: #f2a900;
    display: block;
    margin: 0 auto;
    font-size: 66px;
    margin-top: 23px;
}


#myCarouselMobile i.fa {
    text-align: center;
    color: #f2a900;
    display: block;
    margin: 0 auto;
    font-size: 66px;
    margin-top: 23px;
}


#myCarousel p, #myCarousel2 p, #myCarouselMobile p{
    font-size: 1em;
}

span.glyphicon.glyphicon-chevron-left, span.glyphicon.glyphicon-chevron-right {
    color: orange !important;
}

a.left.carousel-control, a.right.carousel-control {
    background-image: none;
}


@media screen and (min-width: 768px) {
    #myCarousel .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -89px !important;
    }
    #myCarousel .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -89px !important;
    }


    #myCarousel2 p, #myCarousel2 h4 {
        max-width: 69%;
        display: block;
        margin: 0 auto;
    }
}

#myCarousel li, #myCarousel2 li {
    font: 124%/1.5 "MuseoSans-500", sans-serif !important;
}


body{
    padding: 0 !important;
}

#myCarousel2 h4 {
    text-align: center;
}


.jobListing .panel {
    background-color: #fff;
    border-top: 4px solid #f2a900;
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px;
    border-radius: 0;
    text-align: left;
    box-shadow: none !important;
}

.jobListing a.ng-binding {
    font-size: 1.08em;
    margin-bottom: 12px;
    line-height: 1.1;
    color: darkslategrey;
    text-decoration: none !important;
}

.btn-primary, .btn-primary:hover {
    color: #fff;
    background-color: orange !important;
    border-color: orange !important;
    border-radius: 0;
}

.btn-secondary, .btn-secondary:hover {
    color: orange !important;
}

.pagination-pages {
    display: block !important;
    width: 100%;
    text-align: center;
    position: absolute;
    right: -38%;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: orange !important;
    border-color: orange !important;
}

.panel-body-title {
    text-align: left;
    font-size: 2em !important;
}

.content-text {
    text-align: left;
}



.back-button {
    text-align: left;
    color: black !important;
}

    .back-button a {
        text-align: left;
        text-decoration: none;
        color: black !important;
    }


    @media(max-width:748px){
        .bx-viewport {
            height: 386px !important;
        }
        ul#mobile-switch {
            display: none !important;
        }
    }


body.application {
    font: 78%/1.5 "MuseoSans-494", sans-serif !important;
}

div#application-rendered-form {
    border-top: 4px solid #f2a900;
}

.panel.about-app.side-box {
    border-top: 4px solid #f2a900;
    background: white;
}
.panel.side-box.job-detail {
    border-top: 4px solid #f2a900;
    background: white;
}
button.btn.btn.btn-success.complete-application-form {
    background: orange;
    border: orange;
}

#myCarousel li, #myCarousel2 li {
    font-size: 13px !important;
}



body {
    padding: 0 !important;
}

#myCarousel2 h4 {
    text-align: center;
}


.jobListing .panel {
    background-color: #fff;
    border-top: 4px solid #f2a900;
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px;
    border-radius: 0;
    text-align: left;
    box-shadow: none !important;
}

.jobListing a.ng-binding {
    font-size: 1.08em;
    margin-bottom: 12px;
    line-height: 1.1;
    color: darkslategrey;
    text-decoration: none !important;
}

.btn-primary, .btn-primary:hover {
    color: #fff;
    background-color: orange !important;
    border-color: orange !important;
    border-radius: 0;
}

.btn-secondary, .btn-secondary:hover {
    color: orange !important;
}

.pagination-pages {
    display: block !important;
    width: 100%;
    text-align: center;
    position: absolute;
    right: -38%;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: orange !important;
    border-color: orange !important;
}

.panel-body-title {
    text-align: left;
    font-size: 2em !important;
}

.content-text {
    text-align: left;
}



.back-button {
    text-align: left;
    color: black !important;
}

    .back-button a {
        text-align: left;
        text-decoration: none;
        color: black !important;
    }

#myCarouselMobile {
    display: none !important;
}

div#myCarouselMobile {
    display: none !important;
}


@media(max-width:748px) {
    .bx-viewport {
        height: 386px !important;
    }

    .aboutimage {
        width: auto;
    }


    body.application {
        font: 78%/1.5 "MuseoSans-494", sans-serif !important;
    }

    div#application-rendered-form {
        border-top: 4px solid #f2a900;
    }

    .panel.about-app.side-box {
        border-top: 4px solid #f2a900;
        background: white;
    }

    .panel.side-box.job-detail {
        border-top: 4px solid #f2a900;
        background: white;
    }

    button.btn.btn.btn-success.complete-application-form {
        background: orange;
        border: orange;
    }

    #myCarousel li, #myCarousel2 li {
        font-size: 13px !important;
    }

    div#myCarousel2 {
        min-height: 350px;
    }

    header ul#mobile-switch li a#navmenu {
        float: right;
    }

}


#myCarousel2 h4 {
    text-align: center;
    font-weight: 700;
}

@media(max-width:769px) {
    #myCarouselMobile {
        display: block !important;
        min-height: 338px !important;
    }

    #myCarousel {
        display: none;
    }

    a.viewrolejobs {
        max-width: 100%;
        width: 100%;
        margin-bottom: 15px;
        display: inline-block;
        padding-right: 15px;
        padding-left: 15px;
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        left: -17% !important;
        margin-left: -10px;
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        right: -14% !important;
        margin-right: -10px;
    }

    .homesearchContainer {
        padding: 0 !important;
    }

    .pagination-pages {
        display: block !important;
        text-align: center;
        /* margin: 0 auto; */
        position: relative;
        right: -6%;
    }

    h3.job-count.ng-binding {
        display: none;
    }
}


@media only screen and (device-width: 768px) {

    section#aboutus {
        margin-top: -199px;
    }

    .pagination-pages {
        display: block !important;
        text-align: center;
        /* margin: 0 auto; */
        position: relative;
        right: -28%;
    }
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
    /* For portrait layouts only */
    .homesearchContainer {
        padding: 0 !important;
    }

    .pagination-pages {
        display: block !important;
        text-align: center;
        /* margin: 0 auto; */
        position: relative;
        right: -28%;
    }
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
    /* For landscape layouts only */
    .homesearchContainer {
        padding: 0 !important;
    }

    .pagination-pages {
        display: block !important;
        text-align: center;
        /* margin: 0 auto; */
        position: relative;
        right: -28%;
    }
}

a.btn-widget.back {
    background: orange;
    color: white;
    border: 1px solid white;
    padding: 6px 29px;
    width: 9%;
    margin-bottom: 10px;
    display: block;
}

.pagination .col-md-8 ul, .pagination .col-md-8 ol {
    padding-left: 15px;
}

    .pagination .col-md-8 ul li {
        list-style: disc !important;
    }

    .pagination .col-md-8 ol li {
        list-style: decimal !important;
    }


