/*custom font*/

@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/

* {
    margin: 0;
    padding: 0;
}


/* .logo{
    background-color: #6441A5;
    background-image: linear-gradient(100deg, #6441A5 0%, #ffffff 50%, #6441A4 100%);
    background: -webkit-linear-gradient(to left, #6441A5, #2a0845);
    padding: 10px;
} */

article {
    float: left;
}

#label-wrapper {
    float: left;
}

#input-wrapper {
    float: left;
    margin-left: 0.8em;
}

aside {
    float: left;
    clear: left;
    margin-top: 21em;
}

.space {
    margin-bottom: 0.5em;
}

footer {
    float: left;
    clear: left;
    margin-bottom: 25px;
}

.settings {
    font-family: "Courier New", serif;
    list-style: none;
    padding-left: 0;
}

.code {
    font-family: "Courier New", serif;
}

.invalid {
    background: #fdd;
}

.error {
    color: red;
}

.red .the-datepicker__button {
    background-color: red;
}

.green .the-datepicker__button {
    background-color: green;
}

.hidden {
    display: none;
}

#personal_information,
#company_information {
    display: none;
}


/* html {
    height: 100%;
    background: #6441a4;  
    background: -webkit-linear-gradient(to left, #6441A5, #2a0845);
    
}  */

body {
    font-family: montserrat, arial, verdana;
    background: transparent;
    height: 100%;
    /* background: #6441a4;   */
    /* background: -webkit-linear-gradient(to left, #6441A5, #2a0845); */
    background-image: url("../img/Rose-Petals2.svg");
    background-position: 50% 50%;
    background-attachment: fixed;
    background-size: cover;
}

.captcha_wrap {
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: bold;
    border: 1px solid #ccc;
    background-color: #999;
    background-image: url(../../images/captcha_bg2.jpg);
    text-shadow: -3px 1px #ffffff;
}


/*form styles*/

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 0px 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,
select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 0px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 12px;
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #bf2123;
    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: 130px;
    background: #bf2123;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 9px 5px;
    margin: 20px 5px;
    text-transform: uppercase;
}

#msform .action-button:hover,
#msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #bf2123;
}

#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: 20px 5px;
    text-transform: uppercase;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

hr {
    margin-top: 0px !important;
    margin-bottom: 5px !important;
}


/*headings*/

.fs-title {
    font-size: 12px;
    text-transform: uppercase;
    color: #056eb7;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 500;
}

.fs-subtitle {
    font-weight: 600;
    font-size: 12px;
    color: #0e5965;
    margin-bottom: 10px;
    text-decoration: none;
    text-align: left;
}


/*progressbar*/

#progressbar {
    margin-bottom: 10px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: #000000;
    text-transform: uppercase;
    font-size: 10px;
    width: 24.33%;
    /* width: 25%; */
    float: left;
    position: relative;
    letter-spacing: 1px;
    font-weight: 600;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 30px;
    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: #bf2123;
    color: white;
}

#progressbar_2 {
    margin-bottom: 10px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

ul#progressbar_2 {
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
}

#progressbar_2 li {
    list-style-type: none;
    color: #000000;
    text-transform: uppercase;
    font-size: 10px;
    width: 50%;
    /* width: 25%; */
    float: left;
    position: relative;
    letter-spacing: 1px;
    font-weight: 600;
}

#progressbar_2 li:before {
    content: counter(step);
    counter-increment: step;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 30px;
    margin: 0 auto 10px auto;
}


/*progressbar connectors*/

#progressbar_2 li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
    /*put it behind the numbers*/
}

#progressbar_2 li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

#progressbar_2 li.active:before,
#progressbar_2 li.active:after {
    background: #bf2123;
    color: white;
}


/* Not relevant to this form */

.dme_link {
    margin-top: 30px;
    text-align: center;
}

.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #bf2123;
    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;
}

.online-reg {
    color: #000000;
    font-size: 18px;
    text-decoration: unset;
    font-weight: 600;
}

.help-block {
    display: block;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    color: #737373;
    font-size: 12px;
    text-align: left;
    padding-left: 10px;
    /* background: #ececec; */
}

.form-group {
    margin-bottom: 8px;
}

.left-logo {
    width: 20%;
}

.center-logo {
    width: 60%;
}

.left-logo-2 {
    width: 10%;
}

.center-logo-2 {
    width: 20%;
}

.right-logo1 {
    width: 20%;
}

.right-logo2 {
    width: 24%;
}

.img-align-left {
    text-align: left;
}

.img-align-center {
    text-align: center;
}

.img-align-right {
    text-align: right;
}

ul.payment-list {
    list-style: none;
    color: #000;
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0px 2px 10px #969696;
    opacity: 1;
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
}

ul.payment-list li {
    line-height: 25px;
}

ul.payment-list .title {
    color: #000000;
    font-size: 16px;
    padding: 0px 0px 10px 0px;
    text-decoration: underline;
    font-weight: 600;
    text-align: center;
}

ul.payment-list li span {
    color: #b92123;
    font-weight: 600;
}

ul.payment-list .align-center {
    padding-left: 30px;
}

.online-complete {
    font-size: 14px;
    margin: 12px auto;
    position: relative;
    top: -10px;
    color: #042135;
}

.admission-legend {
    background: white;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 10px 0px 15px;
    position: relative;
    margin-top: 15px;
}

.admission-legend label span {
    font-size: 14px;
    font-weight: 500;
    color: #001221;
}

.admission-legend label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    padding: 0px 10px 0px 10px;
    text-align: center;
}

.admission-legend fieldset {
    background: none !important;
    border: 1px solid silver !important;
    padding: none !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    box-sizing: border-box;
}

.otp-legend {
    background: none !important;
    border: 1px solid silver !important;
    padding: none !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    box-sizing: border-box;
}

.admission-legend .form-check-inline {
    position: relative;
    width: calc(38% - 75px);
    display: inline-block;
    left: 2%;
    right: 5%;
}

.admission-legend-2 .form-check-inline {
    position: relative;
    width: calc(33% - 33.33px);
    display: inline-block;
    left: 2%;
    right: 5%;
}

.admission-legend-2 {
    background: white;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 10px 15px 10px 15px;
    position: relative;
    margin-top: 15px;
}

.admission-legend-2 label span {
    font-size: 10px;
    font-weight: 500;
    color: #001221;
}

.admission-legend-2 label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    padding: 0px 5px 0px 5px;
    text-align: center;
}

.admission-legend-2 fieldset {
    background: none !important;
    border: 1px solid silver !important;
    padding: none !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    box-sizing: border-box;
}

.msg {
    position: absolute;
    top: 55px;
    right: 5px;
    color: green;
    font-size: 20px;
}

#reg_no {
    color: green;
    text-align: left;
    position: relative;
    display: block;
    font-size: 12px;
}

.agree_error {
    position: relative;
    top: 15px;
    left: -30px;
}

.skip-btn {
    background: #079df5;
    padding: 1px 10px 1px 10px;
    color: #fff;
    display: inline-block;
    border-radius: 30px;
    opacity: 0.7;
    border: none;
    cursor: default;
}

.skip-btn:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #bf2123;
    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;
}

.agree_terms strong {
    background: #f3ece4;
    padding: 1px 5px 1px 5px;
    border: 1px solid #f3ece4;
    cursor: pointer;
    font-weight: 600;
    -webkit-animation: COURSE-TITLE 1s infinite;
    -moz-animation: COURSE-TITLE 1s infinite;
    -o-animation: COURSE-TITLE 1s infinite;
    animation: COURSE-TITLE 1s infinite;
    word-wrap: anywhere;
    word-spacing: 6px;
}

@-webkit-keyframes COURSE-TITLE {
    0%,
    49% {
        background-color: #f3ece4;
        background-image: linear-gradient(to right, #f3ece4, white);
    }
    50%,
    100% {
        background-color: #f1dac0;
        background-image: linear-gradient(to right, #ffffff, #f1dac0);
    }
}

.admission_url {
    background: #f3ece4;
    padding: 1px 5px 1px 5px;
    cursor: pointer;
    font-weight: 600;
    -webkit-animation: COURSE-TITLE 1s infinite;
    -moz-animation: COURSE-TITLE 1s infinite;
    -o-animation: COURSE-TITLE 1s infinite;
    animation: COURSE-TITLE 1s infinite;
}

#otpModal {
    /* position: fixed;
    top: 0; */
    position: absolute !important;
    top: 40% !important;
    right: 50%;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    transform: translate(50%, 0%) !important;
}

.field_set {
    border: 1px solid #ccc;
    position: relative;
    height: auto;
    min-height: 60px;
}

.legand {
    top: -11px;
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 262px;
    left: 20px;
    font-size: 16px;
    ;
    text-align: center;
}

.terms_list {
    margin-left: 25px;
}

.payment-success {
    background: #2e9005;
    border-radius: 100%;
    color: #f5f5f5;
    padding: 16px;
    width: 100px;
    height: 100px;
    font-size: 70px !important;
    margin: 5px auto;
}

.payment-failure {
    background: #bf2626;
    border-radius: 100%;
    color: #f5f5f5;
    padding: 16px;
    width: 100px;
    height: 100px;
    font-size: 70px !important;
    margin: 5px auto;
}

.enableAgree_Terms {
    opacity: 0.5;
}

.modal-backdrop {
    opacity: 0.5 !important;
}

#agree_terms {
    padding: 0px !important;
    width: 20px !important;
    position: relative;
    top: -15px;
    transform: translate(0%, -50%);
    /* margin-bottom: 0px !important; */
}

label.agreeTerms {
    text-align: left;
}

.agree_terms {
    line-height: 22px;
    padding-left: 5px;
    top: 3px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .left-logo {
        width: 25% !important;
    }
    .center-logo {
        width: 50% !important;
    }
    .right-logo1 {
        width: 16% !important;
    }
    .right-logo2 {
        width: 18% !important;
    }
    .img-align-left {
        text-align: center !important;
    }
    .img-align-center {
        text-align: center !important;
    }
    .img-align-right {
        text-align: center !important;
    }
    #msform fieldset {
        width: 100%;
        margin: 0 auto;
    }
    .legand {
        font-size: 14px;
    }
    .admission-legend label span {
        font-size: 12px;
    }
    .admission-legend .form-check-inline {
        position: relative;
        width: calc(40% - 33.33px);
        display: inline-block;
    }
    .admission-legend label {
        padding: 0px 2px 0px 2px;
    }
    .admission-legend {
        margin: 10px 5px 0px 5px;
    }
    #agree_terms {
        padding: 0px !important;
        width: 20px !important;
        position: relative;
        top: -70px;
        transform: translate(0%, -50%);
        /* margin-bottom: 0px !important; */
    }
    .agree_terms span {
        width: 100%;
        word-break: break-all;
        display: inline-block;
        padding-top: 10px;
        text-align: center !important;
    }
    .agree_terms {
        line-height: 22px;
        padding-left: 25px;
        top: 3px;
        position: relative;
    }
}


/* ----------- Non-Retina Screens ----------- */

@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    .legand {
        font-size: 14px;
    }
    .admission-legend label span {
        font-size: 12px;
    }
    .admission-legend .form-check-inline {
        position: relative;
        width: calc(40% - 33.33px);
        display: inline-block;
    }
    .admission-legend label {
        padding: 0px 2px 0px 2px;
    }
    .field_set .form-check-inline {
        padding-left: 5px;
        padding-right: 5px;
    }
    #agree_terms {
        padding: 0px !important;
        width: 20px !important;
        position: relative;
        top: -15px;
        transform: translate(0%, -50%);
        /* margin-bottom: 0px !important; */
    }
}


/* ----------- Retina Screens ----------- */

@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    .legand {
        font-size: 14px;
    }
    .admission-legend label span {
        font-size: 12px;
    }
    .admission-legend .form-check-inline {
        position: relative;
        width: calc(40% - 33.33px);
        display: inline-block;
    }
    .admission-legend label {
        padding: 0px 2px 0px 2px;
    }
    #agree_terms {
        padding: 0px !important;
        width: 20px !important;
        position: relative;
        top: -48px;
        transform: translate(0%, -50%);
        /* margin-bottom: 0px !important; */
    }
    .agree_terms span {
        width: 100%;
        word-break: break-all;
        display: inline-block;
        padding-top: 10px;
        text-align: center !important;
    }
    .agree_terms {
        line-height: 22px;
        padding-left: 25px;
        top: 3px;
        position: relative;
    }
}


/* Portrait and Landscape */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .admission-legend {
        margin: 10px 5px 0px 5px;
        display: inline-block;
        width: calc(100% - 22px);
    }
    .legand {
        font-size: 14px;
    }
    .admission-legend label span {
        font-size: 14px;
    }
    .admission-legend .form-check-inline {
        position: relative;
        width: calc(36% - 33px);
        display: inline-block;
        left: 10%;
        right: 10%
    }
    .admission-legend label {
        padding: 0px 2px 0px 2px;
    }
    #agree_terms {
        padding: 0px !important;
        width: 20px !important;
        position: relative;
        top: -48px;
        transform: translate(0%, -50%);
    }
    .agree_terms {
        line-height: 22px;
        padding-left: 25px;
        top: 3px;
        position: relative;
    }
    .agree_terms span {
        width: 100%;
        word-break: break-all;
        display: inline-block;
        padding-top: 10px;
        text-align: center !important;
    }
}


/******************* radio button css ********************/

.header h1 {
    font-weight: 700;
    line-height: 1.42857143;
    color: #fff;
    font-size: 3.4rem;
    text-transform: uppercase;
}

body {
    font-family: 'Comfortaa', cursive;
    /* font-family: 'Josefin Sans', sans-serif; */
    background: #a9ccff;
    height: 100%;
    background-image: url("http://mahendra.org/hostelfee/images/payment-bg.jpg");
    background-position: 50% 50%;
    background-attachment: fixed;
    background-size: cover;
}

.header {
    background-color: #2d2f58;
    background-image: linear-gradient(141deg, #2e315c 0%, #3459a7 51%, #2e315c 100%);
    opacity: 0.95;
}

h1.header-title {
    font-family: 'Comfortaa', cursive;
    color: #fff;
    font-size: 3.4rem;
}

.bg-text {
    background: #e91e63;
    background-image: linear-gradient(180deg, #000000, #03a9f4);
    -webkit-font-smoothing: antialiased;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.text-lean {
    font-weight: 300;
}

.mt-5 {
    margin-top: 5rem;
}

:root {
    --white: #fff;
    --smoke-white: #f1f3f5;
    --blue: #4169e1;
}

.selector {
    position: relative;
    width: 60%;
    background-color: var(--smoke-white);
    height: 100%;
    display: block;
    justify-content: space-around;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 0 16px rgba(0, 0, 0, .2);
    margin: 0 auto;
    padding: 20px 0px 1px 0px;
    background: linear-gradient(0deg, #ffffff 30%, #cbcbcb);
}

.selecotr-item {
    position: relative;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.selector-item_radio {
    appearance: none;
    display: block;
    width: 100%;
}

.selector-item_label:hover {
    opacity: 0.9
}

.selector-item_label {
    position: relative;
    height: 80%;
    width: 100%;
    text-align: center;
    border-radius: 9999px;
    line-height: 300%;
    font-weight: 400;
    transition-duration: .5s;
    transition-property: transform, color, box-shadow;
    transform: none;
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 0 4px rgba(0, 0, 0, .5), 0 2px 4px rgba(0, 0, 0, .5);
    transform: translateY(-2px);
    background-image: linear-gradient(45deg, #3f51b5, #0b91d2 80%);
    cursor: pointer;
    font-size: 13pt;
}

.selecotr-item+.selecotr-item {
    margin-top: 10px;
}

.selector-item_radio:checked+.selector-item_label {
    background-color: var(--blue);
    color: var(--white);
    box-shadow: 0 0 4px rgba(0, 0, 0, .5), 0 2px 4px rgba(0, 0, 0, .5);
    transform: translateY(-2px);
    background-image: linear-gradient(180deg, #08387f, #002152 80%);
}

.pay-btn {
    position: relative;
    height: 50px;
    width: 70%;
    text-align: center;
    border-radius: 10px;
    line-height: 400%;
    font-weight: 900;
    transition-duration: .5s;
    transition-property: transform, color, box-shadow;
    /* background: #0279b4; */
    color: var(--white);
    box-shadow: 0 0 4px rgba(0, 0, 0, .5), 0 2px 4px rgba(0, 0, 0, .5);
    background-image: linear-gradient(0deg, #1a1a1a, #000000 50%, #3f51b5);
    cursor: pointer;
    border: none;
    opacity: 0.9;
}

.pay-btn:hover {
    opacity: 1
}

.covid-19 {
    padding-top: 10px;
    font-size: 13px;
    color: #000000;
    text-align: center;
    background-image: linear-gradient(45deg, #08387f, #673ab7);
    -webkit-font-smoothing: antialiased;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-large {
    font-size: 24px;
    font-weight: 500;
}

@media (max-width:480px) {
    .selector {
        width: 90%;
    }
}

.pay-box {
    position: relative;
    height: 100%;
    display: block;
    justify-content: space-around;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 0 16px rgba(0, 0, 0, .2);
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(0deg, #ffffff 30%, #cbcbcb);
}

.pay-box .input-box {
    width: 90%;
    /* border-radius: 30px; */
}

#message {
    margin-top: 10px;
}

.can_info {
    text-align: justify;
    color: #000000;
    padding-top: 5px;
    background: linear-gradient(90deg, #ffffff, #2196f300);
    width: 75%;
    padding-left: 5px;
    margin-top: 10px;
}

.title {
    font-size: 15px;
    background: linear-gradient(45deg, #686868 10%, transparent 100%);
    color: #ffffff;
    padding: 3px;
    line-height: 20px;
}