﻿:root {
    --primary-color: #0B233F;
    --secondary-color: #64a708;
}

body {
    background-color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12pt;
    color: #0c2340;
}

h1, h2, h3, h4, h5 {
    line-height: normal;
    margin: 0;
    padding: 0;
}
h1 {
    font-weight: bold;
    font-size: 34pt;
}
h2 {
    font-weight: bold;
    font-size: 26px;
}
h3 {
    font-family: 'Roboto Slab';
    font-weight: bold;
    font-size: 20pt;
}
h4 {
    font-weight: bold;
    font-size: 18pt;
}
h5 {
    font-family: 'Roboto Slab';
    font-weight: bold;
    font-size: 14pt;
}

.e4-calculator-container {
    background-color: #eee;
    border-radius: 8px;
    color: #0c2340;
    padding: 50px;
}
.e4-calculator-container-section {
    padding: 15px;
    margin-bottom: 8px;
}

.e4-calculator-container h3 {
    color: #0c2340;
}

.e4-calculator-container select {
    border-radius: 2px;
    color: black;
}

.e4-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SLIDESHOW */
/* Slideshow of images */
.no-slideshow {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}
.no-slideshow .no-slideshow-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 1s ease-in-out;
}
.no-slideshow .no-slideshow-slide.no-slideshow-showing {
    z-index: 1;
    opacity: 1;
    position: relative;
}

.no-slideshow .no-slideshow-slide img {
    max-width: 100%;
    max-height: 100%;
}


/* COMMON */
.imageslideshow-placeholder {
    width: 0;
    height: 0;
}
.nivo-controlNav {
    display: none !important;
}
tr {
    vertical-align: top;
}

img {
    border-width: 0px;
}

.indent {
    padding-left: 20px;
}

.red-border {
    border: solid 1px red;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.paragraph {
    padding-bottom: 10px;
}

.error {
    color: Red;
}

.center {
    text-align: center;
}

.pad-top {
    padding-top: 7px;
}

.pad-right {
    padding-right: 7px;
}

.pad-right25 {
    padding-right: 25px;
}

.pad-left {
    padding-left: 7px;
}

.pad-bottom {
    padding-bottom: 7px;
}

.pad-left15 {
    padding-left: 15px;
}

.pad-left25 {
    padding-left: 25px;
}

.over {
    cursor: pointer;
}
.inputLabel {
    color: #666;
}
.hide {
    display: none;
}
.hide-on-load {
    display: none;
}
.bold {
    font-weight: bold;
}
.hover-pointer:hover {
    cursor: pointer;
}

/* Validation Errors */
label.validation-error {
    color: red;
}
label.validation-error:after {
    content: '*';
}

input.validation-error, textarea.validation-error, select.validation-error, button.validation-error {
    border-color: red;
    background-color: #FDDFE6;
}

/******** HEADER ***************************/
.e4-static-header {
    width: 100%;
    background-color: white;
    z-index: 6;
}
.e4-non-static-container {
    padding-top: 0px;
}

.e4-header {
    height: 56px;
    background: var(--primary-color);
}

.e4-header > .container-fluid {
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 1360px;
}

.e4-header-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-content: center;
    width: 50%;
    height: 100%;
}

.e4-header-logo-container {
    display: inline-block;
    margin-top: 10px;
    z-index: 10;
}

.e4-header-logo {
    height: 30px;
}

.e4-header-links {
    background-color: var(--primary-color);
    z-index: 2;
    padding: 0;
    display: flex;
    align-items: center;
}

.e4-header-links .navbar {
    min-height: auto !important;
}

.e4-header-link {
    font-family: 'Nunito Sans';
    font-size: 22px;
    letter-spacing: 0;
    font-style: normal;
    margin-left: 0;
    margin-right: 0;
    line-height: normal;
    height: auto;
    color: #fff;
    display: inline-block;
    border-top: 0px solid transparent;
    margin-bottom: 10px;
    font-size: 17px;
}

.e4-header-link:hover {
    color: #64A70B;
    text-decoration: none;
}

.e4-header-logo-sm {
    display: none;
}

.e4-header-logout {
    border: none;
    border-radius: 3px;
    padding: 0;
    border: 1px solid #333;
    border-radius: 1px;
    padding: 10px;
}

.e4-header-logout:hover {
    text-decoration: none;
    color: #64A70B;
}

.e4-header-navbar {
    background: none;
    border: none;
    box-shadow: none;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
}

.e4-header-nav {
    display: none;
}

.e4-header-nav-mobile {
    display: block;
    padding: 15px;
    max-height: 50vh;
    overflow-y: auto;
}

.e4-mobile-header-item,
.e4-mobile-header-item a {
    color: #fff;
    font-size: 17px;
    display: block;
    padding: 6px 0;
}

.e4-mobile-header-item-sub {
    display: flex;
    align-items: center;
    padding: 6px 0;
    padding-left: 15px;
}
.e4-mobile-header-item-sub i {
    color: #fff;
    margin-left: 10px;
    margin-right: 6px;
}
.e4-mobile-header-item-sub a {
    color: #fff;
    font-size: 15px;
    display: block;
}


.e4-header-nav li {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    vertical-align: top;
    position: relative;
}

.e4-header-nav > #drop-downs li .e4-header-logout {
    height: 30px;
    padding: 4px 8px !important;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color) !important;
    color: white !important;
    text-transform: uppercase;
    border: none !important;
}

.e4-header-nav > #drop-downs li .e4-header-logout:hover {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
}

.e4-header-nav > #drop-downs a,
.e4-header-nav > #drop-downs .drop-down-header {
    color: #fff !important;
    font-weight: bold;
    font-size: 12px;
}

.e4-header-nav > #drop-downs a:hover,
.e4-header-nav > #drop-downs .drop-down-header:hover {
    color: #64A70B !important;
}

.e4-header-nav > #drop-downs li:hover span.drop-down-header,
.e4-header-nav > #drop-downs li:hover a {
    background-color: transparent !important;
}

.e4-header-nav > #drop-downs li.drop-down-header-item:hover ul {
    background-color: #fff !important;
    border: 1px solid white;
    min-width: 100%;
}

.e4-header-nav > #drop-downs li:hover ul li a {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.e4-header-nav > #drop-downs li:hover ul li a:hover {
    color: #64A70B !important;
}

.e4-header-mobile-nav {
    background-color: var(--primary-color);
    padding: 10px;
}

@media (min-width:768px) {
    .e4-static-header {
        position: fixed;
        width: 100%;
        height: 188px;
        background-color: white;
        z-index: 6;
    }

    .e4-non-static-container {
        padding-top: 188px;
    }

    .e4-header {
        height: 88px;
    }

    .e4-non-static-container.e4-non-static-container-admin {
        padding-top: 218px;
    }

    .e4-static-header.e4-static-header-admin {
        height: 218px;
    }

    .e4-header-container {
        flex-direction: row;
        width: 100%;
    }

    .navbar-brand {
        display: none !important;
    }

    .e4-header-logo-container {
        display: flex;
        align-items: center;
        height: 100%;
        text-align: left;
        margin-top: 0;
    }

    .e4-header-link {
        font-size: 13px;
        margin: 0 8px;
    }

    .e4-header-link:hover {
        border-top-color: #64A70B;
    }

    .e4-header-navbar {
        position: relative;
        right: auto;
        top: auto;
        left: auto;
    }

    .e4-header-nav {
        display: inline-block;
        padding: 0;
    }

    .e4-header-nav-mobile {
        display: none;
    }

    .e4-header-nav li {
        display: inline-block;
    }

    .e4-header-mobile-nav {
        background-color: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
    }
}

@media (min-width:992px) {
    .e4-header-logo-sm {
        display: none;
        height: 60px;
        margin-left: 8px;
        margin-top: 40px;
    }

    .e4-header-logo {
        display: inline;
        height: 48px;
        margin-left: 5px;
    }

    .e4-header-nav li {
        display: inline-block;
    }

    .e4-header-nav > #drop-downs a,
    .e4-header-nav > #drop-downs .drop-down-header {
        font-size: 15px;
    }

    .e4-header-nav > #drop-downs a,
    .e4-header-nav > #drop-downs .drop-down-header {
        font-size: 14px;
    }
}

@media (min-width:1100px) {
    .e4-header-link {
        font-size: 17px;
        margin: 0 17px;
    }
}

@media (min-width:1200px) {
    .e4-header-nav > #drop-downs a,
    .e4-header-nav > #drop-downs .drop-down-header {
        font-size: 17px;
    }
}

@media (min-width:1430px) {
    .e4-header-link {
        font-size: 20px;
        line-height: 70px;
        height: 70px;
        border-top: 2px solid transparent;
        margin: 0 17px;
    }
}

/*********** TITLE BAR *******************/
.e4-title-bar {
    background-image: url('../images/PatternBackground.jpg');
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100px;
}
.e4-title-bar-top {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.e4-title-bar-title {
    position: relative;
}
.e4-title-bar h4 {
    font-family: 'Roboto Slab', Georgia, serif;
    text-align: center;
    color: #0c2340;
    padding: 10px;
}



/********** CONTENT AREA ********************/
.e4-content-links {
    display: block;
    margin-right: 0;
    font-size: 0.9em;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.e4-content-links a {
    color: var(--primary-color);
    padding: 0 8px;
}

.e4-content-links a.on {
    text-decoration: underline;
}

.e4-content-links .e4-content-link {
    display: inline-block;
}

.e4-content-links .e4-content-link::after {
    content: '\00B7';
    color: white;
}

.e4-content-links .e4-content-link:last-child::after {
    content: none;
}

@media (min-width:768px) {
    .e4-content-links {
        font-size: 1em;
    }
}


/*******************************************/

@keyframes bellring {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

.html-content-container {
    position: relative;
}


/* ADMIN */
.ui-accordion .ui-accordion-header {
    padding-left: 25px;
}

.open-html-editor {
    position: absolute;
    right: 0;
    z-index: 55;
    opacity: 0.5;
}

.open-html-editor:hover {
    opacity: 1;
}

.list-all-pages-page .open-html-editor {
    position: relative;
}

#html-editor-modal {
    width: 95%;
}

#html-editor-modal .modal-dialog {
    width: 100%;
}

/*--- DROPDOWN OK WITH IPAD ---*/
/* #drop-downs is a UL */
#drop-downs {
    width: 100%;
    list-style: none;
    font-weight: normal;
    margin: 0;
    padding: 0;
    position: relative;
    float: none;
    z-index: 20;
    background: var(--primary-color);
}

#drop-downs li.drop-down-header-item {
    float: none;
    margin: 0;
    position: relative;
    height: 30px;
    line-height: 30px;
}

#drop-downs li.drop-down-header-item span.drop-down-header {
    display: block;
    color: #aaa;
    padding: 0 4px;
}

@media (min-width:768px) {
    #drop-downs {
        float: none;
    }
    #drop-downs li.drop-down-header-item {
        float: left;
    }
}

@media (min-width:992px) {
    #drop-downs li.drop-down-header-item {
        margin: 0 8px;
    }
}

@media (min-width:1200px) {
    #drop-downs li.drop-down-header-item {
        margin: 0 12px;
    }
}

    #drop-downs a {
        display: block;
        color: #aaa;
        text-decoration: none;
    }

        #drop-downs a:hover, #drop-downs li.drop-down-header-item span.drop-down-header:hover, #drop-downs a.on {
            text-decoration: none;
            color: #fff;
        }

    #drop-downs li.drop-down-header-item span.drop-down-header:hover {
    }


    /*--- DROPDOWN MENUS ---*/
    /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    /* Hide off-screen when not needed (this is more accessible than display:none;) */
    #drop-downs ul {
        background: #000;
        background: rgba(255,255,255,0);
        list-style: none;
        position: absolute;
        left: -9999px;
        margin: 0;
        padding: 0;
    }
        /* Introducing a padding between the li and the a give the illusion spaced items */
        #drop-downs ul li {
            padding: 0px;
            float: none;
            margin: 0;
            min-width: 125px;
            font-size: .9em;
            border: 0px solid #ccc;
            border-top-width: 0px;
            padding: 6px 4px;
        }
        /* Stop text wrapping and creating multi-line dropdown items */
        #drop-downs ul a {
            white-space: nowrap;
            padding-left: 10px;
            padding-right: 10px;
            display: block;
        }
    /* Display the dropdown on hover Bring back on-screen when needed */
    #drop-downs li:hover ul {
        left: 0px;
    }
    /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
    #drop-downs li:hover a, #drop-downs li:hover span.drop-down-header {
        text-decoration: none;
        color: #fff;
        background-color: rgba(0,0,0,0.8);
    }

    #drop-downs li:hover span.drop-down-header {
        background-color: rgba(0,0,0,0.8);
    }
    /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    #drop-downs li:hover ul a {
        text-decoration: none;
        background-color: #000;
        color: #aaa;
        font-weight: normal;
        font-size: 12px;
        border: 0px solid #E7F3DC;
        border-top-width: 0px;
        font-weight: normal;
    }

@media (min-width:992px) {
    #drop-downs li:hover ul a {
        font-size: 14px;
    }
}

@media (min-width:1200px) {
    #drop-downs li:hover ul a {
        font-size: 16px;
    }
}

    /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    #drop-downs li:hover ul li a:hover {
        text-decoration: none;
        background-color: rgba(0,0,0,0.8);
        color: #fff;
    }

    /* IFRAMES */
    #externalIframeHolder iframe {
        position: relative;
        z-index: 1;
        border: none;
    }

    /* RESPONSIVE IFRAME */
    .e4-iframe-container {
        overflow: hidden;
        padding-top: 56.25%;
        position: relative;
    }

        .e4-iframe-container iframe {
            border: 0;
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%;
        }

    video {
        max-width: 100%;
    }

    .drop-down-cover {
        border: 0px solid red;
        position: absolute;
        top: 34px;
        left: 0;
        height: 0;
        width: 0;
        z-index: -1;
    }

    /* FORMS */
    form {
        margin: 0;
    }

    fieldset.form-inputs label {
        display: inline;
    }

    form input, form select {
        margin: 0 auto 5px 10px; /*float: left;*/
    }

    .form-input-label-cell {
        width: 33%;
    }

    .form-input-cell {
        width: 67%;
        padding-bottom: 12px;
    }

    input[type="text"].input-description {
        width: 90%;
    }

    input[type="text"].zip {
        width: 70px;
    }

    .form-group .form-control {
        margin: 0;
    }

    .wrap-input-label {
        text-align: right;
        padding-bottom: 12px;
        font-weight: bold;
    }

    .e4-legend-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #mfa-form .wrap-input-label {
        text-align: left;
        font-weight: bold;
        padding-bottom: 6px;
    }

    .wrap-input {
    }

        .wrap-input input[type="text"],
        .wrap-input input[type="password"],
        textarea,
        .wrap-input textarea {
            border-radius: 4px;
            width: 100%;
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
            border: 1px solid #ccc;
            padding-left: 6px;
            padding-right: 6px;
        }

    .form-group .form-group-checkbox {
        display: flex;
        flex-direction: row-reverse;
        float: none;
        text-align: left;
        justify-content: flex-end;
    }

        .form-group .form-group-checkbox .wrap-input-label {
            text-align: left;
            display: inline-block;
            margin-left: 10px;
        }

        .form-group .form-group-checkbox .wrap-input {
            display: inline-block;
        }

    span.field-validation-error {
        padding-left: 20px;
        color: red;
        margin-bottom: 15px;
        display: inline-block;
    }

    .input-validation-error {
        display: block;
        width: 100%;
        margin-left: 0;
        height: 34px;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 4px;
        -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
        -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        border: 1px solid #ff0000;
        background-color: #ffeeee;
    }


    table td > textarea,
    table td > .wrap-input > input[type="checkbox"] {
        margin-left: 10px;
    }

    #filemanager-modal.modal-lg {
        width: 90%;
    }

        #filemanager-modal.modal-lg .modal-dialog {
            width: 100%;
        }

    #filemanager-modal-iframe {
        width: 100%;
        height: 500px;
    }

    .no-employee-group-container {
        margin-bottom: 5px;
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

        .no-employee-group-container:first-of-type {
            border-top-width: 0;
        }

    .no-employee-group-container-inline {
        flex-direction: row;
    }

    .no-employee-group-container h2 {
        font-family: 'Roboto Slab';
        text-align: left;
        margin-bottom: 30px;
        color: #0c2340;
        border-top: 1px solid #666;
        border-bottom: 1px solid #666;
        padding: 20px 0;
        text-align: center;
        font-size: 18px;
    }

    .no-employee-group-container-inline h2 {
        width: 100%;
    }

    .no-employee-group-employees {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .no-employee-container {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        flex: 100%;
        width: 100%;
        max-width: 100%;
    }

    .no-employee-photo {
        margin-bottom: 10px;
        width: 200px;
        max-width: 100%;
    }

    .no-employee-info-container {
        flex: 2;
        margin-bottom: 20px;
    }

    .no-employee-name {
        font-family: 'Roboto Slab';
        font-size: 1.05em;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .no-employee-bio p {
        margin: 0;
    }

    .no-employee-bio a {
        display: inline-block;
        padding: 8px 32px;
        color: white;
        background: #93a396;
    }

        .no-employee-bio a:hover {
            background: rgba(147,163,150,0.6);
            text-decoration: none;
        }

    .no-employee-credentials-blank {
        display: none;
    }

    @media (min-width:768px) {
        .no-employee-row {
            display: flex;
            height: 100%;
        }

        .no-employee-credentials-blank {
            display: block;
        }

        .no-employee-container {
            flex: 50%;
            width: 50%;
            max-width: 50%;
        }
    }

    @media (min-width:992px) {
        .no-employee-group-container h2 {
            font-size: 22px;
        }

        .no-employee-container {
            flex: 25%;
            width: 25%;
            max-width: 25%;
        }
    }

    @media (min-width:1200px) {
        .no-employee-group-container h2 {
            font-size: 26px;
        }
    }


    /* DI Newsletter feed */
    .display_archive .campaign {
        color: transparent;
        position: relative;
    }

        .display_archive .campaign a {
            position: absolute;
            left: 0;
        }

    /* Toggle Switch */
    /*.e4-toggle {
    display: flex;
    margin-top: 6px;
    margin-bottom: 6px;
    position: relative;
}
.e4-toggle input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.e4-toggle label {
    cursor: pointer;
    text-indent: -9999px;
    width: 55px;
    height: 30px;
    background: darkgray;
    display: block;
    border-radius: 30px;
    position: relative;
    margin: 0;
}

.e4-toggle label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 26px;
    transition: 0.3s;
}

.e4-toggle input:checked + label {
    background: green;
}

.e4-toggle input:checked + label:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
}

.e4-toggle label:active:after {
    width: 55px;
}*/

    .e4-toggle-knobs,
    .e4-toggle-layer {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .e4-toggle-button {
        position: relative;
        top: 50%;
        width: 74px;
        height: 36px;
        /*margin: -20px auto 0 auto;*/
        overflow: hidden;
    }

        .e4-toggle-button.r,
        .e4-toggle-button.r .e4-toggle-layer {
            border-radius: 100px;
        }

    .e4-toggle-checkbox {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        opacity: 0;
        cursor: pointer;
        z-index: 3;
    }

    .e4-toggle-knobs {
        z-index: 2;
    }

    .e4-toggle-layer {
        width: 100%;
        background-color: #efefef;
        transition: 0.3s ease all;
        z-index: 1;
    }

    .e4-toggle .e4-toggle-knobs:before {
        content: "Off";
        position: absolute;
        top: 4px;
        left: 4px;
        width: 28px;
        height: 28px;
        color: black;
        font-size: 11px;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        padding: 9px 4px;
        background-color: darkgray;
        border-radius: 50%;
        transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
    }

    .e4-toggle .e4-toggle-checkbox:checked + .e4-toggle-knobs:before {
        content: "On";
        left: 42px;
        background-color: #febd11;
        color: #0c2340;
    }

    .e4-toggle .e4-toggle-checkbox:checked ~ .e4-toggle-layer {
        background-color: #fee090;
    }

    .e4-toggle .e4-toggle-knobs,
    .e4-toggle .e4-toggle-knobs:before,
    .e4-toggle .e4-toggle-layer {
        transition: 0.3s ease all;
    }


/* FORMATTED TABLE */
table.e4-formatted-table {
    border-collapse: collapse;
    width: 100%;
}

table.e4-formatted-table td, table.e4-formatted-table th {
    border: 1px solid #ddd;
    padding: 8px;
}

table.e4-formatted-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table.e4-formatted-table tr:hover {
    background-color: #ddd;
}

table.e4-formatted-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #0c2340;
    color: white;
}

.e4-forgot-password {
    margin-top: 20px;
}



.e4-site-alert {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 40px;
    left: -50px;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}
.e4-site-alert-count {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0c2340;
    font-size: 12px;
    font-weight: bold;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
#e4-site-alert-trigger {
    position: relative;
    transform-origin: 25%;
    animation-name: bellring;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 7;
    color: #64A70B !important;
}
#e4-site-alert-trigger:hover {
    color: #337ab7 !important;
}
#e4-site-alert-message {
    padding: 25px;
}

.e4-content {
    background-color: #ffffff;
    min-height: 400px;
    padding: 25px 0;
}

.e4-content-padder {
    padding: 0 20px;
    position: relative;
}

.e4-content img {
    max-width: 100%;
}

.e4-login-form-container {
    display: flex;
    justify-content: center;
}

.e4-login-form {
    width: 100%;
    display: inline-block;
}

.e4-login-form input {
    max-width: 350px;
}

.e4-footer {
    border-top: 1px solid #0c2340;
    background-color: #ffffff;
    min-height: 150px;
    padding: 20px;
    color: #0c2340;
    clear: both;
}

.e4-footer a {
    color: #0c2340
}

.e4-footer-logo {
    width: 100px;
    max-width: 100%;
    margin-bottom: 15px;
}

.e4-footer-contact {
    color: #0c2340;
    font-size: .9em;
    margin-bottom: 15px;
}

.e4-footer-contact a {
    color: #0c2340;
}

.e4-footer-contact a:hover {
    text-decoration: none;
}

.e4-footer-contact > div {
    margin-bottom: 10px;
}

.e4-footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1.7em;
}

.e4-footer-contact-icon-phone {
    width: 27px;
}

.e4-footer-links {
    margin-bottom: 15px;
}

.e4-footer-link {
    display: block;
    color: #0c2340;
    padding-bottom: 12px;
}

.e4-footer-link:hover {
    color: #0c2340;
}

.e4-footer-connect {
    color: #0c2340;
    font-size: .9em;
}

.e4-footer-connect img {
    width: 30px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.e4-footer-right {
    color: #0c2340;
    font-size: .9em;
}

.e4-admin-links {
    height: 30px;
    background-color: #5b6770;
    font-size: 0.8em;
    display: none;
}

.e4-admin-links-bottom ul {
    background-color: #5b6770;
}

.e4-imitate-form-container {
    display: flex;
    height: 100%;
    overflow: hidden;
    align-items: center;
    color: white;
}

.e4-imitate-form {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 10px;
    justify-content: flex-end;
    color: black;
}

.e4-imitate-form input,
.e4-imitate-form button {
    display: inline-block;
    height: 80%;
}

.e4-imitate-form input {
    width: 80%;
    margin: 0;
    padding: 2px 6px;
}

.e4-imitate-form button {
    font-size: .8em;
}

.e4-admin-links .drop-down-header {
    padding-left: 8px !important;
    padding-right: 8px !important;
    color: white !important;
}

.e4-admin-links a {
    color: white !important;
}

@media (min-width:0px) {
    .e4-admin-links {
        display: none;
    }

    .e4-admin-links-bottom {
        display: block;
    }

    .isg-home-box-row {
        display: flex !important;
        flex-direction: column;
    }
}

@media (min-width:768px) {
    .e4-admin-links {
        display: flex;
        justify-content: space-between;
    }

    .e4-admin-links-bottom {
        display: none;
    }

    .isg-header {
        height: 88px;
    }

    .e4-login-form {
        width: 100%;
    }


    .e4-content-padder {
        padding: 0 50px;
    }

    .isg-home-box-row {
        flex-direction: row;
    }

    .e4-footer {
        padding: 50px;
    }
}
