﻿img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: underline;
    color: #4690f7;
    font-weight: 600;
}

    a:hover {
        color: #528be4;
    }

body {
    overflow-x: hidden;
    width: 100%;
    font-family: "Source Sans Pro", sans-serif;
}
/* # Grid and Containers */
.row {
    margin-left: -18px;
    margin-right: -18px;
}

@media screen and (min-width: 320px) {
    .container {
        padding: 0 16px;
    }
}

@media screen and (min-width: 568px) {
    .container {
        padding: 0 36px;
    }    
}

@media screen and (min-width: 568px) and (max-width: 720px) {
    .container {
        padding: 0 36px;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: -webkit-fill-available;
    }
}

@media screen and (min-width: 1366px) {
    .container {
        padding: 0px;
    }
}

main#primary {
    position: relative;
}
/* # Buttons */
button.primary-btn {
    padding: 14px;
}

.primary-btn {
    padding: 13px;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    border: none;
    border-radius: 6px;
    background: #4690f7;
    color: #fff;
    text-decoration: none;
}

    .primary-btn.disabled {
        opacity: 0.5;
    }

    .primary-btn:hover {
        color: #fff;
        background: #528be4 !important;
        text-decoration: none;
    }

.secondary-btn {
    padding: 13px;
    color: #2f3c4f;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    border: 1px solid #dee0e5;
    border-radius: 6px;
    background: #fff;
    text-decoration: none;
}

    .secondary-btn.disabled {
        opacity: 0.5;
    }

    .secondary-btn:hover {
        text-decoration: none;
        color: #2f3c4f;
        border: 1px solid #4690f7;
        background: #fafafa !important;
    }
/* # tag links */
.tags-links a {
    background: #fff;
    padding: 10px;
    border: 1px solid #dee0e5;
    text-decoration: none;
    border-radius: 100px;
}

    .tags-links a:hover {
        border: 1px solid #4690f7;
    }

    .tags-links a.active {
        background: #4690f7;
        color: #fff;
    }

.text-center {
    text-align: center;
}
/* # Off White Background - Full Page Width */
.off-white-bg {
    background: #fafafc;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
/* # Light Blue Backgroubd - Full Page Width */
.light-blue-bg {
    background: #f0f5f9;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-bottom: 20px;
}
