@import url(http://fonts.googleapis.com/css?family=Lato:300,400|Open+Sans:400italic,400,600|Muli:300|Indie+Flower:400|Oswald:400,700,300);
/* ---------------------------------------------------- */
/* Variables */
/* ---------------------------------------------------- */
/*general*/


html {
  height: 100%;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  height: 100%;
  color: #333;
}


.fullheight{
    height:100%;
}
.fullwidth{
    width:100%;
}
.height-80{
    height:80%;
}

.container-fluid {
  height: 100%;
}
.form {
  /*height: 100%;*/
  /*margin-top:150px;*/
}

.scrolldiv{
    height:150px;
    overflow:auto;
}
.scrolldiv_horiz{
    width:100%;
    overflow:auto;
}
/*panels*/

.panel {
  border-radius: 5px;
}
.panel-title {
  font-size: inherit;
  font-family: inherit;

}
.panel-centeredcontent {
  align-content: center;
  text-align: center;
  font-size: inherit;
}
.panel-leftcontent {
  align-content: flex-start;
  text-align: left;
  font-size: inherit;
}
.panel-bordered {
  border-width: medium;
}




/*checkbox*/

.checkbox,
.checkbox-inline {
  padding-left: 20px;
}
.checkbox label,
.checkbox-inline label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
  margin-right: 10px;
}
.checkbox label::before,
.checkbox-inline label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 2px;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 0px;
  background-color: #fff;
  transition: border 0.15s ease-in-out;
}
.checkbox label::after,
.checkbox-inline label::after {
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 2px;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #0077AA;
}
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  opacity: 0;
  z-index: 1;
  transition: all 0.15s ease-in-out;
}

.checkbox input[type="checkbox"]:checked + label::after,
.checkbox-inline input[type="checkbox"]:checked + label::after {
  content: "";
  width: 10px;
  height: 10px;
  top: 6px;
  left: 4px;
  transition: all 0.15s ease-in-out;
}
.checkbox input[type="checkbox"]:disabled + label,
.checkbox-inline input[type="checkbox"]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox-inline input[type="checkbox"]:disabled + label::before {
  background-color: #ddd;
  cursor: not-allowed;
}
.checkbox.checkbox-inline,
.checkbox-inline.checkbox-inline {
  margin-top: 0;
}
.radio {
  padding-left: 20px;
}
.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  transition: border 0.15s ease-in-out;
}
.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  transform: scale(0, 0);
  transition: 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
}

.radio input[type="radio"]:checked + label::after {
  transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
  cursor: not-allowed;
}
.radio.radio-inline {
  margin-top: 0;
}

/*checks as buttons*/
input[type=checkbox] {
    display:none; 
    margin:10px;
}
input[type=checkbox] + label {
    display:inline-block;
    background-color:white;
    border-color:#ddd;
    width:100%;
}
input[type=checkbox]:checked + label { 
   background-image: none;
    background-color:Highlight;
}


/*radio buttons as buttons*/

input[type=radio] {
    display:none; 
    margin:10px;
}
 
input[type=radio]:disabled + label{
    background-color:lightgray;
}
input[type=radio]:disabled:checked  + label{
    background-color:darkgray ;
}

input[type=radio] + label {
    display:inline-block;
    /*margin:2px;*/
    /*padding: 4px 12px;*/
    background-color: white;
    border-color: #ddd;
    width:100%;
}
input[type=radio]:checked + label { 
   background-image: none;
    background-color:Highlight;
}


/*input controls*/

.form-control {
  color: #333;
  font-size: inherit;
  height: auto;
}
.form-control-static {
  color: #333;
  height: auto;
}
.form-control:focus {
  box-shadow: none;
}

.textbox-small {
  font-size: 10pt;
}
.dropdown-borderless{
  border:none;
     
 }
.listbox{
    width:100%;
    font-size:inherit;
    height:100%;
}
/*buttons*/

.btn {
  min-width: 75px;
  font-size: inherit;
}
.btn-wide {
  width: 100%;
}
.btn-wrap {
  white-space: normal;
}
.btn-small {
  font-size: 10pt;
}
.btn-link{
    padding:0px;
}

.btn-radio {
  text-align: left;
  width: 100%;
  word-wrap: break-word;
  white-space: normal;
}
.btn-check {
  text-align: left;
  width: 100%;
  word-wrap: break-word;
  white-space: normal;
  background-color: #969698;
}


/*text*/
label{
    font-weight:normal;
}

.text-header {
  color: #ffffff;
}
.text-light {
  color: white;
}
.text-small {
  font-size: 10pt;
}
.text-light-small {
  color: white;
  font-size: 10pt;
}
.text-header-small {
  color: #ffffff;
  font-size: 10pt;
}
.small-caps {
  font-variant: small-caps;
}


/*margins and padding*/
.padding-10 {
  padding: 10px 10px 10px 10px;
}
.padding-0{
    padding:0px;
}
.margin-5 {
  margin: 5px;
}
.margin-0 {
  margin: 0px;
}
.margin-10 {
  margin: 10px;
}
.margin-bottom-10{
    margin-bottom:10px;
}
.margin-left-5{
    margin-left:5px;
}
.margin-left-2{
    margin-left:1px;
}
.margin-right-5{
    margin-right:5px;
}
.margin-right-2{
    margin-right:1px;
}
.margin-top-20{
    margin-top:20px;
}
/*alignment*/

.verticalalign-div {
  display: table;
}
.verticalalign-element {
  display: table-cell;
  display: inline-block;
  vertical-align: middle;
}
.alignleft {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.alignright {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}

/*misc*/
hr {
  display: block;
  border-top: 1px solid #ddd;
  margin: 25px 0;
}

.error {
  color: #d9534f;
  font-size: 7pt;
}



/*tables*/

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #cbcccb;
}
.table-nolines th,
.table-nolines td {
  border-top: none !important;
  vertical-align: central;
  background-color: inherit;
  font-size: inherit;
}
.td-5Percent{
    width:5%;
    max-width:5%;
}
.td-10Percent{
    width:10%;
    max-width:10%;
}
.td-20Percent{
    width:20%;
    max-width:20%;
}
.td-15Percent{
    width:15%;
    max-width:15%;
}



/* Large desktops and laptops 
@media (min-width: 1200px) {
  body {
    margin-top: 150px;
    margin-bottom: 150px;
  }
}
 Landscape tablets and medium desktops 
@media (min-width: 992px) and (max-width: 1199px) {
  body {
    margin-top: 120px;
    margin-bottom:120px;
  }
}
 Portrait tablets and small desktops 
@media (min-width: 768px) and (max-width: 991px) {
  body {
    margin-top: 185px;
    margin-bottom: 185px;
  }
}
 Landscape phones and portrait tablets 
@media (max-width: 767px) {
  body {
    margin-top: 210px;
    margin-bottom: 210px;
  }
}
 Portrait phones and smaller 
@media (max-width: 480px) {
  body {
    margin-top: 210px;
    margin-bottom: 210px;
  }
}*/



/*login*/

.login-form-full {
  padding-top: 300px;
  max-width: 500px;
  margin: 0 auto;
}
.paper-back-full {
  background-image: url("../img/back.png");
  background-repeat: repeat;
  padding-bottom: 30px;
}
@media (min-height: 800px) {
  .login-form-full {
    padding-top: 10%;
  }
}







