/* Brian's Additions */


.account-contain {
    background-size: cover;
    background-position: center center;
    min-height: 50vh;
}

.account-contain .account-wrapper {
    background: white;
    padding: 20px 40px 40px;
    margin-bottom: 120px;
}

.account-contain .btn,
.account-contain input[type="button"],
.account-contain input[type="submit"] {
    border-bottom: none !important;
    color: white !important;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    font-family: HelveticaNeue-CondensedBold, Helvetica, Arial, sans-serif;
    font-style: normal;
    font-size: 0.9em;
    padding: 10px 40px;
    border-radius: 3px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    background: rgb(28, 45, 63);
}
.account-contain .btn:hover,
.account-contain input[type="button"]:hover,
.account-contain input[type="submit"]:hover {
    background: rgb(206, 105, 41);
}

.account-contain input[type="text"], 
.account-contain input[type="email"], 
.account-contain input[type="password"], 
.account-contain input[type="email"] {
    background: #ece9e0;
    font-style: italic;
    border: 1px solid #ece9e0;
    outline: none;
    font-size: .9em !important;
    line-height: normal !important;
    padding: 15px 20px !important;
    min-width: 250px;
}

.account-contain label {
    font-family: HelveticaNeue-CondensedBold, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    display: block;
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0 0 10px 0;
    font-weight: normal;
}

.login-error {
    color: red;
}

/* New Header for CW Courses */

.page-courageworks-library {

}

.course-header {
    background: url('../../../_static/images/header-image.jpg') center bottom repeat-x;
    background-size: cover !important;
    color: white;
    height: 234px;
    text-align: center;
}

.course-header h2 {
    color: white;
    display: inline-block;
    font-family: HelveticaNeue-CondensedBold, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 3.5em;
    line-height: 1.4;
    font-weight: normal;
}
@media screen and (max-width: 600px) {
    .course-header h2 {
        font-size: 2.5em;
        line-height: 2.9;
    }
}

.courses-container .wrapper {
    max-width: 1920px;
}

.course-list {
    font-size: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.course-list li {
    box-sizing: border-box;
    display: inline-block;
    font-size: 0.9rem;
    margin: 0 15px;
    min-width: 400px;
    width: calc(33.33% - 30px);
    vertical-align: top;
}
@media screen and (max-width: 480px) {
    .course-list li {
        min-width: 300px;
    }
}

.course-list li a.thumb-wrapper {
    border: none;
    display: inline-block;
    height: 400px;
    width: 400px;
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
}
@media screen and (max-width: 480px) {
    .course-list li a.thumb-wrapper{
        height: 300px;
        width: 300px;
    }
}

.course-list li a.thumb-wrapper img {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
}

.course-list li a.thumb-wrapper:hover {
    background: transparent;
    border: none;
}

.course-list li a.thumb-wrapper:hover img {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}


.course-list li h2 {
    height: 68px;
}

.course-list li h2 a {
    font-style: normal !important;
    padding: 5px 10px;
    text-decoration: none;
}

/* Accordion */
.accordion {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}