﻿:root{
    --white:#ffffff;
}

.btn-close:focus { box-shadow: none; }

.login-page {
    width: 100%;
    height: 100vh;
    background:  #1A2B56 url(../images/login-bg.png) no-repeat;
    background-position: top left;
    background-size: contain;
    display: flex; flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    overflow-y: auto;
    padding: 0 0 30px 0;
}

.login-page .login-box {
        text-align: center;
        margin: 0 auto;
        display: table;
}

.login-logo {
    width: 470px;
    padding-top: 1rem;
}

.login-page .login-box h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0 0 0;
    padding: 0;
}

.login-frm {
    position: relative;
}

.form-box {
    width: 550px;
}

.input-field {
    position: relative;
    line-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.form-inputIcons {
    position: absolute;
    left: 20px;
}

.input-field input {
    font-weight: 500;
    width: 100%;
    border: 0;
    outline: 0;
    padding: 15px 0 0 50px;
    border: 1px solid #d3d3d3;
    box-shadow: none;
    color: #111;
    height: 60px;
}

.input-field label {
    position: absolute;
    height: 100%;
    padding: 1.2rem 0.75rem 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out;
    font-size: 15px;
    top: 2px;
    color: #ADADAD;
    display: table;
    line-height: 14px;
    left: 43px;
}
.input-validation-error {
    border-color: #ff0404 !important;
}


.input-field > .form-control:focus ~ label, .input-field > .form-control:not(:placeholder-shown) ~ label, .input-field > .form-select ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #000;
}

.passwordViewBtn {
    position: absolute;
    right: 20px;
    z-index: 2;
    cursor: pointer;
}

    /*.passwordViewBtn img {
        margin: -16px 0 0 0px;
    }*/

.login-page button {
    height: 60px;
    box-shadow: none;
    border: none;
    margin: 0px 0 0 0;
    background: #FF7D00;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 13px 0;
}

    .login-page button svg {
        margin: 0 0 0 5px;
    }

.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.submit_area {
    padding: 0 5px;
}

.plans .plan input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plans .plan {
    cursor: pointer;
    width: 100%;
}

    .plans .plan .plan-content {
        padding: 15px 10px 15px 60px;
        border: 2px solid transparent;
        background: rgba(255,125,0,0.6);
        border-radius: 5px;
        position: relative;
        text-align: left;
        color: #ffffff;
        margin: 0 0 15px 0;
    }

        .plans .plan .plan-content img {
            margin-right: 30px;
            height: 72px;
        }

    .plans .plan .plan-details span {
        margin-bottom: 5px;
        display: block;
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
    }

    .plans .plan .plan-details p {
        font-size: 14px;
        line-height: 18px;
        margin: 0;
        padding: 0
    }

    .plans .plan input[type="radio"] + .plan-content:after {
        content: "";
        position: absolute;
        height: 15px;
        width: 15px;
        background: none;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 100%;
        border: 3px solid transparent;
        -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
        box-shadow: 0px 0px 0px 2px #FF7D00;
    }

    .plans .plan input[type="radio"]:checked + .plan-content:after {
        content: "";
        position: absolute;
        height: 15px;
        width: 15px;
        background: #FF7D00;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 100%;
        border: 3px solid #fff;
        -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
        box-shadow: 0px 0px 0px 2px #FF7D00;
    }

    .plans .plan input[type="radio"]:checked + .plan-content {
        border-color: #FF7D00;
        -webkit-transition: ease-in 0.3s;
        -o-transition: ease-in 0.3s;
        transition: ease-in 0.3s;
    }

        /* registeration page start */
        .new-registration-page .form-inputIcons img { width: 1.6rem; height: 1.6rem; }
        /* registeration page end */

        .btn-close { 
             color: var(--white);
             filter: brightness(0) invert(1);
             opacity: 1;
             position: absolute; 
             right: 20px;
             top: 20px;
        }


@media (max-width:1024px) {
    .login-page {
        background-position: -410px top;
    }

    .login-logo {
        width: 100%;
        padding-top: 2rem;
    }

    .login-page .login-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
    }

    .plans {
        display: flex;
    }

        .plans .plan .plan-content {
            min-height:150px;
            display: flex;
            align-items: center;
            margin: 0 5px;
        }
        .form-box.login-form-box {  width: 85%; margin: 0 auto; }
}

@media (max-width:992px) {
 #ShowMessageDialogeBox .modal-dialog .modal-content, #TermsAndConditions .modal-dialog .modal-content {
        width: 95% !important;
        margin: 0 auto;
    }
}

@media (max-width:767px) {
    .jq-toast-wrap.top-right { 
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    .plans .plan .plan-content {  }
    .form-box.login-form-box {  width: 100%;  }
    .plans .plan input[type="radio"]:checked + .plan-content:after, .plans .plan input[type="radio"] + .plan-content:after { left: 15px; }
}

@media (max-width:620px) {
    .login-page .login-box {
        height: auto;
        padding: 30px 0 0 0;
    }

    .form-box {
        width: 100%;
    }

    .plans {
        display: block;
    }

        .plans .plan .plan-content {
            margin: 5px 5px;
            min-height: auto;
        }
}

/*toaster design start*/
.jq-toast-heading {
    padding: 8px 0 0 0;
}

.jq-toast-single {
    background: #fff;
    color: #878787;
    min-height: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    word-break: break-word;
}

    .jq-toast-single h2 {
        font-family: arial, sans-serif;
        font-size: 15px;
        margin: 0px 0px 2px;
        background: none;
        line-height: inherit;
        letter-spacing: normal;
        font-weight: normal;
        color: #1d1d1d;
        padding-top: 1px;
    }

.jq-icon-info {
    color: #ababab;
    font-weight: normal;
    border: 1px solid #77b8d7;
    font-size: 13px;
    background-color: #ffffff;
}

.jq-toast-single .jq-toast-loader {
    background-color: #6192ff !important;
}

.jq-icon-success .jq-toast-loader {
    background-color: #41b05f !important;
    left: -1px;
}

.jq-icon-error .jq-toast-loader {
    background-color: #ea2222 !important;
    left: -1px;
}

.jq-icon-warning .jq-toast-loader {
    background-color: #ffbd23 !important;
    left: -1px;
}

.jq-has-icon {
    border: 1px solid #6192ff;
}

.jq-toast-single.jq-has-icon::after {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    background-repeat: no-repeat;
    border-radius: 10px;
    background-position: center;
    left: 10px;
    background-size: 17px;
    transform: translate(0, -50%);
}

.jq-toast-single.jq-has-icon::after {
    background-image: url(../images/information.png);
    background-color: #6192ff;
}

.jq-icon-warning {
    border: 1px solid #ffbd23;
}

.jq-toast-single.jq-has-icon.jq-icon-warning::after {
    background-image: url(../images/warning.png);
    background-color: #ffbd23;
}

.jq-icon-error {
    border: 1px solid #ea2222;
}

.jq-toast-single.jq-has-icon.jq-icon-error::after {
    background-image: url(../images/error.png);
    background-color: #ea2222;
}

.jq-icon-success {
    border: 1px solid #41b05f;
}

.jq-toast-single.jq-has-icon.jq-icon-success::after {
    /*background-image: url(../images/success.png);*/
    background-image:url(../images/success.png);
    background-color: #41b05f;
}

.jq-toast-wrap {
    width: 330px;
}

.jq-has-icon {
    padding: 20px 10px 20px 50px;
}

/*toaster design end*/

/*form error message style start */
.field-validation-error {
    color: #ff0000;
    font-size: 13px;
    /* background: #303b87;
        padding: 8px 10px;
        border-radius: 10px;
        font-weight: 600;
        display: block; */
}

    .field-validation-error.login-error-msg {
        /* display: table;
        padding: 3px 10px;
        border-radius: 0;
        font-weight: 400;
        margin-right: auto;
        margin-bottom: 7px;
        background: #ff0000;
        color: #fff;*/

        display: table;
        padding: 3px 2px;
        border-radius: 0;
        font-weight: 400;
        margin-right: auto;
        margin-bottom: 7px;
        background: #ff0000;
        color: #fff;
    }
    

        .field-validation-error.login-error-msg.select-company-validation {
            margin: 8px 0 auto;
        }
/*form error message style end */



/* modal New Design Start*/
.modal .modal-content {
    background-color: #f0f2f8;
}

.modal-header {
    border: none;
    justify-content: center;
    padding-bottom: 0;
}

    .modal-header .btn-close {
        position: absolute;
        display: none
    }


.modal-footer {
    justify-content: center;
    padding: 0 0 15px 0;
    border: none;
}



    .modal-footer .btn {
        padding: 7px 14px;
        font-size: 14px;
        line-height: 1.33;
        border-radius: 4px;
        min-width: 120px;
        border: 1px solid #cbcbcb;
    }


.sweet-alert h2 {
    font-weight: bold;
    font-size: 23px;
    margin: 15px 0;
}

.modal-footer .btn {
    padding: 7px 14px;
    font-size: 14px;
    line-height: 1.33;
    border-radius: 4px;
    min-width: 120px;
    border: 1px solid #cbcbcb;
}

.modal-title {
    font-weight: bold;
    font-size: 23px;
    margin: 15px 0 0 0;
}

.modal-body p {
    font-size: 15px;
    text-align: center;
}

/* btn-default */

.modal-footer button.btn-danger {
    border: 1px solid #ac2925;
    background: #e70f0f;
    color: #fff;
}

.modal-footer button.cancel {
    font-size: 14px;
    border: 1px solid #9fafe3;
    background: #d2d9ef;
    color: #212529;
}

.modal-footer button.btn-primary {
    border-color: #ff6815;
    background: #ff6815;
    color: #fff;
}

.modal-footer button.btn-secondary {
    font-size: 14px;
    border: 1px solid #9fafe3;
    background: #d2d9ef;
    color: #212529;
}

/* modal New Design Old */

.steps-header {
    width: 100%;
    border-radius: 0px;
    padding: 0px 0 0 0px;
    color: #3A479B;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    margin: 15px 0 0px 0px;
}


.add-new-form .main-white-box h2.steps-header {
    width: calc(100% + 30px);
    border-radius: 0px;
    padding: 13px 13px 13px 13px;
    color: #ffffff;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 700;
    margin: 0px 0 7px -15px;
    background: #6272da;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    height: 44px;
}

.newBlueHeader {
    width: calc(100% + 30px);
    border-radius: 0px;
    padding: 13px 0 13px 13px;
    color: #ffffff;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 700;
    margin: 0px 0 7px -15px;
    background: #6272da;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.newBlueHeaderButton span {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.newBlueHeaderButton input[type='button'] {
    display: flex;
    padding: 7px 14px 7px 14px;
    background: #FF7D00;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 500;
    align-items: center;
    position: relative;
    margin-left: auto;
    z-index: 2;
    width: auto;
}

.steps-header.commonTitleBg {
    width: calc(100% + 16px);
    border-radius: 0px;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    padding: 13px 0 13px 13px;
    color: #ffffff;
    text-transform: capitalize;
    margin: -9px 0 7px -8px;
    background: #6272da;
}



#viewModal .modal-content {
    overflow: hidden;
}


    #viewModal .modal-content .btn-close {
        opacity: 1;
        filter: invert(1);
        margin-top: 6px;
    }

.modal .steps-header {
    font-size: 18px;
    font-weight: 600;
}

.setnavToggle {
    padding: 0 10px 0 10px;
}

    .setnavToggle button {
        padding: 5px 5px;
        font-size: 16px;
        background: #1b1f4e;
        position: initial !important;
    }

.navbar-toggler-icon {
}


@media (max-width:360px) {
    .mob-column {
        margin-top: 1rem;
        flex-direction: column;
        row-gap: 15px;
    }

    .mob-column span{
        display: flex;
        margin-top: 0.5rem;
        flex-direction: column;
        row-gap: 15px;
    }
}
