/* ============================================================
   BASE — Typography, Links, Buttons, Forms, Utility
   ============================================================ */

.required-field {
    color: red;
    font-size: 1rem;
    text-transform: uppercase;
    margin-right: 0.25rem;
    margin-left: 0.25rem;
}

    .required-field[style="visibility:hidden;"] {
        display: none;
    }

img {
    max-width: 100%;
}

label, strong {
    font-weight: 500;
}

a {
    color: #4353ff;
}

    a:hover {
        color: #3040ee;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Titillium Web", sans-serif;
}

body {
    font-family: "Open Sans", sans-serif;
    cursor: default;
    background: #fff;
    font-size: .875rem;
}

.container {
    width: 100%;
    max-width: 72rem;
}

/* --- Buttons --- */

.btn {
    border-radius: 0.25rem;
    font-size: .875rem;
    font-weight: 700;
    padding: 0.75rem 0.75rem;
    cursor: pointer;
    font-family: "Titillium Web", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-sm {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
}

.btn-primary {
    background-color: #111;
    transition: none;
    border-color: #111;
}

    .btn-primary:active,
    .btn-primary:hover {
        background: #3040ee;
        border-color: #3040ee;
    }

    .btn-primary:focus {
        box-shadow: 0 0 0 0.2rem rgba(67, 83, 255, 0.5);
    }

    .btn-primary:not([disabled]):not(.disabled).active,
    .btn-primary:not([disabled]):not(.disabled):active,
    .show > .btn-primary.dropdown-toggle {
        background-color: #2a3cff;
        border-color: #2a3cff;
        box-shadow: 0 0 0 0.2rem rgba(67, 83, 255, 0.5);
    }

.btn-outline-primary {
    color: #4353ff;
    border-color: #4353ff;
}

    .btn-outline-primary:hover {
        background-color: #4353ff;
        border-color: #4353ff;
    }

    .btn-outline-primary:focus {
        box-shadow: 0 0 0 0.2rem rgba(67, 83, 255, 0.5);
    }

    .btn-outline-primary:not([disabled]):not(.disabled).active,
    .btn-outline-primary:not([disabled]):not(.disabled):active,
    .show > .btn-outline-primary.dropdown-toggle {
        background-color: #4353ff;
        border-color: #4353ff;
        box-shadow: 0 0 0 0.2rem rgba(67, 83, 255, 0.5);
    }

/* --- Forms --- */

.form-control {
    height: auto;
    background: #f5f5f5;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    border: 0;
}

    .form-control:focus {
        box-shadow: none !important;
        background: #eee;
    }

/* --- Utility --- */

.center-text {
    text-align: center;
}

/* --- Modal --- */

.modal-backdrop.show {
    opacity: 0.85;
    background: #fff;
}

.modal-share .modal-content {
    background: #000;
    color: #fff;
    border: 0;
    border-radius: 0.25rem;
    padding: 4rem;
    margin-top: -3rem;
}

.modal-share .modal-header {
    padding: 0;
    border-bottom: 0;
    margin-bottom: 2rem;
}

.modal-share .modal-body {
    padding: 0;
    margin: auto;
}

.blog-post-share {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.blog-post-share-btn {
    background: none;
    display: block;
    border: 0;
    font-size: .875rem;
    color: #aaa;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    top: -1px;
}

    .blog-post-share-btn svg {
        fill: #aaa;
        margin-right: .25rem;
    }

    .blog-post-share-btn:hover {
        color: #4353ff;
    }

        .blog-post-share-btn:hover svg {
            fill: #4353ff;
        }

.blog-post-share a {
    width: 4rem;
    max-width: 100%;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    display: block;
    border-bottom: 2px solid #000;
    transition: all ease 0.25s;
}

    .blog-post-share a:hover {
        border-color: #fff;
    }

.blog-post-share svg {
    fill: #fff;
    height: 1.75rem;
}
