/* CSS Document */
.switch {
  position: relative;
  display: inline-block;
  width: 53px;
  height: 20px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}
.fa{
font: normal normal normal 14px/1 FontAwesome;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-weight: normal;
    font-stretch: normal;
    font-size: inherit;
    line-height: 1;
    font-family: FontAwesome;
	}
  .nav-tabs>li>a:hover{background-color: #00497b!important;}
.nav-tabs>li.active>a:hover{color: white!important;}
.panel-default>.panel-heading{background-color: #fff!important;}

#obs_form_ul
{
	list-style-type:none;
}
#obs_form_ul li
{
	display:inline;
	font-size:24px;
	color:#FF0000;
}
#obs_form_ul2 li
{
	display:inline;
	font-size:22px;
	color:#FF0000;
}
#obs_form_ul3 li
{
	display:inline;
	font-size:22px;
	color:#FF0000;
}
#mendet_sub
{
	margin-top:20px;
	font-weight:1200;
	height:5px;
	width:5px;
	color:#FF0000;
}
.blink {
  animation-duration: 1200ms;    /*blinking speed decreases and increase */
  animation-name: tgle;
  animation-iteration-count: infinite;
 
}

@keyframes tgle {
  0% {
    opacity: 0;
  }

  49.99% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }

  99.99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fixed {
  position: fixed;
  top:0; left:0;
  width: 100%; }