@charset "utf-8";
/* CSS Document */
html, body {
	padding:0;
	margin:0;
	font-family: arial;
	font-family: system-ui;
	background:#fafafa;
}
.menubar_holder {
    text-align: center;
    font-size: 0;
    -webkit-box-shadow: 0px 0px 5px -1px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px -1px rgb(0 0 0 / 75%);
    z-index: 2;
    top:0;
	position: relative;
    position: sticky;
    background: white;
}
.clearfix {
	clear:both;
}
a {
	text-decoration:none;
	color:black;
}
nav.menubar {
    margin: 0 auto;
    padding: 2.5px 10px;
}
.logo {
	float:left;
    display: inline-block;
    max-width: 300px;
}
.logo_image {
    height: 55px;
    display: inline-flex;
    vertical-align: middle;
    padding: 0 2.5px;
}

.institution_name {
    display: inline-flex;
    font-size: 15px;
    vertical-align: middle;
    padding: 10px 2.5px;
	font-weight: 600;
}
.user_logo {
    float: right;
    display: inline-block;
    max-width: 300px;
	padding: 3px;
}
.user_image {
    height: 40px;
    display: inline-flex;
    vertical-align: middle;
    padding: 0;
}

.logo_image img {
    max-width: 55px;
    max-height: 55px;
}

.user_image img {
    max-width: 40px;
    max-height: 40px;
    padding: 0 2.5px;
    border-radius: 50%;
}

.user_details {
    vertical-align: middle;
    padding: 10px 2.5px;
    text-align: left;
    display: inline-block;
}

.user_name h2 {
    font-size: 13px;
    margin: 0;
    padding: 0;
}

.user_designation h4 {
    font-size: 11px;
    margin: 0;
    padding: 0;
}
.side_menubar_holder {
    top: 0;
    width: 220px;
    position: fixed;
    padding: 70px 0 10px;
    -webkit-box-shadow: 0px 0px 5px -1px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px -1px rgb(0 0 0 / 75%);
    background: #f0f0f0;
	bottom:0;
}
.side_menubar_logo img {
    width: 25%;
}
.side_menubar_logo {
	text-align: center;
}
.side_menubar_holder .institution_name {
    padding: 5px 2.5px 10px;
}
.side_menus .side_menu {
	display: block;
    padding: 10px;
    cursor: pointer;
    transition: all 0.5s;
    font-size: 14px;
}
.side_menus .side_menu:hover {
	background:white;
	padding:10px 20px;
}
.body {
	padding: 10px 10px 10px 230px;
	min-height: 80vh;
	min-height: calc(100vh - 115px);
}
.body_header h2 {
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #616161;
    margin-bottom: 10px;
    font-size: 15px;
}
.payment_icon_hoder {
    background: #6a3fd3;
    color: white;
    border-radius: 5px;
	display: inline-block;
	margin: 2.5px;
}
a.payment_icon {
    padding: 5px 10px;
    display: block;
    margin: 5px;
	color:white;
}
.icon p {
	margin:0;
	padding: 0;
}
.loginform, .dataform {
    width: 90%;
    max-width: 400px;
    border: 1px solid #ccc;
    padding: 2%;
    margin: 10vh auto 0;
    -webkit-box-shadow: 0px 0px 12px 0px rgb(204 204 204);
    -moz-box-shadow: 0px 0px 12px 0px rgba(204,204,204,1);
    box-shadow: 0px 0px 12px 0px rgb(204 204 204);
    background: white;
    position:relative;
}
p.cancelled {
    font-size: 92px;
    right:0;
    position: absolute;
    top: 25%;
    left: 0;
    text-align: center;
    border: 5px double red;
    color: red;
    transform: rotate(50deg);
    opacity:0.4;
}
.loginform h2, .dataform h2 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #06213d;
}
.loginform .input, .report_form .input {
    position: relative;
    height: 50px;
    margin: 20px 5px;
}
.loginform .input label, .report_form .input label {
    position: absolute;
    top: -10px;
    left: 10px;
    background: white;
    z-index: 1;
    font-size: 14px;
    padding: 0 10px;
    color: gray;
}
.input input, .input select, .input textarea {
    border: 1px solid #ccc;
    padding: 10px 10px 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    width:-webkit-fill-available;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    background: white;
}
.textarea {
    border: 1px solid #ccc;
    padding: 10px 10px 5px;
    position: relative;
    width: 100%;
    width:-webkit-fill-available;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    background: white;
}
.report_form .input {
    display:inline-block;
    width:100%;
    max-width:250px;
    vertical-align: middle;
}
.report_form .input.textarea {
    height: 200px;
}
.report_form button, .loginform button, .exportbutton, .submit {
    padding: 5px 10px;
    background: #6a3fd3;
    color: white;
    border: 2px dashed #6a3fd3;
    margin: 5px;
    vertical-align: middle;
    cursor: pointer;
    font-size: 11px;
    border-radius: 5px;
}
.input select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.helpline {
    font-size: 11px;
    margin: 10px;
}
h3.statusfailed, h3.statussuccess {
    font-size: 13px;
    text-align: center;
}
.backgroundred {
    background:red;
    color:white;
    padding:5px;
    display: inline-block;
}
h3.statusfailed {
    color: red;
}
h3.statussuccess {
    color: green;
}
.user_image h1 {
    font-size: 20px;
    line-height: 0;
    background: #6a3fd3;
    color: white;
    padding: 20px 15px;
    margin: 0px 10px;
    border-radius: 50%;
}
.sliptable, .dasboard_history, .tablewidtht100percent {
    width:100%;
    border-collapse:collapse;
}
.student_report {
    border-collapse:collapse;
    border-radius: 5px;
    overflow: hidden;
    margin: 5px;
    display: inline-grid;
    vertical-align: top;
}
.sliptable tr {
    border:1px dashed black;
}
.sliptable th, .dasboard_history th, .sliptable td, .dasboard_history td, .student_report td, .student_report th, .tablewidtht100percent th, .tablewidtht100percent td {
    padding:10px;
}
.dasboard_history, .student_report {
    border-radius:5px;
    overflow:hidden;
}
.dasboard_history th, .student_report th, .tablewidtht100percent th {
    background:#e6e6e6;
}
.dasboard_history th, .dasboard_history td, .student_report th, .student_report td, .tablewidtht100percent th, .tablewidtht100percent td {
    font-size:12px;
    border:1px solid #d8d8d8;
}
.tablewidtht100percent th {
    white-space: pre;
}
.stickit:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    border-bottom: 1px solid;
    top: 50%;
}
.stickit {
    position: relative;
}
.dasboard_history tr:nth-child(odd), .student_report tr:nth-child(odd), .tablewidtht100percent tr:nth-child(odd) {
    background:#fff;
}
.fee_report td:nth-child(3), .sliptable td:nth-child(3), .dasboard_history td:nth-child(5) {
    text-align:right;
}
.dataform {
    width: 700px;
    max-width: 700px;
    margin: 40px auto;
    page-break-after:always;
    padding: 10px;
}
.dataform table {
    width: 100%;
}
.dataform table td {
    padding: 10px 0;
    font-size: 14px;
}
.dataform table span {
    float: right;
    margin-right: 20px;
    font-weight: 600;
}
.dataform .table {
    border: 1px solid #f2f2f2;
    border-collapse: collapse;
    margin: 20px auto;
}
.dataform .table td, .dataform .table th {
    border: 1px solid #f2f2f2;
    font-size: 13px;
    padding: 5px 10px;
}
.dataform .table th {
    font-weight: 100;
    text-align: left;
}
.dataform .table td {
    font-weight: 600;
}
.dataform .table th.total {
    border-top: 1px double black;
    font-weight: 900;
}
.body_elem .side_menubar_holder {
    display: none;
}
.dataform .table td:nth-child(3) {
    text-align: right;
}
.middle_information {
    text-align: center;
    color: crimson;
    font-size: 18px;
    font-weight: 400;
}
.payment_slip_header {
    margin: 0 auto;
    max-width: 1050px;
    font-weight: 100 !important;
    font-size: 14px;
    outline: 0;
    background: #fff;
    padding: 10px 20px;
    display:none;
}
.payment_slip_header {
    position: relative;
}
.payment_slip_header .logoimg {
    float: left;
    max-width: 20%;
    max-height: 80px;
    padding: 10px 0;
    cursor: pointer;
}
.payment_slip_header .nam {
    float: left;
    padding: 10px 2%;
}
.payment_slip_header .nam h3 {
    font-size: 25px;
    text-shadow: 0 1px 15px rgb(0 0 0 / 50%);
    margin: 0;
    padding: 0;
    color: #06213d;
    cursor: pointer;
}
.payment_slip_header p {
    margin: 0 auto;
    padding: 2px 0;
    color: #081e36;
    font-size: 12px;
}
.hideit {
    display:none !important;
}
.registration_form {
    font-weight: 100;
    width: 100%;
    max-width:1000px;
    margin:0 auto;
}
.sectionsdevided {
    margin: 0 auto;
    width: 100%;
}
p, ul, ol, td {
    font-size: 13px;
}
.application_form tr {
    width:32.33333%;
    display:inline-grid;
}
.signaturetable .documentuploaded img {
    max-height:75px;
}
.application_form tr.tablesubheading, .registration_form tr.tablesubheading {
    display: table-row;
    background: #3cba54;
    font-weight: 600;
    color: white;
}
.registration_form tr {
    display: inline-grid;
    background: #ffa791;
    margin: 0.5%;
    border-radius: 5px;
    width: 32.3333333%;
    position: relative;
    -webkit-box-shadow: 0px 1px 5px -3px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 1px 5px -3px rgba(0,0,0,0.75);
    box-shadow: 0px 1px 5px -3px rgb(0 0 0 / 75%);
}
.application_form tr {
    background:none;
}
.application_form {
    max-width: 1100px;
    margin: 0 auto;
    page-break-after: always;
}
.application_form td:first-child, .registration_form td:first-child, .registration_form .valueinputs {
    padding: 5px;
}
.registration_form .valueinputs {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 0 0 5px 5px;
    box-sizing: border-box;
}
.registration_form select.valueinputs {
    width: 100%;
}
.application_form .sectionsdevided:nth-child(even) tr.tablesubheading, .registration_form .sectionsdevided:nth-child(even) tr.tablesubheading {
    background: #4296fc;
}
.registration_form .sectionsdevided:nth-child(even) tr {
    background: #c3d3e6;
}
tr.documentuploaded {
    max-width: 135px;
    float: left;
    padding: 10px;
}
.documentuploaded img {
    width:100%;
}
.firstdeclaration input[type=checkbox], .valuecheckbox {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border: 1px solid #d8d8d8;
    border-radius: 0 0 5px 5px;
}
.selectedimage {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55px;
}
.selectedimage img {
    max-height: 100%;
    max-width: 140px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.registration_form .sectionsdevided tr.submittr {
    display: table-row;
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.checkbox_holder, .checkbox_holder2 {
    border:1px solid #d8d8d8;
    border-radius:10px;
    padding:10px;
}
.scrollover {
    overflow:auto;
}
label {
    display:inline-block;
}
.checkbox_holder label {
    display:inline-block;
    width:140px;
}
.checkbox_holder2 label {
    display:inline-block;
    width:initial;
}
.checkbox_holder label span, .checkbox_holder2 label span {
    display:inline-block;
    vertical-align:middle;
}
.checkbox_holder2 .checkbox_title {
    margin:0 5px;
}
.listtable {
    width: 100%;
    width: -webkit-fill-available;
    margin: 0 auto;
}
.pointer {
    cursor: pointer;
}
.numbertable {
    width: 50px;
}
.datetable {
    width: 75px;
    text-align: center;
}
.particularsfield {
    width: -webkit-fill-available;
    padding: 5px;
}
.listtable td, .listtable th {
    padding: 5px;
    border-collapse: collapse;
    border: 1px solid #d8d8d8;
    position: relative;
}
.listtable tr:nth-child(odd){
    background:white;
}
.marksheet_report_table .marksheet_report {
    border:2px solid #787878 !important;
}
.dataformtoprint {
    overflow:auto;
}
.menuicon {
    display:none;
}
.gg-arrow-left {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px
}
.gg-arrow-left::after,
.gg-arrow-left::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px
}
.gg-arrow-left::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    transform: rotate(45deg);
    bottom: 7px;
    border-color:white;
}
.gg-arrow-left::before {
    width: 16px;
    height: 2px;
    bottom: 10px;
    background: white;
}
.closearrowbuttholder {
    display:none;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    background: #6a3fd3;
    border-radius: 5px;
}
.request_status {
    padding: 2.5px;
    width: 75px;
    border-radius: 5px;
}
.table_holder > tbody > tr > td {
     vertical-align: top;
}
.table_holder > tbody > tr > td table{
    width:100%;
    display:inline-table;
}
.pay_id {
    word-break: break-all;
    min-width: 150px;
}
.gateway-disclaimer {
    color: firebrick;
    font-weight: 700;
    margin-bottom: 0;
}
.copyright {
    text-align:center;
    font-size:13px;
    padding:5px 10px;
    font-weight:600;
}
.eye {
    width: 15px;
    vertical-align: middle;
}
.purple_color_background {
    background:purple;
}
.grey_color_background {
    background:grey;
}
.identity_card {
    font-size:0;
}
.identity_card div {
	font-family: myFirstFont;
}
.identity_card lable {
	font-size:10px;
}
.identity_card p {
	margin:3px 0;
	padding:0;
	font-size:11px;
	font-weight:900;
}
.identity_card .div1 {
	background:white;vertical-align:top;text-align:left;display:inline-block;margin:0;font-size:15px;width:320px;height:219px;border: 1px solid black;line-height:1;position:relative;margin:1px;page-break-after: avoid;page-break-inside:avoid;
}
.identity_card .div02{
	background-size:100%;background-position:0 135px;background-color:rgba(7, 34, 54);
}
.identity_card .div2 {
	background:rgba(7, 34, 54,0.70);height:70px;position:relative; padding-top:4px;
}
.identity_card .div3 {
	margin:0 0 0 0;color:white;font-size:13px;text-align:center;position:relative;width:100%; margin-top:6px;
}
.identity_card .futa {
	padding-top:16px;
	position:relative;
	width:16px;
	margin:0 auto;
	border:1px solid #fff;
	border-radius:50%;
}
.identity_card .div3 span {
	font-size:12px;
}
.identity_card .img1 {
	width:50px;margin:5px;height:50px;position:absolute;left:5px;top:-20px;background:#fff;border-radius:5px;
}
.identity_card .div4 {
	height:135px;margin-top:0px;padding-left:5px;display:inline-block;vertical-align:top;
}
.identity_card .img2 {
	width:70px;margin:5px;height:85px;background:white; display:block;position:relative;z-index:1;-webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
}
.identity_card .img3 {
	width:80px;height:25px;display:block;
}
.identity_card .div5 {
	width:225px;height:115px;margin-top:0px;display:inline-block;
}
.identity_card .div6,.identity_card .div7 {
	background:#610020;position:absolute;color:white;bottom:0;padding:2px;right:0;left:0;
}
.identity_card .div7 {
	top:0;
	bottom:0;
	background:rgba(7, 34, 54);
	padding-top:15px;
}
.identity_card .p1,.identity_card .p2 {
	font-size:9px;
	min-height:9px;
	overflow:hidden;
	white-space: pre;
}
.identity_card .p2 {
	padding:0 10px 0 0;
}
.identity_card ul {
	margin:0;
	padding:10px 20px;
	font-size:13px;
	border:2px solid #fff;
	border-radius:10px;
}
.identity_card ul li {
	padding:5px 0;
}
.identity_card .gap {
	padding:2px;
}
.identity_card .yr {
	color:white;
	font-size:10px;
}
.identity_card .yr span {
	border:1px solid white;
	padding:3px;
}
.yr span:nth-child(1){
	background:#1a630f;
}
.identity_card .yr span:nth-child(2){
	background:#4035b8;
}
.identity_card .yr span:nth-child(3){
	background:#ff5a30;
}
.identity_card .img4 {
	max-width: 65px;
    max-height: 30px;
    display: block;
    margin: 0 auto 5px;
}
.identity_card .toborder{
	border-top:1px solid;
	padding-top:2.5px;
	margin-top:2.5px;
}
.identity_card .signarea {
    min-width: 60px;
    display: block;
}
.identity_card .sign {
	padding-top: 2px;
    margin-top: -25px;
    font-size: 10px;
    right: 10px;
    position: absolute;
    bottom: 20px;
    text-align: center;
}
.identity_card .div8 {
	width:270px;
	margin:0 auto;
}
.identity_card .div8 p {
	padding:2px;
}
.identity_card .h31 {
	text-align:center;
	margin:0 0 5px;
	padding:0;
}
.identity_card td {
	border:1px solid;
	font-size:10px;
	font-weight:600;
}
.identity_card table {
	border-collapse:collapse;
}
.id_card_no {
    display: inline-block;
    color: white;
    right: 5px;
    position: absolute;
    top: 5px;
}
.identity_card .div1_layout_1 {
    vertical-align: top;
    text-align: left;
    display: inline-block;
    margin: 0;
    font-size: 15px;
    width: 270px;
    height: 400px;
    border: 1px solid black;
    line-height: 1;
    position: relative;
    margin: 1px;
    page-break-after: avoid;
    background: #fff;
    page-break-inside:avoid;
}
.identity_card .div02_layout_1 {
    background-size: 100% 100% !important;
    background-position: 0 135px;
    background: linear-gradient(#0083ff, rgba(7, 34, 54));
    border-radius: 0 0 0 0;
    overflow: hidden;
}
.identity_card .div2_layout_1 {
    background: rgba(7, 34, 54,0.70);
    height: 145px;
    position: relative;
    padding-top: 4px;
}
.identity_card .div3_layout_1 {
    margin: 0 0 0 0;
    color: white;
    font-size: 13px;
    text-align: center;
    position: relative;
    width: 100%;
    margin-top: 3px;
}
.identity_card .img1_layout_1 {
    width: 50px;
    margin: 5px;
    height: 50px;
    position: absolute;
    left: 2.5px;
    top: 0;
    background: #fff;
    border-radius: 5px;
}
.collegename {
    margin-left: 65px;
    margin-right: 5px;
    text-align: left;
    font-size:16px;
}
.identity_card .div3_layout_1 span {
    font-size: 11px;
}
.identity_card .div4_layout_1 {
    padding-left: 5px;
    display: block;
    vertical-align: top;
    margin: -65px auto 0;
}
.identity_card .img2_layout_1 {
    width: 90px;
    margin: 5px auto;
    height: 100px;
    background: white;
    padding: 5px;
    display: block;
    position: relative;
    z-index: 1;
    border: 5px solid rgba(7, 34, 54);
    -webkit-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 75%);
}
.identity_card .div5_layout_1 {
    padding: 0 10px;
    margin-top: 0px;
    display: inline-block;
}
.identity_card p.otherlables_layout_1 {
    margin: 3px 0;
    padding: 0;
    font-size: 13px;
    font-weight: 900;
}
p.otherlables_validity {
    text-align: center;
    font-weight: inherit;
}
.identity_card .div6_layout_1, .identity_card .div7_layout_1 {
    position: absolute;
    color: white;
    bottom: 0;
    padding: 5px;
    left: 0;
}
.identity_card .img3_layout_1 {
    width: 150px;
    height: 30px;
    display: block;
    margin: 0 auto;
}
.identity_card .div7_layout_1 {
    top: 0;
    bottom: 0;
    background: linear-gradient(#004990, rgba(7, 34, 54));
    padding-top: 15px;
}
img.img5_layout_1 {
    width: 100px;
    margin: 37px auto;
    height: 100px;
    background: #fff;
    border-radius: 5px;
    display: block;
}
img.img6 {
    margin: 9px auto 9px;
    display: block;
    width: 250px;
}
img.img7 {
    margin: 9px auto;
    display: block;
    width: 250px;
}
.identity_card .sign_layout_1 {
    right: 0px;
    padding-top: 2px;
    margin: -5px 5px 0;
    font-size: 10px;
    width: 105px;
    text-align: center;
    position: absolute;
    bottom: 5px;
}
.identity_card .img4_layout_1 {
    max-width: 100px;
    max-height:30px;
    display: block;
    margin: 0 auto 0;
}
.displayblock {
    display:block;
}

.find_courses {
    top:-20px !important;
    height:250px;
    z-index:2;
}
.find_courses option {
    white-space:pre-line;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
}
.find_courses option:hover {
    background:#121f29;
    color:white;
}
.hidemenubar {
    left:-230px;
}
.fullscalebody {
	padding: 10px;
}
.side_menubar {
    overflow: auto;
    height: 100%;
}
.fulscreenholder {
  top:0;
  bottom:0;
  right:0;
  left:0;
  position:fixed;
  background:rgba(0,0,0,0.5);
  z-index:4;
}
.invisiblebackground {
  top:0;
  bottom:0;
  right:0;
  left:0;
  position:fixed;
}
.positioningmiddle {
	margin:10vh auto 0;
    max-width:500px;
    width:80%;
    position:relative;
}
.mainholder {
	left:0;right:0;
    border-radius:10px;
    padding:10px;
    background:white;
    overflow:hidden
}
.boxlabel {
	background:#d7d7d7;
    color:#333;
    font-size:17px;
    margin:-10px -10px 10px;
    text-align:center;
    padding:10px;
}
.closep {
  position: absolute;
  right: 10px;
  top: -25px;
  width: 20px;
  height: 20px;
  opacity: 0.9;
}
.closep:hover {
  opacity: 1;
}
.closep:before, .closep:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #333;
}
.closep:before {
  transform: rotate(45deg);
}
.closep:after {
  transform: rotate(-45deg);
}
.textaligncenter {
    text-align:center !important;
}
.textalignleft {
    text-align:left !important;
}
.textalignright {
    text-align:right !important;
}
.borderleftbottomright {
    border-bottom:1px solid black !important;
    border-right:1px solid black !important;
    border-left:1px solid black !important;
}
.widthinherit {
    width:inherit !important;
    display:block !important;
}
.verticalalignmiddle {
    vertical-align:middle;
}
.stylecheckboxindependent {
    width:20px;
    height:20px;
    padding:3px;
    display:inline-block;
}
.styletextindependent {
    padding:3px;
    margin:5px 0 0;
    display: block;
}
.styletextareaindependent {
    width:-webkit-fill-available;;
    padding:3px;
    height:150px;
    display: block;
    margin:5px 0 0;
}
.page-break-inside {
    page-break-inside:avoid;
}
.container{
    max-width:1100px;
    margin:0 auto;
}
.exam_body {
    padding:10px;
}
.textfield {
    padding:5px;
    width:200px;
    vertical-align:middle;
    color:#e88527;
    font-weight:600;
    border:1px solid #dedede;
}
.inputform label{
    display:inline-block;
    width:350px;
    margin:5px;
    position:relative;
}
.inputform b {
    vertical-align:middle;
    font-size:12px;
}
.logoimage {
    width:80px;
    height:80px;
    display:inline-block;
    vertical-align:middle;
}
.inputform h4 {
    text-align:center;
}
.hide {
    display:none !important;
}
.floatright{
    float:right;
}
.instructions {
    font-size: 0;
    border-bottom: 1px solid #dedede;
    padding: 20px;
}
.instructionholder {
    display: inline-block;
    width: 80%;
    width: calc(100% - 200px);
    font-size: 13px;
    min-height: 150px;
    vertical-align: bottom;
}
.instructionholder .pp {
    padding: 0 10px;
    min-height: 130px;
    border-right: 1px solid #dedede;
    width: 95%;
}
.instructionholder .pp ul, .instructionholder .pp p {
    margin:5px;
}
.videoholder {
    width: 200px;
    display: inline-block;
    background: black;
    height: 150px;
}
.videorecorder {
    max-width:200px;
    max-height:150px;
    z-index:2;
}
.scrolled {
    position:fixed;
    top:10px;
    right:10px;
    width:80px;
    transition:all 0.25s;
}
.numbering, .questionpaper {
    max-width:1200px;
    border-top:0;
    margin:0 auto;
}
.questionpaper .answers label {
    display:block;
    cursor:pointer;
    margin: 2.5px 0 2.5px 30px;
    font-size:13px;
    font-weight:600;
}
.questionpaper .question {
    display:block;
    padding:30px 0 10px;
    border-top:1px solid #dedede;
    position:relative;
}
.questionpaper .question p {
    margin:0;
    padding:0;
    font-size:13px;
    font-weight:600;
}
.questionpaper .question:nth-child(1) {
    border:0;
}
.diagram {
    max-width:100%;
    max-height:200px;
}
#dropper {
    position:fixed;
    transition:all 0.5s;
    margin:0 auto;
    padding:10px;
    color:white;
    right:0;
    left:0;
    text-align:center;
    z-index:2;
    bottom:-100%;
}
.fdropper {
    background:red;
    bottom:0 !important;
}
.dropper {
    background:green;
    bottom:0 !important;
}
.numbering a {
    margin: 1px;
    width: 23px;
    text-align: center;
    padding: 10px 5px;
    background-color: #0066ff;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    transition: all 0.5s;
}
.numbering .answered {
    background-color:#36cf54;
}
.numbering .doubt {
    background-color:#e33e0b;
}
.sticknumber {
    position:fixed;
    top:0;
    right:95px;
    left:0;
    padding:5px;
    background:white;
    z-index: 1;
}
.ancor {
    position:absolute;
    margin-top:-150px;
}
#sticknumbersholder {
    margin-bottom:10px;
}
#sticknumbersholder p {
    display: inline-block;
    margin: 0 10px 0 0;
}
.headers {
    text-align:center;
}
.headers h1, .headers h2, .headers h3, .headers h4, .headers h5, .headers h6 {
    margin:10px;
}
#timer {
    text-align:center;
}
#timer span {
    color:#e33e0b;
}
#sticknumbersholder .sticknumber p {
    display:none !important;
}
.cornerit {
    font-size:0;
    position:fixed;
    bottom:0;
    right:0;
    padding:5px;
    background:#a1222e;
    z-index:2;
}
#timer.cornerit span {
    color:white;
}
.cornerit span {
    font-size:13px;
}
@keyframes blinking {
    0% {
        background-color: red;
    }
    50% {
        background-color: maroon;
    }
    100% {
        background-color: red;
    }
}
.blinktimer {
    animation: blinking 2s infinite;
}
.partname {
    background: orangered;
    padding: 10px;
    color: white;
    margin: 50px 0 0 0;
}
.loaderholder {
    position:relative;
    width:0;
    background:red;
    z-index: 5;
}
.loader {
    transition: 0.5s width;
    height: 2px;
    width: 75%;
    box-shadow: 3px -1px 4px 0px red;
    position: fixed;
    border-radius: 5px;
}
.loaded {
    height: 2px;
    width: 75%;
    box-shadow: 3px -1px 4px 0px red;
    position: fixed;
    border-radius: 5px;
}
.completeloader {
    transition: 0.3s width;
    width: 100%;
}
.download_play_store {
    position: fixed;
    top: 5px;
    right: 280px;
    text-align: center;
    font-weight: 600;
    font-family: cursive;
    z-index: 2;
    animation: shake 2s;
    animation-iteration-count: infinite;
}
.download_play_store:after {
  	animation: ring 2s;
}
.download_play_store:before {
  	animation: ring2 2s;
}
.download_play_store:after, .download_play_store:before {
  	box-shadow: 0px 0px 60px 1px red;
    content: "";
    position: absolute;
    border-radius: 50%;
  	animation-iteration-count: infinite;
    z-index:-1;
}
@keyframes shake {
    0% { transform: rotate(-5deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(-5deg); }
}
@keyframes ring {
  0% {
    left: 50%;
    top: 50%;
    width: 0%;
    padding-top: 0%;
  }
  50% {
  	top:-10%;
    left: 15.5%;
    width: 70%;
    padding-top: 70%;
  }
  100% {
    left: 50%;
    top: 50%;
    width: 0%;
    padding-top: 0%;
  }
}
@keyframes ring2 {
  0% {
    left: 50%;
    top: 50%;
    width: 0%;
    padding-top: 0%;
  }
  50% {
  	top:22.5%;
    left: 30%;
    width: 40%;
    padding-top: 40%;
  }
  100% {
    left: 50%;
    top: 50%;
    width: 0%;
    padding-top: 0%;
  }
}
.download_play_store p {
    font-size: 14px;
    margin: 0;
    color: #ffef20;
    text-shadow: 0px 0px 2px black;
}
img.playstore_icon {
    width: 112px;
}
.datetable .particularsfield {
    width: 100px;
}
.note_on_payment_slip {
    font-weight: 600;
    color: #a50101;
    margin: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: justify;
}
.input .opening_balance_type {
    z-index: 0;
    width: 40px;
}
.input .opening_balance {
    width: initial;
    right: 0px;
    left: 45px;
}
.first_header {
    background: #ffeacb !important;
}
.group_td_bold, .bold_option {
    font-weight: 600;
}
.nopaddingtd > td {
    padding:0;
    vertical-align:sub;
}
.nowrap {
    white-space:nowrap;
}
.ledger_statement_opener {
    color: #0068ffdd;
    font-weight: 600;
}
.content-popup button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: rgb(220, 53, 69);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.content-popup div {
    position: relative;
}
.content-popup {
    background: white;
    padding: 50px 20px 20px;
    border-radius: 8px;
    min-width: 150px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
    position: relative;
}
.content-popup-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 12;
}
.content-area {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    white-space:pre-wrap;
}
.content-area p {
    margin: 0 0 10px;
}
.content-area p b {
    min-width: 90px;
    display: inline-block;
    vertical-align:middle;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group select,
.form-group input {
    width: 100%;
    width: -webkit-fill-available;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.SubmitPopupForm {
    padding: 10px 15px;
    margin: 10px 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.SubmitPopupForm {
    background: #6a3fd3;
    color: white;
}
.colobluelink {
    color: #3e98ba;
    font-weight: 500;
}
.spinloader_holder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinloader {
    color: white;
    padding: 20px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
}
.loader_spinner {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
    display: block;
    vertical-align: middle;
    margin: 10px auto;
}
.loader_spinner:before,
.loader_spinner:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}
.loader_spinner:after {
  color: #FF3D00;
  transform: rotateY(70deg);
  animation-delay: .4s;
}
@keyframes rotate {
    0% {
      transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotateZ(360deg);
    }
  }
      @keyframes rotateccw {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(-360deg);
    }
  }
@keyframes spin {
    0%,
    100% {
      box-shadow: .4em 0px 0 0px currentcolor;
    }
    12% {
      box-shadow: .4em .4em 0 0 currentcolor;
    }
    25% {
      box-shadow: 0 .4em 0 0px currentcolor;
    }
    37% {
      box-shadow: -.4em .4em 0 0 currentcolor;
    }
    50% {
      box-shadow: -.4em 0 0 0 currentcolor;
    }
    62% {
      box-shadow: -.4em -.4em 0 0 currentcolor;
    }
    75% {
      box-shadow: 0px -.4em 0 0 currentcolor;
    }
    87% {
      box-shadow: .4em -.4em 0 0 currentcolor;
    }
}
@media print {
    html,body {
        background:none;
    }
    .body {
        padding:0;
    }
    .dataform {
        margin:0;
        width:inherit;
        border: 0;
        -webkit-box-shadow: 0;
        -moz-box-shadow: 0;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    .copyright, .hideonprint, .body_header {
        display:none;
    }
    .payment_slip_header {
        display:inherit;
    }
}
@media screen and (max-width: 600px) {
    .institution_name, .user_details {
        display:none;
    }
    .body_header h2 {
        font-size:14px;
    }
    .listtable, label, .listtable select, .listtable input {
        font-size:12px;
    }
    .side_menubar_holder {
        left:-230px;
        transition:all 0.3s;
        padding-top:45px;
        z-index:3;
    }
    .body {
        padding: 10px;
    }
    .menuicon {
        display:inline-block;
        vertical-align:middle;
        cursor:pointer;
    }
    .menuicon div {
        width: 20px;
        height: 2px;
        background-color: #6a3fd3;
        margin: 6px 0;
    }
    .menuicon div:nth-child(2) {
        width: 30px;
    }
    .logo_image {
        height: 40px;
        margin-right: 25px;
    }
    .user_image h1 {
        font-size: 10px;
        padding: 15px 10px;
    }
    .user_image {
        height: 30px;
    }
    .side_menubar_holder.dothemagic {
        left:0;
    }
    .closearrowbuttholder {
        display:block;
    }
    .application_form tr, .registration_form tr {
        margin: 1%;
        width: 98%;
    }
    .table_holder > tbody > tr > td {
         display:block;
    }
    .download_play_store {
        right: 70px;
    }
    .download_play_store p {
        display:none;
    }
    @keyframes ring {
      0% {
        left: 50%;
        top: 50%;
        width: 0%;
        padding-top: 0%;
      }
      50% {
      	top:-55%;
        left: 15.5%;
        width: 70%;
        padding-top: 70%;
      }
      100% {
        left: 50%;
        top: 50%;
        width: 0%;
        padding-top: 0%;
      }
    }
    @keyframes ring2 {
      0% {
        left: 50%;
        top: 50%;
        width: 0%;
        padding-top: 0%;
      }
      50% {
      	top:-12.5%;
        left: 30%;
        width: 40%;
        padding-top: 40%;
      }
      100% {
        left: 50%;
        top: 50%;
        width: 0%;
        padding-top: 0%;
      }
    }
}
@media screen and (max-width: 300px){
    .download_play_store:after, .download_play_store:before {
      	box-shadow: 0px 0px 20px 1px red;
    }
    .download_play_store_logo_holder {
        width: 33px;
        overflow: hidden;
        border-radius: 4px;
        height: 33px;
    }
    @keyframes ring {
      0% {
        left: 50%;
        top: 50%;
        width: 0%;
        padding-top: 0%;
      }
      50% {
      	top:0%;
        left: 0.5%;
        width: 100%;
        padding-top: 100%;
      }
      100% {
        left: 50%;
        top: 50%;
        width: 0%;
        padding-top: 0%;
      }
    }
    @keyframes ring2 {
      0% {
        left: 50%;
        top: 50%;
        width: 0%;
        padding-top: 0%;
      }
      50% {
      	top:12.5%;
        left: 10%;
        width: 70%;
        padding-top: 70%;
      }
      100% {
        left: 50%;
        top: 50%;
        width: 0%;
        padding-top: 0%;
      }
    }
}