.site-common-smokeScreen {
  background: #000000 url("../../common-styles/images/smokescreen_background.png");
  z-index: 11050;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  -webkit-animation: fadeInHalf 200ms 0ms both;
  -moz-animation: fadeInHalf 200ms 0ms both;
  -ms-animation: fadeInHalf 200ms 0ms both;
  animation: fadeInHalf 200ms 0ms both;
  display: none;
}
/* Primary colors */
/* Secondary colors */
/* Greys */
.site-common-input {
  font-size: 13px;
  height: 30px;
  width: 190px;
  border-radius: 1px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  -khtml-border-radius: 1px;
  -o-border-radius: 1px;
  -ms-border-radius: 1px;
  background-color: white;
  border: 2px #D5D5D5 solid;
  margin-bottom: 8px;
  padding: 0 1.6em 0 1em;
  color: #606163;
  box-shadow: 1px 1px 1px 0px #F5F5F5 inset;
  -moz-box-shadow: 1px 1px 1px 0px #F5F5F5 inset;
  -webkit-box-shadow: 1px 1px 1px 0px #F5F5F5 inset;
  -khtml-box-shadow: 1px 1px 1px 0px #F5F5F5 inset;
  -o-box-shadow: 1px 1px 1px 0px #F5F5F5 inset;
  -ms-box-shadow: 1px 1px 1px 0px #F5F5F5 inset;
}
.site-common-input:focus {
  color: #38393c;
  outline: 0;
  border-color: #0090f1;
}
.site-common-input:disabled {
  color: #e7e7e8;
  border-color: #e7e7e8;
}
.site-common-input.required {
  background: url('../images/icon_input_required.png') 96.2% 50% no-repeat #ffffff;
}
.site-common-input.required.missing {
  background: url('../images/icon_input_required_missing.png') 96.2% 50% no-repeat #ffffff;
}
.site-common-input.ajax-pending {
  background: url('../../common-styles/images/ajax_loader.gif') 96.2% 50% no-repeat #ffffff !important;
}
.site-common-input.error {
  background: white;
  border-color: #ee4444;
}
.site-common-input.error.ajax-pending {
  background: url('../../common-styles/images/ajax_loader.gif') 96.2% 50% no-repeat #ffffff;
}
.site-common-input.duplicate {
  border-color: #ee4444;
}
.site-common-styled-radio-button,
.site-common-styled-checkbox {
  opacity: 0;
  display: inline-block;
  height: 0px;
  width: 0px;
  position: absolute;
}
.site-common-styled-radio-button + label,
.site-common-styled-checkbox + label {
  padding-left: 25px;
  display: inline-block;
  min-height: 17px;
  line-height: 17px;
  margin-left: 0px;
  margin-right: 10px;
  margin-bottom: 6px;
  cursor: pointer;
  position: relative;
}
.site-common-styled-radio-button + label:before,
.site-common-styled-checkbox + label:before,
.site-common-styled-radio-button + label:after,
.site-common-styled-checkbox + label:after {
  content: '';
  background: transparent url('../images/radiobutton_unchecked.png');
  width: 16px;
  height: 16px;
  opacity: 1;
  transition: opacity 0.2s;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0.1deg);
}
.site-common-styled-radio-button + label:after,
.site-common-styled-checkbox + label:after {
  background: transparent url('../images/radiobutton_checked.png');
  opacity: 0;
}
.site-common-styled-radio-button:checked + label:before,
.site-common-styled-checkbox:checked + label:before {
  opacity: 0;
}
.site-common-styled-radio-button:checked + label:after,
.site-common-styled-checkbox:checked + label:after {
  opacity: 1;
}
.site-common-styled-radio-button:disabled + label,
.site-common-styled-checkbox:disabled + label,
.site-common-styled-radio-button:disabled + label:before,
.site-common-styled-checkbox:disabled + label:before,
.site-common-styled-radio-button:checked:disabled + label:after,
.site-common-styled-checkbox:checked:disabled + label:after {
  opacity: 0.4;
  cursor: default;
}
.site-common-styled-checkbox + label:before {
  background: transparent url('../images/checkbox_unchecked.png') no-repeat;
}
.site-common-styled-checkbox + label:after {
  background: transparent url('../images/checkbox_checked.png') no-repeat;
}
.site-common-input-floating-container {
  position: relative;
  height: 49px;
  width: 194px;
  padding: 2px;
}
.site-common-input-floating-container > .site-common-input {
  position: absolute;
  margin-top: 15px;
}
.site-common-input-floating-container > .site-common-input:valid + label {
  opacity: 1;
}
.site-common-input-floating-container > .site-common-input:focus + label {
  color: #0090f1;
}
.site-common-input-floating-container > .site-common-input.error + label {
  color: #ee4444;
}
.site-common-input-floating-container > label {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity .5s;
  line-height: 15px;
  font-size: 12px;
}
