﻿html {
    height: 100%;
    margin: 0;
    font-size: 62.5%; /* Standard Browsers sets font size to 16px. This makes conversion easier so that 1rem = 10px*/
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "ClearSans", Helvetica, sans-serif; /*-apple-system, BlinkMacSystemFont, removed for now because it causes issues on Mac*/
    font-size: 1.4rem;
    line-height: 1.42857143;
    color: #374c57;
    background-color: #fff;
}

/* We own h1. Back end code insures that content won't have an h1, so we can use SA style for the page header and crawlers will find our h1 */
h1 {
    font-size: 3.6rem !important;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.1;
    color: inherit;
    box-sizing: border-box;
    display: block;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--pro-cyan);
}

    a:hover {
        text-decoration: none;
        color: var(--blue-grey)
    }

.saCourseDetails__sideHeader1 {
    border-bottom: 1px solid #c9c9c9;
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 5px;
}

.saCourseDetails__date {
    color: #00968F;
    font-weight: bold;
    font-size: 1.5rem;
}

.saCourseDetails__details__address {
    font-size: 1.5rem;
    margin-top: 5px;
    clear: both;
}

.saCourseDetails__price {
    font-size: 2rem;
    font-weight: bold;
    color: #00968F;
}

.saCourseDetails__earlyPrice {
    font-weight: bold;
    font-size: 1.4rem;
}

.saCourseDetails__sideHeader2 {
    font-weight: bold;
    color: #374C57;
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.saCourseDetails__trainerImage {
    width: 70px;
    border-radius: 10%;
}

@media only screen and (min-width: 768px) {
    .saCourseDetails__trainerImage {
        width: 100px;
        border-radius: 10%;
    }
}

.saCourseDetails__trainerInfo__name {
    font-size: 1.8rem;
    font-weight: 900;
}

.saCourseDetails__trainerInfo__title {
    font-size: 1.4rem;
    font-weight: 900;
}

.saCourseDetails__trainerInfo__contact__org {
    font-size: 1.4rem;
}

.saCourseDetails__trainerInfo__contact__phone {
    font-size: 1.2rem;
}

    .saCourseDetails__trainerInfo__contact__phone:before {
        content: "\f10b";
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        font-size: 2.2rem;
        display: inline-block;
        padding-right: 10px;
        vertical-align: middle;
    }

.saCourseDetails__trainerInfo__contact__email {
    font-size: 1.2rem;
}

    .saCourseDetails__trainerInfo__contact__email:before {
        content: "\f0e0";
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        display: inline-block;
        padding-right: 10px;
    }

