html {
  position: relative;
  min-height: 100%;
}
body {
  margin-bottom: 60px; /* Margin bottom by footer height */
  background-color: #d9edf7;
 /* background: url("/img/winter-wallpaper.jpg") no-repeat center center fixed;*/
  background: url("/img/spring.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

a {cursor: pointer; color: #007bff; }
@media print {
	header {	display: none;	}
	footer {	display: none;	}
	.blockquote  {display: none;}
	.print_hide  {display: none;}
}
#tMainSpinner{
	position: fixed; display: none; width: 100%; height: 100%; align-items: center; justify-content: center; z-index: 99999; 
}

.institute_name {
	 text-shadow: 
        /* first layer at 1px */
        -1px -1px 0px #000,
         0px -1px 0px #000,
         1px -1px 0px #000,
        -1px  0px 0px #000,
         1px  0px 0px #000,
        -1px  1px 0px #000,
         0px  1px 0px #000,
         1px  1px 0px #000,
        /* second layer at 2px */
        -2px -2px 0px #000,
        -1px -2px 0px #000,
         0px -2px 0px #000,
         1px -2px 0px #000,
         2px -2px 0px #000,
         2px -1px 0px #000,
         2px  0px 0px #000,
         2px  1px 0px #000,
         2px  2px 0px #000,
         1px  2px 0px #000,
         0px  2px 0px #000,
        -1px  2px 0px #000,
        -2px  2px 0px #000,
        -2px  1px 0px #000,
        -2px  0px 0px #000,
        -2px -1px 0px #000;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%; 
}

.modal.modal-wide .modal-dialog {
  width: 90%;
}
.modal-wide .modal-body {
  overflow-y: auto;
}
.search_form_display {
	width: 100%;
	position: absolute; 
	padding: 10px; 
	max-height: 400px; 
	overflow: scroll; 
	z-index: 100;
    margin-top: 30px;
}
.search_form_display a {
	display: block;
	line-height: 25px; 
	cursor: pointer;
}
.search_form_display a:hover {
	color: red;
}

.countable  tbody{
    counter-reset: rowNumber;
}

.countable tr {
    counter-increment: rowNumber;
}

.countable tbody tr th:first-child::before {
    content: counter(rowNumber)/2;
    min-width: 1em;
    margin-right: 0.5em;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* snow start */

 .faArrowIcon {
        position:relative;
		color: #fff;
    }

    .faArrowIcon {
        font-family: FontAwesome;
        top:0;
        left:-5px;
        padding-right:10px;
        content: "\f075"; 
    }
.snow{
  position:fixed;
  pointer-events:none;
  top:0;
  left:0;
  right:0;
  bottom:0;
  height:100vh;
  background: none;
  background-image: url('/img/s1.png'), url('/img/s2.png'), url('/img/s3.png');
  z-index:100;
  -webkit-animation: snow 10s linear infinite;
  -moz-animation: snow 10s linear infinite;
  -ms-animation: snow 10s linear infinite;
  animation: snow 10s linear infinite;
}
@keyframes snow {
  0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
  50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
  100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
@-moz-keyframes snow {
  0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
  50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
  100% {background-position: 400px 1000px, 200px 400px, 100px 300px;}
}
@-webkit-keyframes snow {
  0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
  50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
  100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
@-ms-keyframes snow {
  0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
  50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
  100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}

/*snow end*/

/*chat start*/

#chat_messages_icon {font-size: 22px;}
#chat_box_content_text {background: #fff;}
.speech-bubble {
	font-family: Calibry;
	height: 100%; 
	width: 76%; 
	padding: 3px;
	display: inline-block; 
	margin: 5px 3px;
	position: relative;
	background: #b3dcf1;
	border-radius: .4em;
}

.speech-bubble.left:after {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 0;
	height: 0;
	border: 13px solid transparent;
	border-bottom: 0;
	margin-top: -6.5px;
	border-left: 0;
	margin-left: -13px;
	border-right-color: #b3dcf1;
}

.speech-bubble.right:after {
	content: '';
	position: absolute;
	right: 0;
	top: 10px;
	width: 0;
	height: 0;
	border: 13px solid transparent;
	border-left-color: #b3dcf1;
	border-right: 0;
	border-bottom: 0;
	margin-top: -6.5px;
	margin-right: -13px;
}
/*chat ends*/

.icon_pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    font-size: 23px;
  }
  70% {
    font-size: 26px;
  }
  100% {
    font-size: 20px;
  }
}

.modal-lx {
    min-width: 95%;
    margin: auto auto;
}

 .question_text {float: left;
		width: 94%;
		display: inline;
		color: white;
		height: 80px;
		font-size: 18px; 
		font-style: italic;}
    #editor {
		touch-action: none;
		height: calc(100vh - 80px);
		
		border: 1px solid #000;
		float: left;
		width: 94%;
		display: inline;
		color: white;
		background: linear-gradient(
			to bottom,
			#fff,
			#fff 90%,
			#ddd 100%,
			#ddd
		);
	  background-size: 100% 55px;
	} 
.notepad_sides a{
	font-size: 30px;
}
.notepad_left{
	width: 3%; float: left; display: inline;
	font-size: 22px;
}
.notepad_right{
	width: 3%; float: right; display: inline; font-size: 16px;
}
.vertical-center {
  min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */

  display: flex;
  align-items: center;
}
#answers_pages {padding: 5px; }
#answers_pages a { display: inline;}
#answers_pages img {
	padding: 5px; width: 200px;  border: 2px solid green;
}
.deleted {border: 2px solid red;}

.button-red:hover{
  cursor: pointer;
}

.button-red{
  color: red;
}
