* {
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, ul, li {
    margin: 0;
    padding: 0;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

body {
    background: #fff;
    font-size: 15px;
    font-family: "poppins";
    color: #424951;
    width: 100%;
    height: 100%;
}

.bg-img {
    background: url("../images/page-bg.jpg") no-repeat bottom left;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
}

.clearfix::after, .clearfix::before {
    display: block;
    content: "";
    clear: both;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "poppins";
    font-weight: normal;
    color: #424951;
}

input, select, textarea {
    font-family: "poppins";
    font-size: 15px;
    outline: none;
    float: left;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    border: none;
    border: #ccc solid thin;
    position: relative;
    background: none;
    border-radius: 3px;
    height: 35px;
}

    input[type="text"] {
        background: #fff;
    }

textarea {
    padding: 5px;
}

    input:focus, select:focus, textarea:focus {
        border: #aaa solid thin;
    }

.top-right-curve, .bottom-left-curve {
    position: fixed;
    z-index: 1;
}

.top-right-curve {
    right: 0;
    top: 0;
    width: 624px;
    max-width: 100%;
}

.bottom-left-curve {
    left: 0;
    width: 807px;
    max-width: 100%;
    bottom: -5px;
}

.display-flex {
    display: flex;
    flex-wrap: wrap;
}

.wrapper {
    position: relative;
    z-index: 1;
    align-content: stretch;
    height: 100vh;
    overflow: hidden;
}

.left-data {
    width: 40%;
    text-align: center;
    position: relative;
}

    .left-data img {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        max-height: 100%;
    }

img {
    width: auto;
    max-width: 100%;
}

.right-data {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 30px;
    position: relative;
    height: 100%;
    overflow: auto;
}

.logo {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.main-row {
    width: 100%;
    float: left;
    position: relative;
    z-index: 1;
}



.gr-no input[type="text"] {
    width: 100%;
}

.gr-no label {
    width: 100%;
    line-height: 30px;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.form, .form-group {
    width: 100%;
    float: left;
}

    .form-group:not(last-child) {
        margin-bottom: 15px;
    }

.form-group-inline {
    width: 48%;
    text-align: left;
}

    .form-group-inline:first-child {
        margin-right: 2%;
    }

.btn {
    border-radius: 30px;
    padding: 8px 15px 5px;
    border: #aaa solid thin;
    background: #ccc;
    color: #666;
    text-align: center;
    width: auto;
    height: auto;
    text-transform: uppercase;
    font-family: "poppins-sb";
    line-height: normal;
    cursor: pointer;
}

    .btn:hover {
        background: var(--secondary-color);
        color: #fff;
        border-color: var(--secondary-color);
    }

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
    }

.gr-no {
    margin: 15px 0 0;
}

.alert-message {
    text-transform: uppercase;
    font-family: "poppins-med";
    margin: 5px 0;
    float: left;
    width: 100%;
    background: #f5f5f5;
    border: #ccc solid thin;
    padding: 13px 10px 10px;
    border-radius: 5px;
}

.alert-info {
    background: #e5e5e5;
    color: #aaa;
    border-color: #aaa;
}

.alert-danger {
    border-color: #ed4948;
    color: #ed4948;
    background: rgba(257, 73, 72, 0.1);
}

.student-basic-details {
    width: 100%;
    float: left;
    margin: 0 0 10px;
    padding-top: 20px;
    border-top: #ccc solid thin;
}

    .student-basic-details h3 {
        font-family: "poppins-med";
        font-size: 21px;
    }

        .student-basic-details h3 strong {
            color: var(--primary-color);
        }

.stream-sem {
    width: 100%;
    float: left;
}

    .stream-sem .stream-sem-col {
        padding: 2px 10px;
        border-right: #ccc solid thin;
        display: inline-block;
        vertical-align: middle;
        margin-top: 2px;
        font-size: 14px;
        font-style: italic;
    }

        .stream-sem .stream-sem-col:last-child {
            border-right: 0;
        }

.scroll-table {
    width: 100%;
    float: left;
    overflow: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

    .table td, .table th {
        word-break: break-word;
        padding: 10px 10px;
        text-align: left;
    }

    .table tr:nth-child(even) td {
        background: #fff;
    }

    .table tr:nth-child(odd) td {
        background: #f5f5f5;
    }

    .table input {
        width: auto !important;
        height: auto !important;
        margin: 0;
        display: inline-block;
        float: none !important;
    }
    .table .text-center input {
        width: 100px !important;
        text-align: center;
        padding: 3px;
        line-height: normal;
    }


        .table input[type="checkbox"] {
            display: none;
        }

            .table input[type="checkbox"] + label {
                float: none;
                display: inline-block;
                width: 16px;
                height: 16px;
                border: #aaa solid thin;
                line-height: 16px;
                border-radius: 3px;
                cursor: pointer;
                text-align: center;
                position: relative;
                overflow: hidden;
            }

                .table input[type="checkbox"] + label:hover {
                    border-color: #424951;
                }

            .table input[type="checkbox"]:checked + label {
                background: var(--primary-color);
                border-color: var(--primary-color);
            }

                .table input[type="checkbox"]:checked + label::before {
                    content: '\f122';
                    font-family: "Ionicons";
                    color: #fff;
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    left: 0;
                    top: 0;
                    line-height: 14px;
                    text-align: center;
                    display: block;
                    font-size: 11px;
                }

    .table th {
        color: #fff;
        background: #424951;
        font-family: "poppins-med";
        font-weight: normal;
        text-align: left;
    }

.text-center {
    text-align: center !important;
}

.pay-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    float: left;
    margin: 20px 0;
}

    .pay-btns span.or {
        margin: 0 10px;
        text-transform: uppercase;
    }

    .pay-btns a {
        width: 130px;
        display: inline-block;
        border: #aaa solid thin;
        padding: 5px 10px;
        border-radius: 5px;
    }

        .pay-btns a.paytm {
            width: 90px;
        }

        .pay-btns a:hover {
            transform: scale(1.15);
        }

    .pay-btns span {
        font-family: "poppins-sb";
    }

        .pay-btns span:first-child {
            margin-right: 10px;
        }


.form {
    width: 600px;
    max-width: 100%;
    margin: auto;
    float: none;
}

.note {
    width: 100%;
    text-align: center;
    margin-top: 7px;
    color: #666;
    font-size: 13px;
    float: left;
}

.note-danger {
    text-align: left;
    color: #ed4948;
}

.cust-popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cust-popup-dialog {
    background: #fff;
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    padding: 20px;
}

.cust-popup-small {
    width: 500px;
}

.cust-popup-medium {
    width: 800px;
}

.cust-popup-large {
    width: 90%;
}

.cust-popup-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: #ccc solid thin;
    padding-bottom: 10px;
}

.cust-popup-body {
    width: 100%;
    float: left;
    max-height: 60vh;
    position: relative;
    display: block;
    overflow: auto;
}

    .cust-popup-body iframe {
        width: 100%;
        border: none;
    }

.cust-popup-header h2 {
    font-size: 20px;
    font-family: "poppins-med";
}

.row-highlight {
    font-weight: bold;
    background: #aaa !important;
    color: #fff;
}
