/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #6b6b6b;
    background-color: #F1F3F9;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.space {padding: 100px 0;}

main {
    padding: 0 0 50px 0; 
}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {font-family: 'Ubuntu', sans-serif; color: #222;}

h1 {font-size: 26px; line-height: 32px;}
h2 {font-size: 22px; line-height: 28px;}
h3 {font-size: 18px; line-height: 28px;}
h4 {font-size: 18px; line-height: 28px;}
h5 {font-size: 18px; line-height: 28px;}
h6 {font-size: 18px; line-height: 28px;}

strong {font-weight: 700;}

a {
    color: #0775bc;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #0775bc;
    outline: 0;
    text-decoration: none;
}

.btn {
    border-radius: 2px;
    padding: 10px 30px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-dark {
    background-color: #7f7f7f;
    border-color: #7f7f7f;
}

.btn-dark:hover {
    background-color: #6f6f6f;
    border-color: #6f6f6f;
    color: #fff;
}

.btn-primary {
    background-color: #0775bc;
    border-color: #0775bc;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0a82d0;
    border-color: #0775bc;
    color: #fff;
}

p {
    color: #6b6b6b;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.heading {
    margin: 0 0 100px 0;
    font-size: 32px;
    line-height: 38px;
    color: #0c3135;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
}

body {
    /*  background: url('../static/images/payment-bgr.jpg') center center no-repeat;
        background-size: cover;*/
    height: 100%;
}

.form {
    background-color: #fff;
    padding: 30px;
    border-radius: 2px;
    box-shadow: 0 3px 20px rgba(156, 156, 156, 0.25);
    -moz-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.form label {
    font-size: 14px;
    margin: 0;
}


form input[type=text],
form input[type=email],
form input[type=password],
form input[type=search],
form select {
    width: 100%;
    color: #000000;
    background-color: #fff;
    background-image: none;
    border: 1px solid #e4eaec;
    border-radius: 3px;
}

form input[type=text]:focus,             
form input[type=email]:focus,             
form input[type=password]:focus {
    border: 1px solid #0775bc;
    box-shadow: none;
}

.form-control,            
input[type=text],             
input[type=email],             
input[type=password] {
    width: 100%;
    height: 36px;
    padding: 6px 15px;
    font-size: 14px;
    line-height: 1.57142857;
    border: 1px solid #e4eaec;
}        


.logo {
    font-size: 46px;
    line-height: 46px;
    color: #163746;
    text-align: center;
    display: block;
    margin: 0 0 5px 0;
}

.sub-logo {
    font-size: 13px;
    color: #163746;
    margin: 0 0 20px 0;
    display: block;
    text-align: center;
}

.form .btn {
    width: 100%;
}


.radio,
.checkbox {
    padding: 0 0 0 26px;
    position: relative;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
    position: absolute;
}

.checkbox label::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    border: 1px solid #cccccc;
    background-color: #fff;
}

.checkbox label::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 0;
    font-size: 12px;
    color: #555555;
}

.checkbox input[type="checkbox"]:checked+label::after {
    font-family: "FontAwesome";
    content: "\f00c";
}

.radio label::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.radio label::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.radio input[type="radio"]:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}


.tooltip-img {
    width: 275px;
    height: 170px;
    margin: 0 0 10px 0;
}

.tooltip-inner {
    max-width: 300px;
    padding: 15px;
}

.tooltip-info {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin: 0;
    text-align: left;
}

.fa-info-circle {
    margin: 0 auto;
    display: block;
    width: 14px;
    height: 100%;
}

.arrow {
    margin-left: 13px;
}

.tooltip.show {
    opacity: 1;
}

.resend-sms {
    display: table;
    margin: 15px auto 0 auto;
}

.resend-sms:hover {
    text-decoration: underline;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .arrow {
        margin-left: 0;
    }

    .form {
        padding: 20px 20px;
    }

    .form-group {
        margin-bottom: 10px;
    }
}


.payment-steps {
    height: 100%;
    padding: 30px 0;
}

.steps {
    margin: 50px auto;
    display: table;
    width: 100%;
    text-align: center;
}

.steps .step {
    display: inline-block;
    margin: 0 10px;
    padding: 0;
    background-color: transparent;
    color: inherit;
    text-align: center;
    width: 120px;
}

.steps .step:last-of-type {
    margin-right: 0;
}

.steps .step-desc {
    display: block;
    font-size: 16px;
    color: #333;
}

.steps .step-num {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 0 0 10px 0;

    -webkit-box-shadow: 0px 4px 6px #7d7d7d6e;
    box-shadow: 0px 4px 6px #7d7d7d6e;

    background: none;
    background-image: -moz-linear-gradient( 180deg, #d24976 0%, #fb7f76 100%);
    background-image: -webkit-linear-gradient( 180deg, #d24976 0%, #fb7f76 100%);
}

.steps .step-num.active {

    background: none;
    background-image: -moz-linear-gradient( 180deg, #9F89DF 0%, #67b3ed 100%);
    background-image: -webkit-linear-gradient( 180deg, #9F89DF 0%, #67b3ed 100%);
}

.method {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 3px 20px rgba(156, 156, 156, 0.25);
    -moz-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    min-height: 500px;
}

.method ul {
    margin: 0 0 20px 0;
}

.method ul li {
    margin: 3px 0;
}

.method ul li i {
    margin-right: 5px;
    color: #0775bc;
}

.method h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    text-align: center;
    color: #0775bc;
}

.method h5 {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.method .btn {
    margin-top: 15px;
    display: block;
    width: 100%;
}

.or {
    text-align: center;
    padding: 73px 0;
}

.title {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    color: #0775bc;
    text-align: center;
}

.step-pro {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: #ddd;
}

.thankyou {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 3px 20px rgba(156, 156, 156, 0.25);
    -moz-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: center;
}

.thankyou h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    color: #0775bc;
}

.upload-doc h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    text-align: center;
    color: #0775bc;
}

.upload-doc .upload {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 3px 20px rgba(156, 156, 156, 0.25);
    -moz-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    margin: 0 0 50px 0;
}

.upload-doc .upload img {
    margin: 0 auto 15px;
    display: block;
    height: 50px;
}

.upload-doc .upload h5 {
    font-weight: bold;
    line-height: 14px;
    line-height: 20px;
    margin: 0 0 15px 0;
    min-height: 40px;
}

.upload-doc .upload p {
    color: #b3b3b3;
}

.upload-doc .btn-group {
    margin: 0 auto;
    display: table;
}

.upload-doc .btn-group .btn {
    margin: 0 5px;
}

.custom-file-upload {
    display: none;
}


@media only screen and (min-width: 1500px) and (max-width: 4000px) {

}

@media only screen and (min-width: 767px) and (max-width: 991px)  {

    .steps {
        margin: 15px auto;
    }

    .thank-you-blocks {
        margin: 30px 0 0;
    }

}

@media only screen and (min-width: 0px) and (max-width: 767px)  {

    .steps .step {
        display: block;
        margin-right: 0;
        width: 33%;
        float: left;
        text-align: center;
    }

    .steps .step-desc {
        font-size: 12px;
    }

    .steps .step-num {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .steps {
        margin: 0px auto;
    }

    .thank-you-blocks {
        margin: 20px 0 70px;
    }

    .or {
        padding: 15px 0;
    }
}


.method-02-btn {
    margin-top: 61px !important;
}