﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-size:12px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 5px;
    padding-right: 5px;
}
#uldate {
    background-color: #eee;
    border: 1px solid #ccc;
}
.nav-tabs.nav-justified > li > a {
    padding: 5px 1px !important;
}
/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */




.login-wrapper
{
    background: #61d3d1;
    box-shadow: inset 0px 0px 12px #000;
    -moz-box-shadow: inset 0px 0px 12px #000;
    -webkit-box-shadow: inset 0px 0px 12px #000;
    width: 370px;
    margin: 30px auto 0;
    padding: 20px;
    border-radius: 6px;
    position: relative;
    padding-bottom: 30px;
    border-radius: 30px;
    overflow: hidden;
	}
	
	.login-wrapper .form-group{margin:9px 0px;}
	
	.login-wrapper .input-box
	{
	   
    width: 100% !important;
    font-size: 100% !important;
    border: 1px solid #61d3d1 !important;
    border-left: none !important;
    padding: 0 5px !important;
    background-color: #fff !important;
    height: 2.7rem !important;
    line-height: 2rem !important;
    color: #777 !important;
    transition: all .2s ease-in !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    max-width: 100% !important;

	}
	.login-wrapper .checkbox label
    {
        margin-top:4px;
	}
	
	.login-wrapper h2{margin-top:0px; text-align:center; font-size:17px; font-weight:bold;}
	.login-wrapper .input-group-addon {
    padding: 10px 12px !important;
	}
	.btn-login{    background: #A678E2;
    color: #fff;
    padding: 6px 24px !important;
    float: right;
    width:100%;
    }
	
	/* Base styles */
*, *:after, *:before {
  box-sizing: border-box;
}
html {
  font-size: 100%;
  line-height: 1.5;
  height: 100%;
}

body {
  position: relative;
  margin: 0;
  font-family: 'Work Sans', Arial, Helvetica, sans-serif;
  min-height: 100%;
  background: linear-gradient(to bottom, #68EACC 0%, #497BE8 100%);
  background-attachment:fixed;
  color: #777;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
button {
  cursor: pointer;
  border: 0;
  padding: 0;
  background-color: transparent;
}

/* Container */
/*.container {
  position: absolute;
  width: 24em;
  left: 50%;
  top: 50%;
  max-height:630px;
  transform: translate(-50%,-50%);
  animation: intro .7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}*/

/* Profile Card */
.profile {
  position: relative;
}
.profile--open {
}
.profile--open .profile__form {
  visibility: visible;
  height: auto;
  opacity: 1;
  transform: translateY(-6em);
  padding-top: 12em;
}
.profile--open .profile__fields {
  opacity: 1;
  visibility: visible;
}
.profile--open .profile__avatar {
  transform: translate(-50%, -1.5em);
  border-radius: 50%;
}
.profile__form {
  position: relative;
  background: white;
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 3em;
  border-radius: .25em;
  -webkit-filter: drop-shadow(0 0 2em rgba(0,0,0,0.2));
  transition: 
    opacity .4s ease-in-out,
    height .4s ease-in-out,
    transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    padding .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.profile__fields {
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.profile__avatar {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1.25em;
  overflow: hidden;
  width: 4.5em;
  height: 4.5em;
  display: block;
  transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.profile__avatar:focus {
  outline: 0;
}
.profile__footer {
  padding-top: 1em;
}


/* Form */
.field {
  position: relative;
  margin-bottom: 2em;
}
.label {
  position: absolute;
  height: 2rem;
  line-height: 2rem;
  font-size:13px !important;
  bottom: 0;
  color: #999;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.notify
{
    display: inline;
padding: 2px 4px;
font-size: 75%;
font-weight: 700;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 6px;
position:absolute;
}
.input {
  width: 100% !important;
  font-size: 100% !important;
  border: 0 !important;
  padding: 0 !important;
  background-color: transparent !important;
  height: 2rem !important;
  line-height: 2rem !important;
  border-bottom: 1px solid #eee !important;
  color: #777 !important;
  transition: all .2s ease-in !important;
  box-shadow:none !important;
  -webkit-box-shadow:none !important;
  max-width:100% !important;
}
.input:focus {
  outline: 0!important;
  border-color: #ccc!important;
}

/* Using required and a faux pattern to see if input has text from http://stackoverflow.com/questions/16952526/detect-if-an-input-has-text-in-it-using-css */
.input:focus + .label,input:valid + .label {
  transform: translateY(-100%)!important;
font-size: 1.00rem!important;
    color: #fffdfd!important;
}

/* Button */


/* Intro animation */
@keyframes intro {
  from {
    opacity: 0;
    top: 0;
  }
  to {
    opacity: 1;
    top: 50%;
  }
}

.body-content table
{
background:#fff;
border-radius: 5px;
border: none;
}

.button-wrapper{margin-top:-20px;}
.checkbox label
{
padding-left: 15px;
}

@media (min-width:768px){
    .dropdown:hover .dropdown-menu
{
    display:block;
}
    .open > .dropdown-menu {
    display: none;
}
}


@media (max-width:767px){

.container{position:static; transform:inherit;}
body{background-attachment:fixed;}
hr{margin-bottom:35px !important;}
}
th{border-top:none !important;}

.dropdown-menu > li > a {
    display: block;
    padding: 7px 20px !important;
	}
	
	



