.cd-nav-container h3 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}


/* -------------------------------- 

xnavigation 

-------------------------------- */

.cd-nav-container {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    overflow-y: auto;
    background-color: #ffffff;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0.4s;
    -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0.4s;
    transition: transform 0.4s 0s, box-shadow 0s 0.4s;
}

.cd-nav-container.is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
    -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0s;
    -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0s;
    transition: transform 0.4s 0s, box-shadow 0s 0s;
}

.cd-nav-container header {
    padding: 1.5em 0 0 6.25%;
    height: 68px;
    position: relative;
}

.cd-nav-container h3 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #5F5F5F;
}

@media only screen and (min-width: 700px) {
    .cd-nav-container {
        width: 70%;
    }
    .cd-nav-container header {
        height: 116px;
        padding-top: 3em;
    }
}

.cd-close-nav {
    /* 'X' close icon */
    position: absolute;
    height: 44px;
    width: 44px;
    /* set the right position value so that it overlaps the .cd-nav-trigger*/
    right: 6.25%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.cd-close-nav::after,
.cd-close-nav::before {
    /* lines of 'X' icon */
    content: '';
    position: absolute;
    height: 3px;
    width: 32px;
    left: 50%;
    top: 50%;
    background-color: #5F5F5F;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cd-close-nav::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cd-close-nav::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.no-touch .cd-close-nav:hover {
    opacity: .8;
}

@media only screen and (min-width: 700px) {
    .cd-close-nav {
        right: 7.14%;
    }
}

.cd-nav {
    background-color: #F1F4F9;
    margin: 0;
}

.cd-nav::after {
    clear: both;
    content: "";
    display: table;
}

.cd-nav li {
    width: 50%;
    float: left;
    /* 68px is the navigation header height  and the menu items will be allocated in 3 rows */
    height: calc((100vh - 68px)/3);
    min-height: 120px;
    border: 1px solid #ffffff;
    border-top: none;
    border-left: none;
}

.cd-nav li:nth-of-type(2n) {
    border-right-width: 0;
}

.cd-nav a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
    color: #5F5F5F;
}

.no-touch .cd-nav a:hover i {
    -webkit-animation: cd-shock 0.3s;
    -moz-animation: cd-shock 0.3s;
    animation: cd-shock 0.3s;
}

.no-touch .cd-nav li a:hover,
.cd-nav li.cd-selected a {
    background: #E9EDF2;
}

.cd-nav span,
.cd-nav p {
    position: absolute;
}

.cd-nav span {
    font-size: 50px;
    top: calc(50% - 60px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 60px;
    width: 60px;
}

.cd-nav span * {
    -webkit-transition: stroke 0.2s;
    -moz-transition: stroke 0.2s;
    transition: stroke 0.2s;
}

.cd-nav p {
    width: 100%;
    left: 0;
    top: calc(50% + 15px);
    color: #5F5F5F;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media only screen and (min-width: 700px) {
    .cd-nav li {
        /* 116px is the navigation header height and the menu items will be allocated in 3 rows */
        height: calc((100vh - 116px)/3);
        min-height: 200px;
    }
    .cd-nav span {
        height: 64px;
        width: 64px;
        top: calc(50% - 56px);
    }
    .cd-nav p {
        font-size: 2.2rem;
        font-weight: 300;
        top: calc(50% + 21px);
    }
}

@media only screen and (min-width: 1024px) {
    .cd-nav li {
        width: 33.33%;
        float: left;
        /* 116px is the navigation header height  and the menu items will be allocated in 2 rows */
        height: calc((100vh - 116px)/2);
        min-height: 250px;
    }
    .cd-nav li:nth-of-type(2n) {
        border-right-width: 1px;
    }
    .cd-nav li:nth-of-type(3n) {
        border-right-width: 0;
    }
    .cd-nav p {
        font-size: 2.5rem;
    }
}

@-webkit-keyframes cd-shock {
    0% {
        -webkit-transform: rotate(0);
    }
    30% {
        -webkit-transform: rotate(10deg);
    }
    60% {
        -webkit-transform: rotate(-10deg);
    }
    100% {
        -webkit-transform: rotate(0);
    }
}

@-moz-keyframes cd-shock {
    0% {
        -moz-transform: rotate(0);
    }
    30% {
        -moz-transform: rotate(10deg);
    }
    60% {
        -moz-transform: rotate(-10deg);
    }
    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes cd-shock {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    30% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    60% {
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    100% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
}


/* -------------------------------- 

xshadow layer 

-------------------------------- */

.cd-overlay {
    /* shadow layer visible when navigation is open */
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s;
}

.cd-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0s;
    transition: opacity 0.4s 0s, visibility 0s 0s;
}


/* -------------------------------- 

xcontent 

-------------------------------- */

main {
    position: relative;
    overflow-x: hidden;
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    transition: transform 0.4s;
    box-shadow: 0 0 30px #241d20;
}

main.scale-down {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}

.navigation-visible {
    overflow: hidden;
}

.cd-section {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0s 0.4s;
    -moz-transition: -moz-transform 0s 0.4s;
    transition: transform 0s 0.4s;
}

.cd-section.cd-selected {
    position: relative;
    z-index: 2;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.4s 0s;
    -moz-transition: -moz-transform 0.4s 0s;
    transition: transform 0.4s 0s;
    -webkit-overflow-scrolling: touch;
}

.cd-title {
    position: relative;
    top: 48%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #ffffff;
    text-align: center;
}

.cd-title>* {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cd-title h2 {
    font-size: 2.8rem;
    margin-bottom: .8em;
}

.cd-title a {
    display: inline-block;
    padding: 1.2em 1.6em;
    border-radius: 50em;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    color: #ffffff;
    font-family: "Lora", serif;
}

.no-touch .cd-title a:hover {
    border-color: #ffffff;
}

.cd-title span {
    vertical-align: middle;
    display: inline-block;
}

@media only screen and (min-width: 700px) {
    .cd-title h2 {
        font-size: 5rem;
        font-weight: 300;
        margin-bottom: .6em;
    }
}

.cd-content {
    background-color: #ffffff;
    padding: 4em 0;
}

.cd-content p {
    width: 90%;
    max-width: 800px;
    margin: 2em auto;
    line-height: 2;
    color: #78626a;
}

.no-js main,
.no-js .cd-section {
    height: auto;
    overflow: visible;
}

.no-js .cd-section {
    position: static;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.no-js .cd-nav-container {
    width: 100%;
    position: static;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    height: auto;
    overflow: visible;
}

.no-js .cd-close-nav {
    display: none;
}

.no-js .cd-nav li {
    width: 50%;
    float: left;
}

@media only screen and (min-width: 700px) {
    .no-js .cd-nav li {
        width: 33.3%;
        float: left;
    }
    .no-js .cd-nav li:nth-of-type(2n) a {
        border-right-width: 1px;
    }
}

@media only screen and (min-width: 1024px) {
    .no-js .cd-nav li {
        width: 16.66%;
        float: left;
    }
    .no-js .cd-nav li:nth-of-type(3n) a {
        border-right-width: 1px solid #e0cf75;
    }
}


/* common style of center */


/* header */

#toast-container {
    display: none;
}

.cbp-spmenu-vertical {
    width: 776px !important;
}

.cbp-spmenu-right {
    right: -776px;
}


/* top header */

.mobile_log {
    display: block;
}

@media only screen and (max-width: 600px) {
    .mobile_log {
        display: none;
    }
}


/* index */

.login_center {
    margin: 20px auto;
    width: 30%;
    text-align: center;
    box-shadow: 0px 0px 20px 2px #ddd;
    padding: 20px;
}

.form_cent {
    margin: 0 auto;
    width: 86%;
}

.login-tabcontent {
    padding: 6px 12px;
    border-top: none;
}

.login_image {
    margin: 0 auto;
    display: inherit;
}

.heading {
    text-transform: capitalize !important;
}

@media only screen and (max-width: 600px) {
    .login_center {
        margin: 20px auto;
        width: 90%;
        text-align: center;
        box-shadow: 0px 0px 20px 2px #ddd;
        padding: 0px;
    }
    .login_image {
        margin-top: 1em !important;
        width: 60%;
    }
}


/* partner-login center form */

input.center-input-box {
    width: 100%;
    padding: 8px;
    margin-bottom: 6px;
}

button.center-btn {
    background: #f3725e;
    border: none;
    padding: 8px 20px;
    color: #fff;
    font-size: 16px;
    margin-top: 1em;
    cursor: pointer;
}

.errMsg {
    font-size: 14px;
    color: #F44336;
}


/* sidebar */

.mobile_log_dash {
    display: none;
}

.border_top {
    border-bottom: none !important;
    border-top: 1px solid #ccc;
}

@media only screen and (max-width: 600px) {
    .mobile_log_dash {
        display: block;
        margin: 0 20px;
        font-weight: 400;
    }
}

.circle_img {
    background: #fff;
    max-width: 110px;
    display: block;
    margin: 0 auto;
    min-height: 100px;
}

.border_top {
    padding-left: 18px;
}


/* dashboard */

.dash_title {
    font-size: 18px !important;
    font-weight: bold;
    color: #444 !important;
}

.info-box .info-box-stats1 span.info-box-title {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    color: #B0B0B0;
}

.info-box .info-box-stats1 p {
    font-size: 27px;
    margin-bottom: 14px;
    color: #374051;
    font-weight: 300;
}

.info-box .info-box-stats1 {
    float: right;
    margin-top: 5px;
    width: 150px;
}

.info-box .info-box-icon1 {
    float: right;
    margin-left: 55px;
    margin-top: -64px;
}

.info-box .info-box-icon1 i {
    font-size: 31px;
    color: #B0B0B0;
}

.dashboad_card .panel .panel-body {
    border: 2px solid #44444478;
}

.ambala-box {
    width: 100%;
    margin-top: 0 !important;
}

.ambala-box h4 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 10px;
}

.ambala-box h6 {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 10px;
}

.ambala-box p {
    margin-bottom: 0 !important;
    text-align: center;
    font-size: 32px !important;
    font-weight: 600 !important;
}


/* cener student list */

.modal-content {
    padding: 0px 12px 1px 12px;
    width: 421px;
    text-align: center;
}

a {
    cursor: pointer;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

.dataTables_wrapper {
    overflow: auto;
}

.pwd_input {
    padding: 5px 0;
    margin-bottom: 10px;
}

.save_btn {
    padding: 4px 20px;
    margin-right: 1em;
}

.cancel_btn {
    padding: 4px 20px;
}

.reset_btn {
    padding: 4px 20px;
    min-width: 129px;
    max-width: 129px;
    width: 129px;
}

table th,
td {
    font-size: 13px;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
    margin: 6px 0px 0 17px;
}


/* change password */

.message {
    color: #FF0000;
    text-align: center;
    width: 100%;
}

.txtField {
    padding: 5px;
    border: #fedc4d 1px solid;
    border-radius: 4px;
}

.required {
    color: #FF0000;
    font-size: 12px;
    font-family: italic;
    padding-left: 2px;
}

.text {
    width: 200px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #d4d4d4;
    color: #333;
    display: block;
    font-size: 1em;
    margin: 0 0 4px;
    outline: medium none;
    padding: 0.5em 9px;
}

.control-label {
    text-align: left !important;
    font-size: 15px;
    font-weight: 500;
}

.submit_btn {
    padding: 8px 20px;
    text-align: center;
    background-color: #34425a;
    color: #fff;
    font-size: 14px;
    border: none;
    border-radius: 4px;
}

@media only screen and (max-width: 768px) {
    .panel {
        margin: 0px 0em;
    }
}


/* rec register student */

.widget {
    margin: 15px auto;
    display: flex;
    width: 54%;
    /* border: 2px solid #ebe7e7; */
    padding: 10px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 4px;
}

.succe_text {
    font-size: 18px;
    font-weight: 500;
    padding: 14px;
}

#ereceipt .table th,
#ereceipt .table td {
    font-size: 14px;
    text-align: left;
}

#ereceipt .table .column_four strong,
#ereceipt .table .column_four em {
    font-weight: 500;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

.mandatory {
    color: red;
}

.mobileNoDiv {
    width: 50%;
    margin: 0 auto;
}

.mandatory {
    color: red;
    font-size: 15px;
}

#otpForm {
    display: none;
}

#getOtpForm {
    display: block;
}

.formRegister {
    width: 100%;
    display: none;
}

.formRegister .formRows {
    width: 100%;
}

.formRows {
    width: 100%;
    float: left;
}

.formRows .rowEmailPass {
    width: 33%;
    float: left;
}

.formRows .rowEmailPass label {
    width: 90%;
}

.formRows .rowEmailPass input {
    width: 90%;
}

.formRows .rowEmailPass input:focus {
    border: 1px solid #FF5722;
}

.formRows .rowEmailPass select {
    width: 90%;
}

.formRows .rowEmailPass select:focus {
    border: 1px solid #FF5722;
}

.formRows .rowSubmitButton {
    text-align: center;
}

.formRows .rowSubmitButton input {
    width: 150px;
    font-size: 22px;
    padding: 0px 0px 0px 0px;
}

.formRowsExam {
    width: 100%;
    float: left;
}

.formRowsExam .rowExam {
    width: 25%;
    float: left;
}

.formRowsExam .rowExam label {
    width: 90%;
}

.formRowsExam .rowExam select {
    width: 90%;
}

.formRowsExam .rowExam select:focus {
    border: 1px solid #FF5722;
}

@media(max-width:768px) {
    .mobileNoDiv {
        width: 100%;
    }
    .formRows .rowEmailPass {
        width: 100%;
    }
    .formRowsExam .rowExam {
        width: 100%;
    }
}

#cmbExams {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

select [id="cmb_city"],
[id="cmbPlans"],
[id="cmbSubject"] {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}


/* MY NEW CSS */

section.dropdown_section {
    float: left;
    width: 100%;
    margin-bottom: 2em;
    margin-top: 2em;
}

section.dropdown_section h4 {
    text-align: center;
}

section.dropdown_section select {
    margin-bottom: 1em;
}

label {
    text-align: center;
}


/* NEW CSS */

section.register_section {
    float: left;
    width: 100%;
    margin: 1em 0;
}

section.register_section h4 {
    font-size: 16px;
    font-weight: bold;
}

section.register_section select {
    margin-bottom: 1em;
}

section.register_section label {
    padding: 8px 0;
}

div.form-group #cmb_city {
    padding: 6px 10px !important;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.mobileNoDiv {
    width: 60%;
    margin: 0 auto;
}

.mandatory {
    color: red;
    font-size: 15px;
}

#otpForm {
    display: none;
}

#getOtpForm {
    display: none;
}

.formRegister {
    width: 100%;
    display: none;
}

.formRegister .formRows {
    width: 100%;
}

.formRows {
    width: 100%;
    float: left;
}

.formRows .rowEmailPass {
    width: 33%;
    float: left;
}

.formRows .rowEmailPass label {
    width: 90%;
}

.formRows .rowEmailPass input {
    width: 90%;
}

.formRows .rowEmailPass input:focus {
    border: 1px solid #FF5722;
}

.formRows .rowEmailPass select {
    width: 90%;
}

.formRows .rowEmailPass select:focus {
    border: 1px solid #FF5722;
}

.formRows .rowSubmitButton {
    text-align: center;
}

.formRows .rowSubmitButton input {
    width: 150px;
    font-size: 22px;
    padding: 0px 0px 0px 0px;
}

.formRowsExam {
    width: 100%;
    float: left;
}

.formRowsExam .rowExam {
    width: 25%;
    float: left;
}

.formRowsExam .rowExam label {
    width: 90%;
}

.formRowsExam .rowExam select {
    width: 90%;
}

.formRowsExam .rowExam select:focus {
    border: 1px solid #FF5722;
}

@media(max-width:768px) {
    .mobileNoDiv {
        width: 100%;
    }
    .formRows .rowEmailPass {
        width: 100%;
    }
    .formRowsExam .rowExam {
        width: 100%;
    }
}

td.top_border {
    border-top: none !important;
    font-size: 14px;
}

td.bottom_border {
    border-bottom: 1px solid #ddd !important;
    font-size: 18px;
    font-weight: bold;
}

.column_four {
    width: 33.33%;
}

#recRegisterUser .instruction_rule {
    border: 1px solid #000;
    padding: 7px;
    width: 84%;
    margin-left: 145px;
}

#recRegisterUser .instruction_rule span {
    margin-left: 30px;
}

.tick_tutori {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 2px;
}

.tick_tutori img {
    width: 15px;
    margin-left: -14px;
    position: relative;
    top: 4px;
}

.tick_tutori span {
    color: black;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    top: 6px;
}

.form-control {
    color: #9999a3 !important;
}

.form-horizontal .control-label {
    text-align: left !important;
}


/* reg all student list */

#modal-content {
    width: 60%;
}

.error {
    width: 100%;
    text-align: center;
    padding: 7px;
    color: #fff;
    background: red;
}

.success {
    width: 100%;
    text-align: center;
    padding: 7px;
    color: #fff;
    background: green;
}

#studentsList {
    font-size: 13px;
}

.profile-img {
    width: 100%;
    object-fit: contain;
}

.profileTmgModel {
    max-width: 500px;
    /* max-height: 400px; */
    display: flex;
    margin: 0 auto;
    overflow: hidden;
}


/* center message */

.font_space {
    padding-bottom: 15px;
}

.modal-footer {
    background: #5f808f;
}

.font_bolder {
    font-weight: bolder;
}

.modal-header+.modal-body {
    padding: 20px;
    font-size: 16px;
}

.modal-header {
    color: #fff;
    background: #5f808f;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.update_center {
    font-weight: bolder;
    text-align: center;
    font-size: 22px;
}


/* center list */

.modal-footer {
    background: #344259;
}

.modal-header+.modal-body {
    padding: 5px 20px;
    font-size: 16px;
}

.modal-header {
    color: #fff;
    background: #344259;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.update_center {
    letter-spacing: 1;
    font-weight: 500;
    text-align: center;
    font-size: 20px;
}

.input_pad {
    padding: 6px;
}

.modal_close {
    float: right;
    margin: -4px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
}

.details_update {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.details_th {
    font-size: 14px;
    text-align: left;
    padding: 6px;
}

.space_file {
    margin: 14px 0;
}

.submit_center {
    margin: -15px auto !important;
    display: block;
}