﻿html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: transparent !important;
}

body {
    color: #333;
    font-size: .85em;
    font-family: Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
    background: #fff;
}

a {
    color: #333;
    outline: none;
    padding-left: 3px;
    padding-right: 3px;
    text-decoration: underline;
}

strong {
    font-weight: 700 !important;
}

a:link, a:visited,
a:active, a:hover {
    color: #333;
}

/*a:hover {
    background-color: #c7d1d6;
}*/

header, footer, hgroup,
nav, section {
    display: block;
}

p {
    font-size: 14px;
}

mark {
    background-color: #a6dbed;
    padding-left: 5px;
    padding-right: 5px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

h1, h2, h3,
h4, h5, h6 {
    color: #000;
    margin-bottom: 0;
    padding-bottom: 0;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.75em;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

    h5 a:link, h5 a:visited, h5 a:active {
        padding: 0;
        text-decoration: none;
    }

ul {
    padding: 0px;
}

/*-------------Custom CSS---------------*/

/*basic reset*/

html {
    height: 100%;
    background: #6441A5; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #6441A5, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
}


/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

    #msform .fieldset {
        background: white;
        border: 0 none;
        border-radius: 0px;
        box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
        padding: 20px 30px;
        box-sizing: border-box;
        width: 80%;
        margin: 0 10%;
        /*stacking .fieldsets above each other*/
        position: relative;
    }

        /*Hide all except first .fieldset*/
        #msform .fieldset:not(:first-of-type) {
            display: none;
        }

    /*inputs*/
    #msform input, #msform textarea {
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 0px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
        font-family: montserrat;
        color: #2C3E50;
        font-size: 13px;
    }

        #msform input:focus, #msform textarea:focus {
            -moz-box-shadow: none !important;
            -webkit-box-shadow: none !important;
            box-shadow: none !important;
            border: 1px solid #ee0979;
            outline-width: 0;
            transition: All 0.5s ease-in;
            -webkit-transition: All 0.5s ease-in;
            -moz-transition: All 0.5s ease-in;
            -o-transition: All 0.5s ease-in;
        }

    /*buttons*/
    #msform .action-button {
        width: 100px;
        background: #ee0979;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px;
    }

        #msform .action-button:hover, #msform .action-button:focus {
            box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
        }

    #msform .action-button-previous {
        width: 100px;
        background: #C5C5F1;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px;
    }

        #msform .action-button-previous:hover, #msform .action-button-previous:focus {
            box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
        }

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

    #progressbar li {
        list-style-type: none;
        color: white;
        text-transform: uppercase;
        font-size: 9px;
        width: 33.33%;
        float: left;
        position: relative;
        letter-spacing: 1px;
    }

        #progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 24px;
            height: 24px;
            line-height: 26px;
            display: block;
            font-size: 12px;
            color: #333;
            background: white;
            border-radius: 25px;
            margin: 0 auto 10px auto;
        }

        /*progressbar connectors*/
        #progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: white;
            position: absolute;
            left: -50%;
            top: 9px;
            z-index: -1; /*put it behind the numbers*/
        }

        #progressbar li:first-child:after {
            /*connector not needed before the first step*/
            content: none;
        }

        /*marking active/completed steps green*/
        /*The number of the step and the connector before it = green*/
        #progressbar li.active:before, #progressbar li.active:after {
            background: #ee0979;
            color: white;
        }


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}

    .dme_link a {
        background: #FFF;
        font-weight: bold;
        color: #ee0979;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 5px 25px;
        font-size: 12px;
    }

        .dme_link a:hover, .dme_link a:focus {
            background: #C5C5F1;
            text-decoration: none;
        }

.pay-head {
    background-color: #952227;
    padding: 0px 20px 20px;
}

    .pay-head h2 {
        color: #FFF !important;
    }

.pay-content, .pay-transaction {
    position: inherit;
    box-shadow: 0 0 8px #c7c7c7;
    padding: 20px;
}

    .pay-content .row {
        margin: 0 !important;
    }

div.pay-transaction {
    box-shadow: 0 0 8px #c7c7c7;
    padding: 20px;
    top: 6vh;
}

.pay-tabs {
    padding: 0;
}

    .pay-tabs > ul > li {
        width: 100%;
        background: #eee;
        padding: 10px 0;
        font-size: 14px;
        border-bottom: 5px solid #eee !important;
    }

        .pay-tabs > ul > li:active, .pay-tabs > ul > li:focus, .pay-tabs > ul > li:hover, .pay-tabs > ul > li:focus > a {
            background: #9522273b;
            border-bottom: 5px solid #952227a6 !important;
            transition: all 0.5s;
        }

        .pay-tabs > ul > li > a {
            text-decoration: none;
            background-color: #eee !important;
            margin: 0;
            transition: all 0.5s;
        }

        .pay-tabs > ul > li:active > a, .pay-tabs > ul > li:hover > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
            background-color: #eee !important;
            cursor: pointer;
        }

        .pay-tabs > ul, .pay-tabs > ul > li:active, .pay-tabs > ul > li > a, .pay-tabs > ul > li > a:active {
            border-color: transparent !important;
            cursor: pointer;
            transition: all 0.5s;
        }

.pay-tabs-content {
    padding: 20px 10px 0;
}

.pay-tabs > ul > li.active {
    background: #9522273b;
    border-bottom: 5px solid #952227a6 !important;
}

.form-control {
    border-radius: 0px !important;
    box-shadow: none;
    margin-bottom: 15px;
    padding: 5px !important;
}

    .form-control:focus {
        border-color: #952227 !important;
        border-radius: 0;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #eee;
    }

.check {
    width: 60px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

    .check input {
        display: none;
    }

        .check input:checked + .box {
            background-color: #e6cbcd;
        }

            .check input:checked + .box:after {
                top: 0;
            }

    .check .box {
        width: 35%;
        height: 17px;
        transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
        border: 2px solid #e6cbcd;
        position: relative;
        overflow: hidden;
        background: #e6cbcd;
        cursor: pointer;
        box-shadow: 0 5px rgb(149, 34, 39);
    }

        .check .box:after {
            width: 70%;
            height: 40%;
            content: '';
            position: absolute;
            border-left: 3px solid;
            border-bottom: 3px solid;
            border-color: #a94442;
            transform: rotate(-45deg) translate3d(0, 0, 0);
            transform-origin: center center;
            transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
            left: 0;
            right: 0;
            top: 200%;
            bottom: 0%;
            margin: auto;
        }

.card-pay-span {
    font-size: 14px !important;
    font-size: 1.3em;
    line-height: 0px;
    margin-top: 4px;
}

.card-pay-span-disclaimer {
    font-size: 12px !important;
    font-size: 1.3em;
    line-height: 0px;
    margin-top: 4px;
}

form div.col-sm-8 {
    margin-bottom: 15px;
}

#paytm p, #upi p {
    font-size: 14px;
}

.net-list li {
    float: left;
    margin: 10px 15px 5px 0px;
}

.terms {
    padding: 20px 0px;
}

.btn-section {
    position: inherit;
}

.button, .button1 {
    border-radius: 4px;
    background-color: #98272b;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    padding: 8px 10px 11px;
    width: 130px;
    transition: all 0.5s;
    cursor: pointer;
    margin-top: 18px;
}

    .button span, .button1 span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .button span:after, .button1 span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .button:hover span, .button1:hover span {
        padding-right: 25px;
        color: #fff;
    }

        .button:hover span:after, .button1:hover span:after {
            opacity: 1;
            right: 0;
            color: #fff;
        }

.payment-gateway {
    margin-top: 40px;
}

.total-pay {
    font-size: 16px;
    margin-bottom: 10px;
    padding-top: 20px;
}

.Trans-details li, .Dealer-details li {
    padding: 0;
    font-size: 14px;
}

    .Trans-details li span, .Dealer-details li span {
        margin: 10px 0 0;
        padding: 0;
    }

select.select_class {
    width: 100%;
    padding: 11px;
    margin: 20px 0;
    font-size: 16px;
}

.modal-content .Trans-details {
    padding: 20px 20px 20px 40px;
}

.e-receipt .button {
    width: 200px;
}

.p-0 {
    padding: 0;
}


.table.conf_table > tbody > tr > td, .table.conf_table > tbody > tr > th, .table.conf_table > tfoot > tr > td, .table.conf_table > tfoot > tr > th, .table.conf_table > thead > tr > td, .table.conf_table > thead > tr > th {
    border-top: 1px solid #98272b;
}

.brand-logo img {
    width: 300px;
}

/*  Select replacement selects */
.select-swap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0;
}

    .select-swap div {
        width: 100%;
        padding: 10px;
    }

        .select-swap div p {
            padding: 10px;
            color: #fff;
            font-size: 14px;
            font-weight: bold;
            background: #2EA2C5;
            cursor: pointer;
            transition: .3s;
            margin: 0 auto;
            width: 200px;
        }

            .select-swap div p:hover {
                background: #164f61;
            }

    .select-swap div {
        width: 100%;
        padding: 10px;
    }

        .select-swap div .select-swap--active {
            background: #9F237B;
        }

            .select-swap div .select-swap--active:hover {
                background: #6e1c52;
            }

input.qrGenerate {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    display: none;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.spliter {
    top: 117px;
    padding: 0;
    font-size: 1em;
    font-weight: 700;
}

.vpaRequest {
    top: 55px;
}

.qrRequest {
    top: 30px;
}

div.pay-content {
    min-height: 316px;
}

.title {
    font-size: 35px;
    color: #a94442;
}

.disable {
    display: none;
}

.enable {
    display: inherit !important;
}

#generate {
    padding: 5px 30px;
    font-size: 14px;
    color: #fff;
    background: #a94442;
    border: none;
    border-radius: 4px;
}

img.display-none {
    display: none;
}

/*header*/

.content-wrapper.inner-section {
    background: #98272b;
    height: 250px;
}

.logo-section {
    padding-top: 80px;
    padding-bottom: 15px;
}

footer {
    width: 100%;
    background: #812c2f;
    color: #fff;
    z-index: 10;
}

    footer .top {
        background: #97262a url("../images/bull.png") no-repeat left bottom;
        padding: 20px 20px 20px 0px;
    }

.page-wrapper {
    width: 100%;
    padding: 30px 40px 30px;
    margin: 0 auto 40px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    border-radius: 4px;
    min-height: 480px;
}

h1, .h1 {
    font-size: 36px;
    color: #333;
    font-weight: normal;
    margin-top: 0;
}

.primary-color {
    color: #97262a;
}

.container {
    width: 85% !important;
    margin: 0 auto;
    padding: 0px;
}

p.F14p {
    margin-bottom: 20px;
}

.nav-tabs > li.two {
    border: 0px;
    border-bottom: 2px solid #822625;
    color: #ffffff;
    background: #822;
    font-size: 16px;
    padding: 5px 10px;
}

.login-div {
    background: #fcfcfc;
    /*box-shadow: 0 1px 10px rgba(0,0,0,0.19), 0 0px 10px rgba(0,0,0,0.23);*/
    border-radius: 3px;
    padding: 20px;
    border: 1px solid #cfcfcf;
}

.login-div-two {
    background: #fcfcfc;
    /*box-shadow: 0 1px 10px rgba(0,0,0,0.19), 0 0px 10px rgba(0,0,0,0.23);*/
    border-radius: 3px;
    padding: 20px;
    border: 1px solid #cfcfcf;
    min-height: 380px;
}

.Trans-details, .Dealer-details {
    font-size: 14px;
    border: 1px solid #e0e0e0;
}

.table {
    margin-bottom: 0px;
}

.nav-tabs {
    border-bottom: 5px solid #b05c60;
}

.des-e-collect {
    margin-top: 20px;
}

.cd-payment {
    margin: 20px auto 0;
}

.copyright p {
    text-align: center;
    padding: 15px;
    font-size: 10px;
    margin: 0;
}

.last a {
    color: #fff;
}


div.opacity {
    opacity: 0.1;
    cursor: no-drop;
}

    div.opacity li:active, div.opacity a {
        cursor: no-drop;
    }

.nav-tabs > li > a {
    margin-right: 0;
    padding: 6px 40px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    font-size: 14px;
    text-decoration: none;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    color: #fcfcfc;
    cursor: default;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 40px;
    background-color: #98272b;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

    .pay-tabs > ul > li:active > a, .pay-tabs > ul > li:hover > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
        background-color: #98272b !important;
        cursor: pointer;
    }


/*.cd-payment .tab-content{
    padding-top:10px;
}*/
h2.h1 {
    font-size: 2.5em;
    margin: 0;
}

h3.h2 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 1em;
}


.modal-header {
    padding: 15px;
    color: #fff;
    border-radius: 5px 5px 0 0;
    background: #8d2a2c;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.modal-body {
    padding: 15px;
    font-size: 12px;
    text-align: center;
}

.modal-footer {
    padding: 0 15px 15px !important;
    text-align: center !important;
    border-top: none !important;
}

.btn-default {
    color: #fff !important;
    background-color: #98272b;
}

.modal-title {
    color: #fff !important;
    font-size: 20px;
}

.close {
    color: #fff !important;
    opacity: 1 !important;
    background: #8d2a2c;
}

.card-pay-span a {
    cursor: pointer;
    text-decoration: none;
}

    .card-pay-span a:hover {
        background-color: transparent;
        color: #8d2a2c;
    }

.btn-default:hover {
    background-color: #a94442;
    border-color: #952227;
}

p.amount {
    font-size: 26px;
    margin-top: -20px;
    text-align: right;
    color: #a94442;
}

input.NETamount, input.NETamount1 {
    width: 100px;
    border: none;
    font-weight: 700;
}

input.your_name {
    padding: 5px;
    width: 150px;
    border: none;
    text-transform: uppercase;
    background: #e6e6e6;
}

select.your_relationship {
    width: 150px;
    border: none;
    padding: 5px;
}

.blogShort {
    border-bottom: 1px solid #ddd;
}

.add {
    background: #333;
    padding: 10%;
    height: 300px;
}

.nav-sidebar {
    width: 100%;
    padding: 30px 0;
    border-right: 1px solid #ddd;
}

    .nav-sidebar a {
        color: #333;
        -webkit-transition: all 0.08s linear;
        -moz-transition: all 0.08s linear;
        -o-transition: all 0.08s linear;
        transition: all 0.08s linear;
    }

    .nav-sidebar .active a {
        cursor: default;
        background-color: #98272b;
        color: #fff;
        font-size: 14px;
        text-decoration: none;
        padding: 10px;
    }

        .nav-sidebar .active a:hover {
            background-color: #E50000;
        }

    .nav-sidebar .text-overflow a,
    .nav-sidebar .text-overflow .media-body {
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

.btn-blog {
    color: #ffffff;
    background-color: #E50000;
    border-color: #E50000;
    border-radius: 0;
    margin-bottom: 10px;
}

    .btn-blog:hover,
    .btn-blog:focus,
    .btn-blog:active,
    .btn-blog.active,
    .open .dropdown-toggle.btn-blog {
        color: white;
        background-color: #0b56a8;
        border-color: #0b56a8;
    }

article h2 {
    color: #333333;
}

h2 {
    color: #0b56a8;
}

.margin10 {
    margin-bottom: 10px;
    margin-right: 10px;
}

.container .text-style {
    text-align: justify;
    line-height: 17px;
    margin: 0 13px 0 0;
    font-size: 17px;
}

.nav > li > a:focus, .nav > li > a:hover {
    text-decoration: none;
    background-color: #98272b;
    color: #fff;
}

.nav-sidebar .active a:hover {
    background-color: #98272b;
    color: #FFF;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px;
    font-size: 14px;
    text-decoration: none;
}

.cd-payment .col-sm-2 {
    padding-left: 0;
}


footer ul {
    list-style: none;
}

    footer ul li a::before {
        content: "";
        border-color: transparent #fdfdfd;
        border-style: solid;
        border-width: 0.35em 0 0.35em 0.45em;
        display: block;
        height: 0;
        width: 0;
        left: -1em;
        top: 1.1em;
        position: relative;
    }

    footer ul li {
        border-bottom: 1px solid #791e22;
        padding: 10px 0px;
        font-size: 14px;
    }

        footer ul li a {
            color: #fff !important;
            display: block;
            text-decoration: none;
        }

            footer ul li a:hover {
                color: #fff !important;
                text-decoration: none;
                background-color: transparent;
            }

footer .last li {
    border-bottom: 0px;
    width: 100%;
}

h3.h3 {
    font-size: 2.2em;
    color: #fff;
}

.contactus-ph-container {
    margin-left: 40px;
    margin-top: -20px;
}

    .contactus-ph-container p {
        margin: 0px;
    }

.mail-us ul p {
    margin: 0px;
}

.mail-us ul {
    margin-left: 40px;
    margin-top: -20px;
}

@media (min-width:500px) {
    .nav-sidebar {
        width: 100%;
        padding: 30px 0;
        border-right: 1px solid #ddd;
        min-height: 330px !important;
    }

    .error-page-wrapper img {
        width: 400px;
    }

    .qrRequest {
        display: block;
    }

    .upirequest {
        display: none;
    }

    .success-btn button, .download-receipt {
        background: transparent;
        border: 1px solid;
        border-radius: 28px;
        text-transform: uppercase;
        font-size: 10px;
        padding: 2px 5px;
        margin-top: 7px;
    }
    .succ-text span {
        font-size:24px;
    }

    .view-Details {
        display:none;
    }

    .add-cd-desk {
        background-image: url(../Images/add-desk.jpg);
        background-size: contain;
        height: 300px;
        background-color: #9c3a3b;
        overflow: hidden;
        background-repeat: no-repeat;
    }
}


@media (max-width:500px) {
    .container {
        width: 95% !important;
    }

    .page-wrapper {
        min-height: 320px;
        padding:15px;
    }

    .terms, .btn-section {
        padding: 0px 20px;
    }

    .terms {
        text-align: center;
        padding: 30px;
    }

    .pay-tabs-content {
        padding: 10px 0px;
    }

    .pay-head {
        padding: 1px 20px 20px;
    }

    .Trans-details {
        padding: 0;
        font-size: 12px;
        border: 1px solid #e0e0e0;
    }

        .Trans-details li {
            padding: 0;
            font-size: 14px;
            margin: 10px 0 !important;
        }

    .payment-gateway {
        margin-top: 20px;
    }

    .total-pay {
        margin: 20px;
    }

    .btn-section {
        position: inherit;
        text-align: center;
        margin: 28px 0 20px;
    }

        .btn-section .button {
            margin: 20px 20px 0;
        }

    .des-e-collect {
        margin-top: 20px;
    }

    .nav-sidebar {
        width: 100%;
        padding: 0;
        border: 1px solid #ddd;
        margin-bottom: 15px;
    }

    .vpaRequest {
        top: 30px;
        text-align: center;
        padding-bottom: 20px;
    }

    .spliter {
        top: 100px;
        padding: 0;
        position: static;
        font-weight: 700;
        text-align: center;
        margin-top: 31px;
    }

    .form-control {
        margin-bottom: 0px;
    }

    .payment-loader-container .payment-loader .payment-circle h1 {
        top: 0.2px !important;
        -webkit-animation: pulsate 1.25s infinite ease;
        animation: pulsate 1.25s infinite ease;
    }

    .payment-loader-container .payment-loader {
        width: 100px !important;
        height: 100px !important;
        padding: 10px !important;
        top: 42vh !important;
    }

    h1.loanPay {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
    }

    p.loanPay-primary {
        font-size: 12px !important;
        text-align: center;
        margin-top: 15px;
    }

    .brandlogo-main {
        text-align: center !important;
    }

        .brandlogo-main img {
            margin-top: 10px !important;
            width: 150px !important;
        }

    .brand-logo {
        text-align: center !important;
    }

        .brand-logo img {
            width: 150px !important;
        }

    .logo-section {
        padding-top: 20px !important;
    }

    .sub-title p {
        margin-top: 10px !important;
    }

    .clock {
        text-align: center !important;
    }

    .title {
        text-align: center !important;
    }

    .error-page-wrapper p {
        font-size: 18px !important;
    }

    .error-page-wrapper img {
        width: 300px;
    }

    .qrRequest {
        display: none;
    }

    .upirequest {
        display: block;
    }

    .success-btn button, .download-receipt {
        background: transparent;
        border: 1px solid;
        border-radius: 28px;
        text-transform: uppercase;
        font-size: 10px;
        padding: 2px 5px;
        margin-top: 7px;
    }

    .succ-img img {
        width:75px;
    }

    .succ-text span {
        font-size: 21px;
        letter-spacing: 1px;
    }

    .succ-container {
        border:none;
    }

    .add-cd {
        background-image: url(../Images/add_mob.jpg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        height: 75vh;
        margin-bottom: 40px;
        border-radius: 0 0 15px 15px;
    }
    
}

/*loader*/
@-webkit-keyframes pulsate {
    0% {
        transform: scale(0.75);
    }

    50% {
        transform: scale(1.75);
    }

    100% {
        transform: scale(0.75);
    }
}

@-moz-keyframes pulsate {
    0% {
        transform: scale(0.75);
    }

    50% {
        transform: scale(1.75);
    }

    100% {
        transform: scale(0.75);
    }
}

@-o-keyframes pulsate {
    0%;

{
    transform: scale(0.75);
}

50% {
    transform: scale(1.75);
}

100% {
    transform: scale(0.75);
}

}

@keyframes pulsate {
    0% {
        transform: scale(0.75);
    }

    50% {
        transform: scale(1.75);
    }

    100% {
        transform: scale(0.75);
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    0%;

{
    transform: rotate(0deg);
}

100% {
    transform: rotate(360deg);
}

}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.payment-loader-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #0000001f;
}

    .payment-loader-container .payment-loader {
        width: 150px;
        height: 150px;
        background: #fff;
        padding: 20px;
        margin: 0 auto;
        position: relative;
        top: 37vh;
        border-radius: 50%;
    }

        .payment-loader-container .payment-loader .payment-circle {
            text-align: center;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 5px solid #98272b;
        }

            .payment-loader-container .payment-loader .payment-circle .payment-inner-circle {
                position: relative;
                left: -12.5%;
                top: 35%;
                width: 125%;
                height: 25%;
                background-color: white;
                -webkit-animation: rotate 2s infinite linear;
                animation: rotate 2s infinite linear;
            }

            .payment-loader-container .payment-loader .payment-circle h1 {
                top: 0.2px !important;
                -webkit-animation: pulsate 1.25s infinite ease;
                animation: pulsate 1.25s infinite ease;
            }

.group {
    position: relative;
    margin: 40px auto 0;
}

    .group input {
        background: #fcfcfc;
        font-size: 18px;
        padding: 10px 10px 10px 5px;
        display: block;
        width: 100%;
        border: none;
        border-bottom: 1px solid #757575;
        text-transform: uppercase;
    }

        .group input:focus {
            outline: none;
        }

    /* LABEL ======================================= */
    .group label {
        color: #999;
        font-size: 14px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        top: 16px;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    /* active state */
    .group input:focus ~ label, input:valid ~ label {
        top: -15px;
        font-size: 14px;
        color: #98272b;
    }

    /* BOTTOM BARS ================================= */
    .group .bar {
        position: relative;
        display: block;
        width: 100%;
    }

        .group .bar:before, .bar:after {
            content: '';
            height: 2px;
            width: 0;
            bottom: 1px;
            position: absolute;
            background: #98272b;
            transition: 0.2s ease all;
            -moz-transition: 0.2s ease all;
            -webkit-transition: 0.2s ease all;
        }

        .group .bar:before {
            left: 50%;
        }

        .group .bar:after {
            right: 50%;
        }

    /* active state */
    .group input:focus ~ .bar:before, .group input:focus ~ .bar:after {
        width: 50%;
    }
/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #98272b;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #98272b;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #98272b;
    }

    to {
        width: 0;
        background: transparent;
    }
}


.loan-login-div {
    padding: 20px;
}


/*Checkboxes styles*/
.termsCheckbox input[type="checkbox"] {
    display: none;
}

    .termsCheckbox input[type="checkbox"] + label {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 20px;
        font: 14px/20px 'Open Sans', Arial, sans-serif;
        color: #333333;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

        .termsCheckbox input[type="checkbox"] + label:last-child {
            margin-bottom: 0;
        }

        .termsCheckbox input[type="checkbox"] + label:before {
            content: '';
            display: block;
            width: 20px;
            height: 20px;
            border: 2px solid #98272b;
            position: absolute;
            left: 0;
            top: 0;
            opacity: .6;
            -webkit-transition: all .12s, border-color .08s;
            transition: all .12s, border-color .08s;
        }

    .termsCheckbox input[type="checkbox"]:checked + label:before {
        width: 10px;
        top: -5px;
        left: 5px;
        border-radius: 0;
        opacity: 1;
        border-top-color: transparent;
        border-left-color: transparent;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.termsCheckbox {
    margin: 20px 0 0;
}

.dealerDetails-collapse {
    margin-top: 40px;
}



.captcha input[type=text] {
    padding: 12px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.captcha button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}

.captcha {
    text-align: right;
}

    .captcha canvas {
        /*prevent interaction with the canvas*/
        pointer-events: none;
        background-color: #e0e0e0;
        background-image: linear-gradient(90deg, #e0e0e0,#EEE);
        margin: 26px 0 0;
    }

sup {
    color: #98272b;
    font-size: 14px;
    font-weight: 900;
}

.reload-captcha {
    margin: 26px 0 0;
    text-align: left;
}

    .reload-captcha span {
        font-size: 40px;
        color: #97262a;
        cursor: pointer;
    }

.table > tbody > tr > td:first-child {
    width: 50%;
}

.sub-terms-note {
    font-size: 12px;
    margin-left: 34px;
    margin-top: -30px;
    text-align: left;
}

table.table {
    font-size: 14px;
}


/*********************clockdiv*********************/

#clockdiv {
    font-family: source_sans_probold,Arial,Helvetica,Tahoma,sans-serif;
    color: #ffffff;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
}

    #clockdiv > div {
        padding: 5px;
        border-radius: 3px;
        background: #98272b;
        display: inline-block;
    }

    #clockdiv div > span {
        /* padding: 15px; */
        border-radius: 3px;
        background: #98272b;
        display: inline-block;
        font-family: source_sans_probold,Arial,Helvetica,Tahoma,sans-serif;
    }

.smalltext {
    font-family: source_sans_probold,Arial,Helvetica,Tahoma,sans-serif;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#live {
    font-family: source_sans_probold,Arial,Helvetica,Tahoma,sans-serif;
    color: #fff;
    display: none;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
}

.splitter-timer {
    color: #000;
}

.clock {
    padding: 0px 20px;
    text-align: right;
}
/*********************End clockdiv*********************/

.brandlogo-main img {
    margin-top: -50px;
    width: 210px;
}

.sub-title p {
    margin-top: -20px;
}

.title {
    text-align: left;
}


.myModal-SE .modal-dialog {
    position: relative;
    top: 20vh;
    width: 400px;
}

.myModal-SE .modal-title {
    font-size: 20px;
    text-align: left;
}

.myModal-SE p {
    font-size: 16px;
}

.myModal-SE .close {
    margin-top: -2px;
    font-size: 30px;
}

.myModal-SE .modal-footer {
    text-align: right !important;
}

.myModal-SE .modal-body {
    padding-top: 30px;
}

.qrRequest img {
    margin: 0 auto;
}

#payer-details > tr > td {
    font-size: 14px;
}

.error-page-wrapper div {
    margin-bottom: 20px;
}



.error-page-wrapper h3 {
    font-size: 3em;
    margin-top: -20px;
}

.error-page-wrapper p {
    margin-top: 0px;
    font-size: 20px;
}


.resend-otp p span {
    color: #008dfd;
    font-weight: 700;
    cursor: pointer;
}

.resend-otp p, .resend-otp p span {
    margin-bottom: 3px !important;
    display: inline-block;
}

div.resend-otp {
    text-align: center;
    margin: 12px auto !IMPORTANT;
}

    div.resend-otp input {
        margin: 0 3px;
        text-align: center;
        font-size: 15px;
        border: solid 1px #ccc;
        box-shadow: 0 0 5px #cccccc52 inset;
        outline: none;
        width: 25px;
        transition: all 0.2s ease-in-out;
        border-radius: 3px;
    }

        div.resend-otp input:focus {
            border-color: #8d2a2c;
            box-shadow: 0 0 5px #9c3a3b inset;
        }

        div.resend-otp input::-moz-selection {
            background: transparent;
        }

        div.resend-otp input::selection {
            background: transparent;
        }

.resend-disable {
    opacity: 0.4;
    cursor: not-allowed !important;
}

.user-edit {
    user-select: none;
    cursor: not-allowed;
    -webkit-user-modify: read-only;
    opacity: 0.5;
}


.conf_table {
    font-size: 12px;
}


.mobileNo {
    color: #98272b;
    font-weight: 700;
    font-size: 16px;
}

.verify-account {
    padding: 18px 0;
}


.tr-details {
    padding: 20px;
    background-color: #00b050;
    color: #FFF;
    font-size: 14px;
    border-radius: 20px 20px 0 0;
}
