@charset "UTF-8";
/* CSS RESET reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* BASE RULES ON ELEMENTS base.scss*/
html {
  font-size: 62.5%;
}

body {
  font-family: Arial, Verdana, Tahoma, sans-serif;
  font-size: 1.4rem;
  color: #000;
  line-height: 1em;
  background: #fff;
  padding: 0 0 300px 0;
}

a {
  color: #0092d2;
}
a.red-flag {
  color: #b80000;
}
a.italic-flag {
  font-style: italic;
}
a.notClickable {
  cursor: default;
}
a.disable, a.disable:hover, a.disabled, a.disabled:hover {
  color: #000;
  cursor: default;
}
a:hover {
  color: #333;
}

ul.comma-separated li {
  display: inline;
}
ul.comma-separated li:after {
  content: ", ";
}
ul.comma-separated li:last-child:after {
  content: "";
}
ul.comma-separated.small {
  font-size: 1.3rem;
  line-height: 1.5rem;
}
ul.comma-separated.info {
  color: #797979;
}
ul.comma-separated.clickable li:after {
  content: "";
}
ul.comma-separated.clickable a {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #ccc;
  padding: 2px 4px;
  color: #797979;
  display: block;
  float: left;
  margin: 0 2px 2px 0;
}
ul.comma-separated.clickable a.remove:hover {
  text-decoration: none;
  background-color: #b80000;
  color: #fff;
}
ul.comma-separated.clickable a.showmore:hover {
  text-decoration: none;
  background-color: #ff9600;
  color: #fff;
}

h2, h3 {
  font-weight: bold;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.5rem;
}

input {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  font-family: Arial, Verdana, Tahoma, sans-serif;
  font-size: 1.4rem;
  color: #797979;
  line-height: 1.4rem;
  width: 210px;
  border: 1px solid #0092d2;
  padding: 0 10px 0;
  overflow: hidden;
  height: 34px;
}
input:disabled {
  color: #ccc;
  border-color: #ccc;
}
input.x-large {
  width: 440px;
}
input.medium {
  width: 120px;
}
input.small {
  width: 80px;
}
input.date {
  width: 138px;
}

label {
  display: block;
  font-weight: bold;
  font-size: 1.3rem;
  white-space: nowrap;
  padding: 0 0 4px 0;
  color: #595959;
}
label:disabled {
  color: #ccc;
  border-color: #ccc;
}

strong {
  font-weight: bold;
}

textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-family: Arial, Verdana, Tahoma, sans-serif;
  font-size: 1.4rem;
  border: 1px solid #0092d2;
  padding: 12px;
  margin: 0 0 30px 0;
  width: 100%;
  height: 100px;
  background: #fff;
  resize: none;
  color: #797979;
}
textarea.small {
  height: 34px;
}
textarea:disabled {
  color: #ccc;
  border-color: #ccc;
}

::-webkit-input-placeholder {
  color: #aaa;
  font-size: 1.3rem;
}

::-moz-placeholder {
  font-size: 1.3rem;
}

:-moz-placeholder {
  font-size: 1.3rem;
}

:-ms-input-placeholder {
  color: #aaa;
  font-size: 1.3rem;
}

button {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline;
  background: #0092d2;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
  cursor: pointer;
}
button:hover {
  color: #fff;
  background: #0081bd;
}
button {
  font-size: 1.3rem;
  padding: 7px 9px;
  width: auto;
  border: 0;
  line-height: 1em;
  font-family: Arial, Verdana, Tahoma, sans-serif;
  margin-top: 3px;
}
button.beside-input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  top: -1px;
  left: 0;
  height: 34px;
  margin: 0;
}
button.loading {
  background: url("../static/img/loading-button.gif") no-repeat center center;
}
button.primary-selected {
  background: url("../static/img/primary-selected.png") no-repeat center center;
}
button.primary-unselected {
  background: url("../static/img/primary-unselected.png") no-repeat center center;
}
button.radio {
  background-color: transparent;
  background: url("../static/img/radio.png") no-repeat left center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  height: 16px;
  padding: 0 0 0 17px;
  margin: 10px 0 0;
  color: #797979;
  text-align: left;
  display: inline-block;
}
button.radio.active {
  background-image: url("../static/img/radio-checked.png");
}
button.radio.sprite {
  width: 16px;
  text-indent: -9999px;
  margin: 0;
}
button.radio:hover {
  color: #0092d2;
}
button.radio:disabled, button.radio.disabled, button.radio.disable {
  background-image: url("../static/img/radio-disabled.png");
  background-color: transparent;
}
button.radio:disabled.active, button.radio.disabled.active, button.radio.disable.active {
  background-image: url("../static/img/radio-checked-disabled.png");
}
button.colored:disabled, button:disabled {
  background-color: #ccc;
  color: #fff;
  cursor: default;
}
button.colored {
  background-color: #00d27c;
}
button.colored:disabled {
  background-color: #fa4848;
}

canvas {
  /*image-rendering: optimizeQuality;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;*/
}

table {
  clear: both;
  width: 100%;
  border: 0;
}
table .one-icon {
  width: 27px;
}
table tr th,
table tr td {
  padding: 0 10px;
  text-align: left;
}
table tr th.actions {
  width: 77px;
}
table tr th.id {
  width: 60px;
}
table tr th.date {
  width: 79px;
}
table tr th.datetime {
  width: 115px;
}
table tr th.value {
  width: 73px;
}
table tr td {
  border: 1px solid #ccc;
  height: 40px;
  vertical-align: middle;
}
table tr td.numbers {
  text-align: right;
}
table tr.indent td {
  padding-left: 30px;
}
table tr.fade-away.ng-leave {
  -moz-transition: all linear 0.5s;
  -ms-transition: all linear 0.5s;
  -o-transition: all linear 0.5s;
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
}
table tr.fade-away.ng-leave.ng-leave-active {
  opacity: 0;
}
table thead tr th {
  font-size: 1.3rem;
  font-weight: bold;
  padding-bottom: 6px;
  color: #595959;
  white-space: nowrap;
}
table tbody tr td {
  background: #f2f2f2;
}
table tbody tr:nth-child(even) td {
  background: #fff;
}
table tbody tr:hover > td {
  background: #d0edff;
}
table tbody tr:hover > td.table {
  background: transparent;
}
table.multi-body tbody tr td {
  background: #f2f2f2;
}
table.multi-body tbody tr:nth-child(even) td {
  background: #fff;
}
table.multi-body tbody tr:hover > td {
  background: #d0edff;
}
table.multi-body tbody tr:hover > td.table {
  background: transparent;
}
table.multi-body tbody:nth-child(odd) tr td {
  background: #fff;
}
table.multi-body tbody:nth-child(odd) tr:nth-child(even) td {
  background: #f2f2f2;
}
table tr.table-head td {
  border-bottom-width: 0;
}
table tr.table > td {
  padding: 0;
  border: 0;
}
table tr.table > td table tr td {
  border: 0 1px 1px 0;
}
table tr.table > td table tbody:last-child tr td {
  border-bottom-width: 0;
}

.print {
  display: none;
}

.watermark {
  position: absolute;
  top: 0;
  left: -9999px;
  color: red;
  font-weight: bold;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  z-index: -1;
  opacity: 0.3;
}

.whisper {
  color: #797979;
}

.center-text,
.center {
  text-align: center;
}

.warning {
  color: #b80000 !important;
}

/*.bootstrapped {
  @import "partial/bootstrap";
}*/
.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 20px;
}

.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.modal-header {
  background-color: #0092d2;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  color: #fff;
  text-transform: uppercase;
  padding: 0;
  height: 54px;
  line-height: 54px;
}
.modal-header h4 {
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 1.8rem;
  color: #fff !important;
}
.modal-header .close {
  position: relative;
  top: 10px;
  font-size: 30px;
  font-size: 3rem;
  text-transform: none;
}

.modal-body {
  padding: 0;
}
.modal-body .module-wrapper .module {
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.modal-body .module-wrapper .module table tr td {
  padding: 0 10px;
}
.modal-body p {
  margin-top: 20px;
}

.modal-footer {
  border: 0;
  margin: 0;
}

.modal-open {
  overflow: visible;
}

.one-col-modal .modal-dialog {
  width: 252px;
}

.two-col-modal .modal-dialog {
  width: 482px;
}

.three-col-modal .modal-dialog {
  width: 712px;
}

.four-col-modal .modal-dialog {
  width: 942px;
}

.five-col-modal .modal-dialog {
  width: 1172px;
}

.six-col-modal .modal-dialog {
  width: 1402px;
}

.modal-dialog {
  width: 712px;
}
.modal-dialog .modal-header.error {
  background: #b80000;
}
.modal-dialog .modal-header.error button {
  background: #b80000;
}
.modal-dialog .modal-header.warning {
  background: #ff9600;
}
.modal-dialog .modal-header.warning button {
  background: #ff9600;
}

dl.horizontal dd {
  display: inline;
  margin: 0;
}
dl.horizontal dd:after {
  display: block;
  content: "";
}
dl.horizontal dt {
  display: inline-block;
  min-width: 100px;
}

.bootstrapped html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
.bootstrapped body {
  margin: 0;
}
.bootstrapped article,
.bootstrapped aside,
.bootstrapped details,
.bootstrapped figcaption,
.bootstrapped figure,
.bootstrapped footer,
.bootstrapped header,
.bootstrapped hgroup,
.bootstrapped main,
.bootstrapped nav,
.bootstrapped section,
.bootstrapped summary {
  display: block;
}
.bootstrapped audio,
.bootstrapped canvas,
.bootstrapped progress,
.bootstrapped video {
  display: inline-block;
  vertical-align: baseline;
}
.bootstrapped audio:not([controls]) {
  display: none;
  height: 0;
}
.bootstrapped [hidden],
.bootstrapped template {
  display: none;
}
.bootstrapped a {
  background: transparent;
}
.bootstrapped a:active,
.bootstrapped a:hover {
  outline: 0;
}
.bootstrapped abbr[title] {
  border-bottom: 1px dotted;
}
.bootstrapped b,
.bootstrapped strong {
  font-weight: bold;
}
.bootstrapped dfn {
  font-style: italic;
}
.bootstrapped h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.bootstrapped mark {
  background: #ff0;
  color: #000;
}
.bootstrapped small {
  font-size: 80%;
}
.bootstrapped sub,
.bootstrapped sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.bootstrapped sup {
  top: -0.5em;
}
.bootstrapped sub {
  bottom: -0.25em;
}
.bootstrapped img {
  border: 0;
}
.bootstrapped svg:not(:root) {
  overflow: hidden;
}
.bootstrapped figure {
  margin: 1em 40px;
}
.bootstrapped hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
.bootstrapped pre {
  overflow: auto;
}
.bootstrapped code,
.bootstrapped kbd,
.bootstrapped pre,
.bootstrapped samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.bootstrapped button,
.bootstrapped input,
.bootstrapped optgroup,
.bootstrapped select,
.bootstrapped textarea {
  font: inherit;
  margin: 0;
}
.bootstrapped button {
  overflow: visible;
}
.bootstrapped button,
.bootstrapped select {
  text-transform: none;
}
.bootstrapped button,
.bootstrapped html input[type=button],
.bootstrapped input[type=reset],
.bootstrapped input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
.bootstrapped button[disabled],
.bootstrapped html input[disabled] {
  cursor: default;
}
.bootstrapped button::-moz-focus-inner,
.bootstrapped input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.bootstrapped input {
  line-height: normal;
}
.bootstrapped input[type=checkbox],
.bootstrapped input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
.bootstrapped input[type=number]::-webkit-inner-spin-button,
.bootstrapped input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
.bootstrapped input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.bootstrapped input[type=search]::-webkit-search-cancel-button,
.bootstrapped input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.bootstrapped fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
.bootstrapped legend {
  border: 0;
  padding: 0;
}
.bootstrapped textarea {
  overflow: auto;
}
.bootstrapped optgroup {
  font-weight: bold;
}
.bootstrapped table {
  border-collapse: collapse;
  border-spacing: 0;
}
.bootstrapped td,
.bootstrapped th {
  padding: 0;
}
.bootstrapped * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrapped *:before,
.bootstrapped *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrapped html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.bootstrapped body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #fff;
}
.bootstrapped input,
.bootstrapped button,
.bootstrapped select,
.bootstrapped textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.bootstrapped a {
  color: #0092d2;
  text-decoration: none;
}
.bootstrapped a:hover, .bootstrapped a:focus {
  color: rgb(0, 92.8142857143, 133.5);
  text-decoration: underline;
}
.bootstrapped a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.bootstrapped figure {
  margin: 0;
}
.bootstrapped img {
  vertical-align: middle;
}
.bootstrapped .img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.bootstrapped .img-rounded {
  border-radius: 6px;
}
.bootstrapped .img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.bootstrapped .img-circle {
  border-radius: 50%;
}
.bootstrapped hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid rgb(238.425, 238.425, 238.425);
}
.bootstrapped .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.bootstrapped h1, .bootstrapped h2, .bootstrapped h3, .bootstrapped h4, .bootstrapped h5, .bootstrapped h6,
.bootstrapped .h1, .bootstrapped .h2, .bootstrapped .h3, .bootstrapped .h4, .bootstrapped .h5, .bootstrapped .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
.bootstrapped h1 small,
.bootstrapped h1 .small, .bootstrapped h2 small,
.bootstrapped h2 .small, .bootstrapped h3 small,
.bootstrapped h3 .small, .bootstrapped h4 small,
.bootstrapped h4 .small, .bootstrapped h5 small,
.bootstrapped h5 .small, .bootstrapped h6 small,
.bootstrapped h6 .small,
.bootstrapped .h1 small,
.bootstrapped .h1 .small, .bootstrapped .h2 small,
.bootstrapped .h2 .small, .bootstrapped .h3 small,
.bootstrapped .h3 .small, .bootstrapped .h4 small,
.bootstrapped .h4 .small, .bootstrapped .h5 small,
.bootstrapped .h5 .small, .bootstrapped .h6 small,
.bootstrapped .h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}
.bootstrapped h1, .bootstrapped .h1,
.bootstrapped h2, .bootstrapped .h2,
.bootstrapped h3, .bootstrapped .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.bootstrapped h1 small,
.bootstrapped h1 .small, .bootstrapped .h1 small,
.bootstrapped .h1 .small,
.bootstrapped h2 small,
.bootstrapped h2 .small, .bootstrapped .h2 small,
.bootstrapped .h2 .small,
.bootstrapped h3 small,
.bootstrapped h3 .small, .bootstrapped .h3 small,
.bootstrapped .h3 .small {
  font-size: 65%;
}
.bootstrapped h4, .bootstrapped .h4,
.bootstrapped h5, .bootstrapped .h5,
.bootstrapped h6, .bootstrapped .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.bootstrapped h4 small,
.bootstrapped h4 .small, .bootstrapped .h4 small,
.bootstrapped .h4 .small,
.bootstrapped h5 small,
.bootstrapped h5 .small, .bootstrapped .h5 small,
.bootstrapped .h5 .small,
.bootstrapped h6 small,
.bootstrapped h6 .small, .bootstrapped .h6 small,
.bootstrapped .h6 .small {
  font-size: 75%;
}
.bootstrapped h1, .bootstrapped .h1 {
  font-size: 36px;
}
.bootstrapped h2, .bootstrapped .h2 {
  font-size: 30px;
}
.bootstrapped h3, .bootstrapped .h3 {
  font-size: 24px;
}
.bootstrapped h4, .bootstrapped .h4 {
  font-size: 18px;
}
.bootstrapped h5, .bootstrapped .h5 {
  font-size: 14px;
}
.bootstrapped h6, .bootstrapped .h6 {
  font-size: 12px;
}
.bootstrapped p {
  margin: 0 0 10px;
}
.bootstrapped .lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .bootstrapped .lead {
    font-size: 21px;
  }
}
.bootstrapped small,
.bootstrapped .small {
  font-size: 85%;
}
.bootstrapped cite {
  font-style: normal;
}
.bootstrapped .text-left {
  text-align: left;
}
.bootstrapped .text-right {
  text-align: right;
}
.bootstrapped .text-center {
  text-align: center;
}
.bootstrapped .text-justify {
  text-align: justify;
}
.bootstrapped .text-muted {
  color: #999999;
}
.bootstrapped .text-primary {
  color: #428bca;
}
.bootstrapped a.text-primary:hover {
  color: rgb(47.5247933884, 112.9834710744, 169.4752066116);
}
.bootstrapped .text-success {
  color: #3c763d;
}
.bootstrapped a.text-success:hover {
  color: rgb(42.808988764, 84.191011236, 43.5224719101);
}
.bootstrapped .text-info {
  color: #31708f;
}
.bootstrapped a.text-info:hover {
  color: rgb(35.984375, 82.25, 105.015625);
}
.bootstrapped .text-warning {
  color: #8a6d3b;
}
.bootstrapped a.text-warning:hover {
  color: rgb(102.2741116751, 80.7817258883, 43.7258883249);
}
.bootstrapped .text-danger {
  color: #a94442;
}
.bootstrapped a.text-danger:hover {
  color: rgb(132.3234042553, 53.2425531915, 51.6765957447);
}
.bootstrapped .bg-primary {
  color: #fff;
}
.bootstrapped .bg-primary {
  background-color: #428bca;
}
.bootstrapped a.bg-primary:hover {
  background-color: rgb(47.5247933884, 112.9834710744, 169.4752066116);
}
.bootstrapped .bg-success {
  background-color: #dff0d8;
}
.bootstrapped a.bg-success:hover {
  background-color: rgb(192.7777777778, 225.8333333333, 179.1666666667);
}
.bootstrapped .bg-info {
  background-color: #d9edf7;
}
.bootstrapped a.bg-info:hover {
  background-color: rgb(174.8695652174, 217.0434782609, 238.1304347826);
}
.bootstrapped .bg-warning {
  background-color: #fcf8e3;
}
.bootstrapped a.bg-warning:hover {
  background-color: rgb(247.064516129, 236.4838709677, 180.935483871);
}
.bootstrapped .bg-danger {
  background-color: #f2dede;
}
.bootstrapped a.bg-danger:hover {
  background-color: rgb(227.5869565217, 185.4130434783, 185.4130434783);
}
.bootstrapped .page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid rgb(238.425, 238.425, 238.425);
}
.bootstrapped ul,
.bootstrapped ol {
  margin-top: 0;
  margin-bottom: 10px;
}
.bootstrapped ul ul,
.bootstrapped ul ol,
.bootstrapped ol ul,
.bootstrapped ol ol {
  margin-bottom: 0;
}
.bootstrapped .list-unstyled, .bootstrapped .list-inline {
  padding-left: 0;
  list-style: none;
}
.bootstrapped .list-inline {
  margin-left: -5px;
}
.bootstrapped .list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.bootstrapped dl {
  margin-top: 0;
  margin-bottom: 20px;
}
.bootstrapped dt,
.bootstrapped dd {
  line-height: 1.428571429;
}
.bootstrapped dt {
  font-weight: bold;
}
.bootstrapped dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .bootstrapped .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .bootstrapped .dl-horizontal dd {
    margin-left: 180px;
  }
  .bootstrapped .dl-horizontal dd:before, .bootstrapped .dl-horizontal dd:after {
    content: " ";
    display: table;
  }
  .bootstrapped .dl-horizontal dd:after {
    clear: both;
  }
}
.bootstrapped abbr[title],
.bootstrapped abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}
.bootstrapped .initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.bootstrapped blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid rgb(238.425, 238.425, 238.425);
}
.bootstrapped blockquote p:last-child,
.bootstrapped blockquote ul:last-child,
.bootstrapped blockquote ol:last-child {
  margin-bottom: 0;
}
.bootstrapped blockquote footer,
.bootstrapped blockquote small,
.bootstrapped blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #999999;
}
.bootstrapped blockquote footer:before,
.bootstrapped blockquote small:before,
.bootstrapped blockquote .small:before {
  content: "— ";
}
.bootstrapped .blockquote-reverse,
.bootstrapped blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid rgb(238.425, 238.425, 238.425);
  border-left: 0;
  text-align: right;
}
.bootstrapped .blockquote-reverse footer:before,
.bootstrapped .blockquote-reverse small:before,
.bootstrapped .blockquote-reverse .small:before,
.bootstrapped blockquote.pull-right footer:before,
.bootstrapped blockquote.pull-right small:before,
.bootstrapped blockquote.pull-right .small:before {
  content: "";
}
.bootstrapped .blockquote-reverse footer:after,
.bootstrapped .blockquote-reverse small:after,
.bootstrapped .blockquote-reverse .small:after,
.bootstrapped blockquote.pull-right footer:after,
.bootstrapped blockquote.pull-right small:after,
.bootstrapped blockquote.pull-right .small:after {
  content: " —";
}
.bootstrapped blockquote:before,
.bootstrapped blockquote:after {
  content: "";
}
.bootstrapped address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}
.bootstrapped .container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.bootstrapped .container:before, .bootstrapped .container:after {
  content: " ";
  display: table;
}
.bootstrapped .container:after {
  clear: both;
}
@media (min-width: 768px) {
  .bootstrapped .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .bootstrapped .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .bootstrapped .container {
    width: 1170px;
  }
}
.bootstrapped .container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.bootstrapped .container-fluid:before, .bootstrapped .container-fluid:after {
  content: " ";
  display: table;
}
.bootstrapped .container-fluid:after {
  clear: both;
}
.bootstrapped .row {
  margin-left: -15px;
  margin-right: -15px;
}
.bootstrapped .row:before, .bootstrapped .row:after {
  content: " ";
  display: table;
}
.bootstrapped .row:after {
  clear: both;
}
.bootstrapped .col-xs-1, .bootstrapped .col-sm-1, .bootstrapped .col-md-1, .bootstrapped .col-lg-1, .bootstrapped .col-xs-2, .bootstrapped .col-sm-2, .bootstrapped .col-md-2, .bootstrapped .col-lg-2, .bootstrapped .col-xs-3, .bootstrapped .col-sm-3, .bootstrapped .col-md-3, .bootstrapped .col-lg-3, .bootstrapped .col-xs-4, .bootstrapped .col-sm-4, .bootstrapped .col-md-4, .bootstrapped .col-lg-4, .bootstrapped .col-xs-5, .bootstrapped .col-sm-5, .bootstrapped .col-md-5, .bootstrapped .col-lg-5, .bootstrapped .col-xs-6, .bootstrapped .col-sm-6, .bootstrapped .col-md-6, .bootstrapped .col-lg-6, .bootstrapped .col-xs-7, .bootstrapped .col-sm-7, .bootstrapped .col-md-7, .bootstrapped .col-lg-7, .bootstrapped .col-xs-8, .bootstrapped .col-sm-8, .bootstrapped .col-md-8, .bootstrapped .col-lg-8, .bootstrapped .col-xs-9, .bootstrapped .col-sm-9, .bootstrapped .col-md-9, .bootstrapped .col-lg-9, .bootstrapped .col-xs-10, .bootstrapped .col-sm-10, .bootstrapped .col-md-10, .bootstrapped .col-lg-10, .bootstrapped .col-xs-11, .bootstrapped .col-sm-11, .bootstrapped .col-md-11, .bootstrapped .col-lg-11, .bootstrapped .col-xs-12, .bootstrapped .col-sm-12, .bootstrapped .col-md-12, .bootstrapped .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.bootstrapped .col-xs-1, .bootstrapped .col-xs-2, .bootstrapped .col-xs-3, .bootstrapped .col-xs-4, .bootstrapped .col-xs-5, .bootstrapped .col-xs-6, .bootstrapped .col-xs-7, .bootstrapped .col-xs-8, .bootstrapped .col-xs-9, .bootstrapped .col-xs-10, .bootstrapped .col-xs-11, .bootstrapped .col-xs-12 {
  float: left;
}
.bootstrapped .col-xs-1 {
  width: 8.3333333333%;
}
.bootstrapped .col-xs-2 {
  width: 16.6666666667%;
}
.bootstrapped .col-xs-3 {
  width: 25%;
}
.bootstrapped .col-xs-4 {
  width: 33.3333333333%;
}
.bootstrapped .col-xs-5 {
  width: 41.6666666667%;
}
.bootstrapped .col-xs-6 {
  width: 50%;
}
.bootstrapped .col-xs-7 {
  width: 58.3333333333%;
}
.bootstrapped .col-xs-8 {
  width: 66.6666666667%;
}
.bootstrapped .col-xs-9 {
  width: 75%;
}
.bootstrapped .col-xs-10 {
  width: 83.3333333333%;
}
.bootstrapped .col-xs-11 {
  width: 91.6666666667%;
}
.bootstrapped .col-xs-12 {
  width: 100%;
}
.bootstrapped .col-xs-pull-0 {
  right: 0%;
}
.bootstrapped .col-xs-pull-1 {
  right: 8.3333333333%;
}
.bootstrapped .col-xs-pull-2 {
  right: 16.6666666667%;
}
.bootstrapped .col-xs-pull-3 {
  right: 25%;
}
.bootstrapped .col-xs-pull-4 {
  right: 33.3333333333%;
}
.bootstrapped .col-xs-pull-5 {
  right: 41.6666666667%;
}
.bootstrapped .col-xs-pull-6 {
  right: 50%;
}
.bootstrapped .col-xs-pull-7 {
  right: 58.3333333333%;
}
.bootstrapped .col-xs-pull-8 {
  right: 66.6666666667%;
}
.bootstrapped .col-xs-pull-9 {
  right: 75%;
}
.bootstrapped .col-xs-pull-10 {
  right: 83.3333333333%;
}
.bootstrapped .col-xs-pull-11 {
  right: 91.6666666667%;
}
.bootstrapped .col-xs-pull-12 {
  right: 100%;
}
.bootstrapped .col-xs-push-0 {
  left: 0%;
}
.bootstrapped .col-xs-push-1 {
  left: 8.3333333333%;
}
.bootstrapped .col-xs-push-2 {
  left: 16.6666666667%;
}
.bootstrapped .col-xs-push-3 {
  left: 25%;
}
.bootstrapped .col-xs-push-4 {
  left: 33.3333333333%;
}
.bootstrapped .col-xs-push-5 {
  left: 41.6666666667%;
}
.bootstrapped .col-xs-push-6 {
  left: 50%;
}
.bootstrapped .col-xs-push-7 {
  left: 58.3333333333%;
}
.bootstrapped .col-xs-push-8 {
  left: 66.6666666667%;
}
.bootstrapped .col-xs-push-9 {
  left: 75%;
}
.bootstrapped .col-xs-push-10 {
  left: 83.3333333333%;
}
.bootstrapped .col-xs-push-11 {
  left: 91.6666666667%;
}
.bootstrapped .col-xs-push-12 {
  left: 100%;
}
.bootstrapped .col-xs-offset-0 {
  margin-left: 0%;
}
.bootstrapped .col-xs-offset-1 {
  margin-left: 8.3333333333%;
}
.bootstrapped .col-xs-offset-2 {
  margin-left: 16.6666666667%;
}
.bootstrapped .col-xs-offset-3 {
  margin-left: 25%;
}
.bootstrapped .col-xs-offset-4 {
  margin-left: 33.3333333333%;
}
.bootstrapped .col-xs-offset-5 {
  margin-left: 41.6666666667%;
}
.bootstrapped .col-xs-offset-6 {
  margin-left: 50%;
}
.bootstrapped .col-xs-offset-7 {
  margin-left: 58.3333333333%;
}
.bootstrapped .col-xs-offset-8 {
  margin-left: 66.6666666667%;
}
.bootstrapped .col-xs-offset-9 {
  margin-left: 75%;
}
.bootstrapped .col-xs-offset-10 {
  margin-left: 83.3333333333%;
}
.bootstrapped .col-xs-offset-11 {
  margin-left: 91.6666666667%;
}
.bootstrapped .col-xs-offset-12 {
  margin-left: 100%;
}
@media (min-width: 768px) {
  .bootstrapped .col-sm-1, .bootstrapped .col-sm-2, .bootstrapped .col-sm-3, .bootstrapped .col-sm-4, .bootstrapped .col-sm-5, .bootstrapped .col-sm-6, .bootstrapped .col-sm-7, .bootstrapped .col-sm-8, .bootstrapped .col-sm-9, .bootstrapped .col-sm-10, .bootstrapped .col-sm-11, .bootstrapped .col-sm-12 {
    float: left;
  }
  .bootstrapped .col-sm-1 {
    width: 8.3333333333%;
  }
  .bootstrapped .col-sm-2 {
    width: 16.6666666667%;
  }
  .bootstrapped .col-sm-3 {
    width: 25%;
  }
  .bootstrapped .col-sm-4 {
    width: 33.3333333333%;
  }
  .bootstrapped .col-sm-5 {
    width: 41.6666666667%;
  }
  .bootstrapped .col-sm-6 {
    width: 50%;
  }
  .bootstrapped .col-sm-7 {
    width: 58.3333333333%;
  }
  .bootstrapped .col-sm-8 {
    width: 66.6666666667%;
  }
  .bootstrapped .col-sm-9 {
    width: 75%;
  }
  .bootstrapped .col-sm-10 {
    width: 83.3333333333%;
  }
  .bootstrapped .col-sm-11 {
    width: 91.6666666667%;
  }
  .bootstrapped .col-sm-12 {
    width: 100%;
  }
  .bootstrapped .col-sm-pull-0 {
    right: 0%;
  }
  .bootstrapped .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .bootstrapped .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .bootstrapped .col-sm-pull-3 {
    right: 25%;
  }
  .bootstrapped .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .bootstrapped .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .bootstrapped .col-sm-pull-6 {
    right: 50%;
  }
  .bootstrapped .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .bootstrapped .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .bootstrapped .col-sm-pull-9 {
    right: 75%;
  }
  .bootstrapped .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .bootstrapped .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .bootstrapped .col-sm-pull-12 {
    right: 100%;
  }
  .bootstrapped .col-sm-push-0 {
    left: 0%;
  }
  .bootstrapped .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .bootstrapped .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .bootstrapped .col-sm-push-3 {
    left: 25%;
  }
  .bootstrapped .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .bootstrapped .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .bootstrapped .col-sm-push-6 {
    left: 50%;
  }
  .bootstrapped .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .bootstrapped .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .bootstrapped .col-sm-push-9 {
    left: 75%;
  }
  .bootstrapped .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .bootstrapped .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .bootstrapped .col-sm-push-12 {
    left: 100%;
  }
  .bootstrapped .col-sm-offset-0 {
    margin-left: 0%;
  }
  .bootstrapped .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .bootstrapped .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .bootstrapped .col-sm-offset-3 {
    margin-left: 25%;
  }
  .bootstrapped .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .bootstrapped .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .bootstrapped .col-sm-offset-6 {
    margin-left: 50%;
  }
  .bootstrapped .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .bootstrapped .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .bootstrapped .col-sm-offset-9 {
    margin-left: 75%;
  }
  .bootstrapped .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .bootstrapped .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .bootstrapped .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .bootstrapped .col-md-1, .bootstrapped .col-md-2, .bootstrapped .col-md-3, .bootstrapped .col-md-4, .bootstrapped .col-md-5, .bootstrapped .col-md-6, .bootstrapped .col-md-7, .bootstrapped .col-md-8, .bootstrapped .col-md-9, .bootstrapped .col-md-10, .bootstrapped .col-md-11, .bootstrapped .col-md-12 {
    float: left;
  }
  .bootstrapped .col-md-1 {
    width: 8.3333333333%;
  }
  .bootstrapped .col-md-2 {
    width: 16.6666666667%;
  }
  .bootstrapped .col-md-3 {
    width: 25%;
  }
  .bootstrapped .col-md-4 {
    width: 33.3333333333%;
  }
  .bootstrapped .col-md-5 {
    width: 41.6666666667%;
  }
  .bootstrapped .col-md-6 {
    width: 50%;
  }
  .bootstrapped .col-md-7 {
    width: 58.3333333333%;
  }
  .bootstrapped .col-md-8 {
    width: 66.6666666667%;
  }
  .bootstrapped .col-md-9 {
    width: 75%;
  }
  .bootstrapped .col-md-10 {
    width: 83.3333333333%;
  }
  .bootstrapped .col-md-11 {
    width: 91.6666666667%;
  }
  .bootstrapped .col-md-12 {
    width: 100%;
  }
  .bootstrapped .col-md-pull-0 {
    right: 0%;
  }
  .bootstrapped .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .bootstrapped .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .bootstrapped .col-md-pull-3 {
    right: 25%;
  }
  .bootstrapped .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .bootstrapped .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .bootstrapped .col-md-pull-6 {
    right: 50%;
  }
  .bootstrapped .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .bootstrapped .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .bootstrapped .col-md-pull-9 {
    right: 75%;
  }
  .bootstrapped .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .bootstrapped .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .bootstrapped .col-md-pull-12 {
    right: 100%;
  }
  .bootstrapped .col-md-push-0 {
    left: 0%;
  }
  .bootstrapped .col-md-push-1 {
    left: 8.3333333333%;
  }
  .bootstrapped .col-md-push-2 {
    left: 16.6666666667%;
  }
  .bootstrapped .col-md-push-3 {
    left: 25%;
  }
  .bootstrapped .col-md-push-4 {
    left: 33.3333333333%;
  }
  .bootstrapped .col-md-push-5 {
    left: 41.6666666667%;
  }
  .bootstrapped .col-md-push-6 {
    left: 50%;
  }
  .bootstrapped .col-md-push-7 {
    left: 58.3333333333%;
  }
  .bootstrapped .col-md-push-8 {
    left: 66.6666666667%;
  }
  .bootstrapped .col-md-push-9 {
    left: 75%;
  }
  .bootstrapped .col-md-push-10 {
    left: 83.3333333333%;
  }
  .bootstrapped .col-md-push-11 {
    left: 91.6666666667%;
  }
  .bootstrapped .col-md-push-12 {
    left: 100%;
  }
  .bootstrapped .col-md-offset-0 {
    margin-left: 0%;
  }
  .bootstrapped .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .bootstrapped .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .bootstrapped .col-md-offset-3 {
    margin-left: 25%;
  }
  .bootstrapped .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .bootstrapped .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .bootstrapped .col-md-offset-6 {
    margin-left: 50%;
  }
  .bootstrapped .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .bootstrapped .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .bootstrapped .col-md-offset-9 {
    margin-left: 75%;
  }
  .bootstrapped .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .bootstrapped .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .bootstrapped .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .bootstrapped .col-lg-1, .bootstrapped .col-lg-2, .bootstrapped .col-lg-3, .bootstrapped .col-lg-4, .bootstrapped .col-lg-5, .bootstrapped .col-lg-6, .bootstrapped .col-lg-7, .bootstrapped .col-lg-8, .bootstrapped .col-lg-9, .bootstrapped .col-lg-10, .bootstrapped .col-lg-11, .bootstrapped .col-lg-12 {
    float: left;
  }
  .bootstrapped .col-lg-1 {
    width: 8.3333333333%;
  }
  .bootstrapped .col-lg-2 {
    width: 16.6666666667%;
  }
  .bootstrapped .col-lg-3 {
    width: 25%;
  }
  .bootstrapped .col-lg-4 {
    width: 33.3333333333%;
  }
  .bootstrapped .col-lg-5 {
    width: 41.6666666667%;
  }
  .bootstrapped .col-lg-6 {
    width: 50%;
  }
  .bootstrapped .col-lg-7 {
    width: 58.3333333333%;
  }
  .bootstrapped .col-lg-8 {
    width: 66.6666666667%;
  }
  .bootstrapped .col-lg-9 {
    width: 75%;
  }
  .bootstrapped .col-lg-10 {
    width: 83.3333333333%;
  }
  .bootstrapped .col-lg-11 {
    width: 91.6666666667%;
  }
  .bootstrapped .col-lg-12 {
    width: 100%;
  }
  .bootstrapped .col-lg-pull-0 {
    right: 0%;
  }
  .bootstrapped .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .bootstrapped .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .bootstrapped .col-lg-pull-3 {
    right: 25%;
  }
  .bootstrapped .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .bootstrapped .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .bootstrapped .col-lg-pull-6 {
    right: 50%;
  }
  .bootstrapped .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .bootstrapped .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .bootstrapped .col-lg-pull-9 {
    right: 75%;
  }
  .bootstrapped .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .bootstrapped .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .bootstrapped .col-lg-pull-12 {
    right: 100%;
  }
  .bootstrapped .col-lg-push-0 {
    left: 0%;
  }
  .bootstrapped .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .bootstrapped .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .bootstrapped .col-lg-push-3 {
    left: 25%;
  }
  .bootstrapped .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .bootstrapped .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .bootstrapped .col-lg-push-6 {
    left: 50%;
  }
  .bootstrapped .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .bootstrapped .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .bootstrapped .col-lg-push-9 {
    left: 75%;
  }
  .bootstrapped .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .bootstrapped .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .bootstrapped .col-lg-push-12 {
    left: 100%;
  }
  .bootstrapped .col-lg-offset-0 {
    margin-left: 0%;
  }
  .bootstrapped .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .bootstrapped .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .bootstrapped .col-lg-offset-3 {
    margin-left: 25%;
  }
  .bootstrapped .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .bootstrapped .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .bootstrapped .col-lg-offset-6 {
    margin-left: 50%;
  }
  .bootstrapped .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .bootstrapped .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .bootstrapped .col-lg-offset-9 {
    margin-left: 75%;
  }
  .bootstrapped .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .bootstrapped .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .bootstrapped .col-lg-offset-12 {
    margin-left: 100%;
  }
}
.bootstrapped table {
  max-width: 100%;
  background-color: transparent;
}
.bootstrapped th {
  text-align: left;
}
.bootstrapped .table {
  width: 100%;
  margin-bottom: 20px;
}
.bootstrapped .table > thead > tr > th,
.bootstrapped .table > thead > tr > td,
.bootstrapped .table > tbody > tr > th,
.bootstrapped .table > tbody > tr > td,
.bootstrapped .table > tfoot > tr > th,
.bootstrapped .table > tfoot > tr > td {
  padding: 10px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.bootstrapped .table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.bootstrapped .table > caption + thead > tr:first-child > th,
.bootstrapped .table > caption + thead > tr:first-child > td,
.bootstrapped .table > colgroup + thead > tr:first-child > th,
.bootstrapped .table > colgroup + thead > tr:first-child > td,
.bootstrapped .table > thead:first-child > tr:first-child > th,
.bootstrapped .table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.bootstrapped .table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.bootstrapped .table .table {
  background-color: #fff;
}
.bootstrapped .table-condensed > thead > tr > th,
.bootstrapped .table-condensed > thead > tr > td,
.bootstrapped .table-condensed > tbody > tr > th,
.bootstrapped .table-condensed > tbody > tr > td,
.bootstrapped .table-condensed > tfoot > tr > th,
.bootstrapped .table-condensed > tfoot > tr > td {
  padding: 5px;
}
.bootstrapped .table-bordered {
  border: 1px solid #ddd;
}
.bootstrapped .table-bordered > thead > tr > th,
.bootstrapped .table-bordered > thead > tr > td,
.bootstrapped .table-bordered > tbody > tr > th,
.bootstrapped .table-bordered > tbody > tr > td,
.bootstrapped .table-bordered > tfoot > tr > th,
.bootstrapped .table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.bootstrapped .table-bordered > thead > tr > th,
.bootstrapped .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.bootstrapped .table-striped > tbody > tr:nth-child(odd) > td,
.bootstrapped .table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.bootstrapped .table-hover > tbody > tr:hover > td,
.bootstrapped .table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}
.bootstrapped table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}
.bootstrapped table td[class*=col-],
.bootstrapped table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}
.bootstrapped .table > thead > tr > td.active,
.bootstrapped .table > thead > tr > th.active, .bootstrapped .table > thead > tr.active > td, .bootstrapped .table > thead > tr.active > th,
.bootstrapped .table > tbody > tr > td.active,
.bootstrapped .table > tbody > tr > th.active,
.bootstrapped .table > tbody > tr.active > td,
.bootstrapped .table > tbody > tr.active > th,
.bootstrapped .table > tfoot > tr > td.active,
.bootstrapped .table > tfoot > tr > th.active,
.bootstrapped .table > tfoot > tr.active > td,
.bootstrapped .table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.bootstrapped .table-hover > tbody > tr > td.active:hover,
.bootstrapped .table-hover > tbody > tr > th.active:hover, .bootstrapped .table-hover > tbody > tr.active:hover > td, .bootstrapped .table-hover > tbody > tr.active:hover > th {
  background-color: rgb(232.25, 232.25, 232.25);
}
.bootstrapped .table > thead > tr > td.success,
.bootstrapped .table > thead > tr > th.success, .bootstrapped .table > thead > tr.success > td, .bootstrapped .table > thead > tr.success > th,
.bootstrapped .table > tbody > tr > td.success,
.bootstrapped .table > tbody > tr > th.success,
.bootstrapped .table > tbody > tr.success > td,
.bootstrapped .table > tbody > tr.success > th,
.bootstrapped .table > tfoot > tr > td.success,
.bootstrapped .table > tfoot > tr > th.success,
.bootstrapped .table > tfoot > tr.success > td,
.bootstrapped .table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.bootstrapped .table-hover > tbody > tr > td.success:hover,
.bootstrapped .table-hover > tbody > tr > th.success:hover, .bootstrapped .table-hover > tbody > tr.success:hover > td, .bootstrapped .table-hover > tbody > tr.success:hover > th {
  background-color: rgb(207.8888888889, 232.9166666667, 197.5833333333);
}
.bootstrapped .table > thead > tr > td.info,
.bootstrapped .table > thead > tr > th.info, .bootstrapped .table > thead > tr.info > td, .bootstrapped .table > thead > tr.info > th,
.bootstrapped .table > tbody > tr > td.info,
.bootstrapped .table > tbody > tr > th.info,
.bootstrapped .table > tbody > tr.info > td,
.bootstrapped .table > tbody > tr.info > th,
.bootstrapped .table > tfoot > tr > td.info,
.bootstrapped .table > tfoot > tr > th.info,
.bootstrapped .table > tfoot > tr.info > td,
.bootstrapped .table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.bootstrapped .table-hover > tbody > tr > td.info:hover,
.bootstrapped .table-hover > tbody > tr > th.info:hover, .bootstrapped .table-hover > tbody > tr.info:hover > td, .bootstrapped .table-hover > tbody > tr.info:hover > th {
  background-color: rgb(195.9347826087, 227.0217391304, 242.5652173913);
}
.bootstrapped .table > thead > tr > td.warning,
.bootstrapped .table > thead > tr > th.warning, .bootstrapped .table > thead > tr.warning > td, .bootstrapped .table > thead > tr.warning > th,
.bootstrapped .table > tbody > tr > td.warning,
.bootstrapped .table > tbody > tr > th.warning,
.bootstrapped .table > tbody > tr.warning > td,
.bootstrapped .table > tbody > tr.warning > th,
.bootstrapped .table > tfoot > tr > td.warning,
.bootstrapped .table > tfoot > tr > th.warning,
.bootstrapped .table > tfoot > tr.warning > td,
.bootstrapped .table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.bootstrapped .table-hover > tbody > tr > td.warning:hover,
.bootstrapped .table-hover > tbody > tr > th.warning:hover, .bootstrapped .table-hover > tbody > tr.warning:hover > td, .bootstrapped .table-hover > tbody > tr.warning:hover > th {
  background-color: rgb(249.5322580645, 242.2419354839, 203.9677419355);
}
.bootstrapped .table > thead > tr > td.danger,
.bootstrapped .table > thead > tr > th.danger, .bootstrapped .table > thead > tr.danger > td, .bootstrapped .table > thead > tr.danger > th,
.bootstrapped .table > tbody > tr > td.danger,
.bootstrapped .table > tbody > tr > th.danger,
.bootstrapped .table > tbody > tr.danger > td,
.bootstrapped .table > tbody > tr.danger > th,
.bootstrapped .table > tfoot > tr > td.danger,
.bootstrapped .table > tfoot > tr > th.danger,
.bootstrapped .table > tfoot > tr.danger > td,
.bootstrapped .table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.bootstrapped .table-hover > tbody > tr > td.danger:hover,
.bootstrapped .table-hover > tbody > tr > th.danger:hover, .bootstrapped .table-hover > tbody > tr.danger:hover > td, .bootstrapped .table-hover > tbody > tr.danger:hover > th {
  background-color: rgb(234.7934782609, 203.7065217391, 203.7065217391);
}
@media (max-width: 767px) {
  .bootstrapped .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .bootstrapped .table-responsive > .table {
    margin-bottom: 0;
  }
  .bootstrapped .table-responsive > .table > thead > tr > th,
  .bootstrapped .table-responsive > .table > thead > tr > td,
  .bootstrapped .table-responsive > .table > tbody > tr > th,
  .bootstrapped .table-responsive > .table > tbody > tr > td,
  .bootstrapped .table-responsive > .table > tfoot > tr > th,
  .bootstrapped .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .bootstrapped .table-responsive > .table-bordered {
    border: 0;
  }
  .bootstrapped .table-responsive > .table-bordered > thead > tr > th:first-child,
  .bootstrapped .table-responsive > .table-bordered > thead > tr > td:first-child,
  .bootstrapped .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .bootstrapped .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .bootstrapped .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .bootstrapped .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .bootstrapped .table-responsive > .table-bordered > thead > tr > th:last-child,
  .bootstrapped .table-responsive > .table-bordered > thead > tr > td:last-child,
  .bootstrapped .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .bootstrapped .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .bootstrapped .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .bootstrapped .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .bootstrapped .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .bootstrapped .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .bootstrapped .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .bootstrapped .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
.bootstrapped .btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bootstrapped .btn:focus, .bootstrapped .btn:active:focus, .bootstrapped .btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.bootstrapped .btn:hover, .bootstrapped .btn:focus {
  color: #333;
  text-decoration: none;
}
.bootstrapped .btn:active, .bootstrapped .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.bootstrapped .btn.disabled, .bootstrapped .btn[disabled], fieldset[disabled] .bootstrapped .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.bootstrapped .btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.bootstrapped .btn-default:hover, .bootstrapped .btn-default:focus, .bootstrapped .btn-default:active, .bootstrapped .btn-default.active {
  color: #333;
  background-color: rgb(234.6, 234.6, 234.6);
  border-color: rgb(173.4, 173.4, 173.4);
}
.open .bootstrapped .btn-default.dropdown-toggle {
  color: #333;
  background-color: rgb(234.6, 234.6, 234.6);
  border-color: rgb(173.4, 173.4, 173.4);
}
.bootstrapped .btn-default:active, .bootstrapped .btn-default.active {
  background-image: none;
}
.open .bootstrapped .btn-default.dropdown-toggle {
  background-image: none;
}
.bootstrapped .btn-default.disabled, .bootstrapped .btn-default.disabled:hover, .bootstrapped .btn-default.disabled:focus, .bootstrapped .btn-default.disabled:active, .bootstrapped .btn-default.disabled.active, .bootstrapped .btn-default[disabled], .bootstrapped .btn-default[disabled]:hover, .bootstrapped .btn-default[disabled]:focus, .bootstrapped .btn-default[disabled]:active, .bootstrapped .btn-default[disabled].active, fieldset[disabled] .bootstrapped .btn-default, fieldset[disabled] .bootstrapped .btn-default:hover, fieldset[disabled] .bootstrapped .btn-default:focus, fieldset[disabled] .bootstrapped .btn-default:active, fieldset[disabled] .bootstrapped .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.bootstrapped .btn-default .badge {
  color: #fff;
  background-color: #333;
}
.bootstrapped .btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: rgb(53.1095041322, 126.2603305785, 189.3904958678);
}
.bootstrapped .btn-primary:hover, .bootstrapped .btn-primary:focus, .bootstrapped .btn-primary:active, .bootstrapped .btn-primary.active {
  color: #fff;
  background-color: rgb(49.758677686, 118.294214876, 177.441322314);
  border-color: rgb(39.7061983471, 94.3958677686, 141.5938016529);
}
.open .bootstrapped .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(49.758677686, 118.294214876, 177.441322314);
  border-color: rgb(39.7061983471, 94.3958677686, 141.5938016529);
}
.bootstrapped .btn-primary:active, .bootstrapped .btn-primary.active {
  background-image: none;
}
.open .bootstrapped .btn-primary.dropdown-toggle {
  background-image: none;
}
.bootstrapped .btn-primary.disabled, .bootstrapped .btn-primary.disabled:hover, .bootstrapped .btn-primary.disabled:focus, .bootstrapped .btn-primary.disabled:active, .bootstrapped .btn-primary.disabled.active, .bootstrapped .btn-primary[disabled], .bootstrapped .btn-primary[disabled]:hover, .bootstrapped .btn-primary[disabled]:focus, .bootstrapped .btn-primary[disabled]:active, .bootstrapped .btn-primary[disabled].active, fieldset[disabled] .bootstrapped .btn-primary, fieldset[disabled] .bootstrapped .btn-primary:hover, fieldset[disabled] .bootstrapped .btn-primary:focus, fieldset[disabled] .bootstrapped .btn-primary:active, fieldset[disabled] .bootstrapped .btn-primary.active {
  background-color: #428bca;
  border-color: rgb(53.1095041322, 126.2603305785, 189.3904958678);
}
.bootstrapped .btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}
.bootstrapped .btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: rgb(76.0064102564, 174.4935897436, 76.0064102564);
}
.bootstrapped .btn-success:hover, .bootstrapped .btn-success:focus, .bootstrapped .btn-success:active, .bootstrapped .btn-success.active {
  color: #fff;
  background-color: rgb(71.3641025641, 163.8358974359, 71.3641025641);
  border-color: rgb(57.4371794872, 131.8628205128, 57.4371794872);
}
.open .bootstrapped .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(71.3641025641, 163.8358974359, 71.3641025641);
  border-color: rgb(57.4371794872, 131.8628205128, 57.4371794872);
}
.bootstrapped .btn-success:active, .bootstrapped .btn-success.active {
  background-image: none;
}
.open .bootstrapped .btn-success.dropdown-toggle {
  background-image: none;
}
.bootstrapped .btn-success.disabled, .bootstrapped .btn-success.disabled:hover, .bootstrapped .btn-success.disabled:focus, .bootstrapped .btn-success.disabled:active, .bootstrapped .btn-success.disabled.active, .bootstrapped .btn-success[disabled], .bootstrapped .btn-success[disabled]:hover, .bootstrapped .btn-success[disabled]:focus, .bootstrapped .btn-success[disabled]:active, .bootstrapped .btn-success[disabled].active, fieldset[disabled] .bootstrapped .btn-success, fieldset[disabled] .bootstrapped .btn-success:hover, fieldset[disabled] .bootstrapped .btn-success:focus, fieldset[disabled] .bootstrapped .btn-success:active, fieldset[disabled] .bootstrapped .btn-success.active {
  background-color: #5cb85c;
  border-color: rgb(76.0064102564, 174.4935897436, 76.0064102564);
}
.bootstrapped .btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.bootstrapped .btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: rgb(69.7715736041, 183.845177665, 217.7284263959);
}
.bootstrapped .btn-info:hover, .bootstrapped .btn-info:focus, .bootstrapped .btn-info:active, .bootstrapped .btn-info.active {
  color: #fff;
  background-color: rgb(57.0345177665, 178.952284264, 215.1654822335);
  border-color: rgb(37.9081218274, 153.9299492386, 188.3918781726);
}
.open .bootstrapped .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(57.0345177665, 178.952284264, 215.1654822335);
  border-color: rgb(37.9081218274, 153.9299492386, 188.3918781726);
}
.bootstrapped .btn-info:active, .bootstrapped .btn-info.active {
  background-image: none;
}
.open .bootstrapped .btn-info.dropdown-toggle {
  background-image: none;
}
.bootstrapped .btn-info.disabled, .bootstrapped .btn-info.disabled:hover, .bootstrapped .btn-info.disabled:focus, .bootstrapped .btn-info.disabled:active, .bootstrapped .btn-info.disabled.active, .bootstrapped .btn-info[disabled], .bootstrapped .btn-info[disabled]:hover, .bootstrapped .btn-info[disabled]:focus, .bootstrapped .btn-info[disabled]:active, .bootstrapped .btn-info[disabled].active, fieldset[disabled] .bootstrapped .btn-info, fieldset[disabled] .bootstrapped .btn-info:hover, fieldset[disabled] .bootstrapped .btn-info:focus, fieldset[disabled] .bootstrapped .btn-info:active, fieldset[disabled] .bootstrapped .btn-info.active {
  background-color: #5bc0de;
  border-color: rgb(69.7715736041, 183.845177665, 217.7284263959);
}
.bootstrapped .btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.bootstrapped .btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: rgb(238.0078125, 162.109375, 54.4921875);
}
.bootstrapped .btn-warning:hover, .bootstrapped .btn-warning:focus, .bootstrapped .btn-warning:active, .bootstrapped .btn-warning.active {
  color: #fff;
  background-color: rgb(236.8125, 155.575, 40.3875);
  border-color: rgb(213.2296875, 132.515625, 18.0703125);
}
.open .bootstrapped .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: rgb(236.8125, 155.575, 40.3875);
  border-color: rgb(213.2296875, 132.515625, 18.0703125);
}
.bootstrapped .btn-warning:active, .bootstrapped .btn-warning.active {
  background-image: none;
}
.open .bootstrapped .btn-warning.dropdown-toggle {
  background-image: none;
}
.bootstrapped .btn-warning.disabled, .bootstrapped .btn-warning.disabled:hover, .bootstrapped .btn-warning.disabled:focus, .bootstrapped .btn-warning.disabled:active, .bootstrapped .btn-warning.disabled.active, .bootstrapped .btn-warning[disabled], .bootstrapped .btn-warning[disabled]:hover, .bootstrapped .btn-warning[disabled]:focus, .bootstrapped .btn-warning[disabled]:active, .bootstrapped .btn-warning[disabled].active, fieldset[disabled] .bootstrapped .btn-warning, fieldset[disabled] .bootstrapped .btn-warning:hover, fieldset[disabled] .bootstrapped .btn-warning:focus, fieldset[disabled] .bootstrapped .btn-warning:active, fieldset[disabled] .bootstrapped .btn-warning.active {
  background-color: #f0ad4e;
  border-color: rgb(238.0078125, 162.109375, 54.4921875);
}
.bootstrapped .btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.bootstrapped .btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: rgb(212.4719626168, 62.5046728972, 58.0280373832);
}
.bootstrapped .btn-danger:hover, .bootstrapped .btn-danger:focus, .bootstrapped .btn-danger:active, .bootstrapped .btn-danger.active {
  color: #fff;
  background-color: rgb(209.7551401869, 50.2074766355, 45.4448598131);
  border-color: rgb(172.1345794393, 41.0775700935, 37.1654205607);
}
.open .bootstrapped .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(209.7551401869, 50.2074766355, 45.4448598131);
  border-color: rgb(172.1345794393, 41.0775700935, 37.1654205607);
}
.bootstrapped .btn-danger:active, .bootstrapped .btn-danger.active {
  background-image: none;
}
.open .bootstrapped .btn-danger.dropdown-toggle {
  background-image: none;
}
.bootstrapped .btn-danger.disabled, .bootstrapped .btn-danger.disabled:hover, .bootstrapped .btn-danger.disabled:focus, .bootstrapped .btn-danger.disabled:active, .bootstrapped .btn-danger.disabled.active, .bootstrapped .btn-danger[disabled], .bootstrapped .btn-danger[disabled]:hover, .bootstrapped .btn-danger[disabled]:focus, .bootstrapped .btn-danger[disabled]:active, .bootstrapped .btn-danger[disabled].active, fieldset[disabled] .bootstrapped .btn-danger, fieldset[disabled] .bootstrapped .btn-danger:hover, fieldset[disabled] .bootstrapped .btn-danger:focus, fieldset[disabled] .bootstrapped .btn-danger:active, fieldset[disabled] .bootstrapped .btn-danger.active {
  background-color: #d9534f;
  border-color: rgb(212.4719626168, 62.5046728972, 58.0280373832);
}
.bootstrapped .btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.bootstrapped .btn-link {
  color: #0092d2;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.bootstrapped .btn-link, .bootstrapped .btn-link:active, .bootstrapped .btn-link[disabled], fieldset[disabled] .bootstrapped .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.bootstrapped .btn-link, .bootstrapped .btn-link:hover, .bootstrapped .btn-link:focus, .bootstrapped .btn-link:active {
  border-color: transparent;
}
.bootstrapped .btn-link:hover, .bootstrapped .btn-link:focus {
  color: rgb(0, 92.8142857143, 133.5);
  text-decoration: underline;
  background-color: transparent;
}
.bootstrapped .btn-link[disabled]:hover, .bootstrapped .btn-link[disabled]:focus, fieldset[disabled] .bootstrapped .btn-link:hover, fieldset[disabled] .bootstrapped .btn-link:focus {
  color: #999999;
  text-decoration: none;
}
.bootstrapped .btn-lg, .bootstrapped .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.bootstrapped .btn-sm, .bootstrapped .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 3px;
}
.bootstrapped .btn-xs, .bootstrapped .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 3px;
}
.bootstrapped .btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.bootstrapped .btn-block + .btn-block {
  margin-top: 5px;
}
.bootstrapped input[type=submit].btn-block,
.bootstrapped input[type=reset].btn-block,
.bootstrapped input[type=button].btn-block {
  width: 100%;
}
.bootstrapped .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.bootstrapped .dropdown {
  position: relative;
}
.bootstrapped .dropdown-toggle:focus {
  outline: 0;
}
.bootstrapped .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.bootstrapped .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.bootstrapped .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.bootstrapped .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}
.bootstrapped .dropdown-menu li table td {
  background: transparent;
  border: 0;
  height: auto;
}
.bootstrapped .dropdown-menu li table thead button.pull-left, .bootstrapped .dropdown-menu li table thead button.pull-right {
  width: 35px !important;
}
.bootstrapped .dropdown-menu li table tbody td button {
  width: 35px !important;
  height: 35px !important;
}
.bootstrapped .dropdown-menu li .btn-group > .btn {
  width: 52px;
}
.bootstrapped .dropdown-menu > li > a:hover, .bootstrapped .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: rgb(38.25, 38.25, 38.25);
  background-color: #f5f5f5;
}
.bootstrapped .dropdown-menu > .active > a, .bootstrapped .dropdown-menu > .active > a:hover, .bootstrapped .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}
.bootstrapped .dropdown-menu > .disabled > a, .bootstrapped .dropdown-menu > .disabled > a:hover, .bootstrapped .dropdown-menu > .disabled > a:focus {
  color: #999999;
}
.bootstrapped .dropdown-menu > .disabled > a:hover, .bootstrapped .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.bootstrapped .open > .dropdown-menu {
  display: block;
}
.bootstrapped .open > a {
  outline: 0;
}
.bootstrapped .dropdown-menu-right {
  left: auto;
  right: 0;
}
.bootstrapped .dropdown-menu-left {
  left: 0;
  right: auto;
}
.bootstrapped .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 1.3rem;
  line-height: 1.428571429;
  color: #999999;
}
.bootstrapped .dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.bootstrapped .pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.bootstrapped .dropup .caret,
.bootstrapped .navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}
.bootstrapped .dropup .dropdown-menu,
.bootstrapped .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
@media (min-width: 768px) {
  .bootstrapped .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .bootstrapped .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.bootstrapped .btn-group,
.bootstrapped .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.bootstrapped .btn-group > .btn,
.bootstrapped .btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.bootstrapped .btn-group > .btn:hover, .bootstrapped .btn-group > .btn:focus, .bootstrapped .btn-group > .btn:active, .bootstrapped .btn-group > .btn.active,
.bootstrapped .btn-group-vertical > .btn:hover,
.bootstrapped .btn-group-vertical > .btn:focus,
.bootstrapped .btn-group-vertical > .btn:active,
.bootstrapped .btn-group-vertical > .btn.active {
  z-index: 2;
}
.bootstrapped .btn-group > .btn:focus,
.bootstrapped .btn-group-vertical > .btn:focus {
  outline: none;
}
.bootstrapped .btn-group .btn + .btn,
.bootstrapped .btn-group .btn + .btn-group,
.bootstrapped .btn-group .btn-group + .btn,
.bootstrapped .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.bootstrapped .btn-toolbar {
  margin-left: -5px;
}
.bootstrapped .btn-toolbar:before, .bootstrapped .btn-toolbar:after {
  content: " ";
  display: table;
}
.bootstrapped .btn-toolbar:after {
  clear: both;
}
.bootstrapped .btn-toolbar .btn-group,
.bootstrapped .btn-toolbar .input-group {
  float: left;
}
.bootstrapped .btn-toolbar > .btn,
.bootstrapped .btn-toolbar > .btn-group,
.bootstrapped .btn-toolbar > .input-group {
  margin-left: 5px;
}
.bootstrapped .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.bootstrapped .btn-group > .btn:first-child {
  margin-left: 0;
}
.bootstrapped .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.bootstrapped .btn-group > .btn:last-child:not(:first-child),
.bootstrapped .btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.bootstrapped .btn-group > .btn-group {
  float: left;
}
.bootstrapped .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.bootstrapped .btn-group > .btn-group:first-child > .btn:last-child,
.bootstrapped .btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.bootstrapped .btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.bootstrapped .btn-group .dropdown-toggle:active,
.bootstrapped .btn-group.open .dropdown-toggle {
  outline: 0;
}
.bootstrapped .btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.bootstrapped .btn-group > .btn-lg + .dropdown-toggle, .bootstrapped .btn-group.btn-group-lg > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.bootstrapped .btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.bootstrapped .btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.bootstrapped .btn .caret {
  margin-left: 0;
}
.bootstrapped .btn-lg .caret, .bootstrapped .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.bootstrapped .dropup .btn-lg .caret, .bootstrapped .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}
.bootstrapped .btn-group-vertical > .btn,
.bootstrapped .btn-group-vertical > .btn-group,
.bootstrapped .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.bootstrapped .btn-group-vertical > .btn-group:before, .bootstrapped .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.bootstrapped .btn-group-vertical > .btn-group:after {
  clear: both;
}
.bootstrapped .btn-group-vertical > .btn-group > .btn {
  float: none;
}
.bootstrapped .btn-group-vertical > .btn + .btn,
.bootstrapped .btn-group-vertical > .btn + .btn-group,
.bootstrapped .btn-group-vertical > .btn-group + .btn,
.bootstrapped .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.bootstrapped .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.bootstrapped .btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.bootstrapped .btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.bootstrapped .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.bootstrapped .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.bootstrapped .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.bootstrapped .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.bootstrapped .btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.bootstrapped .btn-group-justified > .btn,
.bootstrapped .btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.bootstrapped .btn-group-justified > .btn-group .btn {
  width: 100%;
}
.bootstrapped [data-toggle=buttons] > .btn > input[type=radio],
.bootstrapped [data-toggle=buttons] > .btn > input[type=checkbox] {
  display: none;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.bootstrapped .progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: rgb(214, 214, 214);
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.bootstrapped .progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 1.3rem;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #428bca;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.bootstrapped .progress-striped .progress-bar {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.bootstrapped .progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.bootstrapped .progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .bootstrapped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.bootstrapped .progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .bootstrapped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.bootstrapped .progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .bootstrapped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.bootstrapped .progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .bootstrapped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.bootstrapped .modal-open {
  overflow: hidden;
}
.bootstrapped .modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.bootstrapped .modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.bootstrapped .modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.bootstrapped .modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.bootstrapped .modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}
.bootstrapped .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.bootstrapped .modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.bootstrapped .modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.bootstrapped .modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px;
}
.bootstrapped .modal-header .close {
  margin-top: -2px;
}
.bootstrapped .modal-title {
  margin: 0;
  line-height: 1.428571429;
}
.bootstrapped .modal-body {
  position: relative;
  padding: 20px;
}
.bootstrapped .modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.bootstrapped .modal-footer:before, .bootstrapped .modal-footer:after {
  content: " ";
  display: table;
}
.bootstrapped .modal-footer:after {
  clear: both;
}
.bootstrapped .modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.bootstrapped .modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.bootstrapped .modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
@media (min-width: 768px) {
  .bootstrapped .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .bootstrapped .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .bootstrapped .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .bootstrapped .modal-lg {
    width: 900px;
  }
}
.bootstrapped .tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 1.3rem;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
.bootstrapped .tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.bootstrapped .tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.bootstrapped .tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.bootstrapped .tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.bootstrapped .tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.bootstrapped .tooltip-inner {
  max-width: 300px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}
.bootstrapped .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.bootstrapped .tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.bootstrapped .tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.bootstrapped .tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.bootstrapped .tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.bootstrapped .tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.bootstrapped .tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.bootstrapped .tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.bootstrapped .tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.bootstrapped .clearfix:before, .bootstrapped .clearfix:after {
  content: " ";
  display: table;
}
.bootstrapped .clearfix:after {
  clear: both;
}
.bootstrapped .center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bootstrapped .pull-right {
  float: right !important;
}
.bootstrapped .pull-left {
  float: left !important;
}
.bootstrapped .hide {
  display: none !important;
}
.bootstrapped .show {
  display: block !important;
}
.bootstrapped .invisible {
  visibility: hidden;
}
.bootstrapped .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.bootstrapped .hidden {
  display: none !important;
  visibility: hidden !important;
}
.bootstrapped .affix {
  position: fixed;
}
.bootstrapped button {
  line-height: 1em;
}
.bootstrapped.left-align-tooltip .tooltip-inner {
  text-align: left;
}
.bootstrapped.timepicker {
  margin-bottom: 0;
}
.bootstrapped.timepicker table, .bootstrapped.timepicker table tr, .bootstrapped.timepicker table tr td, .bootstrapped.timepicker table tr th, .bootstrapped.timepicker button, .bootstrapped.timepicker table tr th button {
  border: 0;
  padding: 0;
  font-weight: normal;
  font-family: Arial, Verdana, Tahoma, sans-serif;
  font-size: 1.4rem;
  width: auto !important;
  height: auto !important;
  line-height: 1em;
  max-width: none !important;
  max-height: none !important;
  background-color: #fff;
}
.bootstrapped.timepicker table tbody tr th {
  font-weight: bold;
  color: #595959;
}
.bootstrapped.timepicker table tbody tr td input {
  width: 45px;
}
.bootstrapped.timepicker table tbody tr td .btn {
  width: 100%;
  padding: 0;
}
.bootstrapped.timepicker table tbody tr td .btn span.glyphicon-chevron-up {
  background: url("../static/img/arrow-big-blue-up.png") no-repeat center center;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  width: auto;
  height: 8px;
}
.bootstrapped.timepicker table tbody tr td .btn span.glyphicon-chevron-down {
  background: url("../static/img/arrow-big-blue-down.png") no-repeat center center;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  width: auto;
  height: 8px;
}
.bootstrapped.datepicker .dropdown-menu {
  padding: 0 0 10px;
}
.bootstrapped.datepicker .dropdown-menu li {
  padding: 0;
  margin: 0;
  font-weight: normal;
  font-size: 1.4rem;
  width: auto !important;
  height: auto !important;
  line-height: 1em;
}
.bootstrapped.datepicker .dropdown-menu li table, .bootstrapped.datepicker .dropdown-menu li table tr, .bootstrapped.datepicker .dropdown-menu li table tr td, .bootstrapped.datepicker .dropdown-menu li table tr th, .bootstrapped.datepicker .dropdown-menu li button, .bootstrapped.datepicker .dropdown-menu li table tr th button {
  border: 0;
  padding: 0;
  font-weight: normal;
  font-family: Arial, Verdana, Tahoma, sans-serif;
  font-size: 1.4rem;
  width: auto !important;
  height: auto !important;
  line-height: 1em;
  max-width: none !important;
  max-height: none !important;
}
.bootstrapped.datepicker .dropdown-menu li table thead tr th {
  font-weight: bold;
  color: #595959;
}
.bootstrapped.datepicker .dropdown-menu li table thead tr:first-child th {
  height: 50px !important;
  vertical-align: middle;
  text-align: center;
}
.bootstrapped.datepicker .dropdown-menu li table thead tr:first-child th .btn i {
  background: url("../static/img/datepicker-blue-arrow-left.png") no-repeat center center;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  width: 35px;
  height: 50px;
}
.bootstrapped.datepicker .dropdown-menu li table thead tr:first-child th .btn i.glyphicon-chevron-right {
  background-image: url("../static/img/datepicker-blue-arrow-right.png");
}
.bootstrapped.datepicker .dropdown-menu li table thead tr:first-child th .btn.btn-block {
  display: inline-block;
}
.bootstrapped.datepicker .dropdown-menu li table tbody tr td {
  height: 35px !important;
  min-width: 35px !important;
  color: #797979;
}
.bootstrapped.datepicker .dropdown-menu li table tbody tr td .btn {
  padding: 5px;
  color: #797979;
}
.bootstrapped.datepicker .dropdown-menu li table tbody tr td .btn.btn-info {
  background: #ff9600;
  color: #fff;
}
.bootstrapped.datepicker .dropdown-menu li table tbody tr td .btn:disabled {
  color: #ccc;
}

/* GLOBAL CLASSES global-classes.scss */
.valid-false,
.invalid {
  color: #b80000;
}

input.invalid, input.ng-invalid, textarea.invalid, textarea.ng-invalid {
  border: 1px solid #b80000;
}

/*.ng-invalid {
  color: $warning-color;
}*/
.no-margin {
  margin: 0;
}

.float.left {
  float: left;
}
.float.right {
  float: right;
}
.float.none {
  float: none;
}

.relative {
  position: relative;
  top: 0;
  left: 0;
}
.relative.bottom {
  top: auto;
  bottom: 0;
}

.absolute {
  position: absolute;
  top: 0;
  left: 0;
}
.absolute.bottom {
  top: auto;
  bottom: 0;
}

.clear {
  text-indent: -9999px;
  overflow: hidden;
  clear: both;
  height: 0;
}

.container-hitta {
  width: 1216px;
}

.clickable {
  cursor: pointer;
}

.uppercase-medium {
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}

.money-text {
  font-size: 18px;
  font-size: 1.8rem;
  color: #ff9600;
  font-weight: bold;
}

.custom-radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 15px;
  font-size: 13px;
}
.custom-radio input[type=radio],
.custom-radio input[type=checkbox] {
  display: none;
}
.custom-radio label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background-color: #0092d2;
}
.custom-radio .radio label:before {
  border-radius: 8px;
}
.custom-radio input[type=radio]:checked + label:before {
  content: "•";
  color: white;
  font-size: 29px;
  text-align: center;
  line-height: 18px;
}

.italic {
  font-style: italic;
}

.maxDivWidth {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 150px;
  line-height: 1.1em;
}
.maxDivWidth.narrow {
  width: 100px;
}
.maxDivWidth.wide {
  width: 200px;
}

.red {
  color: #b80000;
}

.bold {
  font-weight: bold;
}

.shadow {
  opacity: 0.5;
}

.right-align {
  text-align: right;
}

.highlight {
  color: #ff9600;
}

.big-text {
  font-size: 1.8rem;
}

.xtreme-text {
  font-size: 2.2rem;
}

.diff {
  color: #e70000;
}

/* MAIN DESIGN RULES main.scss */
body > header {
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #e3e3e3 0%, #f2f2f2 100%);
  z-index: 105;
}
body > header h1 {
  position: absolute;
  top: 7px;
  left: 10px;
}
body > header h1 a {
  background: url("../static/img/hitta-os-logotype.png") no-repeat 0 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 38px;
  height: 39px;
}
body > header > nav {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 110;
}
body > header > nav ul {
  float: left;
}
body > header > nav ul.main-menu > li {
  float: left;
}
body > header > nav ul.main-menu > li > a {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  background: #0092d2;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
  cursor: pointer;
}
body > header > nav ul.main-menu > li > a:hover {
  color: #fff;
  background: #0081bd;
}
body > header > nav ul.main-menu > li > a {
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid;
  border-color: #3eacdf #008cce #0077af;
  padding: 7px 0;
  width: 85px;
  margin: 0 5px 0 0;
}
body > header > nav ul.main-menu > li.hasSubRoutes {
  position: relative;
  top: 0;
  left: 0;
}
body > header > nav ul.main-menu > li.hasSubRoutes > a span {
  display: block;
  background: url("../static/img/white-arrow-down.png") no-repeat right center;
  margin: 0 6px 0 0;
}
body > header > nav ul.main-menu > li.hasSubRoutes ul {
  position: absolute;
  top: 30px;
  left: -1px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid #dedede;
  background: #fff;
}
body > header > nav ul.main-menu > li.hasSubRoutes ul li a {
  display: block;
  padding: 7px 9px;
  white-space: nowrap;
  border-bottom: 1px solid #e9e9e9;
}
body > header > nav ul.main-menu > li.hasSubRoutes ul li:last-child a {
  border: 0;
}
body > header > nav ul.user-menu {
  position: relative;
  top: 0;
  left: 0;
  font-size: 1.3rem;
  margin: 9px 0 0 13px;
}
body > header > nav ul.user-menu > li {
  display: inline;
}
body > header > nav ul.user-menu > li > a {
  display: block;
  color: #000;
  background: url("../static/img/black-arrow-down.png") no-repeat right center;
  padding-right: 11px;
}
body > header > nav ul.user-menu > li > a:hover {
  color: #0092d2;
}
body > header > nav ul.user-menu > li ul {
  position: absolute;
  top: 20px;
  right: -10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid #dedede;
  background: #fff;
}
body > header > nav ul.user-menu > li ul li a {
  display: block;
  padding: 7px 9px;
  white-space: nowrap;
  border-bottom: 1px solid #e9e9e9;
}
body > header > nav ul.user-menu > li ul li:last-child a {
  border: 0;
}
body > header > nav ul.user-menu > li ul a {
  text-align: right;
}
body > header > aside {
  display: inline;
}
body > header > aside nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #dedede;
  font-weight: bold;
  overflow: hidden;
  height: 33px;
}
body > header > aside nav ul {
  margin: 0 0 0 55px;
}
body > header > aside nav ul > li {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  position: relative;
  top: 1px;
  left: 0;
  display: block;
  float: left;
  margin: 0 4px 0 0;
  font-size: 1.3rem;
  border-bottom: 1px solid #dedede;
  letter-spacing: 0.2px;
}
body > header > aside nav ul > li > a {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  background: #0092d2;
  color: #fff;
  padding: 9px 6px 9px 9px;
  float: left;
}
body > header > aside nav ul > li > a:first-child {
  -webkit-border-radius: 3px 0 0 0;
  -moz-border-radius: 3px 0 0 0;
  border-radius: 3px 0 0 0;
}
body > header > aside nav ul > li > a.close-button {
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
  padding: 9px 4px;
  letter-spacing: normal;
}
body > header > aside nav ul > li > a:hover {
  background: #0081bd;
  color: #fff;
}
body > header > aside nav ul > li.no-close > a {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  padding: 9px;
}
body > header > aside nav ul > li.active {
  border: 1px solid #dedede;
  border-bottom: 0;
}
body > header > aside nav ul > li.active > a, body > header > aside nav ul > li.active > a:hover {
  cursor: default;
  background: #fff;
  color: #333;
}
body > header > aside nav ul > li.active > a.close-button {
  cursor: pointer;
  color: #0092d2;
}
body > header > aside nav ul > li.active > a.close-button:hover {
  color: #333;
}
body > article > section {
  padding: 91px 0 0;
}

/* MODULE RULES module.scss*/
.module-wrapper {
  border-bottom: 1px solid #dedede;
}
.module-wrapper.no-border {
  border: 0;
}
.module-wrapper.menu {
  position: fixed;
  top: 90px;
  left: 0px;
  z-index: 100;
  width: 100%;
  background: #fff;
}
.module-wrapper.has-menu-sibling {
  margin-top: 40px;
}
.module-wrapper .module-grid-wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 1216px;
  margin: auto;
}
.module-wrapper .module-grid-wrapper.border-left, .module-wrapper .module-grid-wrapper.border-right, .module-wrapper .module-grid-wrapper.border-top {
  border-color: #dedede;
  border-style: solid;
}
.module-wrapper .module-grid-wrapper.border-left {
  border-left-width: 1px;
}
.module-wrapper .module-grid-wrapper.border-right {
  border-right-width: 1px;
}
.module-wrapper .module-grid-wrapper.border-top {
  border-top-width: 1px;
}
.module-wrapper .module {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 37px 0 30px;
  width: 1216px;
  margin: auto;
}
.module-wrapper .module .title-with-info h2, .module-wrapper .module .title-with-info h3 {
  margin: 0;
}
.module-wrapper .module .title-with-info {
  margin: 0 0 36px;
}
.module-wrapper .module h2, .module-wrapper .module h3 {
  text-transform: uppercase;
  margin: 0 0 36px;
  line-height: 32px;
}
.module-wrapper .module h2.float.left, .module-wrapper .module h3.float.left {
  margin-right: 26px;
}
.module-wrapper .module.xlarge {
  width: 1650px;
}
.module-wrapper .module.no-padding-bottom {
  padding-bottom: 0;
}
.module-wrapper .module .opening-hours-dl .opening-hours-edit--wrapper {
  display: inline-block;
  width: 100%;
  padding: 10px;
  border-top: 1px solid #efefef;
  background-color: #f2f2f2;
  margin-bottom: 20px;
}
.module-wrapper .module .opening-hours-dl .opening-hours-edit--open {
  display: flex;
  float: right;
  flex-direction: column;
}
.module-wrapper .module .opening-hours-dl dt {
  float: left;
  width: 150px;
  margin: 5px 5px 5px 0px;
  clear: left;
}
.module-wrapper .module .opening-hours-dl dt:after {
  content: ":";
}
.module-wrapper .module .opening-hours-dl dt.is-today {
  font-weight: bold;
}
.module-wrapper .module .opening-hours-dl dt.no-after:after {
  content: "";
}
.module-wrapper .module .opening-hours-dl dd {
  float: left;
  margin: 5px 15px 5px 0px;
}
.module-wrapper .module .opening-hours-dl dd.is-today {
  font-weight: bold;
}
.module-wrapper .module h2.info {
  position: relative;
  top: 0;
  left: 0;
}
.module-wrapper .module h2.info span {
  position: absolute;
  top: 28px;
  left: 0px;
  text-transform: none;
  display: block;
  color: #797979;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 14px;
}
.module-wrapper .module h3 {
  margin: 0 0 27px;
  line-height: 24px;
}
.module-wrapper .module hgroup {
  margin: 0 0 36px;
}
.module-wrapper .module hgroup h2 {
  margin: 0 0 9px;
}
.module-wrapper .module hgroup h3 {
  font-size: 1.8rem;
  font-weight: bold;
}
.module-wrapper .module hgroup div {
  color: #797979;
  font-size: 1.2rem;
  margin: 9px 0 0 0;
}
.module-wrapper .module .columns.eighty {
  width: 80%;
}
.module-wrapper .module .columns .column {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 50%;
  padding: 0 20px 0 0;
}
.module-wrapper .module .columns .column.third {
  width: 33%;
}
.module-wrapper .module .columns .column.rest {
  width: auto;
}
.module-wrapper .module .columns .column .small-input, .module-wrapper .module .columns .column .large-input, .module-wrapper .module .columns .column .medium-input {
  width: 64px;
  margin-right: 15px;
}
.module-wrapper .module .columns .column .small-input input, .module-wrapper .module .columns .column .large-input input, .module-wrapper .module .columns .column .medium-input input {
  width: 100%;
  margin-right: 0;
}
.module-wrapper .module .columns .column .medium-input {
  width: 129px;
}
.module-wrapper .module .columns .column .large-input {
  width: 200px;
  height: 300px;
}
.module-wrapper .module .columns .column.quarter {
  width: 25%;
}
.module-wrapper .module .columns .column.no-float {
  clear: both;
  float: none;
  width: 100%;
}
.module-wrapper .module .columns.four .column {
  width: 25%;
  padding: 0;
}
.module-wrapper .module.no-padding-right {
  padding-right: 0;
}
.module-wrapper .module.grid, .module-wrapper .module .grid-part {
  float: left;
}
.module-wrapper .module.grid.thirtythree, .module-wrapper .module .grid-part.thirtythree {
  width: 33.3333333333%;
}
.module-wrapper .module.grid.fourtyfive, .module-wrapper .module .grid-part.fourtyfive {
  width: 45%;
}
.module-wrapper .module.grid.fiftyfive, .module-wrapper .module .grid-part.fiftyfive {
  width: 55%;
}
.module-wrapper .module.grid.x-mini, .module-wrapper .module .grid-part.x-mini {
  width: 20%;
}
.module-wrapper .module.grid.mini, .module-wrapper .module .grid-part.mini {
  width: 30%;
}
.module-wrapper .module.grid.x-small, .module-wrapper .module .grid-part.x-small {
  width: 35%;
}
.module-wrapper .module.grid.small, .module-wrapper .module .grid-part.small {
  width: 40%;
}
.module-wrapper .module.grid.medium, .module-wrapper .module .grid-part.medium {
  width: 50%;
}
.module-wrapper .module.grid.x-medium, .module-wrapper .module .grid-part.x-medium {
  width: 55%;
}
.module-wrapper .module.grid.big, .module-wrapper .module .grid-part.big {
  width: 60%;
}
.module-wrapper .module.grid.big-odd, .module-wrapper .module .grid-part.big-odd {
  width: 65%;
}
.module-wrapper .module.grid.x-big, .module-wrapper .module .grid-part.x-big {
  width: 70%;
}
.module-wrapper .module.grid.huge, .module-wrapper .module .grid-part.huge {
  width: 80%;
}
.module-wrapper .module.grid.traffic-list, .module-wrapper .module .grid-part.traffic-list {
  width: 66%;
}
.module-wrapper .module.grid.traffic-edit, .module-wrapper .module .grid-part.traffic-edit {
  width: 34%;
}
.module-wrapper .module.grid.traffic-edit.fixed, .module-wrapper .module .grid-part.traffic-edit.fixed {
  height: 100%;
  overflow: auto;
  padding-top: 168px;
  padding-left: 20px;
  position: fixed;
  right: 0;
  top: 0;
}
.module-wrapper .module.grid.border-left, .module-wrapper .module.grid.border-right, .module-wrapper .module.grid.border-top, .module-wrapper .module .grid-part.border-left, .module-wrapper .module .grid-part.border-right, .module-wrapper .module .grid-part.border-top {
  border-color: #dedede;
  border-style: solid;
}
.module-wrapper .module.grid.border-left, .module-wrapper .module .grid-part.border-left {
  border-left-width: 1px;
}
.module-wrapper .module.grid.border-right, .module-wrapper .module .grid-part.border-right {
  border-right-width: 1px;
}
.module-wrapper .module.grid.border-top, .module-wrapper .module .grid-part.border-top {
  border-top-width: 1px;
}
.module-wrapper .module.grid.padding, .module-wrapper .module .grid-part.padding {
  padding-left: 10px;
  padding-right: 10px;
}
.module-wrapper .module.grid.padding-left, .module-wrapper .module .grid-part.padding-left {
  padding-left: 10px;
}
.module-wrapper .module.grid.padding-right, .module-wrapper .module .grid-part.padding-right {
  padding-right: 10px;
}
.module-wrapper .module.grid.padding-big, .module-wrapper .module .grid-part.padding-big {
  padding-left: 30px;
  padding-right: 30px;
}
.module-wrapper .module.grid.padding-left-big, .module-wrapper .module .grid-part.padding-left-big {
  padding-left: 30px;
}
.module-wrapper .module.grid.padding-right-big, .module-wrapper .module .grid-part.padding-right-big {
  padding-right: 30px;
}
.module-wrapper .module.grid.padding-top-big, .module-wrapper .module .grid-part.padding-top-big {
  padding-top: 30px;
}
.module-wrapper .module.grid.padding-bottom-big, .module-wrapper .module .grid-part.padding-bottom-big {
  padding-bottom: 30px;
}
.module-wrapper .module.grid.no-padding, .module-wrapper .module .grid-part.no-padding {
  padding: 0;
}
.module-wrapper .module.grid.no-padding-bottom, .module-wrapper .module .grid-part.no-padding-bottom {
  padding-bottom: 0;
}
.module-wrapper .module.grid.no-padding-top, .module-wrapper .module .grid-part.no-padding-top {
  padding-top: 0;
}
.module-wrapper .module.grid .columns .column input,
.module-wrapper .module.grid .columns .column .input-wrapper,
.module-wrapper .module.grid .columns .column .dropdown,
.module-wrapper .module.grid .columns .column .dropdown > li > a, .module-wrapper .module .grid-part .columns .column input,
.module-wrapper .module .grid-part .columns .column .input-wrapper,
.module-wrapper .module .grid-part .columns .column .dropdown,
.module-wrapper .module .grid-part .columns .column .dropdown > li > a {
  width: 100%;
  margin-right: 0;
}
.module-wrapper .module .grid-part {
  float: none;
}
.module-wrapper .module.large,
.module-wrapper .module-grid-wrapper.large {
  width: 1396px;
}
.module-wrapper .module.onehundred,
.module-wrapper .module-grid-wrapper.onehundred {
  width: 100%;
  padding-left: 75px;
  padding-right: 75px;
}
.module-wrapper .module-menu {
  width: 1290px;
  margin: auto;
  height: 40px;
}
.module-wrapper .module-menu li {
  display: inline;
}
.module-wrapper .module-menu li a {
  display: block;
  float: left;
  padding: 13px 30px 13px 0;
  font-size: 1.6rem;
}
.module-wrapper .module-menu li a.order-locked {
  color: #e70000;
  font-weight: bold;
}
.module-wrapper .module-menu li a.order-locked:hover {
  color: #333;
}
.module-wrapper .module-menu li a.order-locked.disabled {
  color: #ccc;
  cursor: default;
}
.module-wrapper .module-menu li a.order-locked span {
  color: #797979;
  font-size: 1.4rem;
  font-weight: normal;
}

.login-module-wrapper {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 300;
  width: 100%;
  height: 100%;
}
.login-module-wrapper > .login-module {
  width: 90%;
  max-width: 260px;
  margin: 16% auto 0;
}
.login-module-wrapper > .login-module h2 {
  background: url("../static/img/hitta-logo.svg") no-repeat 0 0;
  background-size: 100%;
  display: block;
  margin: 0 auto 20px;
  width: 90px;
  height: 90px;
  text-indent: -1000000px;
}
.login-module-wrapper > .login-module .g-sign-in {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #1a73e8;
  color: #fff;
  border-radius: 20px;
  height: 40px;
  font-family: "Roboto";
  transition: background-color 0.218s;
}
.login-module-wrapper > .login-module .g-sign-in:hover {
  background-color: #3aa3ff;
  cursor: pointer;
}
.login-module-wrapper > .login-module .g-login-icon {
  display: flex;
  background: url("../static/img/logo_google.svg") transparent 50% 50% no-repeat;
  background-color: #fff;
  border-radius: 18px;
  margin-left: 2px;
  min-width: 36px;
  width: 36px;
  height: 36px;
}
.login-module-wrapper > .login-module .g-login-text {
  flex: 1;
  text-align: center;
  margin-left: -20px;
}

/* MODULE PARTS module-parts.scss */
.dropdown {
  float: left;
  position: relative;
  top: 0;
  left: 0;
  text-align: left;
}
.dropdown li {
  display: inline;
}
.dropdown > li.label {
  position: absolute;
  top: -18px;
  left: 0;
}
.dropdown > li.checkbox-label {
  position: absolute;
  top: -19px;
  left: 0;
}
.dropdown > li.checkbox-label .checkbox label {
  font-weight: bold;
  color: #595959;
}
.dropdown > li > a {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 210px;
  border: 1px solid #0092d2;
  padding: 0 34px 0 10px;
  background: #fff url("../static/img/hitta-os-dropdown-icon.png") no-repeat center right;
  overflow: hidden;
  margin: 0 20px 30px 0;
  color: #797979;
  height: 34px;
  line-height: 34px;
}
.dropdown > li > a.slim {
  margin: 0;
}
.dropdown > li > a.medium {
  width: 120px;
}
.dropdown > li > a:focus {
  background-color: #f2f2f2;
}
.dropdown > li > a.placeholder {
  color: #aaa;
  font-size: 1.3rem;
}
.dropdown > li > a.disable, .dropdown > li > a.disabled {
  border-color: #ccc;
  color: #ccc;
  cursor: default;
  background-image: url("../static/img/hitta-os-dropdown-icon-dis.png");
}
.dropdown > li > a.date {
  width: 138px;
}
.dropdown > li > a.narrow-margin-right {
  margin-right: 10px;
}
.dropdown > li > a.social-media {
  width: 160px;
  margin: 0 10px 10px 0;
}
.dropdown > li > a.oh-dropdown {
  width: 160px;
}
.dropdown > li > a.last {
  margin-right: 0;
  margin-bottom: 20px;
}
.dropdown > li ul {
  position: absolute;
  top: 35px;
  left: -14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  background: #fff;
  width: 250px;
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 95;
}
.dropdown > li ul li a {
  display: block;
  padding: 5px;
  cursor: pointer;
}
.dropdown > li ul li a.reset, .dropdown > li ul li a.run {
  color: #aaa;
  font-size: 1.3rem;
}
.dropdown > li ul li a.run {
  font-weight: bold;
}
.dropdown > li ul li a.active, .dropdown > li ul li a:hover, .dropdown > li ul li a:focus {
  background: #f2f2f2;
}
.dropdown > li ul li.with-check-box a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 205px;
  padding-left: 0;
}
.dropdown > li ul li.with-check-box .check-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  display: block;
  margin: 4px 5px 0 5px;
}
.dropdown > li ul li.input {
  display: block;
  text-align: center;
  padding: 3px;
}
.dropdown > li ul li input {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.3rem;
  width: 100%;
  padding: 4px;
  border: 1px solid #dedede;
}
.dropdown > li ul li.disabled .check-box {
  background-image: url("../static/img/checkbox-disabled.png");
}
.dropdown > li ul li.disabled a {
  color: #ccc;
  cursor: default;
}

.user-error-message {
  display: grid;
  line-height: initial;
}
.user-error-message strong {
  margin-bottom: 1rem;
}
.user-error-message dt {
  float: left;
  font-weight: bold;
  margin-right: 0.5rem;
}
.user-error-message dt::after {
  content: ": ";
}
.user-error-message dd {
  margin-top: 1.5rem;
}
.user-error-message dd.link {
  cursor: pointer;
  color: #0092d2;
}
.user-error-message dd.link::hover {
  color: #333;
}

.button-group-toggle {
  display: flex;
  margin-top: 1em;
  align-items: center;
  justify-content: end;
}
.button-group-toggle input[type=radio] {
  display: none;
}
.button-group-toggle input[type=radio]:checked + label {
  color: #fff;
  background-color: #0092d2;
}
.button-group-toggle input[type=radio]:checked + label.orange {
  background-color: #ff9600;
}
.button-group-toggle input[type=radio]:checked + label.green {
  background-color: #72c100;
}
.button-group-toggle input[type=radio]:checked + label.red {
  background-color: #fa4848;
}
.button-group-toggle label {
  font-weight: normal;
  padding: 0.6em 0.9em;
  background-color: #fff;
  color: #0092d2;
  border: 0.1em solid #0081bd;
}
.button-group-toggle label:not(:first-of-type) {
  margin-left: -0.1em;
}
.button-group-toggle label:first-of-type {
  border-radius: 0.35em 0 0 0.35em;
}
.button-group-toggle label:last-of-type {
  border-radius: 0 0.35em 0.35em 0;
}
.button-group-toggle label:hover {
  color: #fff;
  background: #0081bd;
}

.smalldropbox {
  margin: 0 !important;
  width: 100px !important;
}

tr.show-more-button td,
tr:nth-child(odd).show-more-button td {
  border: 0 !important;
  background: #fff !important;
  padding: 0;
  height: auto;
}
tr.show-more-button td a,
tr:nth-child(odd).show-more-button td a {
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  display: block;
  background: #333 url("../static/img/white-arrow-down.png") no-repeat 69px center;
  font-size: 1.2rem;
  line-height: 1em;
  color: #fff;
  margin: 0 auto -18px;
  text-align: center;
  width: 85px;
  padding: 2px 0 4px;
}
tr.show-more-button.inside td,
tr:nth-child(odd).show-more-button.inside td {
  padding: 0 0 30px;
}

a.show-more-button {
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  display: block;
  background: #333 url("../static/img/white-arrow-down.png") no-repeat 69px center;
  font-size: 1.2rem;
  line-height: 1em;
  color: #fff;
  margin: 0 auto -18px;
  text-align: center;
  width: 85px;
  padding: 2px 0 4px;
}
a.show-more-button.up {
  background-image: url("../static/img/white-arrow-up.png");
}
a.sort {
  background: url("../static/img/sort-icon.png") no-repeat right center;
  color: #595959;
  padding-right: 10px;
}
a.sort.active {
  background-image: url("../static/img/sort-icon-up.png");
}
a.sort.active.desc {
  background-image: url("../static/img/sort-icon-down.png");
}
a.sort:hover {
  color: #0092d2;
}

.order-status,
.order-comments {
  color: #797979;
}
.order-status ul,
.order-comments ul {
  margin: 0 0 12px 0;
}
.order-status ul li,
.order-comments ul li {
  padding: 0 0 0 10px;
}
.order-status ul li.title,
.order-comments ul li.title {
  font-weight: bold;
  font-size: 1.3rem;
  color: #595959;
  display: inline-block;
  margin: 0 0 3px 0;
  background: url("../static/img/list-bullet.png") no-repeat left center;
}

.mail-leads {
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  width: 900px;
}
.mail-leads .title {
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;
  margin: 0 0 3px 0;
}
.mail-leads p {
  white-space: pre-line;
  overflow-wrap: break-word;
}
.mail-leads {
  border-bottom: 1px solid #dedede;
}
.mail-leads:last-of-type {
  border-bottom: none;
  padding: 0;
}

.order-status {
  color: #797979;
}
.order-status .limit {
  overflow: auto;
  max-height: 141px;
}
.order-status ul li.title {
  margin: 0 0 1px 5px;
  padding: 2px 5px;
  background: transparent;
}
.order-status ul li.active {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #ff9600;
  color: #fff;
}
.order-status ul li.active.green {
  background-color: #72c100;
}
.order-status ul li.active.red {
  background-color: #fa4848;
}

.labels {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.labels .order-label {
  margin-left: 0.5rem;
}
.labels .order-label ~ .order-label {
  margin-left: 0;
}
.labels h2 {
  margin: 0 !important;
}

.order-label {
  color: #fff;
  background: #0092d2;
  border-radius: 3px;
  padding: 3px 3px 2px 3px;
  margin: 0 4px 4px 0;
}
.order-label.blue {
  background: #0092d2;
}
.order-label.medium-blue {
  background: #0149D3;
}
.order-label.dark-blue {
  background: #011575;
}
.order-label.green {
  background: #00d27c;
}
.order-label.dark-green {
  background: #066b21;
}
.order-label.olive-green {
  background: #808000;
}
.order-label.purple {
  background: #AB9DF2;
}
.order-label.dark-purple {
  background: #6B6296;
}
.order-label.orange {
  background: #FFB81C;
}
.order-label.yellow {
  background: #FCE300;
}
.order-label.christmas-brown {
  background: #70160D;
}
.order-label.lr-growth {
  background: #0E7F28;
}
.order-label.orange {
  background: #ff8821;
}
.order-label.light-orange {
  background: #ff963b;
}
.order-label.red {
  background: #fa4848;
}

.order-comments {
  max-height: 390px;
  overflow: auto;
}
.order-comments.crm {
  max-height: 310px;
}

.star-rank {
  display: flex;
  align-items: center;
}
.star-rank ng-include {
  margin-left: 2px;
  width: 20px;
  height: 20px;
}
.star-rank ng-include svg path {
  fill: #ffd600;
}
.star-rank ng-include.disabled svg path {
  fill: lightgray;
}
.star-rank ng-include.star-1 {
  transition-property: transform, opacity;
  transition-timing-function: ease-out;
  transition-duration: 150ms;
  transition-delay: 0ms;
  transform: scale(3);
  opacity: 0;
}
.star-rank ng-include.star-2 {
  transition-property: transform, opacity;
  transition-timing-function: ease-out;
  transition-duration: 150ms;
  transition-delay: 150ms;
  transform: scale(3);
  opacity: 0;
}
.star-rank ng-include.star-3 {
  transition-property: transform, opacity;
  transition-timing-function: ease-out;
  transition-duration: 150ms;
  transition-delay: 300ms;
  transform: scale(3);
  opacity: 0;
}
.star-rank ng-include.star-4 {
  transition-property: transform, opacity;
  transition-timing-function: ease-out;
  transition-duration: 150ms;
  transition-delay: 450ms;
  transform: scale(3);
  opacity: 0;
}
.star-rank ng-include.star-5 {
  transition-property: transform, opacity;
  transition-timing-function: ease-out;
  transition-duration: 150ms;
  transition-delay: 600ms;
  transform: scale(3);
  opacity: 0;
}
.star-rank ng-include.loaded {
  transform: scale(1);
  opacity: 100%;
}

.comment-form {
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding-right: 30px;
}

.price-info-module {
  height: 16px;
  margin: 0 0 50px;
}
.price-info-module li {
  display: inline;
}
.price-info-module li dl {
  float: left;
  margin-right: 12px;
}
.price-info-module li dl dt,
.price-info-module li dl dd {
  display: inline-block;
  margin-right: 6px;
}
.price-info-module li dl dt {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
}
.price-info-module li dl dd {
  font-size: 1.8rem;
  color: #ff9600;
  font-weight: bold;
}
.price-info-module.list li {
  display: inherit;
  height: 22px;
}

.price-info-module-previous {
  float: right;
  padding: 0 25px 0 0;
}
.price-info-module-previous ul li {
  font-size: 1.3rem;
  color: #595959;
}
.price-info-module-previous ul li dt,
.price-info-module-previous ul li dd {
  display: inline-block;
  margin-right: 5px;
}
.price-info-module-previous ul li dl dd {
  font-weight: bold;
}
.price-info-module-previous ul li dl dd.highlight {
  color: #ff9600;
}

.price-info-module-previous-compact {
  margin: -20px 0 40px 0;
}
.price-info-module-previous-compact label,
.price-info-module-previous-compact ul,
.price-info-module-previous-compact li,
.price-info-module-previous-compact dl,
.price-info-module-previous-compact dt,
.price-info-module-previous-compact dd {
  display: inline;
}
.price-info-module-previous-compact label {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.price-info-module-previous-compact dl {
  font-size: 1.2rem;
}
.price-info-module-previous-compact dt,
.price-info-module-previous-compact dd {
  display: inline-block;
}
.price-info-module-previous-compact dt {
  font-weight: bold;
  color: #595959;
}
.price-info-module-previous-compact dd {
  margin-right: 10px;
}

.httpLoadingIndicator {
  position: absolute;
  top: 16px;
  left: 51px;
  background: url("../static/img/loading.gif") no-repeat 0 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 16px;
  height: 16px;
  z-index: 200;
}

.input-wrapper,
.switch-wrapper {
  float: left;
  margin: 0 20px 30px 0;
  position: relative;
  top: 0;
  left: 0;
}
.input-wrapper > label,
.switch-wrapper > label {
  position: absolute;
  top: -18px;
  left: 0;
}
.input-wrapper textarea,
.switch-wrapper textarea {
  width: 210px;
  margin: 0;
}
.input-wrapper.datepicker input,
.switch-wrapper.datepicker input {
  cursor: pointer;
  background: #fff url("../static/img/hitta-os-datepicker-icon.png") no-repeat center right;
}
.input-wrapper.datepicker input:disabled,
.switch-wrapper.datepicker input:disabled {
  background-image: url("../static/img/hitta-os-datepicker-icon-dis.png");
}
.input-wrapper.timepicker table,
.switch-wrapper.timepicker table {
  position: relative;
  top: -14px;
  left: -15px;
}
.input-wrapper.last,
.switch-wrapper.last {
  margin-right: 0;
  margin-bottom: 20px;
}
.input-wrapper.narrow-margin-right,
.switch-wrapper.narrow-margin-right {
  margin-right: 10px;
}
.input-wrapper.max-width, .input-wrapper.two-column,
.switch-wrapper.max-width,
.switch-wrapper.two-column {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: none;
}
.input-wrapper.max-width textarea, .input-wrapper.two-column textarea,
.switch-wrapper.max-width textarea,
.switch-wrapper.two-column textarea {
  width: 100%;
}
.input-wrapper.two-column,
.switch-wrapper.two-column {
  width: 440px;
  float: left;
}
.input-wrapper.traffic-float-50,
.switch-wrapper.traffic-float-50 {
  width: 212px;
}
.input-wrapper.float-none,
.switch-wrapper.float-none {
  float: none;
}

.image-wrapper {
  position: relative;
  top: 0;
  left: 0;
  border: 1px solid #595959;
  background: #ccc;
  margin: 0 20px 30px 0;
  float: left;
}
.image-wrapper > label {
  position: absolute;
  top: -18px;
  left: 0;
}
.image-wrapper button {
  position: absolute;
  top: 1px;
  right: 3px;
}

.input-wrapper.checkbox-label .checkbox,
.switch-wrapper.checkbox-label .checkbox,
.image-wrapper.checkbox-label .checkbox {
  position: absolute;
  top: -19px;
  left: 0;
}
.input-wrapper.checkbox-label .checkbox label,
.switch-wrapper.checkbox-label .checkbox label,
.image-wrapper.checkbox-label .checkbox label {
  color: #595959;
  font-weight: bold;
}
.input-wrapper .checkbox-labels,
.switch-wrapper .checkbox-labels,
.image-wrapper .checkbox-labels {
  display: flex;
  justify-content: space-between;
}
.input-wrapper .checkbox-labels .checkbox label,
.switch-wrapper .checkbox-labels .checkbox label,
.image-wrapper .checkbox-labels .checkbox label {
  color: #595959;
  font-weight: bold;
}

.input-wrapper .ta-root {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #0092d2;
}
.input-wrapper .ta-toolbar {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 30px;
  padding: 5px;
  background: #ccc;
}
.input-wrapper .ta-toolbar button {
  display: block;
  float: left;
  margin: 0 5px 0 0;
}
.input-wrapper .ta-toolbar .fa {
  background: url("../static/img/") no-repeat center center;
  text-indent: -9999px;
  display: inline-block;
  width: 11px;
  height: 11px;
}
.input-wrapper .ta-toolbar .fa.fa-bold:before {
  content: "Bold";
}
.input-wrapper .ta-toolbar .fa.fa-bold {
  background-image: url("../static/img/icon/bold.png");
}
.input-wrapper .ta-toolbar .fa.fa-italic:before {
  content: "Italic";
}
.input-wrapper .ta-toolbar .fa.fa-italic {
  background-image: url("../static/img/icon/italic.png");
}
.input-wrapper .ta-toolbar .fa.fa-link:before {
  content: "Länk";
}
.input-wrapper .ta-toolbar .fa.fa-link {
  background-image: url("../static/img/icon/link.png");
  width: 25px;
}
.input-wrapper .ta-html,
.input-wrapper .ta-text {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  border: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.input-wrapper .ta-html {
  font-family: monospace;
}
.input-wrapper .ta-text .ta-bind {
  padding: 0;
}
.input-wrapper .ta-text .ta-bind b {
  font-weight: bold;
}
.input-wrapper .ta-text .ta-bind i {
  font-style: italic;
}

.switch-wrapper.checkbox-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 210px;
}

.switch-wrapper {
  height: 34px;
}

a.switch {
  background: url("../static/img/switch-state-indicator.png") no-repeat right center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  font-weight: bold;
  background-color: #0092d2;
  width: 54px;
  padding: 6px 26px 6px 0;
  margin: 5px 0 0;
  text-align: center;
  color: #fff;
}
a.switch:hover {
  color: #fff;
}
a.switch.on {
  background-position: left center;
  padding: 6px 0 6px 26px;
}
a.switch.big {
  width: 69px;
}
a.switch.colored {
  background-color: #fa4848;
}
a.switch.colored.on {
  background-color: #00d27c;
}
a.switch.disabled, a.switch.colored.disable {
  background-color: #ccc;
}

.checkbox.hasLabel a,
.checkbox.hasLabel label {
  float: left;
}
.checkbox.hasLabel label {
  font-weight: normal;
  color: #797979;
  margin: 1px 0 0 5px;
}
.checkbox a {
  background: url("../static/img/checkbox-blue.png") no-repeat 0 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 16px;
  height: 16px;
}
.checkbox a.disabled, .checkbox a.disable {
  background-image: url("../static/img/checkbox-disabled.png");
}
.checkbox a.checked {
  background-position: -16px 0;
}
.checkbox.inline, .checkbox.inline a {
  display: inline-block;
}

.bootstrapped a.switch {
  width: 80px;
}
.bootstrapped .switch-wrapper label,
.bootstrapped .dropdown > li.label {
  position: initial;
}
.bootstrapped .dropdown > li > a {
  width: 100%;
}
.bootstrapped .dropdown {
  width: 100%;
}

.float-table {
  color: #797979;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 1216px;
  border: 1px solid #ccc;
  border-width: 0 0 1px 0;
}
.float-table div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.float-table div.row-head {
  height: 20px;
  background: transparent;
  color: #595959;
}
.float-table div.row-head > div {
  height: 100%;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0 10px 6px 10px;
  float: left;
}
.float-table div.row {
  height: 41px;
  border: 1px solid #ccc;
  border-width: 1px 1px 0 0;
}
.float-table div.row > div {
  height: 100%;
  padding: 0 10px 0 10px;
  border: 1px solid #ccc;
  border-width: 0 0 0 1px;
  float: left;
  line-height: 40px;
  overflow: hidden;
}
.float-table div.row > div:last-child:after {
  clear: both;
}
.float-table div.row > div button {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 26px;
}
.float-table div.row:hover {
  background: #d0edff !important;
}
.float-table div.row.dark {
  background: #dedede;
}
.float-table div.row.template {
  background: #d0edff;
}
.float-table div.row.even {
  background: #f2f2f2;
}
.float-table div.row-wrapper.bg {
  background: url("../static/img/float-table-background-164.png") repeat 0 0;
  background-size: 4px 82px;
}
.float-table.orderrows .row-head > div.check, .float-table.orderrows .row-head > div.status,
.float-table.orderrows .row > div.check,
.float-table.orderrows .row > div.status {
  width: 37px;
}
.float-table.orderrows .row-head > div.status,
.float-table.orderrows .row > div.status {
  padding: 0;
}
.float-table.orderrows .row-head > div.status .red-cross,
.float-table.orderrows .row > div.status .red-cross {
  background: url("../static/img/reserved-false-flag.png") no-repeat center center;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.float-table.orderrows .row-head > div.status .has-content,
.float-table.orderrows .row > div.status .has-content {
  background: url("../static/img/content-true-flag.png") no-repeat center center;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.float-table.orderrows .row-head > div.price,
.float-table.orderrows .row > div.price {
  width: 102px;
  text-align: right;
}
.float-table.orderrows .row-head > div.product,
.float-table.orderrows .row > div.product {
  width: 181px;
}
.float-table.orderrows .row-head > div.word,
.float-table.orderrows .row > div.word {
  width: 300px;
}
.float-table.orderrows .row-head > div.word.traffic,
.float-table.orderrows .row > div.word.traffic {
  width: 180px;
}
.float-table.orderrows .row-head > div.word img.premium,
.float-table.orderrows .row > div.word img.premium {
  padding: 0 0 5px 5px;
}
.float-table.orderrows .row-head > div.city,
.float-table.orderrows .row > div.city {
  width: 368px;
}
.float-table.orderrows .row-head > div.city img.premium,
.float-table.orderrows .row > div.city img.premium {
  padding: 0 0 5px 5px;
}
.float-table.orderrows .row-head > div.place,
.float-table.orderrows .row > div.place {
  width: 170px;
}
.float-table.orderrows .row-head > div.place img.all-places,
.float-table.orderrows .row > div.place img.all-places {
  padding: 0 0 5px 5px;
}
.float-table.orderrows .row-head > div.date,
.float-table.orderrows .row > div.date {
  width: 95px;
}
.float-table.orderrows .row-head > div.datetime,
.float-table.orderrows .row > div.datetime {
  width: 135px;
}
.float-table.orderrows .row-head > div.number,
.float-table.orderrows .row > div.number {
  width: 100px;
}
.float-table.orderrows .row-head > div.display-product,
.float-table.orderrows .row > div.display-product {
  width: 565px;
}
.float-table.orderrows .row-head > div.cpl-product,
.float-table.orderrows .row > div.cpl-product {
  width: 760px;
}
.float-table.orderrows .row > div.check {
  padding-top: 12px;
}
.float-table.orderrows .row-details {
  margin-left: 0;
  padding: 10px 10px 10px 75px;
  overflow: auto;
  border: 1px solid #ccc;
  border-width: 1px 1px 0 1px;
}
.float-table.orderrows .row-details > div {
  float: left;
  margin-right: 25px;
}
.float-table.orderrows .row-details > div.discount {
  width: 102px;
  text-align: right;
  padding: 0 10px 0 10px;
  margin-right: 10px;
}
.float-table.orderrows .row-details.even {
  background: #f2f2f2;
}
.float-table.orderrows .row-head > div.check {
  padding-left: 11px;
}
.float-table.orderrows .row-head > div.status {
  font-weight: normal;
}
.float-table.traffic {
  width: 900px;
}
.float-table.traffic.orderrows .row-head > div.product,
.float-table.traffic.orderrows .row > div.product {
  width: 200px;
}
.float-table.traffic.orderrows .row-head > div.word,
.float-table.traffic.orderrows .row > div.word {
  width: 210px;
}
.float-table.traffic.orderrows .row-head > div.place,
.float-table.traffic.orderrows .row > div.place {
  width: 188px;
}

table .x-mini,
.float-table .x-mini {
  width: 7%;
}
table .mini,
.float-table .mini {
  width: 9%;
}
table .x-small,
.float-table .x-small {
  width: 14%;
}
table .small,
.float-table .small {
  width: 21%;
}
table .medium,
.float-table .medium {
  width: 24%;
}
table .large,
.float-table .large {
  width: 31%;
}
table .x-large,
.float-table .x-large {
  width: 37%;
}
table .x2-large,
.float-table .x2-large {
  width: 41%;
}
table .x3-large,
.float-table .x3-large {
  width: 44%;
}
table .x4-large,
.float-table .x4-large {
  width: 51%;
}

.icon {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 26px;
  height: 26px;
  background-color: #0092d2;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 0;
  text-indent: -9999px;
}
.icon:disabled, .icon.disabled {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}
.icon:hover {
  background-repeat: no-repeat;
  background-position: center center;
}
.icon.add {
  background-image: url("../static/img/icon/add.png");
}
.icon.add-place {
  background-image: url("../static/img/icon/add-place.png");
}
.icon.close-by {
  background-image: url("../static/img/icon/close-by.png");
}
.icon.copy {
  background-image: url("../static/img/icon/copy.png");
}
.icon.credit {
  background-image: url("../static/img/icon/credit.png");
}
.icon.credit-order {
  background-image: url("../static/img/icon/credit-order.png");
}
.icon.delete {
  background-image: url("../static/img/icon/delete.png");
}
.icon.download-invoice {
  background-image: url("../static/img/icon/download-invoice.png");
}
.icon.edit {
  background-image: url("../static/img/icon/edit.png");
}
.icon.display-content {
  background-image: url("../static/img/icon/display-content.png");
}
.icon.hitta-drop {
  background-image: url("../static/img/icon/hitta-drop.png");
}
.icon.facebook {
  background-image: url("../static/img/icon/facebook.png");
}
.icon.youtube {
  background-image: url("../static/img/icon/youtube.png");
}
.icon.instagram {
  background-image: url("../static/img/icon/instagram.jpg");
}
.icon.twitter {
  background-image: url("../static/img/icon/twitter.png");
}
.icon.snapchat {
  background-image: url("../static/img/icon/snapchat.jpg");
}
.icon.linkedin {
  background-image: url("../static/img/icon/linkedin.png");
}
.icon.upsales {
  background-image: url("../static/img/icon/upsales.png");
}
.icon.check-box {
  background: url("../static/img/checkbox-blue.png") no-repeat 0 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 16px;
  height: 16px;
}
.icon.check-box.checked {
  background-position: -16px 0;
}
.icon.red-cross {
  background-image: url("../static/img/icon/../reserved-false-flag.png");
}
.icon.green-check {
  background-image: url("../static/img/icon/../content-true-flag.png");
}
.icon.mail-invoice {
  background-image: url("../static/img/icon/mail-invoice.png");
}
.icon.merge {
  background-image: url("../static/img/icon/merge.png");
}
.icon.monkey-wrench {
  background-image: url("../static/img/icon/monkey-wrench.png");
}
.icon.preview {
  background-image: url("../static/img/icon/preview.png");
}
.icon.renew {
  background-image: url("../static/img/icon/renew.png");
}
.icon.split {
  background-image: url("../static/img/icon/split.png");
}
.icon.information {
  background-image: url("../static/img/icon/information.png");
}
.icon.timeline {
  background-image: url("../static/img/icon/timeline.png");
}
.icon.arrow-left {
  background-image: url("../static/img/icon/arrow-left.png");
}
.icon.arrow-right {
  background-image: url("../static/img/icon/arrow-right.png");
}
.icon.rename {
  background-image: url("../static/img/icon/rename.png");
}
.icon.return {
  background-image: url("../static/img/icon/return.png");
}
.icon.save-as {
  background-image: url("../static/img/icon/save-as.png");
}
.icon.no-thank-you {
  background-image: url("../static/img/icon/no-thank-you.png");
}
.icon.no-answer {
  background-image: url("../static/img/icon/no-answer.png");
}
.icon.wrong-number {
  background-image: url("../static/img/icon/wrong-number.png");
}
.icon.useless {
  background-image: url("../static/img/icon/useless.png");
}
.icon.send-relation-proposal {
  background-image: url("../static/img/icon/send-relation-proposal.png");
}
.icon.send-relation-proposal-disabled {
  background-image: url("../static/img/icon/send-relation-proposal-disabled.png");
}
.icon.landscape {
  background-image: url("../static/img/icon/landscape.png");
}
.icon.nocolor {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 26px;
  height: 26px;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 0;
  text-indent: -9999px;
}
.icon.nocolor.rating {
  background-image: url("../static/img/icon/rejta.png");
}
.icon.nocolor.allabolag {
  background-image: url("../static/img/icon/allabolag.png");
}
.icon.nocolor.eniro {
  background-image: url("../static/img/icon/eniro.png");
}
.icon.nocolor.invalid-vkiid {
  background-image: url("../static/img/icon/invalid-vkiid.png");
}
.icon.nocolor.invalid-hitta-id {
  background-image: url("../static/img/icon/invalid-hitta-id.png");
}
.icon.nocolor.red-cross {
  background-image: url("../static/img/icon/../reserved-false-flag.png");
}
.icon.nocolor.green-check {
  background-image: url("../static/img/icon/../content-true-flag.png");
}
.icon.nocolor.payment {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #72c100;
}
.icon.nocolor.payment.late {
  background: #e70000;
}
.icon.nocolor.payment.unsettled {
  background: #0092d2;
}
.icon.nocolor.payment.partly {
  background: #ffff00;
}

.input.full-width ul,
.input.full-width a {
  width: 100%;
}

.calendar .table-noStyle td {
  background: transparent;
  border: none;
  height: auto;
  padding: 0;
}
.calendar .table-noStyle td:hover {
  background: transparent;
}
.calendar .table-noStyle tr:hover > td {
  background: transparent;
}
.calendar .table-noStyle .arrow {
  width: 10px;
}
.calendar .offer .progress-bar {
  background-color: #f59611;
}
.calendar .progress {
  height: 10px !important;
  border-radius: 0 !important;
}
.calendar .calendar-company {
  margin-top: 10px;
  border-bottom: 1px solid grey;
}

ul.indent ul li {
  padding-left: 15px;
}

.password-check-list {
  color: #797979;
}
.password-check-list li {
  background: url("../static/img/tick.png") no-repeat 0 0;
  height: 14px;
  line-height: 1em;
  padding: 0 0 0 20px;
  margin: 7px 0;
}
.password-check-list li.valid {
  background-position: 0 -14px;
}

.browse-upload-image {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  border: 3px dashed #ccc;
  background: transparent;
  color: #ccc;
  font-weight: bold;
  width: 100%;
  height: 70px;
  padding: 0;
  margin: 0;
}
.browse-upload-image.profile-image {
  width: 81px;
  height: 81px;
  -webkit-border-radius: 40.5px;
  -moz-border-radius: 40.5px;
  border-radius: 40.5px;
}
.browse-upload-image.browse-input {
  text-indent: -9999px;
  cursor: pointer;
}
.browse-upload-image:hover, .browse-upload-image.active {
  background: transparent;
  color: #ccc;
}
.browse-upload-image.active {
  border-color: #797979;
}

.browse-upload-folder {
  border-radius: 3px;
  background-color: #0092d2;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: normal;
}
.browse-upload-folder:hover {
  background-color: #0081bd;
}

.vkiId-list li {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  padding: 10px;
  border: 1px solid #ccc;
  border-bottom-width: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #595959;
  background: #f2f2f2;
  white-space: nowrap;
  overflow: hidden;
}
.vkiId-list li:nth-child(even) {
  background: #fff;
}
.vkiId-list li:last-child {
  border-bottom-width: 1px;
}
.vkiId-list li span {
  font-weight: normal;
  color: #797979;
}
.vkiId-list li .buttons {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.vkiId-list {
  /*> li {
    display: inline;

    &:after {
      content: ', ';
    }

    &:last-child {
      &:after {
        content: '';
      }
    }
  }*/
}

.graph-module {
  position: relative;
  top: 0;
  left: 0;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #dedede;
}
.graph-module * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.graph-module .marker-wrapper {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  border-left: 1px solid #efefef;
}
.graph-module .marker-wrapper ul {
  height: 100%;
}
.graph-module .marker-wrapper li {
  height: 100%;
  float: left;
  color: #dedede;
  border-right: 1px solid #efefef;
  font-size: 1.2rem;
  position: relative;
  top: 0;
  left: 0;
}
.graph-module .marker-wrapper li span {
  position: absolute;
  top: -14px;
  right: -14px;
}
.graph-module .marker-wrapper li:last-child span {
  right: -18px;
}
.graph-module .data-wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
.graph-module .user,
.graph-module .data {
  float: left;
  /*margin: 10px 0 10px;*/
}
.graph-module .user {
  /*width: $user-width;*/
  padding: 2px 0;
}
.graph-module .user span {
  display: block;
}
.graph-module .user span.name {
  font-weight: bold;
  margin: 0 0 2px 0;
}
.graph-module .graph .graphic,
.graph-module .graph .percentage {
  float: left;
}
.graph-module .graph .graphic {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #0092d2;
  /*height: 34px;*/
  min-width: 4px;
}
.graph-module .graph .percentage {
  font-size: 2.2rem;
  font-weight: bold;
  color: #595959;
  padding: 10px 0 10px 5px;
}
.graph-module .graph .percentage.good {
  color: #ff9600;
}

.date-time-now-button {
  position: absolute;
  top: 1px;
  right: 39px;
  background: url("../static/img/datetime-now-icon.png") no-repeat center center;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 32px;
  height: 32px;
  background-color: transparent;
  opacity: 0.6;
}
.date-time-now-button:hover {
  background: url("../static/img/datetime-now-icon.png") no-repeat center center;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 32px;
  height: 32px;
  background-color: transparent;
  opacity: 1;
}

.rendered-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  text-indent: -9999px;
  border-left: 1px solid #ccc;
}

.tree {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  font-size: 1.5rem;
}
.tree ul {
  padding-left: 16px;
}
.tree ul li {
  display: block;
}
.tree ul li.branch {
  padding-left: 5px;
}
.tree ul li.leaf {
  padding-left: 21px;
}
.tree a {
  display: inline-block;
  height: 16px;
  line-height: 16px;
  /*padding: 2px 0;*/
  margin: 4px 0;
}
.tree .context-menu {
  font-size: 1.3rem;
}
.tree .context-menu li {
  display: inline-block;
  padding-right: 5px;
  margin-right: 5px;
  border-right: 1px solid #ccc;
}
.tree .context-menu li:last-child {
  border: 0;
  margin: 0;
}
.tree .context-menu a {
  color: #ff9600;
  margin: 0;
  height: auto;
  line-height: normal;
}
.tree .context-menu a:hover {
  color: #333;
}
.tree .context-menu.branch {
  padding-left: 21px;
}
.tree {
  /*.context-menu-button {
    margin: 4px 0;
  }*/
}

.plus-minus {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  background: url("../static/img/plus-minus.png") no-repeat 0 0;
  height: 16px;
  line-height: 16px;
  padding-left: 21px;
  margin: 4px 0;
  cursor: pointer;
  display: inline-block;
}
.plus-minus.minus {
  background-position: 0 -16px;
}
.plus-minus.block {
  display: block;
}
.plus-minus > a {
  margin: 0;
  padding: 0;
}
.plus-minus * {
  cursor: pointer;
}

.user-has-permission {
  background: url("../static/img/user-has-permission.png") no-repeat center right;
  padding-right: 21px !important;
}

.context-menu-button {
  background: url("../static/img/black-arrow-down.png") no-repeat center center;
  text-indent: -9999px;
  display: inline-block;
  width: 16px;
  height: 16px;
  opacity: 0.3;
}
.context-menu-button.open {
  background-image: url("../static/img/black-arrow-up.png");
}
.context-menu-button:hover {
  opacity: 1;
}

.dev-info {
  position: absolute;
  top: 0px;
  left: 70px;
  font-size: 1.2rem;
  color: #b1b1b1;
  font-family: monospace;
}
.dev-info li {
  display: inline;
}
.dev-info dl {
  display: inline;
}
.dev-info dt,
.dev-info dd {
  display: inline-block;
}
.dev-info dt {
  font-weight: bold;
  text-align: left;
}
.dev-info dd {
  color: #a2a2a2;
}
.dev-info dd.warning {
  font-weight: bold !important;
  color: #ff0000 !important;
}

.context-menu {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  font-weight: normal;
  font-size: 1.3rem;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1001;
  white-space: nowrap;
}
.context-menu li {
  display: inline;
}
.context-menu li a {
  display: block;
  padding: 5px 10px;
}
.context-menu.permission-and-organization {
  position: relative;
  max-width: 205px;
}

.crown-image {
  position: relative;
  top: 0;
  left: 0;
  background: url("../static/img/crown-and-frame.png") no-repeat 0 0;
  width: 107px;
  height: 136px;
}
.crown-image canvas {
  position: absolute;
  top: 50px;
  left: 13px;
}

.trophy-image {
  background: url("../static/img/pokal.png") no-repeat 0 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 82px;
  height: 80px;
  position: relative;
  top: 0;
  left: 0;
  background-size: 82px 80px;
  float: right;
  margin-top: -40px;
}

.notification-center {
  float: left;
  margin: 0 0 0 13px;
  position: relative;
  top: 0;
  left: 0;
}
.notification-center .trigger {
  position: relative;
  top: -1px;
  left: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-border-bottom-right-radius: 23px;
  -moz-border-bottom-right-radius: 23px;
  border-bottom-right-radius: 23px;
  display: block;
  width: 40px;
  height: 53px;
}
.notification-center .trigger .glow {
  position: absolute;
  top: 10px;
  left: 10px;
  -webkit-box-shadow: 0 0 6px 1px rgba(0, 146, 210, 0.65);
  -moz-box-shadow: 0 0 6px 1px rgba(0, 146, 210, 0.65);
  box-shadow: 0 0 6px 1px rgba(0, 146, 210, 0.65);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  width: 20px;
  height: 15px;
  display: none;
}
.notification-center .trigger .graphic {
  position: absolute;
  top: 10px;
  left: 10px;
  background: url("../static/img/notification-icon.png") no-repeat 0 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 15px;
  background-size: 20px 15px;
}
.notification-center .trigger .indicator {
  width: 17px;
  height: 17px;
  -webkit-border-radius: 8.5px;
  -moz-border-radius: 8.5px;
  border-radius: 8.5px;
  position: absolute;
  top: 5px;
  right: 2px;
  display: none;
  background: #0092d2;
  line-height: 17px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.notification-center .trigger.active .glow,
.notification-center .trigger.active .indicator {
  display: block;
}
.notification-center .trigger:hover .glow {
  -webkit-box-shadow: 0 0 6px 1px rgb(0, 146, 210);
  -moz-box-shadow: 0 0 6px 1px rgb(0, 146, 210);
  box-shadow: 0 0 6px 1px rgb(0, 146, 210);
}
.notification-center .cover {
  position: absolute;
  top: 32px;
  right: 0;
  width: 40px;
  height: 12px;
  background: #fafafa;
  display: none;
}
.notification-center .messages {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  top: 36px;
  right: 0;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.65);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.65);
  width: 470px;
  height: auto;
  background: #fafafa;
  display: none;
  overflow: hidden;
  -webkit-border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
  border-top-right-radius: 0;
}
.notification-center .messages .no-msg {
  text-align: center;
  color: #6f6f6f;
  height: 100px;
  line-height: 100px;
}
.notification-center .messages ul {
  float: none;
  /*max-height: 350px;
  overflow: hidden;*/
}
.notification-center .messages ul li {
  position: relative;
  top: 0;
  left: 0;
  width: 510px;
  height: 46px;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  color: #6f6f6f;
  border-top: 1px solid #e3e3e3;
  overflow: hidden;
}
.notification-center .messages ul li strong {
  color: #5b5b5b;
}
.notification-center .messages ul li:first-child {
  border: 0;
}
.notification-center .messages ul li.new-message {
  background: #f8f8e1;
}
.notification-center .messages ul li .active-area {
  width: 470px;
  height: auto;
  float: left;
  cursor: pointer;
}
.notification-center .messages ul li:hover {
  left: -40px;
  background: #e1f4f9;
}
.notification-center .messages ul li .image {
  width: 30px;
  height: 30px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  margin: 5px;
  border: 3px solid #999;
  /*background: #ccc;*/
  float: left;
  /*margin-right: $msg-padding;*/
}
.notification-center .messages ul li .message {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 424px;
  float: left;
  padding: 5px 5px 5px 0;
  line-height: normal;
}
.notification-center .messages ul li .message div,
.notification-center .messages ul li .message span,
.notification-center .messages ul li .message strong,
.notification-center .messages ul li .message .tag {
  display: inline;
  /*font-size: 1.1rem;*/
}
.notification-center .messages ul li .message .row {
  font-size: 1.1rem;
}
.notification-center .messages ul li .message .row.three {
  /*font-size: 1.1rem;*/
  color: #858585;
}
.notification-center .messages ul li .message .row.three strong {
  color: #6f6f6f;
}
.notification-center .messages ul li .message .tag {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.1rem;
}
.notification-center .messages ul li .message .tag.grey {
  color: #5b5b5b;
}
.notification-center .messages ul li .message .tag.orange {
  color: #ff9600;
}
.notification-center .messages ul li .message .tag.blue {
  color: #0092d2;
}
.notification-center .messages ul li .message .tag.red {
  color: #ff5353;
}
.notification-center .messages ul li button.mark-read {
  background: url("../static/img/notification-mark-read.png") no-repeat center center;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 40px;
  height: 46px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  background-color: #0092d2;
  float: left;
}
.notification-center .messages ul li button.mark-read:hover {
  background-color: #0081bd;
}
.notification-center .messages ul li.old-message {
  height: 26px;
}
.notification-center .messages ul li.old-message .message {
  width: 470px;
  height: 26px;
  padding: 5px 10px;
  overflow: hidden;
  /*div, span, strong, .tag {
    display: inline;
    font-size: 1.1rem;
  }*/
}
.notification-center .messages ul li.old-message button.mark-read {
  height: 26px;
  background-size: 9px 9.5px;
}
.notification-center .messages button.open-all {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  width: 100%;
  height: 30px;
  padding: 0;
  margin: 0 0 1px;
}
.notification-center .messages button.mark-all-read {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  width: 100%;
  height: 30px;
  padding: 0;
  margin: 0;
}
.notification-center.open .trigger {
  background: #fafafa;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.65);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.65);
}
.notification-center.open .cover,
.notification-center.open .messages {
  display: block;
}
.notification-center.only-list {
  margin: 0;
  width: auto;
  float: none;
}
.notification-center.only-list .trigger {
  display: none;
}
.notification-center.only-list .cover {
  display: none;
}
.notification-center.only-list .messages {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  position: static;
  top: 0;
  left: 0;
  display: block;
}
.notification-center.only-list {
  /*button {
    &.mark-all-read {
      @include border-radius-bottom(6px, 6px);
    }
  }*/
}

.notification-message {
  position: fixed;
  bottom: 0;
  right: 0;
}
.notification-message .message {
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.65);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.65);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #f8f8f8; /* Old browsers */
  background: -moz-linear-gradient(top, #f8f8f8 0%, #fcfcfc 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8f8f8), color-stop(100%, #fcfcfc)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f8f8f8 0%, #fcfcfc 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f8f8f8 0%, #fcfcfc 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f8f8f8 0%, #fcfcfc 100%); /* IE10+ */
  background: linear-gradient(to bottom, #f8f8f8 0%, #fcfcfc 100%); /* W3C */
  padding: 17px;
  margin: 0 6px 7px 0;
}
.notification-message .message .image,
.notification-message .message .content {
  float: left;
}
.notification-message .message .image {
  width: 74px;
  height: 74px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  border: 3px solid #999;
}
.notification-message .message .content {
  padding: 0 0 0 17px;
}
.notification-message .message .content .header h2,
.notification-message .message .content .header a {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.notification-message .message .content .header h2 {
  float: left;
  color: #5b5b5b;
  margin: 0 0 20px 0;
  font-weight: normal;
}
.notification-message .message .content .header a {
  float: right;
  display: block;
  color: #999;
}
.notification-message .message .content .header a span {
  color: #c2c2c2;
  text-transform: none;
  font-size: 1.4rem;
}
.notification-message .message .content .header a:hover {
  color: #6f6f6f;
}
.notification-message .message .content .header a:hover span {
  color: #999;
}
.notification-message .message .content .info {
  color: #6f6f6f;
}
.notification-message .message .content .info strong {
  color: #5b5b5b;
}

.notification-modal .modal-dialog {
  width: 472px;
}
.notification-modal .modal-dialog .modal-content {
  overflow: hidden;
}

.competition img,
.competition div {
  float: left;
}
.competition img {
  display: block;
  margin-right: 20px;
}
.competition h3 {
  margin: 7px 0 !important;
}

.summary-table {
  float: right;
  clear: none;
  margin: 0 0 30px;
  width: auto;
}
.summary-table thead th {
  /*font-size: $font-size-normal;*/
  color: #ff9600;
  font-weight: bold;
}
.summary-table tbody th {
  vertical-align: middle;
  font-weight: bold;
  color: #595959;
}
.summary-table tbody td {
  text-align: right;
}

table.display-booking {
  display: block;
  overflow-x: auto;
  padding-bottom: 20px;
}
table.display-booking tbody tr th {
  padding: 7px 0 2px 2px;
  width: 70px;
  font-size: 0.9em;
}
table.display-booking tbody tr th .title {
  font-weight: bold;
}
table.display-booking tbody tr td {
  height: 15px;
  border: 0;
}
table.display-booking tbody tr td.active-period {
  background-color: #00D27C;
}
table.display-booking tbody tr td.active-period.no-content {
  background-color: #FA4848;
}
table.display-booking tbody tr td.active-period.external {
  background-color: #C350D4;
}
table.display-booking tbody tr td.active {
  background-color: #00A457;
}
table.display-booking tbody tr td.active.no-content {
  background-color: #B43636;
}
table.display-booking tbody tr td.active.external {
  background-color: #A346B4;
}
table.display-booking tbody tr td.first {
  border-radius: 6px 0 0 6px;
  border: 1px;
}
table.display-booking tbody tr td.last {
  border-radius: 0 6px 6px 0;
}

.list {
  color: #797979;
  margin: 0;
  float: right;
  overflow: auto;
}
.list .vertical-scroll {
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  white-space: nowrap;
}
.list .vertical-scroll li {
  padding-right: 20px;
}
.list ul li {
  margin-bottom: 3px;
}
.list ul li .title {
  padding: 3px 0 0 10px;
  font-weight: bold;
  font-size: 1.3rem;
  color: #595959;
  background: url("../static/img/list-bullet.png") no-repeat left center;
}

.tab-container {
  display: inline;
}
.tab-container .tab-set {
  width: 100%;
  border-bottom: 1px solid #dedede;
  font-weight: bold;
  height: 33px;
  margin-bottom: 25px;
}
.tab-container .tab-set ul {
  margin: 0 0 0 55px;
}
.tab-container .tab-set ul > li {
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
  display: block;
  float: left;
  overflow: hidden;
  margin: 0 2px 0 2px;
  font-size: 1.3rem;
  border: 1px solid #dedede;
  letter-spacing: 0.2px;
}
.tab-container .tab-set ul > li > a {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  background: #0092d2;
  color: #fff;
  padding: 9px 6px 10px 6px;
  float: left;
  width: 67px;
  text-align: center;
}
.tab-container .tab-set ul > li > a:hover {
  background: #0081bd;
  color: #fff;
}
.tab-container .tab-set ul > li.active {
  border-bottom: 0;
}
.tab-container .tab-set ul > li.active > a,
.tab-container .tab-set ul > li.active > a:hover {
  cursor: default;
  background: #fff;
  color: #333;
}
.tab-container .tab-set ul > li.disabled > a,
.tab-container .tab-set ul > li.disabled > a:hover {
  cursor: default;
  background: #ccc;
  color: #fff;
}

.address p {
  line-height: 1.1;
  margin: 0;
}
.address p.invoice-extra > span {
  width: 150px;
  display: inline-block;
}

.dropdownv2 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  top: 0;
  left: 0;
}
.dropdownv2 * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.dropdownv2 li {
  display: inline;
}
.dropdownv2 li a {
  display: block;
}
.dropdownv2 > li > a {
  position: relative;
  top: 0;
  left: 0;
  width: 210px;
  color: #797979;
  height: 34px;
  line-height: 34px;
}
.dropdownv2 > li > a:hover {
  -webkit-box-shadow: 0 0 5px 1px rgba(0, 146, 210, 0.5);
  -moz-box-shadow: 0 0 5px 1px rgba(0, 146, 210, 0.5);
  box-shadow: 0 0 5px 1px rgba(0, 146, 210, 0.5);
}
.dropdownv2 > li > a.placeholder {
  color: #aaa;
}
.dropdownv2 > li > a span {
  display: block;
}
.dropdownv2 > li > a span.gradient {
  position: absolute;
  top: 1px;
  right: 34px;
  background: url("../static/img/dropdown-gradient.png") repeat-y 0 0;
  width: 15px;
  height: 32px;
}
.dropdownv2 > li > a span.title, .dropdownv2 > li > a span.button {
  float: left;
  height: 34px;
}
.dropdownv2 > li > a span.title {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  width: 176px;
  padding: 0 10px 0 10px;
  overflow: hidden;
  border: 1px solid #0092d2;
  border-right: 0;
}
.dropdownv2 > li > a span.button {
  background: url("../static/img/hitta-os-dropdown-icon.png") no-repeat 0 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 34px;
  height: 34px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.dropdownv2 .menu {
  width: 216px;
  position: absolute;
  top: -3px;
  left: -3px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #fff;
}
.dropdownv2 .menu a.active, .dropdownv2 .menu a:hover, .dropdownv2 .menu a:focus {
  background: #f2f2f2;
}
.dropdownv2 .menu .actions a {
  padding: 5px;
}
.dropdownv2 .menu .actions .filter {
  display: block;
  padding: 3px;
  position: relative;
  top: 0;
  left: 0;
}
.dropdownv2 .menu .actions .filter input {
  width: 100%;
}
.dropdownv2 .menu .actions .filter button {
  background: url("../static/img/hitta-os-dropdown-icon-up.png") no-repeat 0 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  width: 34px;
  height: 34px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  position: absolute;
  top: 0;
  right: 3px;
  cursor: pointer;
}
.dropdownv2 .menu .actions .filter label {
  display: none;
}
.dropdownv2 .menu .actions .functions ul {
  padding: 2px 0 3px 0;
  margin: 0 0 1px 0;
  border-bottom: 1px dashed #dedede;
  /*border-right: 0;
  border-left: 0;*/
}
.dropdownv2 .menu .actions .reset {
  color: #aaa;
}
.dropdownv2 .menu .items ul {
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
}
.dropdownv2 .menu .items li.loading {
  display: block;
  color: #ccc;
  font-style: italic;
  padding: 5px;
}
.dropdownv2 .menu .items a span {
  padding: 5px;
  display: block;
}
.dropdownv2 .menu .items a.active span {
  background-color: #f2f2f2;
}
.dropdownv2 .menu .items a.checkbox {
  background: url("../static/img/checkbox-blue-unchecked.png") no-repeat 5px center;
  padding-left: 20px;
}
.dropdownv2 .menu .items a.checkbox.active {
  background-image: url("../static/img/checkbox-blue-checked.png");
}
.dropdownv2 .menu .items a.checkbox.active span {
  background-color: transparent;
}
.dropdownv2 .menu .items a.checkbox:hover {
  background-color: #f2f2f2;
}

@media print {
  header {
    display: none;
  }
  .no-print {
    display: none;
  }
  body {
    padding: 0px;
  }
  .print {
    display: block;
  }
  @page {
    size: A4;
    margin: 15px;
    @bottom-left {
      content: none;
    }
    @bottom-right {
      content: none;
    }
  }
}