

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'DM Sans';
}

/*---------------------------------------------*/
a {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

    a:focus {
        outline: none !important;
    }

    a:hover {
        text-decoration: none;
        color: #33658a;
        color: -webkit-linear-gradient(left, #0054c3, #2f3194);
        color: -o-linear-gradient(left, #0054c3, #2f3194);
        color: -moz-linear-gradient(left, #0054c3, #2f3194);
        color: linear-gradient(left, #0054c3, #2f3194);
    }

/*---------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

p {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}


/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

    textarea:focus, input:focus {
        border-color: transparent !important;
    }

        input:focus::-webkit-input-placeholder {
            color: transparent;
        }

        input:focus:-moz-placeholder {
            color: transparent;
        }

        input:focus::-moz-placeholder {
            color: transparent;
        }

        input:focus:-ms-input-placeholder {
            color: transparent;
        }

        textarea:focus::-webkit-input-placeholder {
            color: transparent;
        }

        textarea:focus:-moz-placeholder {
            color: transparent;
        }

        textarea:focus::-moz-placeholder {
            color: transparent;
        }

        textarea:focus:-ms-input-placeholder {
            color: transparent;
        }

input::-webkit-input-placeholder {
    color: #adadad;
}

input:-moz-placeholder {
    color: #adadad;
}

input::-moz-placeholder {
    color: #adadad;
}

input:-ms-input-placeholder {
    color: #adadad;
}

textarea::-webkit-input-placeholder {
    color: #adadad;
}

textarea:-moz-placeholder {
    color: #adadad;
}

textarea::-moz-placeholder {
    color: #adadad;
}

textarea:-ms-input-placeholder {
    color: #adadad;
}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

iframe {
    border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

.txt2 {
    font-size: 13px;
    color: #333333;
    line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/


.limiter {
    width: 100%;
    margin: 0 auto;
}


.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f2f2f2;
}

.wrap-login {
    width: 800px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 77px 55px 77px 55px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
    width: 100%;
}

.login100-form-title {
    display: block;
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
}

    .login100-form-title i {
        font-size: 60px;
    }

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 7px;
}

.input100 {
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px;
}

/*---------------------------------------------*/
.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

    .focus-input100::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
        background: #6a7dfe;
        background: -webkit-linear-gradient(left, #0054c3, #2f3194);
        background: -o-linear-gradient(left, #0054c3, #2f3194);
        background: -moz-linear-gradient(left, #0054c3, #2f3194);
        background: linear-gradient(left, #0054c3, #2f3194);
    }

    .focus-input100::after {
        font-size: 15px;
        color: #999999;
        line-height: 1.2;
        content: attr(data-placeholder);
        display: block;
        width: 100%;
        position: absolute;
        top: 16px;
        left: 0px;
        padding-left: 5px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

.input100:focus + .focus-input100::after {
    top: -15px;
}

.input100:focus + .focus-input100::before {
    width: 100%;
}

.has-val.input100 + .focus-input100::after {
    top: -15px;
}

.has-val.input100 + .focus-input100::before {
    width: 100%;
}

/*---------------------------------------------*/
.btn-show-pass {
    font-size: 15px;
    color: #999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    padding-right: 5px;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .btn-show-pass:hover {
        color: #2f3194;
        color: -webkit-linear-gradient(left, #0054c3, #2f3194);
        color: -o-linear-gradient(left, #0054c3, #2f3194);
        color: -moz-linear-gradient(left, #0054c3, #2f3194);
        color: linear-gradient(left, #0054c3, #2f3194);
    }

    .btn-show-pass.active {
        color: #2f3194;
        color: -webkit-linear-gradient(left, #0054c3, #2f3194);
        color: -o-linear-gradient(left, #0054c3, #2f3194);
        color: -moz-linear-gradient(left, #0054c3, #2f3194);
        color: linear-gradient(left, #0054c3, #2f3194);
    }



/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 13px;
}

.wrap-login100-form-btn {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 25px;
    overflow: hidden;
    margin: 0 auto;
}

.wrap-login50-form-btn {
    width: 50%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 25px;
    overflow: hidden;
    margin: 0 auto;
}

.login-page {
    background: rgb(241, 241, 241);
}

.login-home-header {
    color: rgb(45,48,143);
    text-align: center;
    margin-bottom: revert;
    font-weight: 750;
}

.login-header {
    color: rgb(45,48,143);
    text-align: center;
    margin-bottom: revert;
    font-weight: 750;
    font-size: 18px;
}

.login-home-page-logo {
    text-align: center;
    display: block;
    width: 16rem;
    margin: 1rem 0 0 0;
}

.login-main-logo {
    text-align: center;
    display: block;
    width: 12rem;
    margin: 1rem 0 0 0;
}

.login-confrim-logo {
    text-align: center;
    margin: auto;
    width: 16rem;
    display: block;
}

.login-page .around {
    border-radius: .75rem !important;
}

.login-page .padding {
    padding: 0% 6% 3rem;
}

.login-page .padding-20 {
    padding: 0% 20% 3rem;
}

.login-page .margin {
    margin: 3rem 0 0 0;
}

.login-page .btn-color {
    background-color: rgb(45,48,143);
    border-color: transparent;
}

.login-page .btn-height {
    height: 2.5rem;
}

.login-page .btn-font-size {
    font-size: .875rem;
}

.login-page .no-border-right {
    border-right: transparent;
}

.login-page .inputbox {
    height: calc(2rem) !important;
}

.login-page .pwd-inputbox {
    margin: initial;
    background-color: transparent;
    border-left: transparent;
    border-radius: 0rem .3rem .3rem 0rem !important;
}

.login-page .main-container {
    background-color: white;
}

.login-page .one-container {
    background-color: white;
    margin: 5% 15% 0;
}

.login-page .margin-0-15 {
    margin: 0% 15%;
}

.login-page .min-height-30 {
    min-height: 30rem;
}

.login-page .margin-rem-2-0-0 {
    margin: 2rem 0 0;
}

.login-page .margin-rem-1-0-0 {
    margin: 1rem 0 0;
}
.login-page .header-sub {
    margin: 3rem 2rem 2rem 2rem;
}

.login-page .register-section-margin {
    margin: 6rem 10%;
}

.login-page .register-container-padding {
    padding: 0% 12%;
}

.login-page .btn-contiune {
    margin: 12%;
}

.login-page .space-top-bom-2 {
    margin: 2rem 0 2rem 0;
}

.login-page .icon-left-top {
    float: left;
    font-size: xx-large;
    height: 45px;
    color: gray;
    display: inline-flex;
    margin: 0.5rem 0rem 0 1rem;
}

.login-page .fw-100 {
    font-weight:100;
}

.login-page .fc-black{
    color:black;
}

.login-page .nav-top-coner {
    height: 45px;
    display: inline-flex;
    margin: 0% 0% 0% .5rem;
    color: gray;
    align-items: center;
    font-size:18px;
}

.login-page .icon-right-top {
    float: right;
    height: 45px;
    display: inline-flex;
    margin: 0 1rem 0 0rem;
}

.login-page .letter-spacing-2 {
    letter-spacing: 0.2rem
}

.login-page .font-size-1 {
    font-size: 1rem;
}

.login-page .v-center {
    margin: 40% 0% 0%;
}

.login-page .label-size {
    font-size: small;
}

.login-page .top-icon-size {
    margin: 3rem 0 1rem;
    width: 5rem;
}

.login-page .sent-mail-icon-size {
    margin: 3rem 0 1rem;
    width: 7rem;
}

.login-page .sent-mail-context {
    margin: 0 6rem;
}

.login-page .confirmation-front-size {
    font-size: x-large;
}
.login-page .confirmation-padding-0-10-20 {
    padding: 0% 10% 20%;
}

.login-page .head-padding-rem {
    padding: 5rem;
}

.login-page .head-padding-rem-5-0-0 {
    padding: 5rem 0 0;
}

.login-page .head-padding-rem-1-0-0 {
    padding: 1rem 0 0;
}

.login-page .head-padding-rem-5-0-2 {
    padding: 5rem 0 2rem;
}

.login-page .font-size-inherit {
    font-size: inherit;
}

.login-page .button-size-larger {
    font-size: x-large;
    height: 3.5rem;
}

.login-page .h-center {
    display: flex;
    justify-content: center;
}

.login-page .v-line {
    min-height: 10rem;
}

.login-page .top-space-1 {
    margin: 1rem 0% 0%;
}

.login-page .mail-to {
    text-decoration: underline;
}

.login-page .strong-color {
    color: #666666;
}

.login-page .margin-rem-01-0-0-05 {
    margin: 0.1rem 0 0 0.5rem;
}

.login-page .margin-rem-n-3 {
    margin: -3rem 0 0 0;
}

.login-page .confrim-btn-margin {
    margin: 2rem 3px 0 3px;
}
.login-page .logo-padding {
    padding: 0.5rem 0 0 0;
}

.login-page .left-block-margin {
    margin: 2.5rem 0 0 0;
}

.login-page .font-color {
    color: black;
    font-size:12px;
}

.include-bg-pic {
    background-image: url(../images/customer-portal.png);
    background-size: cover; /* Makes the image cover the whole page */
    background-repeat: no-repeat;
    background-position: center;
    //height: 100vh; /* Ensure the body takes full viewport height */
    margin: 0;
}


#vline line {
    stroke: #555555;
    stroke-width: inherit
}

.login100-form-bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: #2D308F;
    background: -webkit-linear-gradient(right, #0054c3, #2f3194, #0054c3, #2f3194);
    background: -o-linear-gradient(right, #0054c3, #2f3194, #0054c3, #2f3194);
    background: -moz-linear-gradient(right, #0054c3, #2f3194, #0054c3, #2f3194);
    background: linear-gradient(right, #0054c3, #2f3194, #0054c3, #2f3194);
    top: 0;
    left: -100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn {
    font-size: 15px;
    color: #fff !important;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
    left: 0;
}

.wrap-login50-form-btn:hover .login100-form-bgbtn {
    left: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 767px) {
    .wrap-login100 {
        padding: 77px 15px 33px 15px;
    }

    .login-page .padding {
        padding: .1% 0rem;
    }

    .login-page .padding-20 {
        padding: .1% 0rem;
    }

    .login-page .icon-left-top {
        float: left;
        font-size: xx-large;
        height: 0px;
        color: gray;
        display: inline-flex;
        margin: 0.5rem 0rem 0 1rem;
    }

    .login-page .main-container {
        background-color: white;
        margin: 2% 2%;
    }

    .login-page .one-container {
        background-color: white;
        margin: 2% 2%;
    }

    .login-page .validate-input {
        position: relative;
        margin: 2%;
    }

    .login-page .hide-mobile {
        display: none;
    }

    .login-page .register-section-margin {
        margin: 0% 0% 5% 0%;
    }

    .login-page .register-container-padding {
        padding: 2%
    }
    .login-page .d-flex {
        display: block !important;
    }
    .login-confrim-logo {
        text-align: center;
        margin: auto;
        width: 48%;
        display: block;
    }
    .login-page .v-center {
        margin: 10% 0%;
    }
    .login-page .button-size-larger {
        font-size: inherit;
        height: 3.5rem;
    }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    pointer-events: none;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f12a";
    font-size: 16px;
    color: #c80000;
    display: block;
    position: absolute;
    background-color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}


@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .image-fader {
        opacity: 1 !important;
        transition: all .5s ease-out;
    }
}

.side-image-regular {
    position: fixed;
    width: 41.66666667%;
    height: 100%;
    left: 0;
    opacity: 0;
    background: url("../images/bg1.jpg") center left / cover no-repeat;
}

.margin-auto {
    margin: auto;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}

@media only screen and (max-device-width: 1023px) and (-webkit-min-device-pixel-ratio: 2) {
    .mobile-p-0 {
        padding: 0px !important;
    }
}

@media only screen and (min-device-width: 1024px) {
    .login100-form {
        width: 70%;
    }

    .wrap-login100 {
        width: 650px;
        border-radius: 10px;
        padding: 77px 55px 33px 55px;
        /*box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);*/
    }
}

.p-t-100 {
    padding-top: 4rem;
}

.fixed-bottom-right {
    position: fixed;
    bottom: 0;
    right: 1%;
}

.download-instruction-btn {
    text-decoration: underline;
}

#alert-pop-up p {
    color: black;
}

#alert-pop-up a {
    text-decoration: underline;
}

#alert-pop-up p > .strong {
    color: #007bff;
    font-weight: 700;
    font-style: italic;
}

.font-italic {
    font-style: italic;
}

#turquoise-bg {
    background-image: url('../images/portal-pop-up-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-light-gray {
    background-color: #e7e7e7;
}

.color-dark-blue {
    color: #1a2b6d;
}

#alert-pop-up .pop-up-content {
    background-color: #e7e7e7;
    border: 0;
}

    #alert-pop-up .pop-up-content .content {
        padding: 50px 10px 50px 0px;
    }

        #alert-pop-up .pop-up-content .content h1 {
            font-size: 2.0em;
            line-height: 35px;
        }

        #alert-pop-up .pop-up-content .content .title-strong {
            font-size: 1.1em;
        }

        #alert-pop-up .pop-up-content .content p {
            line-height: 20px;
            font-size: 1em;
            font-weight: 400;
            color: #424242;
        }

        #alert-pop-up .pop-up-content .content a {
            font-size: 1em;
            font-weight: 700;
            color: #424242;
            line-height: 20px;
            text-decoration: none;
        }

            #alert-pop-up .pop-up-content .content a:hover {
                text-decoration: underline;
            }


    #alert-pop-up .pop-up-content h2 {
        color: white;
        font-size: 1.2em;
        font-weight: 700;
    }

    #alert-pop-up .pop-up-content .form-content {
        padding: 70px 110px 50px 10px;
    }

        #alert-pop-up .pop-up-content .form-content input {
            margin-top: 10px;
        }

        #alert-pop-up .pop-up-content .form-content .submit-button {
            margin-top: 30px;
            background-color: #31cdb0;
            color: black;
            font-weight: 700;
            padding: 5px 30px 5px 30px;
            border-radius: 0;
            font-size: 0.9em;
        }

        #alert-pop-up .pop-up-content .form-content input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
            font-size: 0.9em;
        }

        #alert-pop-up .pop-up-content .form-content input:-ms-input-placeholder { /* Internet Explorer 10-11 */
            font-size: 0.9em;
        }

        #alert-pop-up .pop-up-content .form-content input::-ms-input-placeholder { /* Microsoft Edge */
            font-size: 0.9em;
        }

.error {
    color: #ffbf00;
    font-size: 0.9em;
    margin-bottom: 0;
}

.submit-button {
    background: #2E3191;
    color: #eee;
    padding: 5px 20px;
    font-size: 0.85rem;
}

    .submit-button:hover {
        color: #eee;
        background: #1a2b6d;
        text-decoration: none;
    }

.color-purple {
    color: #2E3191;
}

.create-account {
    font-size: 2rem;
    font-weight: 700;
}

#portal-account-request-formid {
    background: #adadad;
    padding: 15px;
    border-radius: 5px;
}

    #portal-account-request-formid .control-group {
        padding: 3px;
    }

    #portal-account-request-formid .form-control {
        font-size: 0.85rem;
    }

.account-number-note {
    font-size: 0.8rem;
    line-height: 0.8;
}

.input101 {
    color: #495057;
    background-color: #fff;
    font-size: 0.85rem !important;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
}

.input-with-icon {
    position: relative;
}

    .input-with-icon .icon {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background-size: cover;
    }

        .input-with-icon .icon:hover::before {
            content: "Your AM/PM Account Number can be found on your AM/PM contract, invoices, or sales orders. Can't find it? Contact us at 1-800-663-4571 and a Support Representative will assist you.";
            position: absolute;
            top: -60px;
            right: calc(100% + 10px);
            padding: 10px;
            background-color: #fff;
            color: #333;
            border-radius: 5px;
            white-space: normal;
            z-index: 1;
            font-size: 12px;
            min-width: 180px;
            border: 1px solid #555;
        }

    .input-with-icon i.mdi.mdi-information-outline {
        font-size: 20px;
        margin: auto;
        text-align: center;
        vertical-align: middle;
        color: #444;
    }

div {
    border: 0;
}












@media screen and (min-width: 1200px) {
    .input-with-icon .icon:hover::before {
        left: calc(100% + 10px);
    }

    .input-with-icon .icon:hover::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -6px;
        margin-top: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent #333 transparent transparent;
        z-index: 2;
    }
}
