.selectDisable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.bodycolor{background:#DFD4E4;font-family:Times New Roman;}
.panel{ border-radius: 5px;}
.panel-heading{border-radius:5px; background:#37657E;color:#FFFFFF; padding:10px;}
.admin-panel-color{ background:#CBCBCB;border-radius:20px;}
.table.student-reg-form{background:#FEFC54; color:gray;border-radius:0px; padding:10px;}
.table-heading{ background:gray; color:#ffff;}
.table{background:#ffffff; border:10px;}
.student-address{width:200px;}
.noselect {
	
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
/*start blinking text*/
.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{     color: #FFFFFE;    }
    49%{    color: #FFFFFE; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #FFFFFE;    }
}