﻿
* {
    box-sizing: border-box;
}

.body {
    /*background: #f6f5f7;*/
    /*display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            font-family: 'Montserrat', sans-serif;*/
    margin: 20px 10px 30px 20px;
}

.h1 {
    font-weight: bold;
    margin: 0;
}

/*h2 {
            text-align: center;
        }*/

.para {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 10px;
}

.span {
    font-size: 12px;
}

.social {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

.button {
    border-radius: 20px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}


.button1 {
    border-radius: 20px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

.button:active {
    transform: scale(0.95);
}

.button:focus {
    outline: none;
}

button.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

.form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}


.form1 {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 10px;
    height: 100%;
}

.input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.Quick-pay-container {
    left: 0;
    width: 50%;
    z-index: 2;
    background-color: #ffffff;
}

.container.right-panel-active .Quick-pay-container {
    transform: translateX(100%);
}

.sign-in-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
    background-color: #ffffff;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background: #FF416C;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #FF4B2B, #FF416C);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    top: 0;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.social-container {
    margin: 20px 0;
}

    .social-container a {
        border: 1px solid #DDDDDD;
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 5px;
        height: 40px;
        width: 40px;
    }

.displaynone {
    display: none;
}

.w-30 {
    width: 30% !important;
}

.w-32 {
    width: 32% !important;
}

.w-20 {
    width: 20% !important;
}

.w-60 {
    width: 60% !important;
}

.closeimg {
    width: 20px;
    height: 20px;
}

.txtpayment {
    width: 100%;
    height: 78px;
    background-color: #eee;
    border: none;
    padding: 5px 45px 8px 45px;
    font-weight: bold;
    font-size: 26px;
}

.lblduedate {
    position: absolute;
    top: 54%;
    left: 6%;
    color: red;
    font-size: 12px;
    font-weight: bold;
}

.rupeesign {
    position: absolute;
    top: 26%;
    left: 6%;
}

.rupeesign1 {
    position: absolute;
    top: 14%;
    left: 6%;
}

.fa-2x {
    font-size: 24px !important;
}

.btnpay {
    position: absolute;
    top: 16%;
    right: 10%;
}

.btnpay1 {
    position: absolute;
    top: 14%;
    right: 10%;
}

.lblvalue {
    font-weight: bold;
    color: #403f3f;
}

.labels {
    color: #808080;
}

.chkspan {
    font-size: small;
    font-weight: bold;
}

.chkrobot {
    position: absolute;
    top: 49%;
    left: 17%;
    width: 20px;
    height: 20px;
    background: #eee;
}

.distxt {
    pointer-events: none;
}

.bbps {
    margin-top: 20px;
    width: 130px;
    height: 50px;
}

.opacity {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
}

.popup {
    display: block;
    z-index: 9999;
    position: absolute;
    padding: 25px;
    top: 20%;
    left: 22%;
    border-radius: 10px;
}

.showinstallment td {
    text-align: right;
}

.pageload {
    width: 57%;
    height: 74%;
    z-index: 999999;
    position: absolute;
    top: 14%;
    left: 22%;
    background-color: #ffffff;
    padding: 5% 1% 1% 1%;
    border-radius: 10px;
}

.imgdisplay {
}

.closepageload {
    width: 40px;
    height: 40px;
    z-index: 999999;
    position: absolute;
    top: 2%;
    right: 1%;
    text-decoration: none;
}
.bgtab {
    background-color: #ebe4e1;
}
/*===================================== blink img animation start ============================================*/
/*.blink {
    animation: blink-animation 3s steps(5, start) infinite;
    -webkit-animation: blink-animation 3s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}*/
/*===================================== blink img animation end ============================================*/
/*========================================== Media Query Start ================================================*/
@media only screen and (max-width: 600px) {
    .body {
        margin: 57px 10px 57px 10px;
    }

    .container {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
        position: relative;
        left: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: scroll;
        /*min-height: 480px;*/
    }

        .container.right-panel-active .overlay-container {
            transform: translateY(-100%);
        }


    .overlay-container {
        position: absolute;
        top: 90%;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        transition: transform 0.6s ease-in-out;
        z-index: 100;
    }

    .container.right-panel-active .sign-in-container {
        transform: translateY(90%);
        opacity: 1;
        z-index: 5;
        animation: show 0.6s;
    }

    .sign-in-container {
        left: 0;
        width: 100%;
        opacity: 0;
        z-index: 1;
        background-color: #ffffff;
    }

    .Quick-pay-container {
        left: 0;
        top: 0;
        width: 100%;
        z-index: 2;
        background-color: #ffffff;
    }

    .chkrobot {
        position: absolute;
        top: 51%;
        left: 18%;
        width: 20px;
        height: 20px;
        background: #eee;
    }

    .rupeesign1 {
        position: absolute;
        top: 7%;
        left: 6%;
    }

    .popup {
        display: block;
        z-index: 9999;
        position: absolute;
        padding: 25px;
        top: 20%;
        left: 5%;
        border-radius: 10px;
        width:90%;
    }

    .pageload {
        width: 90%;
        height: 74%;
        z-index: 999999;
        position: absolute;
        top: 14%;
        left: 5%;
        background-color: #ffffff;
        padding: 5% 1% 1% 1%;
        border-radius: 10px;
    }

}
