/* -------------------------------------------------------------------------

Description: Login pages for Elation EMR and Passport

-------------------------------------------------------------------------  */

/* CSS Reset
--------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, p,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
form, fieldset, label, input, .checkbox, textarea, select, option, form div {
	margin: 0;
	padding: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;
    margin: 0;
}

/* =GENERAL
--------------------------------------------------------------------------------- */
html, body {
    height: 100%;
}

body {
    line-height: 1.3em;
    font: 62.5% "Helvetica Neue", Arial, Helvetica, sans-serif;
    color: #333;
    margin: 0;
}

body.el8AccessBody {
    background: #519bb8;
}
body.el8LoginBody {
    /* Gradient Background */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#e5e5e5)); /* Chrome, Safari 4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Chrome 10+, Safari 5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f5f5f5 0%,#e5e5e5 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#e5e5e5', GradientType=0); /* IE7-9 */
}
body.el8LoginBody.white {
    background: #fff;
}

h1 {
    font-size: 2.2em;
    padding: 20px 0 10px 0;
}

h2 {
    font-size: 1.8em;
    font-weight: bold;
    padding: 20px 0 10px 0;
}

h3 {
    font-size: 1.6em;
    padding: 20px 0 10px 0;
}

p {
    font-size: 1.4em;
    line-height: 1.5em;
}
a {
    color: var(--vds-action-link-color, #296bbc);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

img.fullBg {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;

  /* Set up proportionate scaling */
  width: 100%;
  height: auto;

  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
  z-index:-1;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1024px) { /* Specific to this particular image */
  img.fullBg {
    left: 50%;
    margin-left: -512px;   /* 50% */
  }
}

@media screen and (max-width: 767px) {
  /* this is to prevent the auto-zoom in iOS */
  .el8ResponsesInput,
  input[type="email"],
  input[type="text"],
  input[type="password"],
  input[type="number"],
  textarea:focus,
  select:focus {
    font-size: 16px;
  }
}
/* END MEDIA QUERIES */


/* =PASSPORT LOGIN
--------------------------------------------------------------------------------- */
.el8LoginLogo {
    margin: 0 auto 30px auto;
    display:block;
    width:200px;
}

.el8LoginPageContainer {
    width: 400px;
    min-height: 250px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
}
.ctaOn {
    width: 920px;
}
    .el8LoginPageContainer form fieldset {
        width:100%;
    }
@media screen and (max-width: 920px) {
    .ctaOn {
        width: 400px;
    }
    .el8EMRLogin.fl {
        float: none;
    }
}

.el8ErrorContainer {
    width: 100%;
    text-align: center;
    border: 1px solid #FBB;
    background-color: #FFD5D5;
    border-radius: 2px;
    padding: 5px 0;
    margin-bottom: 20px;
    color: #910000;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    /* hack because unable to edit django template */
    .el8ErrorContainer p,
    .el8ErrorContainer ul {
        padding: 0 1em;
    }
    .el8ErrorContainer h2 {
        padding: 10px 0;
    }
    ul.errorlist li {
        font-size: 1.4em;
        line-height: 1.5em;
    }

.el8AlertInfo {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin: 0;
    padding: 10px 15px;
    margin: 40px auto 10px;
    background-color: #D9EDF7;
    border: 1px solid #AED6EB;
    color: #22708F;
    max-width: 400px;
}
    .el8AlertInfo a{
        text-decoration: underline;
        cursor: pointer;
    }

.el8InfoContainer {
    position: relative;
    border: 1px solid transparent;
    border-radius: 3px;
    -moz-border-radius: 3px;
    padding: 10px;
    margin-top: 1.5em;
}
    .el8InfoContainerText {
        font-size: 1.6em;
        font-weight: bold;
        color: #519bb8;
    }

.el8MessageContainer {
    width: 100%;
    text-align: center;
    border: 1px solid #FFE6B0;
    background-color: #FDFFD7;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 5px 0;
    margin-bottom: 20px;
    color: #555;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
    .el8MessageContainer p {
        padding: 0 1em;
    }
    .el8MessageContainer h2 {
        padding:10px 0;
    }
    .el8MessageContainer h2.el8OverflowEmail {
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 300px;
    }

.el8TermsContainerAccess {
    position: relative;
    border-radius: 3px;
    background-color: rgba(0,0,0,.5);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7F000000', endColorstr='#7F000000', GradientType=0); /* For IE 8 */
    padding: 10px 15px 20px 15px;
    color: #BBB;
    text-shadow: 0 1px 2px #333;
    min-height:100px;
}
    .el8TermsContainerAccess a {
        color: #ddd;
        text-decoration: underline;
    }
    .el8TermsContainerAccess a:focus {
        color: #FFFFA3;
    }
    .el8TermsContainerAccess ul {
        margin-left:2em
    }
    .el8TermsContainerAccess ul li {
        font-size:1.4em;
        line-height:1.3em;
        list-style-type:disc;
        padding-bottom:5px;
    }
    .el8TermsContainerAccess .el8Loading {
        background-color:#fff !important;
    }
.el8TermsHeading {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2em;
}

.el8TermsContainer {
    position: relative;
    border: 1px solid #DDD;
    border-radius: 3px;
    -moz-border-radius: 3px;
    background-color: whiteSmoke;
    padding: 10px 15px;
    margin-bottom: 1em;
    margin-top:1.5em;
}
    .el8TermsContainer input {
        border-radius: 0;
        border: 0;
        width: 25px;
        padding: 10px 0;
    }
    .el8TermsContainer input[type="radio"] {
        margin-bottom: 8px;
    }
    .el8TermsContainer li:last-child input[type="radio"] {
        margin-bottom: 0;
    }
    .el8TermsText {
        color: #333;
        font-size: 1.4em;
        line-height: 1.5em;
    }
.el8TermsCheckbox {
    padding-top: 5px;
    padding-bottom: 10px;
    color: #FFF;
}
    .el8TermsCheckbox input[type='checkbox'] {
        width: 14px;
    }
.el8TermsCheckboxLabel {
    font-size: 1.4em;
}

.el8ForgotPasswordWrap {
    text-align: center;
    padding-top: 20px;
}
    a.el8ForgotPassword {
        font-size: 1.3em;
        text-decoration: none;
        color: #17649A;
    }
    a.el8ForgotPassword:hover{
        text-decoration: underline;
    }

.el8CenterLinkWrap {
    padding: 20px;
    text-align: center;
}
    a.el8CenterLink {
        font-size: 1.3em;
        text-decoration: none;
        color: #17649A;
    }
    a.el8CenterLink:hover {
        text-decoration: underline;
    }

/* login form */
.el8LoginStaticEmail {
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border: 1px solid #DDD;
    margin: 0;
    padding: 10px 15px;
    font-weight: bold;
    margin-bottom: 15px;
    background-color: whiteSmoke;
}

.el8LoginStaticEmailText {
    text-align:center;
    font-size:1.8em;
    color: #519bb8;
    word-break:break-all;
}

.el8LoginStaticEmailAccess {
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    padding: 10px 15px 10px 40px;
    margin-bottom:15px;
    background-color:transparent;
    color: #FFF;
    font-size: 1.2em;
    position: relative;
    text-shadow: 0 1px 3px #555;
}
.el8LoginStaticEmailAccess p {
    line-height: 1.2em;
}

.el8LoginPasswordInstructions {
    color:#999;
    font-size:1.2em;
}

.el8LoginInputContainer {
    margin-bottom: 1em;
}

.el8LoginInputContainer2 {
    margin-bottom: .5em;
}

.el8LoginInputContainerAccess {
    margin: 10px 0 20px 0;
}

.el8LoginInputAccessBottom {
    background-color: #DDD;
    padding:10px 15px;
    border-radius: 0 0 5px 5px;
    font-size: .9em;
    text-shadow: 0 1px #eee;
    color: #999;
}

.el8UserNameIcon,
.el8UserNameIconWhite,
.el8PasswordIcon,
.el8CalendarIcon {
    background: transparent url(../images/elation_icon_sprite.png?v=20160729) no-repeat;
    width:16px;
    height:16px;
    position: absolute;
    left:15px;
    top:11px;
}
.el8UserNameIcon {
    background-position: -225px -80px;
}
.el8UserNameIconWhite {
    background-position: -225px -64px;
}
.el8PasswordIcon {
    background-position: -241px -80px;
}
.el8CalendarIcon {
    background-position: -257px -80px;
}

.el8LoginInputContainer2,
.el8LoginInputContainer,
.el8LoginInputContainerAccess {
    position: relative;
}

    .el8LoginInputContainer2 label,
    .el8LoginInputContainer label {
        position: absolute;
        top: 3px;
        left: 16px;
        margin-top: 10px;
        font-size: 1.4em;
        font-weight: bold;
        color: #888;
        text-align: right;
        text-shadow: 0 1px 0 #fff;
        z-index: 5;
    }

    .el8LoginInputContainer label {
        width: 100px;
    }

    .el8LoginInputContainer2 label {
        width: 127px;
    }

    .el8LoginInputContainer2 p {
        padding: 5px;
        font-size: 1.2em;
        font-weight: bold;
        color: #990000;
        text-align: right;
    }

.el8ErrorListContainer ul.errorlist li {
    text-align:left;
    font-size:1.2em;
    padding-bottom:5px;
    font-weight:bold;
    color:#990000;
    line-height: 1.0em;
}
.el8ErrorText {
    font-size:1.2em;
    padding:2px 0;
    color:#990000;
    font-weight:bold;
}
form.el8PatientLogin .el8ErrorText {
    color:#720000;
    text-shadow: 0 1px 0 #37B7E9;
}

input {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 2px solid #DDD;
    margin: 0;
    padding: 10px 15px;
    font: 1.6em "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    -moz-transition: all .2s ease;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
    input:focus{
        border-color: #0089ea;
        outline: none;
    }
    input::-webkit-input-placeholder {
        color: #ccc;
    }
    input:focus::-webkit-input-placeholder {
        color: #999;
    }
    input:-moz-placeholder {
        color: #ccc;
    }
    input:focus:-moz-placeholder {
        color: #999;
    }
    input:-ms-input-placeholder {
        color: #ccc;
    }
    input:focus:-ms-input-placeholder {
        color: #999;
    }

    .el8LoginButtonContainer input {
        width: 100%;
    }
    .el8LoginButtonContainerFull input {
        width: 100%;
    }
    .el8LoginInputContainer input {
        padding: 10px 15px 10px 125px;
    }
    .el8LoginInputContainer2 input {
        padding: 10px 15px 10px 145px;
    }
    .el8LoginInputContainerAccess input {
        padding: 10px 15px 10px 40px;
        border: 2px solid #fff;
        border-radius: 2px 2px 0 0;
    }
    .el8LoginInputContainerAccess input:focus {
        border: 2px solid #FFFFA3;
        background-color: #FFFFA3;
    }


/* buttons */
.el8LoginButtonContainer {
    text-align: right;
    padding-top: 1em;
    position: relative;
}
.el8LoginButtonContainerFull {
    padding-top: 1em;
}

.el8LoginButtonContainer.loading-overlay:after {
    background-color: rgba(236, 236, 236, 0.75);
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    top: 10%;
    left: 0;
}

.el8PrimaryButton,
.el8SecondaryButton {
    min-width: 50px;
    padding: 4px 10px;
}

.el8PrimaryButton {
    background-color: #4699F7;
    border: 1px solid #004779;
    color: #C8E8F3;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-decoration: none;
    -webkit-appearance: none;
}
    .el8PrimaryButton:focus,
    .el8PrimaryButton:hover {
        background-color: #327FD5;
        border: 1px solid #17649A;
        color:#fff;
        text-shadow: 0 -1px 0 #00428B;
    }
    .el8PrimaryButton:focus {
        box-shadow: inset 0 0 0 1px #fff;
        -moz-box-shadow: inset 0 0 0 1px #fff;
        -webkit-box-shadow: inset 0 0 0 1px #fff;
    }

.el8LoginButton,
input[type= "submit"].el8LoginButton {
    font: bold 1.6em "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 10px 30px;
    min-width: 50px;
    cursor: pointer;
}

.el8YellowButton {
		box-sizing: border-box;
    color: #7E4100;
    text-shadow: 0 1px 0 #FFFDE2;
    background: #FFF8A8; /* Old browsers */
    background: -moz-linear-gradient(top, #FFF8A8 0%, #FFCE34 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF8A8), color-stop(100%,#FFCE34)); /* Chrome, Safari 4+ */
    background: -webkit-linear-gradient(top, #FFF8A8 0%,#FFCE34 100%); /* Chrome 10+, Safari 5.1+ */
    background: -o-linear-gradient(top, #FFF8A8 0%,#FFCE34 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #FFF8A8 0%,#FFCE34 100%); /* IE10+ */
    background: linear-gradient(to bottom, #FFF8A8 0%,#FFCE34 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF8A8', endColorstr='#FFCE34', GradientType=0); /* IE7-9 */
    font-weight: bold;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    cursor:pointer;
    border:1px solid #185E79;
    -webkit-appearance: none;
}
    .el8YellowButton:hover,
    .el8YellowButton:focus {
        color: #333;
        background: #FFFAC7; /* Old browsers */
        background: -moz-linear-gradient(top, #FFFAC7 0%, #FFED1D 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFAC7), color-stop(100%,#FFED1D)); /* Chrome, Safari 4+ */
        background: -webkit-linear-gradient(top, #FFFAC7 0%,#FFED1D 100%); /* Chrome 10+, Safari 5.1+ */
        background: -o-linear-gradient(top, #FFFAC7 0%,#FFED1D 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #FFFAC7 0%,#FFED1D 100%); /* IE10+ */
        background: linear-gradient(to bottom, #FFFAC7 0%,#FFED1D 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF8A8', endColorstr='#FFED1D', GradientType=0); /* IE7-9 */
    }
    .el8YellowButton:focus {
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
    }


.el8GreenButton {
		box-sizing: border-box;
    color: #2F7220;
    background-color:#73D659;
    font-weight: bold;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    cursor:pointer;
    border:1px solid #275319;
    -webkit-appearance: none;
}
    .el8GreenButton:hover,
    .el8GreenButton:focus {
        color:#0D3603;
        background-color:#8EEE75;
    }
    .el8GreenButton:focus {
        box-shadow:inset 0 0 0 1px #fff;
        -moz-box-shadow:inset 0 0 0 1px #fff;
        -webkit-box-shadow:inset 0 0 0 1px #fff;
    }

.el8GrayButton {
    font-size: 1.3em;
    border: 1px solid #AAA;
    padding: 8px 10px;
    font-weight: bold;
    color: #555;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: inset 0 1px 0 #FFF;
    -moz-box-shadow: inset 0 1px 0 #FFF;
    -webkit-box-shadow: inset 0 1px 0 #FFF;
    text-decoration: none;
    cursor: pointer;
    background: #EEE; /* Old browsers */
    background: -moz-linear-gradient(top, #EEE 0%, #D5D5D5 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#EEE), color-stop(100%,#D5D5D5)); /* Chrome, Safari 4+ */
    background: -webkit-linear-gradient(top, #EEE 0%,#D5D5D5 100%); /* Chrome 10+, Safari 5.1+ */
    background: -o-linear-gradient(top, #EEE 0%,#D5D5D5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #EEE 0%,#D5D5D5 100%); /* IE10+ */
    background: linear-gradient(to bottom, #EEE 0%,#D5D5D5 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EEEEEE', endColorstr='#D5D5D5', GradientType=0); /* IE7-9 */
    -webkit-appearance: none;
}
    .el8GrayButton:hover,
    .el8GrayButton:focus {
        color:#333;
        text-shadow:0 1px 0 #FFF;
        text-decoration: none;
        background: #F5F5F5; /* Old browsers */
        background: -moz-linear-gradient(top, #F5F5F5 0%, #E5E5E5 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#EEE), color-stop(100%,#E5E5E5)); /* Chrome, Safari 4+ */
        background: -webkit-linear-gradient(top, #F5F5F5 0%,#E5E5E5 100%); /* Chrome 10+, Safari 5.1+ */
        background: -o-linear-gradient(top, #F5F5F5 0%,#E5E5E5 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #F5F5F5 0%,#E5E5E5 100%); /* IE10+ */
        background: linear-gradient(to bottom, #F5F5F5 0%,#E5E5E5 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F5F5F5', endColorstr='#E5E5E5', GradientType=0); /* IE7-9 */
    }
    .el8GrayButton:focus {
        border-color:var(--vds-action-link-color, #296bbc);
    }


/* MEDIA QUERIES */
@media screen and (min-width: 768px) {
    .el8LoginInputContainer2 input {
        width: 235px;
    }
    .el8LoginInputContainer input {
        width: 256px;
    }
    .el8LoginInputContainerAccess input{
        width: 341px;
    }
    .el8LoginInputAccessBottom {
        width: 370px;
    }
}

@media screen and (max-width: 767px) {
    .el8LoginPageContainer {
        position: relative;
        top: auto;
        left: auto;
        max-width: 400px;
        width: auto;
        height: auto;
    }
    .el8LoginInputContainer2 label,
    .el8LoginInputContainer label {
        position: relative;
        top: -5px;
        left: 7px;
    }
    .el8LoginInputContainer2 input,
    input {
        width: 365px;
        padding: 10px 15px;
    }
    .el8LoginInputContainerAccess input {
        width:341px;
    }
    .el8LoginInputAccessBottom {
        width: 370px;
    }
}

@media screen and (max-width: 480px) {
    .el8LoginInputContainer2 input,
    input {
        width: 255px;
    }
    .el8LoginPageContainer {
        width: 290px;
    }
    .el8LoginInputContainerAccess input {
        width: 231px;
    }
    .el8LoginInputAccessBottom {
        width: 260px;
    }
}

/* END MEDIA QUERIES */


/* =ACCESS LOGIN
--------------------------------------------------------------------------------- */
.el8AccessEMRLogo {
    width: 111px;
    height: 17px;
    background: rgba(0, 0, 0, 0) url(../images/elation_icon_sprite.png?v=20160729) no-repeat;
    background-position: 0 -128px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.el8AccessRegHeading {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color:#fff;
    font-size: 3em;
    font-weight: 200;
    text-align:center;
}

.el8AccessRegStep {
    text-align:center;
    margin-bottom:20px;
    color: rgba(255, 255, 255, .7);
}
.el8AccessRegSubHeading {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #FFF;
    font-size: 1.6em;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0px;
    text-shadow: 0 1px 2px #000;
}

.el8BlackTransparentBg {
    background-color: rgba(0,0,0,.5);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7F000000', endColorstr='#7F000000', GradientType=0); /* For IE 8 */
}

.el8AccessDecline {
    text-align: center;
    padding-top: 15px;
}
.el8AccessDecline a {
    color: #70B0F7;
}
.el8TermsSeparator {
    border-top:1px dotted #ccc;
    padding-top:10px;
    margin-top: 20px;
}

.el8ErrorContainerAccess {
    width: 160px;
    text-align: left;
    background-color: #FF5F5F;
    border-radius: 2px;
    padding: 5px 10px;
    color: #FFF0F0;
    position: absolute;
    right: -195px;
    font-size: .9em;
}
.el8ErrorArrow {
    border-right:8px solid #FF5F5F;
    border-top: 8px solid rgba(0, 0, 0, 0);
    border-bottom: 8px solid rgba(0, 0, 0, 0);
    position: absolute;
    left: -7px;
    top: 6px;
}

.el8AccessIllustration {
    max-width:340px;
    background: url(../images/network_illustration.png) no-repeat center top;
    margin:0 auto;
    height:180px;
    position: relative;
    margin-bottom: 50px;
}

.el8AccessIllustrationPtName,
.el8AccessIllustrationRecipName,
.el8AccessIllustrationSendName {
    position: absolute;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff;
    font-size: 1.6em;
    font-weight: 200;
    text-align: center;
    width: 100px;
}
.el8AccessIllustrationPtName {
    top:75px;
    left:-18px;
}
.el8AccessIllustrationRecipName {
    top:150px;
    left: 120px;
}
.el8AccessIllustrationSendName {
    right: -18px;
    top:75px;
}

@media screen and (max-width: 480px) {
    .el8ErrorContainerAccess {
        position:static;
        width:auto;
    }
    .el8ErrorArrow {
        display: none;
    }
    .el8AccessIllustration {
        background-size:contain;
    }
    .el8AccessIllustrationRecipName {
        top: 75%;
        left: 33%;
    }
    .el8AccessIllustrationSendName {
        right: -15px;
}

}

label span.placeholder {
  color: #B7B7B7;
  font-weight: 300;
  font-size: 1.1em;
  text-align: left;
}

.el8LoginInputContainerAccess label span.placeholder {
    font-size: 1.4em;
    padding-top: 11px;
    padding-left: 50px;
}

/* loading symbol */
.el8Loading {
    -webkit-mask-image: url(../images/spinner_sm.png);
    background-color: #000;
    -webkit-animation-name: spinnerRotate;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    white-space: nowrap;
    overflow: hidden;
}

@-webkit-keyframes spinnerRotate {
    from {
        -webkit-transform:rotate(0deg);
    }
    to {
        -webkit-transform:rotate(360deg);
    }
}


/* =BAD BROWSER
--------------------------------------------------------------------------------- */

.el8Inline {
    display: inline-block;
}


/* =FOOTER
--------------------------------------------------------------------------------- */

.el8FooterNav {
  clear: both;
  margin-top: 10px;
  border-top: 1px solid #999;
  padding: 10px 0;
  font-size: 1.2em;
  color: #999;
}

    .el8FooterNav ul {
      list-style-type: none;
      text-align: center;
    }

        .el8FooterNav ul li {
            display: inline;
            padding-right: 10px;
        }
        .el8FooterNav ul li:last-of-type {
          padding-right: 0;
        }
        .el8FooterNav ul li a {
          color: #999;
          text-decoration:underline;
        }

    .el8FooterNav p {
        font-size: 1em;
    }
    .el8FooterNav p.el8Small {
        font-size: 9px;
    }
.el8ImoLogo {
    height:16px;
    width:16px;
    margin-bottom:-6px;
}

/* =RECENT UPDATES
--------------------------------------------------------------------------------- */

/* this contains formatting for new release update info on login page */
.el8LoginUpdates {
    margin-right: 30px;
}

.el8OneContainer {
    position: relative;
    margin: 100px auto 0 auto;
    padding: 0;
    max-width: 800px;
}
.el8ColumnContainer {
    overflow: hidden;
    margin: 50px 0;
    min-height: 250px;
}
    .el8ColumnContainer li.el8ColumnWrap {
        float: right;
    }

.el8Column2 {
    width: 400px;
    color: #555;
}

li.el8ListText {
    list-style: disc outside;
    margin-left: 15px;
    padding-bottom: 4px;
    font-size: 1.4em;
    line-height: 1.5em;
}

@media screen and (max-width: 840px) {
    .el8OneContainer {
        position: relative;
        top: auto;
        left: auto;
        padding-bottom: 100px;
        margin: 50px auto 0 auto;
        min-height: 250px;
        max-width: 400px;
        padding:0 10px;
    }
    .el8ColumnContainer {
        overflow: auto;
        height: auto;
    }
    .el8ColumnContainer li.el8ColumnWrap {
        float: none;
    }
    .el8Column2 {
        width: auto;
        max-width: 400px;
    }
    .el8LoginUpdates {
    margin-right:0;
}

}

/* =NEW LOGINS
--------------------------------------------------------------------------------- */
.el8PatientLoginLogo {
    margin:0 auto 20px auto;
    display:block;
}

form.el8PatientLogin {
    padding: 40px;
    background: #3FACDF; /* Old browsers */
    background: -moz-linear-gradient(top, #3FACDF 0%, #1C779B 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3FACDF), color-stop(100%,#1C779B)); /* Chrome, Safari 4+ */
    background: -webkit-linear-gradient(top, #3FACDF 0%,#1C779B 100%); /* Chrome 10+, Safari 5.1+ */
    background: -o-linear-gradient(top, #3FACDF 0%,#1C779B 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #3FACDF 0%,#1C779B 100%); /* IE10+ */
    background: linear-gradient(to bottom, #3FACDF 0%,#1C779B 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3FACDF', endColorstr='#1C779B', GradientType=0); /* IE7-9 */
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border: 1px solid #0A5C75;
    box-shadow: inset 0 1px 0px 0 #96E1FF, 0 2px 3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: inset 0 1px 0px 0 #96E1FF, 0 2px 3px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0px 0 #96E1FF, 0 2px 3px rgba(0, 0, 0, 0.4);
}
    form.el8PatientLogin a.el8ForgotPassword {
        color:#C8EDFF;
        font-size:1.6em;
    }

h1.el8LoginHeading {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:3em;
    color:#FFF;
    text-shadow: 0 2px 1px #22708F;
    padding:0 0 30px 0;
}
h1.el8LoginHeading.el8LoginWithSubheading {
    padding:0 0 10px 0;
}
h2.el8LoginSubheading {
    padding:0 0 20px 0;
}
    form.el8PatientLogin h2.el8LoginSubheading {
        color: #00445C;
        text-shadow: 0 1px 0 #81C6E2;
    }
.el8PtLoginInputContainer,
.el8EMRLoginInputContainer {
    margin-bottom: 1em;
    position: relative;
}
    .el8PtLoginInputContainer input,
    .el8EMRLoginInputContainer input {
        box-sizing:border-box;
        -moz-box-sizing:border-box;
        -webkit-box-sizing:border-box;
        width:100%;
        *width:82%; /* hack for IE 7 */
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
    }
    .el8PtLoginInputContainer input {
        border: 1px solid #185E79;
    }
    .el8EMRLoginInputContainer input{
        border: 1px solid #999;
    }
    .el8PtLoginInputContainer input[type="email"],
    .el8PtLoginInputContainer input[type="text"],
    .el8PtLoginInputContainer input[type="password"],
    .el8PtLoginInputContainer input[type="number"] {
        background-color:#E7F3F7;
    }
    .el8PtLoginInputContainer input[type="email"]:focus,
    .el8PtLoginInputContainer input[type="text"]:focus,
    .el8PtLoginInputContainer input[type="password"]:focus,
    .el8PtLoginInputContainer input[type="number"]:focus {
        background-color:#fff;
        border-color:var(--vds-action-link-color, #296bbc);
        box-shadow:inset 0 1px 4px rgba(0,0,0,0.7);
    }

    .el8PtLoginInputContainer label,
    .el8EMRLoginInputContainer label {
        position:static;
        display:block;
        font-size:1.5em;
        font-weight:300;
        padding-bottom:5px;
    }
    .el8PtLoginInputContainer label {
        color: #C8E8F3;
    }
    .el8EMRLoginInputContainer label {
        color: #555;
    }
.el8PtLoginInputContainer span.el8UserNameIcon,
.el8PtLoginInputContainer span.el8PasswordIcon {
    top:auto;
    bottom:12px;
}
.el8PtLoginInputContainer.el8LoginIcon input{
    padding-left:40px;
}
.el8EMRRedirectContainer {
    margin: 30px 0 20px 0;
    text-align: center;
}

@media screen and (max-width: 480px) {

    .el8PatientLoginLogo {
        margin:0 auto;
    }

    form.el8PatientLogin {
        padding:30px 20px;
    }
}

/* = EMR LOGIN
--------------------------------------------------------------------------------- */
.el8LoginHeading.el8EMRLoginHeading {
    padding: 0 0 5px 0;
    text-shadow:  0 1px 0 #FFF;
    color:#22708F;
}
a.el8PtRedirect {
    font-size:1.2em;
    cursor:pointer;
}
form.el8EMRLogin {
    padding: 40px;
    background: #EEE; /* Old browsers */
    background: -moz-linear-gradient(top, #EEE 0%, #D5D5D5 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#EEE), color-stop(100%,#D5D5D5)); /* Chrome, Safari 4+ */
    background: -webkit-linear-gradient(top, #EEE 0%,#D5D5D5 100%); /* Chrome 10+, Safari 5.1+ */
    background: -o-linear-gradient(top, #EEE 0%,#D5D5D5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #EEE 0%,#D5D5D5 100%); /* IE10+ */
    background: linear-gradient(to bottom, #EEE 0%,#D5D5D5 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EEEEEE', endColorstr='#D5D5D5', GradientType=0); /* IE7-9 */
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border: 1px solid #999;
    box-shadow: inset 0 1px 0px 0 #fff, 0 2px 3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: inset 0 1px 0px 0 #fff, 0 2px 3px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0px 0 #fff, 0 2px 3px rgba(0, 0, 0, 0.4);
}
.el8EMRLoginInputContainer input[type="email"],
.el8EMRLoginInputContainer input[type="text"],
.el8EMRLoginInputContainer input[type="password"],
.el8EMRLoginInputContainer input[type="number"] {
    background-color:#f5f5f5;
}
.el8EMRLoginInputContainer input[type="email"]:focus,
.el8EMRLoginInputContainer input[type="text"]:focus,
.el8EMRLoginInputContainer input[type="password"]:focus,
.el8EMRLoginInputContainer input[type="number"]:focus {
    background-color:#fff;
    border-color:var(--vds-action-link-color, #296bbc);
    box-shadow:inset 0 1px 4px rgba(0,0,0,0.7);
}
.el8EMRLoginInputContainer span.el8UserNameIcon,
.el8EMRLoginInputContainer span.el8PasswordIcon {
    top:auto;
    bottom:12px;
}
.el8EMRLoginInputContainer.el8LoginIcon input{
    padding-left:40px;
}

/* Login CTA */
.ctaOn form.el8EMRLogin {
    background: #ebebeb;
    border: 1px solid #ccc;
    box-shadow: none;
}
.ctaOn .el8LoginHeading.el8EMRLoginHeading {
    text-shadow:  none;
}
.loginCTAContainer {
    margin-right: 50px;
}
@media screen and (max-width: 920px) {
    .loginCTAContainer {
        display: none;
    }
}

@media screen and (max-width: 480px) {

    .el8LoginLogo {
        margin:0 auto 20px auto;
    }

    form.el8EMRLogin {
        padding:30px 20px;
    }
}

/* =MISC
--------------------------------------------------------------------------------- */
.el8Push {
    height: 80px;
    width: 100%;
}
.el8BreakWord {
    word-break: break-all;
}

.hidden {
    visibility: hidden;
}
.relative {
    position: relative;
}
.bgwhitesmoke {
    background-color:whitesmoke;
}

.el8AlignCenter {
    text-align: center;
}
.el8AlignRight {
    text-align: right;
}

.el8SmallText {
    font-size: 1.3em;
}

.el8Bold {
    font-weight: bold;
}

.el8777 {
    color: #777;
}
.el8999 {
    color: #999;
}
.el8CCC {
    color: #CCC;
}

.mt0 {margin-top: 0;}
.mt15 {
    margin-top: 15px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt50 {
    margin-top: 50px;
}
.mb15 {
    margin-bottom: 15px;
}
.m10 {
    margin: 10px;
}
.mtb10 {
    margin: 10px 0;
}
.mr30 {
    margin-right: 30px;
}
.mv30 {
    margin-top:30px;
    margin-bottom:30px;
}

.p10 {
    padding: 10px;
}
.pt0 {
    padding-top: 0;
}
.pt5 {
    padding-top:5px;
}
.pl5 {padding-left: 5px;}

.pt10 {
    padding-top: 10px;
}
.pb5 {
    padding-bottom: 5px;
}
.pb10 {
    padding-bottom: 10px !important;
}
.pb20 {
    padding-bottom: 20px;
}
.pb30 {
    padding-bottom:30px;
}
.pr10 {
    padding-right:10px;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
