﻿html {
    font-family: sans-serif;
}
/*Max width before this PARTICULAR table gets nasty
        This query will take effect for any screen smaller than 760px
        and also iPads specifically.
        */

/*#trFullNameEnglish
{
    animation: fadein ease-in 2s;
    animation-fill-mode: forwards;
}*/

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

.modal {overflow-y: hidden !important; }
/*@media only screen and (min-width: 300px) , (min-device-width: 400px) {
   .menubartitle{margin-top: 3vw !important;}
}

@media only screen and (min-width: 401px) , (min-device-width: 600px) {
   .menubartitle{margin-top: 1vw !important;}
}

@media only screen and (min-width: 600px) , (min-device-width: 800px) {
   .menubartitle{margin-top: 0.3vw !important;}
}*/

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1000px) {

    /*.body-content {margin-top: 4%;}*/

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
        tbody tr {width: 100%;}
    td {
        /* Behave  like a "row" */
        border: none;
        /*border-bottom: 1px solid #eee;*/
        position: relative;
        margin-left:5%;
    }

     .lblhead {
    width:100%;
    margin-top:15%;
    }

    table {
        margin-left: -3%;
        
    }

     /*Exam Table   ---Starts Here ---- */
         #ChronologyAccountDetails tr {
            display: block;
        }
        /* Hide table headers (but not display: none;, for accessibility) */
        #ChronologyAccountDetails thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

        #ChronologyAccountDetails td {
            /* Behave  like a "row" */
            border: none;
            /*border-bottom: 1px solid #eee;*/
            position: relative;
            margin-left:5%;
            margin-left: 2%;
            margin-right: 2%;
        }

        #ChronologyAccountDetails tr:nth-of-type(even) {background: #eee;}
        #ChronologyAccountDetails td:nth-of-type(1):before { content: "Enrol No."; }
        #ChronologyAccountDetails td:nth-of-type(2):before { content: "Months";}
        #ChronologyAccountDetails td:nth-of-type(3):before { content: "Year"; }
        #ChronologyAccountDetails td:nth-of-type(4):before { content: "Examination";}
        #ChronologyAccountDetails td:nth-of-type(5):before { content: "Roll No."; }
        #ChronologyAccountDetails td:nth-of-type(6):before { content: "College Result";}
    /*Exam Table  ---Ends Here*/

   
   
}



/*#MainBody {
    position:relative;
}*/

#page-wrap {
    /*margin: 50px;*/ 
    /*Disturb mobile compatibility*/
}

p {
    margin: 20px 0;
}

td.lblhead {margin-top:2%;color:#222222;}

/* 
Generic Styling, for Desktops/Laptops 
*/


table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    
}
.show-view {
    display: none;
    animation: fadein ease-in 0.5s;
    animation-fill-mode: forwards;
}



input[type="text"],input[type="number"],input[type="month"],input[type="date"],input[type="email"]{
        border-bottom: solid 1px #D0CFCF;
        border-top: none;
        border-left: none;
        border-right: none;
        width: 100%;
        outline: none;    
        padding: 0px 5px;     
    }

input[type="number"]:focus {
        border-bottom: solid 1px #3AA1F3;
    }
input[type="month"]:focus {
        border-bottom: solid 1px #3AA1F3;
    }
input[type="text"]:focus {
        border-bottom: solid 1px #3AA1F3;
    }
input[type="date"]:focus {
        border-bottom: solid 1px #3AA1F3;
    }
input[type="email"]:focus {
        border-bottom: solid 1px #3AA1F3;
    }

select {
        border-bottom: solid 1px #E5E5E5;
        border-top: none;
        border-left: none;
        border-right: none;
        width: 100% !important;
       outline: none;
    }

select:before {content:":"}




/*Switch ===============================================*/
.switch {
	position: relative;
	display: block;
	vertical-align: top;
	width: 100px;
	height: 30px;
	padding: 3px;
	margin:0;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
	/*border-radius: 18px;*/
	box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
	cursor: pointer;
}
.switch-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.switch-label {
	position: relative;
	display: block;
	height: inherit;
	font-size: 10px;
	text-transform: uppercase;
	background: #eceeef;
	border-radius: inherit;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
}
.switch-label:before, .switch-label:after {
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.switch-label:before {
	content: attr(data-off);
	right: 11px;
	color: #aaaaaa;
	text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
	content: attr(data-on);
	left: 11px;
	color: #FFFFFF;
	/*text-shadow: 0 1px rgba(0, 0, 0, 0.2);*/
	opacity: 0;
}
.switch-input:checked ~ .switch-label {
	background: #E1B42B;
	/*box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);*/
}
.switch-input:checked ~ .switch-label:before {
	opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
	opacity: 1;
}
.switch-handle {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 28px;
	height: 28px;
	background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
	background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
	/*border-radius: 100%;*/
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-handle-big {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 28px;
	height: 28px;
	background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
	background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
	/*border-radius: 100%;*/
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
/*.switch-handle:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 12px;
	height: 12px;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
	border-radius: 6px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}*/
.switch-input:checked ~ .switch-handle {
	left: 74px;
	box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Transition
============================================================ */
.switch-label, .switch-handle {
	transition: All 0.3s ease;
	-webkit-transition: All 0.3s ease;
	-moz-transition: All 0.3s ease;
	-o-transition: All 0.3s ease;
}

.switch-label, .switch-handle {
	transition: All 0.3s ease;
	-webkit-transition: All 0.3s ease;
	-moz-transition: All 0.3s ease;
	-o-transition: All 0.3s ease;
}

/* Switch Flat
==========================*/
.switch-flat {
	padding: 0;
	background: #FFF;
	background-image: none;
}
.switch-flat .switch-label {
	background: #FFF;
	border: solid 0.5px #eceeef;
	box-shadow: none;
}
.switch-flat .switch-label:after {
	color: #0078d7;
}
.switch-flat .switch-handle {
	top: 6px;
	left: 6px;
	background: #dadada;
	width: 22px;
	height: 22px;
	box-shadow: none;
        margin-top: -2%;
}

.switch-flat .switch-handle-big {
	top: 6px;
	left: 6px;
	background: #dadada;
	width: 22px;
	height: 22px;
	box-shadow: none;
        margin-top: -2%;
}

.switch-flat .switch-handle:before {
	background: #eceeef;
}
.switch-flat .switch-input:checked ~ .switch-label {
	background: #FFF;
	border-color: #0078d7;
}
.switch-flat .switch-input:checked ~ .switch-handle {
	left: 72px;
	background: #0078d7;
	box-shadow: none;
}

.switch-flat .switch-input:checked ~ .switch-handle-big {
	left: 130px;
	background: #0078d7;
	box-shadow: none;
}





.notifyDone:hover {
    color:#ff6600 !important;
    background-color:white !important;
}


/*---------------------------table alternate row styling-----------------------*/
.alt-row-odd {
    background-color:#f7f7f7;
}
.alt-row-odd td{
    padding-left:10px;
    padding-right:10px;
}
.alt-row-odd td input{
    background-color:#f7f7f7;
}
.alt-row-odd td select {
    background-color:#f7f7f7;
}
.alt-row-odd td .selectize-input {
    background-color:#f7f7f7;
}



.alt-row-even td{
    padding-left:10px;
    padding-right:10px;
}




