﻿
@font-face {
    font-family: "Roboto-Regular";
    src: url("../fonts/Roboto-Regular.eot"), /* IE9 Compat Modes */
    url("../fonts/Roboto-Regular.svg") format("svg"), /* Legacy iOS */
    url("../fonts/Roboto-Regular.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../fonts/Roboto-Regular.woff") format("woff"), /* Modern Browsers */
    url("../fonts/Roboto-Regular.woff2") format("woff2"); /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Roboto-Medium";
    src: url("../fonts/Roboto-Medium.eot"), /* IE9 Compat Modes */
    url("../fonts/Roboto-Medium.svg") format("svg"), /* Legacy iOS */
    url("../fonts/Roboto-Medium.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../fonts/Roboto-Medium.woff") format("woff"), /* Modern Browsers */
    url("../fonts/Roboto-Medium.woff2") format("woff2"); /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}

:root {
    --FONT_REGULAR: "Roboto-Regular";
    --FONT_BOLD: "Roboto-Medium";
    --COLOR_PRIMARY: #f08c20;
}

body, html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto-Regular";
    background-color: #e8eaee;
}

ul, li {
    list-style-type: none;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.font_bold {
    font-family: "Roboto-Medium";
}



header {
    text-align: center;
}

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

    .brand-tagline .title {
        font-weight: normal;
        font-family: Roboto-Regular;
        font-size: 13px;
        padding-bottom: 0px;
        line-height: 26px;
        margin-bottom: 0px;
        color: #ffffff;
        letter-spacing: .06em;
    }

    .brand-tagline .discription {
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 30px;
        letter-spacing: .05em;
        color: rgba(255,255,255,.6);
        margin-top: 0px;
    }



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

    .panel-heading .panel-title {
        font-weight: normal;
        font-family: "Roboto-Medium";
        position: relative;
        margin-top: 0;
        padding-bottom: 10px;
        margin-bottom: 10px;
        text-transform: uppercase;
        color: #424c70;
    }

        .panel-heading .panel-title:before {
            content: '';
            position: absolute;
            width: 30px;
            height: 3px;
            background-color: var(--COLOR_PRIMARY);
            left: 50%;
            bottom: 0;
            margin-left: -14px;
        }

.switch-language {
    position: fixed;
    top: 15px;
    right: 15px;
}

body[dir="rtl"] .switch-language {
    right: inherit;
    left: 20px;
}

.lang-chip {
    display: inline-block;
    cursor: pointer;
    padding: 0 15px;
    height: 28px;
    line-height: 28px;
    border: 1px solid var(--COLOR_PRIMARY);
    border-radius: 14px;
    font-size: 11px;
    text-decoration: none;
    color: black;
}

    .lang-chip:hover {
        background-color: var(--COLOR_PRIMARY);
        border-color: var(--COLOR_PRIMARY);
        color: #FFFFFF;
    }


.form-group {
    padding: 16px 0 20px;
    position: relative;
}

    .form-group .form-label {
        display: block;
        position: absolute;
        font-size: 13px;
        top: 19px;
        color: #666666;
        -webkit-transition: all .15s ease-out;
        -moz-transition: all .15s ease-out;
        -o-transition: all .15s ease-out;
        transition: all .15s ease-out;
    }

    .form-group .form-control {
        width: 100%;
        border: none;
        border-bottom: 1px solid #666666;
        height: 26px;
        padding-bottom: 2px;
    }

    .form-group input:focus {
        border-bottom: 2px solid var(--COLOR_PRIMARY);
        box-shadow: none;
        outline: none;
    }

        .form-group input:focus + .form-label,
        .has-value .form-label,
        .focused .form-label {
            top: 5px;
            font-size: 11px;
            color: var(--COLOR_PRIMARY);
        }


.is-invalid input {
    border-color: #ff5252;
}

.is-invalid .form-label {
    color: #ff5252;
}



.login-remember {
    font-size: 11px;
    color: #888888;
    padding: 5px 0;
}

    .login-remember span {
        float: left;
        line-height: 14px;
        margin: 0 5px;
    }

    .login-remember input {
        float: left;
        margin: 0;
    }

    .login-remember label::after {
        clear: both;
        content: '';
        display: block;
    }


.btn {
    width: 100%;
    height: 36px;
    line-height: 36px;
    background-color: var(--COLOR_PRIMARY);
    padding: 0 10px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Roboto-Medium";
    border: none;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

    .btn:hover {
        background-color: #ea871c;
    }

.other-logins-section {
    margin-top: 30px;
}

.login-with-title {
    font-size: 12px;
    color: #a8a8a8;
    text-align: center;
    padding: 10px;
    position: relative;
}

    .login-with-title span {
        background-color: #FFFFFF;
        display: inline-block;
        padding: 0 6px;
        z-index: 2;
        position: relative;
    }

    .login-with-title::after {
        content: '';
        height: 1px;
        width: 100%;
        top: 50%;
        left: 0;
        background-color: #e0e0e0;
        position: absolute;
    }

.list-inline {
    text-align: center;
    margin: 10px 0 0;
}

    .list-inline li {
        display: inline-block;
        margin: 0 3px;
    }

        .list-inline li a {
            display: block;
            padding: 0 7px;
            height: 30px;
            line-height: 30px;
            font-size: 12px;
            text-decoration: none;
            color: #333333;
            border-radius: 3px;
            box-sizing: border-box;
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: row;
            flex-direction: row;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-align-content: center;
            align-content: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
        }

            .list-inline li a .label {
                margin: 0 3px;
            }

.login-icon {
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: 0 0;
    margin: 0 3px;
}

.office365 {
    background-color: #ffe9e9;
}

    .office365:hover {
        background-color: #f9dede;
    }

.office365-icon {
    background-image: url(../images/office365-icon.svg);
}

.windows {
    background-color: #dbedff;
}

    .windows:hover {
        background-color: #d2e5f7;
    }

.windows-icon {
    background-image: url(../images/windows-icon.svg);
}

.forgot-password {
    margin-top: 20px;
}

    .forgot-password a {
        font-size: 11px;
        color: red;
        text-decoration: none;
        color: #888888;
    }

.forgot-password-txt {
    font-size: 13px;
    margin-top: 0px;
    color: #888888;
}

.captcha-area {
    margin: 0;
    margin-top: 6px;
    height: 80px;
    text-align: center;
    line-height: 80px;
}

.error-message {
    font-size: 11px;
    color: #f44336;
    display: block;
    margin-top: 3px;
    position: absolute;
}

.no-pb {
    padding-bottom: 0;
}

.form-group .form-control.input-validation-error {
    border-bottom-color: #f44336;
}

.alert-message {
    width: 100%;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    font-size: 13px;
    padding: 10px 12px;
    line-height: 18px;
}

    .alert-message:after {
        clear: both;
        content: '';
        display: block;
    }

    .alert-message.success {
        background: rgba(99,170,92,.1);
        color: #63aa5c;
    }

    .alert-message.warning {
        background: rgba(242,119,121,.1);
        color: #f27779;
    }

.alert-message-label {
    float: left;
    width: calc(100% - 17px);
    padding-left: 10px;
}

.alert-message-icon {
    background: url(../images/validation-icons.svg);
    width: 17px;
    height: 17px;
    float: left;
    vertical-align: middle;
}

.success-icon {
    background-position: 0 17px;
}

.warning-icon {
    background-position: 0 0px;
}

.mt20 {
    margin-top: 20px;
}

.btn-backtologin {
    background: #FFFFFF;
    color: #000000;
    border: 1px solid var(--COLOR_PRIMARY);
    display: block;
    text-align: center;
    text-decoration: none;
}

    .btn-backtologin:hover {
        background: #FFFFFF;
    }

.btn-grey {
    background: #e8e8e8 !important;
    color: #666666;
    display: block;
    text-align: center;
    text-decoration: none;
}

    .btn-grey:hover {
        background: #e0e0e0;
    }

.validation-summary-errors ul {
    margin: 0px;
}

.goback-link {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.display-block {
    display: block;
}

.privacy-policy {
    text-decoration: none;
    color: #2d80c1;
}

.accept-checkbox {
    margin-top: 10px;
}

.clear {
    clear: both;
    margin: 0px;
    padding: 0px;
}

/*------Checkbox CSS Start--------*/

[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

[type="checkbox"] + span:not(.lever) {
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    line-height: 16px;
    font-size: 11px;
    color: #888888;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    [type="checkbox"] + span:not(.lever):before, [type="checkbox"]:not(.filled-in) + span:not(.lever):after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 14px;
        height: 14px;
        z-index: 0;
        border: 1px solid #5a5a5a;
        border-radius: 1px;
        margin-top: 3px;
        -webkit-transition: .2s;
        transition: .2s
    }

.input-validation-error[type="checkbox"].filled-in:not(:checked) + span:not(.lever):after {
    border-color: #f44336;
}


[type="checkbox"]:not(.filled-in) + span:not(.lever):after {
    border: 0;
    -webkit-transform: scale(0);
    transform: scale(0)
}

[type="checkbox"]:not(:checked):disabled + span:not(.lever):before {
    border: none;
    background-color: rgba(0,0,0,0.42)
}

[type="checkbox"].filled-in + span:not(.lever):after {
    border-radius: 2px
}

[type="checkbox"].filled-in + span:not(.lever):before, [type="checkbox"].filled-in + span:not(.lever):after {
    content: '';
    left: 0;
    position: absolute;
    -webkit-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
    transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
    z-index: 1
}

[type="checkbox"].filled-in:not(:checked) + span:not(.lever):before {
    width: 0;
    height: 0;
    border: 3px solid transparent;
    left: 4px;
    top: 6px;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%
}

[type="checkbox"].filled-in:not(:checked) + span:not(.lever):after {
    height: 14px;
    width: 14px;
    background-color: transparent;
    border: 1px solid #5a5a5a;
    top: 0px;
    z-index: 0
}

[type="checkbox"].filled-in:checked + span:not(.lever):before {
    top: -2px;
    left: 0px;
    width: 3px;
    height: 8px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%
}

[type="checkbox"].filled-in:checked + span:not(.lever):after {
    top: 0;
    width: 14px;
    height: 14px;
    border: 1px solid var(--COLOR_PRIMARY);
    background-color: var(--COLOR_PRIMARY);
    z-index: 0
}

[type="checkbox"].filled-in.tabbed:focus + span:not(.lever):after {
    border-radius: 2px;
    border-color: #5a5a5a;
    background-color: rgba(0,0,0,0.1)
}

[type="checkbox"].filled-in.tabbed:checked:focus + span:not(.lever):after {
    border-radius: 2px;
    background-color: #26a69a;
    border-color: #26a69a
}

[type="checkbox"].filled-in:disabled:not(:checked) + span:not(.lever):before {
    background-color: transparent;
    border: 2px solid transparent
}

[type="checkbox"].filled-in:disabled:not(:checked) + span:not(.lever):after {
    border-color: transparent;
    background-color: #949494
}

[type="checkbox"].filled-in:disabled:checked + span:not(.lever):before {
    background-color: transparent
}

[type="checkbox"].filled-in:disabled:checked + span:not(.lever):after {
    background-color: #949494;
    border-color: #949494
}

/*------Checkbox CSS End--------*/

/*--------Logout Section--------*/

.alert-container {
    width: 100%;
    background: #fff;
}

.alert-container-header {
    height: 110px;
    text-align: center;
    padding-top: 25px;
}

.sign-in-as {
    box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.15);
}

    .sign-in-as .header {
        background-color: #344068;
        padding: 25px;
        color: #FFFFFF;
    }

        .sign-in-as .header p {
            font-size: 12px;
            opacity: .5;
            margin-bottom: 0;
            margin-top: 5px;
        }

    .sign-in-as header img {
        max-height: 80px;
    }

    .sign-in-as .panel-body {
        padding: 30px 25px;
    }

    .sign-in-as .header i {
        display: inline-block;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid #FFFFFF;
        overflow: hidden;
        position: relative;
    }

        .sign-in-as .header i::before,
        .sign-in-as .header i::after {
            content: '';
            position: absolute;
            background-color: #FFFFFF;
        }

        .sign-in-as .header i::before {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            top: 8px;
            left: 14px;
        }

        .sign-in-as .header i::after {
            width: 40px;
            height: 40px;
            border-radius: 20px;
            top: 30px;
            left: 4px;
        }

    .sign-in-as .buttons-row {
        margin-top: 10px;
    }

.header-success {
    background-color: #62aa5a;
}

.header-error {
    background: #f46459;
}

.header-warning {
    background-color: #e2c077;
}

.alert-container-content {
    padding: 40px;
    text-align: center;
    color: #777;
}

    .alert-container-content h4 {
        color: #000;
        margin: 0px 0px 10px 0px;
        font-family: "Roboto-Medium";
        font-weight: normal;
    }

    .alert-container-content p {
        font-size: 12px;
        line-height: 21px;
    }

.alert-container-footer {
    margin-top: 40px;
}

.logout-btns .no-btn {
    float: left;
    width: 49%;
}

.logout-btns .yes-btn {
    float: right;
    width: 49%;
}

.logout-btns:after {
    content: '';
    clear: both;
    display: block;
}

.error-message-title {
    color: #f46459;
    font-size: 16px;
    text-transform: uppercase;
}

.error-message-txt p {
    margin: 0px;
}

/*--------Logout Section End--------*/


/*---------Bootstrap Modal Start-------*/
.modal-open {
    overflow: hidden
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: transform .3s ease-out;
        -webkit-transform: translate(0,-25%);
        -ms-transform: translate(0,-25%);
        -o-transform: translate(0,-25%);
        transform: translate(0,-25%)
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        -o-transform: translate(0,0);
        transform: translate(0,0)
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5)
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0
    }

    .modal-backdrop.in {
        filter: alpha(opacity=50);
        opacity: .5
    }


.modal-header .close {
    margin-top: -5px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}

.close {
    float: right;
    font-size: 24px;
    color: #000;
    filter: alpha(opacity=20);
    opacity: .2;
    font-family: "Roboto-Regular";
}

/*---------Bootstrap Modal End-------*/

/*--------------Privacy & Policies-------------*/

.privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    .privacy p {
        font-size: 12px;
        line-height: 21px;
        margin-bottom: 5px;
    }

    .privacy a {
        text-decoration: none;
        color: #2d80c1;
    }

.pl20 {
    padding-left: 20px;
}

.pr20 {
    padding-right: 20px;
}

.privacy ol {
    margin-left: 20px;
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    color: #232323;
    font-family: "Roboto-Medium";
    padding-left: 0px;
}

    .privacy ol .number-li {
        font-size: 12px;
    }

        .privacy ol .number-li li {
            list-style-type: disc;
        }

        .privacy ol .number-li li,
        .privacy ol .number-li p {
            font-size: 12px;
            color: #515151;
            font-family: "Roboto-Regular";
            margin: 5px 0px 10px 0px;
        }

    .privacy ol li {
        margin-bottom: 15px;
        line-height: 23px;
    }

.privacy h4 {
    margin-top: 20px;
    margin-bottom: 0px;
    font-family: "Roboto-Medium";
    font-weight: normal;
}

.privacy .modal-header h4 {
    margin: 0;
    font-family: "Roboto-Medium";
    font-weight: normal;
    font-size: 14px;
    color: #fff;
}

.privacy .modal-header {
    padding: 10px 20px;
    background: #424c70;
    border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
}

.privacy ul {
    list-style-type: disc;
    margin-left: 35px;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .privacy ul li {
        margin-bottom: 10px;
        line-height: 20px;
    }

.privacy strong {
    font-family: "Roboto-Medium";
    font-weight: normal;
}

.privacy .modal-header .close {
    opacity: 0.6;
    color: #ffffff;
}

    .privacy .modal-header .close:hover {
        opacity: 1;
        color: #ffffff;
    }

.privacy .modal-body {
    max-height: 400px;
    overflow-y: auto;
}

/*--------------Privacy & Policies End-------------*/

.main-container {
    width: 100%;
    height: 100%;
}

.form-container {
    width: 100%;
    background-color: #FFFFFF;
}

.brand-area {
    flex: 0 0 auto;
    width: 410px;
    background-color: #344068;
    padding: 40px 0;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 560px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.form-area {
    padding: 40px 80px;
    box-sizing: border-box;
}

.brand-area footer {
    display: none;
}

.form-container input:-webkit-autofill,
.form-container input:-webkit-autofill:hover,
.form-container input:-webkit-autofill:focus,
.form-container input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}



.buttons-row {
    position: relative;
}

    .buttons-row .left-button {
        float: left;
        width: 48%;
    }

    .buttons-row .right-button {
        float: right;
        width: 48%;
    }

    .buttons-row:before {
        content: '';
        clear: both;
    }

.alert-message.info {
    background: #ecf9ff;
    color: #3F51B5;
    margin-bottom: 10px;
    line-height: normal;
    font-size: 12px;
    padding-left: 40px;
    position: relative;
}

    .alert-message.info i {
        position: absolute;
        left: 14px;
        top: 16px;
        width: 16px;
        height: 16px;
        line-height: 16px;
        border-radius: 50%;
        border: 1px solid #3F51B5;
        text-align: center;
        font-style: normal;
        font-size: 11px;
    }

body[dir="rtl"] .alert-message.info {
    padding-right: 40px;
    padding-left: 0;
}

    body[dir="rtl"] .alert-message.info i {
        left: inherit;
        right: 14px;
        top: 16px;
    }

body[dir="rtl"] .buttons-row .left-button {
    float: right;
}

body[dir="rtl"] .buttons-row .right-button {
    float: left;
}

/*LOADER*/
.redirect-sec {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

    .redirect-sec h2 {
        font-weight: normal;
        font-family: Roboto-Medium;
        color: #333;
        margin-top: 15px;
        margin-bottom: 0px;
        font-size: 20px;
    }

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 50px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 20px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div.color-1 {
            background: #9e282c;
        }

        .lds-ellipsis div.color-2 {
            background: #ed282b;
        }

        .lds-ellipsis div.color-3 {
            background: #f9a03b;
        }

        .lds-ellipsis div.color-4 {
            background: #ffc545;
        }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.try-free-section {
    font-size: 13px;
    padding: 50px 0 0;
    text-align: center;
}

    .try-free-section a {
        display: inline-block;
        padding: 5px 12px;
        margin: 5px;
        border: 1px solid #ea871c;
        border-radius: 4px;
        text-decoration: none;
        color: #ea871c;
        font-family: "Roboto-Medium";
        text-transform: capitalize;
    }

        .try-free-section a:hover {
            background-color: #ea871c;
            color: #FFFFFF;
        }


@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        /*margin: 30px auto*/
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
        box-shadow: 0 5px 15px rgba(0,0,0,.5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }
}

@media only screen and (min-width: 768px) {
    .alert-container {
        max-width: 360px;
    }
}

@media only screen and (min-width: 960px) and (max-width:1280px) {
    .form-area {
        padding: 30px;
    }
}

@media only screen and (max-width:959px) {
    .brand-area,
    .form-area {
        max-width: 100%;
        min-height: inherit;
        padding: 20px 50px;
    }

    .brand-area {
        width: 100%;
    }

        .brand-area header {
            text-align: center;
        }

            .brand-area header img {
                max-height: 80px;
            }

                .brand-area header img.logo-ar {
                    max-height: 100px;
                }

    .brand-tagline {
        display: none;
    }

    .lang-chip {
        color: #FFFFFF;
    }
}


@media only screen and (min-width: 768px) and (max-width: 959px) {
    .form-container {
        flex-direction: column;
        display: flex;
        box-sizing: border-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        align-items: stretch;
        -webkit-align-content: stretch;
        align-content: stretch;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        box-shadow: 0 0 15px rgba(0,0,0,.1);
    }

    .form-container {
        width: 75%;
        margin: 0 auto;
    }

    .form-container-login {
        padding: 0 20%;
    }
}

@media only screen and (min-width:960px) {
    .main-container {
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .welcome-page {
        padding: 30px;
    }

    .form-container {
        width: 90%;
        max-width: 1000px;
        background-color: #FFFFFF;
        flex-direction: row;
        display: flex;
        box-shadow: 0 0 15px rgba(0,0,0,.1);
    }

    .form-area {
        flex: 1 1 0%;
        box-sizing: border-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        padding: 40px 12%;
    }

    .panel-body {
        -webkit-flex-direction: column;
        flex-direction: column;
        box-sizing: border-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        align-items: stretch;
        -webkit-align-content: stretch;
        align-content: stretch;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .main-container-login {
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .brand-area header img {
        max-height: 90px;
    }

        .brand-area header img.logo-ar {
            max-height: 110px;
        }

    .brand-area footer {
        display: block;
    }
}

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

    body {
        background: #ffffff;
    }

    .brand-area header img {
        max-height: 70px;
    }

        .brand-area header img.logo-ar {
            max-height: 90px;
        }

    .panel-heading {
        display: none;
    }


    .other-logins-section {
        margin-top: 20px;
    }

    .brand-area, .form-area {
        padding: 20px 30px;
    }
}



/*---------Login Page css------*/

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

    .brand-area {
        padding: 20px 40px;
    }

    .form-area {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .form-container-login {
        width: 100%;
        height: 100%;
        background: transparent;
    }

    .brand-area-login header img {
        max-height: 80px;
    }

    .brand-area header img.logo-ar {
        max-height: 100px;
    }

    .main-container-login {
        width: 100%;
        height: 100%;
        position: relative;
        background: #344068;
    }

    .brand-area-login {
        background: transparent;
        justify-content: center;
        width: 100%;
        z-index: 1;
        position: relative;
    }

    .form-container-login:before, .brand-area:before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: url(../images/mobile-login-bg.svg);
        opacity: .1;
        z-index: 0;
        display: none;
    }



    .brand-area-login:before {
        content: none;
    }

    .form-container-login .form-area {
        height: 65%;
        flex-direction: column;
        box-sizing: border-box;
        display: flex;
        place-content: stretch space-between;
        align-items: stretch;
        padding-top: 0px;
        z-index: 1;
        position: relative;
    }

    .form-container-login .panel-heading .panel-title {
        color: #fff;
    }

    .form-container-login .form-control {
        background: transparent;
        border-bottom: 1px solid rgba(256,256,256,.8);
        color: #fff;
    }

    .form-container-login .form-group .form-label {
        color: rgba(255, 255, 255, 0.6);
    }

    .form-container-login .panel-heading {
        display: none;
    }

    .form-container-login .forgot-password a {
        color: rgba(255, 255, 255, 0.6);
    }

    .form-container-login .office365, .form-container-login .windows {
        background-color: transparent;
        border: 1px solid rgba(255,255,255,.6);
        min-width: 120px;
    }

    .form-container-login .list-inline li a {
        color: rgba(255,255,255,.6);
    }

    .form-container-login .login-with-title {
        display: none;
    }

    .form-container-login .other-logins-section {
        margin: 10px 0;
        z-index: 1;
    }

    .form-container-login input:-webkit-autofill,
    .form-container-login input:-webkit-autofill:hover,
    .form-container-login input:-webkit-autofill:focus,
    .form-container-login input:-webkit-autofill:active {
        -webkit-text-fill-color: #fff !important;
        -webkit-box-shadow: 0 0 0 30px #29355b inset !important;
        border: none;
    }

    .form-group-login {
        padding: 5px 0;
    }

        .form-group-login .form-control {
            height: 40px;
            line-height: 40px;
            background: #29355b;
            border: 1px solid transparent;
            border-radius: 3px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            padding: 0 10px;
        }

        .form-group-login .form-label {
            top: 17px;
            margin-left: 10px;
        }

        .form-group-login input:focus + .form-label,
        .form-group-login.has-value .form-label,
        .form-group-login.focused .form-label {
            display: none;
        }

        .form-group-login input:focus {
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .form-group-login .form-control.input-validation-error {
            border: 1px solid #f44336;
        }

    .btn {
        background: #ff842d; /* Old browsers */
        background: -moz-linear-gradient(left, #ff842d 0%, #ff5c54 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left, #ff842d 0%,#ff5c54 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, #ff842d 0%,#ff5c54 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff842d', endColorstr='#ff5c54',GradientType=1 ); /* IE6-9 */
    }

    .btn-backtologin {
        color: #000000;
        background: inherit;
    }

    .form-container-login .error-message {
        display: none;
    }

    .try-free-section {
        padding: 0;
        color: #FFFFFF;
    }

        .try-free-section.register {
            padding-top: 30px;
            color: inherit;
        }
}

.list-inline .dropdown-toggle {
    cursor: pointer;
}

    .list-inline .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
    }

.list-inline .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 5px 0;
    margin: .125rem 0 0;
    color: #212529;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}

    .list-inline .dropdown-menu.show {
        display: block;
    }

    .list-inline .dropdown-menu .dropdown-item {
        display: block;
        width: 100%;
        clear: both;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
    }

        .list-inline .dropdown-menu .dropdown-item:hover {
            background-color: #f5f5f5;
        }
