﻿
/*Style Guides Base Colors*/

:root {
    /*Main Colors*/

    --cpab-dark-blue: #1A2B56;
    --cpab-medium-blue: #1673B1;
    --cpab-light-blue: #E8F0F5;
    --cpab-dark-grey: #202020;
    --cpab-medium-grey: #555555;
    --cpab-light-grey: #F5F6F9;
    --cpab-medium-green: #378537;
    --cpab-dark-green: #286428;
    --cpab-pure-white: #FFFFFF;
    /*Support Colors*/

    --cpab-dark-slate: #1E283B;
    --cpab-inky-blue: #273D77;
    --cpab-form-grey: #8CA7B8;
    --cpab-btt-purple: #32509F;
    /*Card Border Colors*/

    --cpab-magenta: #B42473;
    --cpab-steel-blue: #7DA1C4;
    --cpab-medium-purple: #6A5FB1;
    --cpab-medium-teal: #007A78;
    --cpab-gold: #E2D05B;
    --cpab-cerulean: #24A7DD;
    --cpab-olive: #BBBC3D;
    --cpab-dark-purple: #49346E;
    --cpab-seafoam: #8FBC8B;
    /*Text Style*/
    --text-p-max-width: 690px;
    --text-ul-max-width: 590px;
    /* SVGS*/
}



/*Style Guides Base Typography*/
@font-face {
    font-family: 'Gotham Medium';
    src: url('/cpab/fonts/Gotham-Medium.woff') format('woff'), /* Pretty Modern Browsers */
    url('/cpab/fonts/Gotham-Medium.ttf') format('truetype'), /* Safari, Android, iOS */
}

@font-face {
    font-family: 'Gotham Book';
    src: url('/cpab/fonts/Gotham-Book.woff') format('woff'), /* Pretty Modern Browsers */
    url('/cpab/fonts/Gotham-Book.ttf') format('truetype'), /* Safari, Android, iOS */
}



html {
    font-size: 19px !important;
    font-family: 'Gotham Book', sans-serif;
    color: var(--cpab-dark-grey);
    background-color: var(--cpab-pure-white);
}



/* Root Font Scale - Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    html {
        font-size: 18px !important;
    }
}

/* Root Font Scale - Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    html {
        font-size: 17px !important;
    }
}

/* Root Font Scale - Small devices (landscape phones, 576px and up) */
@media (min-width: 0px) and (max-width: 767.98px) {
    html {
        font-size: 16px !important;
    }
}




.pure-button-orange {
    border-style: solid;
    border-width: 1px;
    border-color: #f27b36;
    background-color: #f27b36;
    color: #ffffff;
}

    .pure-button-orange:hover {
        border-color: #0096d7;
        background-color: #0096d7;
    }


.form-hdr {
    text-align:left;
}

span.SignupFormPreview {
    font-weight: normal !important;
    margin: 0px;
    margin-right: 2px;
    line-height: 1.15;
    font-family: 'Gotham Book', sans-serif;
    font-size: .95rem;
    font-weight: normal;
    color: var(--cpab-dark-grey);
}




.btn {
    border-radius: 0px;
    width: auto;
    font-size: .95rem;
    font-weight: 500;
    border: 2px solid var(--cpab-medium-blue);
    margin-top: .5rem;
    margin-bottom: 0.50rem;
    margin-right: 1rem;
    padding: .5rem .9rem;
}

.btn-primary {
    width: auto;
    color: var(--cpab-pure-white);
    background-color: var(--cpab-inky-blue);
    border: 2px solid var(--cpab-inky-blue);
}

 
/* Custom container */
.container-narrow {
    margin: 0 auto;
    max-width: 940px;
}

.container-narrow > hr {
    margin: 30px 0;
}

/* Main marketing message and sign up button */
.jumbotron {
    margin: 60px 0;
    text-align: center;
}

    .jumbotron h1 {
        font-size: 72px;
        line-height: 1;
    }

    .jumbotron .btn {
        font-size: 21px;
        padding: 14px 24px;
    }

section {
    margin-bottom: 45px;
}

form {
    margin: 0;
}

input, select {
    min-height: 2rem;
    padding: 4px;
    margin-left:6px;
    border: solid 1px #8CA7B8;
}

select {
    appearance: menulist !important;
}

    input[type="checkbox" i] {
        min-height: 1rem;
    }

td {
    padding-bottom: 2px;
    vertical-align:middle !important;   
}

.MailingListHeader {
    font-weight:bold;
    padding-bottom:10px;
}

img {
    padding-left: 2px;
    padding-right: 2px;
}

input.parsley-success, textarea.parsley-success {
    color: #468847 !important;
    background-color: #DFF0D8 !important;
    border: 1px solid #D6E9C6 !important;
}

input.parsley-error, textarea.parsley-error {
    color: #B94A48 !important;
    background-color: #F2DEDE !important;
    border: 1px solid #EED3D7 !important;
}

ul.parsley-error-list {
    font-size: 0.875rem;
    margin: 2px;
    list-style-type: none;
}

    ul.parsley-error-list li {
        line-height: 1em;
    }

.social-buttons {
    padding: 5px 20px;
}

.container-narrow > hr {
    margin: 15px 0 0 0;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    .not-for-mobile {
        display: none;
    }
}
