﻿/* Base Styles
----------------------------------------------- */
body, html {
    height: 100%;
    min-height: 100vh;
    font-family: 'Proxima Nova', sans-serif;
}

input[type="text"], input[type="password"], textarea, select {
    border-radius: 5px;
}

[type=checkbox] + label, [type=radio] + label {
    display: inline;
}

img {
    -ms-interpolation-mode: bicubic;
}

a {
    transition: all 0.2s ease-in-out;
}

label.required:before {
    display: inline-block;
    margin-left: -5px;
    padding-right: 5px;
    content: '*';
    color: #777;
}


/* Animate Pages (Fade-In on Page Load)
----------------------------------------------- */
body {
    background-color: #01a6d3;
    background-image: url('../images/bg-desk-light-blue.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 1s; /* Internet Explorer */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
    background-size: cover;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Foundation Components Extended
----------------------------------------------- */
.tabs {
    background: #fff;
}

    .tabs li a {
        outline: none;
    }

.tabs-content {
    background: #fff;
    border: none;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}

[data-responsive-accordion-tabs] .accordion-content {
    padding: 0;
}

.reveal {
    max-width: 650px !important;
}

.input-field {
    width: 100%;
    display: inline-block;
    margin-bottom: .5rem;
    padding: .5rem;
    border: 1px solid #cacaca;
    border-radius: 5px;
}

/* Custom Components
----------------------------------------------- */
.loader:after {
    content: '';
    display: inline-block;
    border: 12px solid rgba(100, 100, 100, 0.25); /* Light gray */
    border-top: 12px solid #4096d0; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: loaderSpin 1.2s linear infinite;
    z-index: 1000;
}

.loader-fullscreen {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 1000;
    background: rgba(20, 43, 68, 0.9);
}

    .loader-fullscreen:after {
        display: flex;
    }

@-webkit-keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Utilities (Helper Classes)
----------------------------------------------- */
.m0 {
    margin: 0 !important;
}

.m1 {
    margin: 1rem !important;
}

.m2 {
    margin: 2rem !important;
}

.mt1 {
    margin-top: 1rem !important;
}

.mt2 {
    margin-top: 2rem !important;
}

.mb1 {
    margin-bottom: 1rem !important;
}

.mb2 {
    margin-bottom: 2rem !important;
}

.p0 {
    padding: 0 !important;
}

.p1 {
    padding: 1rem !important;
}

.p2 {
    padding: 2rem !important;
}

.pt1 {
    padding-top: 1rem !important;
}

.pt2 {
    padding-top: 2rem !important;
}

.pb1 {
    padding-bottom: 1rem !important;
}

.pb2 {
    padding-bottom: 2rem !important;
}


/* Login: Container, Header, Nav, and Footer
----------------------------------------------- */
.login-container {
    width: 90%;
    max-width: 800px;
    margin: 5rem auto 0 auto;
    border-radius: 7px;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
}

.login-content {
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 0 0 7px 7px;
}

.login-header {
    padding: 2rem 1rem;
    background: rgba(20, 43, 68, 0.85);
    color: #fff;
    border-radius: 7px 7px 0 0;
}

.login-nav {
    float: right;
}

.login-nav-toggle-avatar {
    opacity: 0.5;
}

.login-nav-toggle {
    float: right;
    padding: 1rem;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    vertical-align: middle;
    box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

    .login-nav-toggle:after {
        position: relative;
        top: -2px;
        content: '';
        border: solid rgba(255, 255, 255, 1.0);
        border-width: 0 2px 2px 0;
        display: inline-block;
        margin-left: 6px;
        padding: 3px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transition: all 0.2s ease-in-out;
    }

    .login-nav-toggle[aria-expanded="true"] {
        background: #0d1e31;
    }

        .login-nav-toggle[aria-expanded="true"]:after {
            top: 0;
            transform: rotate(-135deg);
            -webkit-transform: rotate(-135deg);
        }

    .login-nav-toggle:hover {
        background: rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.1);
    }

.login-nav-dropdown-pane {
    background: #0d1e31;
    border: none;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

    .login-nav-dropdown-pane ul li a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        color: rgba(255, 255, 255, 0.6);
    }

        .login-nav-dropdown-pane ul li a:hover {
            color: rgba(255, 255, 255, 1.0);
            background: rgba(0, 0, 0, 0.15);
            border-radius: 5px;
        }

    .login-nav-dropdown-pane ul li:last-child a {
        border-bottom: none;
    }

.login-footer {
    margin: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

.login-page-title-container {
    padding: 1rem;
    background: #0d1e31;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-page-title {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}


/* Login: Default Page
----------------------------------------------- */
.login-form input[type="text"] {
    border-radius: 5px;
}

input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

    input[type="checkbox"]:not(:checked) + label,
    input[type="checkbox"]:checked + label {
        position: relative;
        margin: 0;
        padding-top: 3px;
        padding-left: 34px;
        color: #777;
        line-height: 24px;
        cursor: pointer;
    }

        input[type="checkbox"]:not(:checked) + label:before,
        input [type="checkbox"]:checked + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 24px;
            height: 24px;
            background: none;
            background-size: 100%;
            border-radius: 3px;
            border: 1px solid #999;
        }

        input[type="checkbox"]:not(:checked) + label:after,
        input[type="checkbox"]:checked + label:after {
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            background: url("../images/icon-checkmark-white.svg") no-repeat center center;
            background-size: 75%;
            text-align: center;
            color: white;
            transition: opacity .2s ease-in-out;
        }

        input[type="checkbox"]:not(:checked) + label:after {
            opacity: 0;
            width: 24px;
            height: 24px;
        }

        input[type="checkbox"]:checked + label:after {
            opacity: 1;
            width: 24px;
            height: 24px;
            background-color: #1779ba;
            border-radius: 3px;
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

.login-forgot-password {
    color: #777;
    font-size: .875rem;
    margin-top: 1rem;
}


/* Login: Default Page with '?aid' (Application ID) Parameter
   Note: These classes are added to the body from the code behind (Default.aspx.cs)
----------------------------------------------- */
/* Default (If ?aid parameter is missing) */
.login-logo {
    width: 160px;
    /*max-width: 90%;*/
    height: 50px;
    margin: auto;
    background-image: url('../images/logo-buffini.svg');
    background-size: 160px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Blitz */
body.aid-23 {
    background-image: url('../images/bg-light-shards.jpg');
    background-color: #e6ebef;
}

.aid-23 .login-logo {
    width: 250px;
    background-image: url('../images/logo-blitz-white.png');
    background-size: 250px;
    height: 50px;
}

/* Peak Producers */
body.aid-26 {
    background-image: url('../images/bg-angles-dark-blue.jpg');
    background-color: #065283;
}

.aid-26 .login-logo {
    width: 200px;
    background-image: url('../images/logo-peak-producers-white.png');
    background-size: 200px;
    height: 100px;
}

/* Referral Maker CRM */
body.aid-27, body.aid-29 {
    background-image: url('../images/bg-ipad-cafe-dark-blue.jpg');
    background-color: #004c93;
}

.aid-27 .login-logo, .aid-27 .login-logo {
    width: 280px;
    background-image: url('../images/ReferralMakerCRM_logo.png');
    background-size: 280px;
    height: 60px;
}

/* Ultimate Recruiting Solution */
body.aid-30 {
    background-image: url('../images/bg-angles-gold.jpg');
    background-color: #a58548;
}

.aid-30 .login-logo {
    width: 200px;
    background-image: url('../images/logo-ultimate-recruiting-solution-white.png');
    background-size: 200px;
    height: 100px;
}


/* Login: Default Page with '?p' (Corporate Partner) Parameter
   Note: These classes are added to the body from the code behind (Default.aspx.cs)
----------------------------------------------- */
/* Wells Fargo */
body.p-wf {
    background-image: url('../images/bg-skyscrapers-gray.jpg');
    background-color: #6a6a6a;
}

    body.p-wf .login-logo {
        width: 140px;
        background-image: url('../images/logo-wells-fargo.png');
        background-size: 140px;
        height: 50px;
    }

    body.p-wf .login-header {
        background-color: rgba(50, 50, 50, 0.7);
    }

    body.p-wf #MainContent_btnSubmitInit {
        background-color: #555;
    }

/* Media Queries (Small Screens Only - Less than 640px)
----------------------------------------------- */
@media screen and (max-width: 39.9375em) {
    [data-responsive-accordion-tabs] .accordion-content {
        padding: 0 0.5rem;
    }

    .login-container {
        margin: 2rem auto 0 auto;
    }

    .login-content {
        padding: 1rem;
    }

    .login-logo {
        display: block;
        margin: auto;
        float: none;
        background-size: 100%;
    }

    .login-nav-toggle {
        margin: 1rem auto 0 auto;
        float: none;
        text-align: center;
    }

    .login-profile-list {
        padding-left: 0;
        margin-left: 0;
    }

        .login-profile-list span:first-child {
            text-align: left;
            width: 100%;
        }

    .login-remember-me {
        margin-bottom: 1rem;
    }

    .login-card-image {
        padding-top: 30%;
    }
}

/* Media Queries (Medium Screens Only)
----------------------------------------------- */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .tabs-title > a {
        padding: 1.25rem 1rem;
    }
}


