ul.ui-autocomplete {
    z-index: 1100;
}
.heading2
{
  padding:15px 15px !important;
  margin-top:15px !important;
}
.heading2 .btn-danger
{
  margin-top:-10px !important;
}
.heading2 .pull-left
{
  margin-bottom: 0px !important;
}
.hens
{
  width:35%;
}
@media screen and (max-width: 1920px) and (min-width: 1200px) {
input[type="text"] 
{
    height:50px;
}
.modal-footer .btn
{
  padding:12px 20px !important;
}
}

@media screen and (max-width: 1100px) and (min-width: 1000px) {
.heading2 .btn-danger {
    padding: 6px 4px !important;
    height: 30px !important;
}
.modal-footer .btn
{
  padding:6px 20px !important;
}
}
.floating-label { 
  position:relative; 
  margin-bottom:20px; 
  height:50px;
}
input[type="text"] 
{    border-top:none !important;
    border-left:none !important;
    border-right:none !important;
    border-bottom:1px solid #757575 !important;
}
.floating-input , .floating-select {
  font-size:14px;
  padding:4px 4px;
  display:block;
  width:100%;
  height:30px;
  background-color: transparent;
  border:none;
  border-bottom:1px solid #757575;
}

.floating-input:focus , .floating-select:focus {
     outline:none;
     border-bottom:1px solid #5264AE; 
}

label {
  color:#999; 
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:20px;
  top:18px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

.floating-input:focus ~ label, .floating-input:not(:placeholder-shown) ~ label {
  top:-1px;
  font-size:14px;
  color:#5264AE;
}

.floating-select:focus ~ label , .floating-select:not([value=""]):valid ~ label {
  top:-1px;
  font-size:14px;
  color:#5264AE;
}

/* active state */
.floating-input:focus ~ .bar:before, .floating-input:focus ~ .bar:after, .floating-select:focus ~ .bar:before, .floating-select:focus ~ .bar:after {
  width:50%;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.floating-textarea {
   min-height: 30px;
   max-height: 260px; 
   overflow:hidden;
  overflow-x: hidden; 
}

/* highlighter */
.highlight {
  position:absolute;
  height:50%; 
  width:100%; 
  top:15%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.floating-input:focus ~ .highlight , .floating-select:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* animation */
@-webkit-keyframes inputHighlighter {
  from { background:#5264AE; }
  to  { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
  from { background:#5264AE; }
  to  { width:0; background:transparent; }
}
@keyframes inputHighlighter {
  from { background:#5264AE; }
  to  { width:0; background:transparent; }
}
.col-md-12 .modal-body .btn{
    padding:0px 4px !important;
    font-size: 12px;
}
.modal-footer .btn
{
    font-size: 12px;
}
#people 
{
    padding: 14px 4px 0px !important;
    height:40px !important;
}
a.lightbox1 img {
height: 200px;
border: 3px solid white;
box-shadow: 0px 0px 8px rgba(0,0,0,.3);
}

/* Styles the lightbox, removes it from sight and adds the fade-in transition */

.lightbox1-target {
position: fixed;
top: -100%;
width: 100%;
right:0%;
z-index: 99;
background: rgba(0,0,0,.7);
width: 100%;
opacity: 0;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
overflow: hidden;
}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */

.lightbox1-target img {
margin: auto;
position: absolute;
top: 0;
left:0;
right:0;
bottom: 0;
max-height: 0%;
max-width: 0%;
border: 3px solid white;
box-shadow: 0px 0px 8px rgba(0,0,0,.3);
box-sizing: border-box;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Styles the close link, adds the slide down transition */

a.lightbox-close {
display: block;
width:50px;
height:50px;
box-sizing: border-box;
background: white;
color: black;
text-decoration: none;
position: absolute;
top: -80px;
right: 0;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:before {
content: "";
display: block;
height: 30px;
width: 1px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(45deg);
-moz-transform:rotate(45deg);
-o-transform:rotate(45deg);
transform:rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:after {
content: "";
display: block;
height: 30px;
width: 1px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(-45deg);
-moz-transform:rotate(-45deg);
-o-transform:rotate(-45deg);
transform:rotate(-45deg);
}

/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */

.lightbox1-target:target {
opacity: 1;
top: 0;
bottom: 0;
}

.lightbox1-target:target img {
max-height: 100%;
max-width: 100%;
}

.lightbox1-target:target a.lightbox-close {
top: 0px;
}
.tedkam
{
  margin: 10px 0px 10px 0px !important;
  font-weight: bold !important;
  float:left;
}
.detailshow .tab-content
{
  width:100% !important;
}
.lightbox1 img
{
  margin-right:10px !important;
}
.cric_data .testing_data
{
   height: 250px;
    overflow-y: scroll;
}
.boxcar .well p
{
  margin-bottom:15px !important;
}