
.login-layout {
  display: flex;

  flex-direction: column;
  align-items: center;

  box-sizing: border-box;
  width: 100%;
  height: 100%;

  background-color: #F8F9FC;
}
.login-layout__login-window {
  font-family: 'Roboto', sans-serif;

  box-sizing: border-box;
  width: 418px;

  padding: 30px 52px 32px;

  background-color: var(--background-color);
  box-shadow: 0 2px 10px rgba(54, 56, 65, 0.25);

  border-radius: 4px;
}
.login-layout__logo-image {
  max-width: 210px;

  margin-top: 100px;
  margin-bottom: 40px;
}


.login__title {
  font-size: 28px;
  font-weight: 500;

  color: #000000;

  text-align: center;

  margin-bottom: 10px;
}
.login__errors {
  font-size: 16px;

  color: var(--error-color);

  text-align: center;

  height: 16px;

  margin-bottom: 10px;
}
.login__input-group {
  margin-bottom: 26px;
}
.login__input-group:last-of-type {
  margin-bottom: 36px;
}
.login__input-group input:focus:invalid:focus {
  color: inherit;
  box-shadow: none;
}
.login__input-group .m-input__icon {
  cursor: pointer;

  width: 20px;
  height: 20px;

  padding-bottom: 0;

  margin-right: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.login__password-label {
  display: flex;
  justify-content: space-between;
}
.login__controls {
  display: flex;

  justify-content: space-between;
  align-items: center;
}
.login .m-checkbox__label {
  font-weight: 500;
}
.login__forgot-password {
  color: var(--main-color);
}
.login__forgot-password:hover {
  color: var(--action-hover-color);
}
.login__restore-text {
  font-size: 16px;

  text-align: center;

  margin-bottom: 16px;
}
.login__restore-text_success {
  color: var(--success-color);
}
.login__back-button {
  font-size: 16px;
  font-weight: 500;

  color: var(--main-color);
}
.login__back-button:hover {
  color: var(--action-hover-color);
  cursor: pointer;
}

/* todo: this is temporary naming while guideline is not finished */
.header-20 {
  font-size: 20px;
  color: var(--text-main-color);
}
.header-description-14 {
  font-size: 14px;

  color: var(--gray-text-color);

  margin-top: 6px;
}
.header_disabled {
  color: var(--gray-text-color);
}
:root {
  --tour-z-index: 1000;
  --popover-z-index: 1100;
  --popover-shading-z-index: 1000;
  --dropdown-z-index: 1099;
  --goto-z-index: 1050;
  --outsource-request-z-index: 9999;
  --unsupported-browser-notification-z-index: 99999;
}
.m-tooltip {
  display: block !important;
}
.m-tooltip {
  /* stylelint-disable-next-line declaration-no-important */
  z-index: 10000000;
}
.m-tooltip .m-tooltip-inner {
  color: var(--secondary-text-color);

  padding: 14px;

  background: var(--background-color);
  box-shadow: var(--box-shadow);

  border: 1px solid var(--border-color);

  border-radius: var(--border-radius);
}
.m-tooltip .m-tooltip-arrow {
  position: absolute;
  z-index: 1;

  width: 10px;
  height: 10px;

  margin: 5px;

  background-color: var(--background-color);
  box-shadow: var(--box-shadow);

  border: solid 1px var(--border-color);

  transform: rotate(45deg);
}
.m-tooltip[x-placement^='top'] {
  margin-bottom: 10px;
}
.m-tooltip[x-placement^='top'] .m-tooltip-arrow {
  bottom: -5px;
  left: calc(50% - 5px);

  margin-top: 0;
  margin-bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.m-tooltip[x-placement^='bottom'] {
  margin-top: 10px;
}
.m-tooltip[x-placement^='bottom'] .m-tooltip-arrow {
  top: -5px;
  left: calc(50% - 5px);

  margin-top: 0;
  margin-bottom: 0;
  clip-path: polygon(0 100%, 0 0, 100% 0);
}
.m-tooltip[x-placement^='right'] {
  margin-left: 10px;
}
.m-tooltip[x-placement^='right'] .m-tooltip-arrow {
  top: calc(50% - 10px);
  left: -5px;

  margin-left: 0;
  margin-right: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.m-tooltip[x-placement^='left'] {
  margin-right: 10px;
}
.m-tooltip[x-placement^='left'] .m-tooltip-arrow {
  top: calc(50% - 10px);
  right: -5px;

  margin-left: 0;
  margin-right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.m-tooltip.popover .popover-inner {
  color: #000000;

  padding: 24px;

  background: #F9F9F9;
  box-shadow: 0 5px 30px rgba(#000000, 0.1);

  border-radius: 5px;
}
.m-tooltip.popover .popover-arrow {
  border-color: #F9F9F9;
}
.m-tooltip[aria-hidden='true'] {
  visibility: hidden;

  opacity: 0;

  transition: opacity 150ms, visibility 150ms;
}
.m-tooltip[aria-hidden='false'] {
  visibility: visible;

  opacity: 1;

  transition: opacity 150ms;
}
.hint-text {
  font-size: 12px;
  color: var(--secondary-text-color);
}
.error-text {
  font-size: 12px;
  color: var(--error-color);
}
.tabless-page-spacer {
  margin-top: 62px;
}
.spacer5 { clear: both; height: 5px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer10 { clear: both; height: 10px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer15 { clear: both; height: 15px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer20 { clear: both; height: 20px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer25 { clear: both; height: 25px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer30 { clear: both; height: 30px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer35 { clear: both; height: 35px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer40 { clear: both; height: 40px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer45 { clear: both; height: 45px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer50 { clear: both; height: 50px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer100 { clear: both; height: 100px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
.spacer200 { clear: both; height: 200px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; }
body {
    font-family: var(--main-font-family);
    color: #333333;
    /*
    *  Fix font `some font faced fonts look bold on Mac in Chrome/Webkit based browsers.`
    *  https://www.uv.mx/personal/gvera/stop-fonts-looking-bold-on-mac-browsers/
    */
    -webkit-font-smoothing: antialiased;
    /* And same for firefox */
    -moz-osx-font-smoothing: grayscale;
}
button, input, textarea {
    font-family: var(--main-font-family);
}
.body_modal-active {
    overflow: hidden;
}
.project-common_info dt,.project-common_info dd {
    padding: 0.7em;
}
.dl-form dt, .dl-form dd {
    height: 2.7em;
}
div.dl-controls {
    margin-top: 4em;
}
.dl-pills dt {
    padding: 7px 0;
}
.booking {
    text-align: center;
}
.booking-enabled {
    background-color: #dee8f2;
}
.account-info {
    font-style: italic;
}
.account-info .divider {
    padding: 0 5px;
    color: #CCC;
}
.align-left { text-align: left; }
.align-right { text-align: right; }
.align-center { text-align: center; }
/* Forward compatibility with newer Bootstrap versions */
.text-left, th.text-left, td.text-left { text-align: left; }
.text-right, th.text-right, td.text-right { text-align: right; }
.text-center, th.text-center, td.text-center { text-align: center; }
.input-append .btn-group {
    margin-left: -1px;
}
.input-append .btn-group > .dropdown-toggle {
    vertical-align: top;
    border-radius: 0;
}
.input-append .btn-group:last-child > .dropdown-toggle {
    border-radius: 0 4px 4px 0;
}
.summary {
    font-style: italic;
}
li.disabled a {
    color: black;
    text-decoration: none;
}
li.disabled a:hover {
    color: black;
    text-decoration: none;
    cursor: default;
}
li label {
    display: inline;
}
li input[type="radio"] {
    margin-right: 5px;
}
.list {
    list-style: none;
}
.sortable {
    cursor: pointer;
    background: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/sortable.gif) no-repeat right center;
}
.table th.sortable {
    text-align: center;
    padding-right: 20px;
}
.table thead th {
    vertical-align: middle;
}
.sortable.sorted {
    background-color: #d9edf7;
    background-color: var(--table-sorted-th-color);
}
.sortable.sort-asc {
    background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/sortasc.gif);
}
.sortable.sort-desc {
    background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/sortdesc.gif);
}
.sortable.sort-progress {
    background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/spin.gif);
}
div.stats-control-hint {
    margin-bottom: 2px;
    margin-top: 2px;
    padding-bottom: 8px;
    padding-top: 4px;
}
/* Bootstrap select in form-inline */
.form-inline .bootstrap-select,
.form-inline .bootstrap-select.btn-group,
.form-inline .combobox,
.form-inline .inline-input,
.form-inline button {
    display: inline-block;
    *display: inline;
    margin-bottom: 0;
    vertical-align: middle;
    *zoom: 1;
}
.form-horizontal .bootstrap-select {
    margin-bottom: 0;
}
.bootstrap-select.input-block-level {
    width: 100%;
}
/* Filter */
.filter-trigger label {
    font-weight: bold;
}
.apply-filters {
    width: 145px;
}
.clear-filter {
    margin-top: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}
.remove-filter {
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
    padding: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.remove-filter:hover {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.4;
    filter: alpha(opacity=40);
}
.status-caret {
    display: none;
}
.btn-group:hover .status-caret { display: inline-block; }
#booking-table-holder .bootstrap-select { width: 180px; margin-bottom: 0px; }
#booking-table-holder .bootstrap-select .btn { width: 180px; }
.input-line {
    line-height: 30px;
    margin-bottom: 9px;
}
.clickable {
    cursor: pointer;
}
.form-horizontal-filter .controls {
    margin-left: 165px;
    margin-right: 50px;
}
.form-horizontal-filter-permanent .controls {
    margin-left: 165px;
    margin-right: 30px;
}
.form-horizontal-filter .control-label, .form-horizontal-filter-permanent .control-label {
    width: 145px;
}
.form-horizontal-filter .control-append, .form-horizontal-filter-permanent .control-append {
    float: right;
    display: block;
    margin-left: 9px;
}
/* Bootstrap accordion like well */
.accordion-group-well {
    margin-bottom: 9px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.accordion-group-well .accordion-heading a {
    font-weight: bold;
    color: #333;
}
.restore-link {
    font-size: 80%;
    padding-top: 0.2em;
}
.changed {
    font-weight: bold;
}
.form-horizontal input + .help-block-error,
.form-horizontal select + .help-block-error,
.form-horizontal textarea + .help-block-error {
  margin-top: 0;
}
.form-horizontal-annotated .controls {
    margin-right: 60px;
}
.form-horizontal-annotated .control-annotation {
    float: right;
    width: 50px;
    display: block;
}
.input-counter {
    font-size: 12px;
    color: #777;
    padding-top: 5px;
    padding-bottom: 5px;
}
.input-counter.error {
    color: #B94A48;
}
a.link-dotted, a.link-dotted:hover {
    text-decoration: none;
    border-bottom: 1px dotted;
}
input.input-cell {
    margin-top: -7px;
    margin-bottom: -5px;
}
input.input-cell-padded {
    margin: 0;
}
.checkbox.input-cell-padded {
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 26px;
}
.checkbox.input-cell-padded input {
    float: none;
    margin: 0;
}
.group-operations-sep {
    margin: 5px 0;
}
.nav-pills-compact {
    margin-bottom: 0;
}
/* Bootstrap-style Select2 */
.select2-container.bootstrap-select2 .select2-choices {
    border: 1px solid #CCC;
    border-radius: 3px;
    background-image: none;
}
.select2-container.bootstrap-select2 .select2-search-field .select2-input {
    margin: 0;
    padding: 4px 6px;
}
.select2-container.input-cell-padded .select2-search-field .select2-input {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.label-th {
    font-weight: bold;
    margin-bottom: 0;
}
.name-filter {
    width: 190px;
}
.closed-budget {
    width: 100px;
}
.icon-progress {
    background: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/spin.gif) center center no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-bottom: -6px;
}
.icon-progress.small {
    width: 14px;
    height: 14px;
    margin-bottom: -3px;
}
/* c-imagepicker */
.imagepicker-control .file-input{
    display: none;
}
/* c-borderpicker */
.border-picker{
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #494949;
    border-radius: 1px;
    cursor: pointer;
    box-sizing: border-box;
}
.border-picker-dropdown {
    display: none;
    position: absolute;
    right: -60px;
    width: 140px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 1px 1px 2px 1px #9e9e9e;
    padding: 5px 0;
}
.border-picker-dropdown .header{
    text-align: center;
    font-weight: bold;
    margin: 5px 0;
}
.border-picker-dropdown .border-list .item {
    display: flex;
    padding: 0 10px;
}
.border-picker-dropdown .border-list .item:hover {
    background-color: #ececec;
    display: flex;
}
.border-picker-dropdown .border-list label{
    width: 100%;
}
.border-picker-dropdown .border {
    position: relative;
    top: 4px;
    width: 14px;
    height: 14px;
    display: inline-block;
    box-sizing: border-box;
}
/* c-colorpicker */
.sp-clear-enabled.sp-palette-only .sp-clear-palette-only {
    width: 21px;
    height: 14px;
    border: none;
    margin: 1px;
    display: inline-block;
    position: relative;
    left: 0; /* override default style of spectrum js */
    background: none;
}
.color-picker{
    display: inline-block;
    width: 45px;
    height: 13px;
    background-color: #ff0000;
    border: solid 1px rgba(0,0,0, 0.25);
    border-radius: 3px;
    cursor: pointer;
}
.sp-container{
    background-color: #fff;
    box-shadow: 1px 1px 2px 1px #9e9e9e;
    border: none;
}
.sp-container .sp-thumb-el{
    width: 24px;
    height: 14px;
    border: none;
    margin: 1px;
}
.sp-container .sp-thumb-inner {
    border: 1px solid rgba(0,0,0,0.25);
}
.sp-container .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
    background-image: none;
    border: 2px solid rgba(0,0,0,0.5);
}
.sp-container .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
    background-image: none;
    border: 2px solid rgba(255,255,255,0.8);
}
/* Pagination tweaks (remove padding and line-height overrides after updating Twitter Bootstrap) */
.pagination ul > li > a, .pagination ul > li > span {
    padding: 0 10px;
    line-height: 30px;
}
.pagination ul > li > a.ellipsis, .pagination ul > li > span.ellipsis {
    border: 0;
}
input.item-checkbox {
    margin-top: -1px;
}
.table-striped tbody tr.paused:not(.success) td, .table-striped tbody tr.paused th {
    background-color: #f0f0f0;
}
/* Colors of percent cells */
.table tbody > tr > td.cell-ok {
    color: #468847;
    background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/icon-success.png);
    background-position: 8px 10px;
    background-repeat: no-repeat;
    padding-left: 24px;
}
.table tbody > tr > td.cell-warning {
    color: #c09853;
    background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/icon-warning.png);
    background-position: 8px 10px;
    background-repeat: no-repeat;
    padding-left: 24px;
}
.table tbody > tr > td.cell-alert {
    color: #b94a48;
    background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/icon-error.png);
    background-position: 8px 10px;
    background-repeat: no-repeat;
    padding-left: 24px;
}
.table thead > tr > th.cell-ok {
    color: #468847;
    background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/icon-success.png);
    background-position: 8px 10px;
    background-repeat: no-repeat;
    padding-left: 24px;
}
.table thead > tr > th.cell-warning {
    color: #c09853;
    background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/icon-warning.png);
    background-position: 8px 10px;
    background-repeat: no-repeat;
    padding-left: 24px;
}
.table thead > tr > th.cell-alert {
    color: #b94a48;
    background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/icon-error.png);
    background-position: 8px 10px;
    background-repeat: no-repeat;
    padding-left: 24px;
}
.search-pill {
    width: 160px;
}
.new-stacking-context {
    position: relative;
    z-index: 0;
}
/* Paradise for wiiide tables with sticky header */
.wide-table-container {
    overflow: auto;
    /* max-height is set to make table with its pagination fit inside one full screen */
    /* usually we have no other elements after table, so just try CTRL+END to get the point */
    /* magic-arithmetic here:
          20px (table margin-bottom)
        - 10px (pagination margin-top)
        + 14px (pagination summary height)
        + 35px (pagination height) +
        + 20px (content margin-bottom)
        + 20px (something i failed to find)
        = 99px to subtract from viewport height to get table's max-height */
    max-height: calc(100vh - 99px);
    margin-bottom: 20px;
    --sticky-header-z-index: 20;
    --sticky-column-cell-z-index: 10;
}
.wide-table-container table {
    margin-bottom: 0;
    border-top: 0;
}
.wide-table-container th {
    background-color: #ffffff;
    background-color: var(--table-th-color)
}
/* override bootstrap table borders
   such accurate specificity to make things work
   see also: https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity */
.wide-table-container .table thead:first-child tr:first-child > th:first-child,
.wide-table-container .table thead:first-child tr:first-child > th:last-child,
.wide-table-container .table tbody:last-child tr:last-child > td:first-child,
.wide-table-container .table tbody:last-child tr:last-child > td:last-child {
    border-radius: 0;
}
.wide-table-container table thead th {
    border-bottom: 1px solid #dddddd;
    border-bottom: 1px solid var(--table-border-color);
    z-index: var(--sticky-header-z-index);
}
.wide-table-container table thead th.sticky-column-header {
    z-index: 30;
    z-index: var(--sticky-header-in-sticky-column-z-index);
}
/* sticky header. Stick only first thead row */
/* unfortunately `border-collapse: collapse` cannot be used with sticky header */
/* so we have to handle border dublicates manually */
.wide-table-container .table thead tr:first-child th {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    border-top: 1px solid #dddddd;
    border-top: 1px solid var(--table-border-color);
}
/* a class to place on a <th> that should be sticky */
.sticky-column-header {
    position: sticky;
    position: -webkit-sticky;
    border-right: 1px solid #dddddd;
    border-right: 1px solid var(--table-border-color);
}
th.sticky-column-header + th {
    border-left: 0;
}
/* a class to place on a <tr> that should be sticky */
.sticky-column-cell {
    position: sticky;
    position: -webkit-sticky;
    border-right: 1px solid #dddddd;
    border-right: 1px solid var(--table-border-color);
    z-index: var(--sticky-column-cell-z-index);
}
td.sticky-column-cell + td {
    border-left: 0;
}
/* remove border-top from second thead row, because sticky row has border-bottom */
.wide-table-container table thead tr:nth-child(2) th {
    border-top: 0;
}
/* remove border-top from first tbody row, because sticky thead row has border-bottom */
.wide-table-container table tbody tr:first-child td {
    border-top: 0;
}
.sticky-header-row {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    top: var(--sticky-header-row-offset);
}
/* Compatibility with Bootstrap Core-Admin theme */
/* bootstrap-select shuld act like .btn-default */
.bootstrap-select .btn {
    color:#686868;
    text-shadow:none;
    border:1px solid #d4d4d4;
    box-shadow:inset 0 1px 2px #FFF;
    background-color:#e9e9e9;
    background-size:100%;
    background-image:linear-gradient(to bottom,#fdfdfd,#e9e9e9);
}
.bootstrap-select .btn:hover,.bootstrap-select .btn:active {
    color:#505050;
}
.bootstrap-select .btn .caret {
    border-top:4px solid #000;
}
.bootstrap-select .btn:hover {
    background-color:#e6e6e6;
    background-size:100%;
    background-image:linear-gradient(to bottom,#fdfdfd,#e6e6e6);
    transition:box-shadow .05s ease-in-out;
}
.bootstrap-select .btn:active {
    background-color:#f3f3f3;
    box-shadow:0 0 5px #f3f3f3 inset;
    border-color:#cfcfcf;
}
.btn-group.open .bootstrap-select .btn.dropdown-toggle {
background-color:#fdfdfd;
}
/* .btn-default had no style for .active class */
.btn.btn-default.active,
.btn.btn-default:active {
  background-color: #e6e6e6;
  background-color: #d9d9d9 \9;
  background-image: none;
  outline: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
/* Disabled input */
input[type="text"][disabled] {
    background-color: #f4f4f4;
}
/* Disabled buttons */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none;
}
/* More bright links */
a {
    /** color: #599CC7;**/
    color: #2288cc;
}
.btn {
    font-size: 12px;
}
.navbar {
    margin-bottom: 5px;
}
.ibutton-container {
    float: right;
    overflow: hidden;
    margin-left: 5px;
    margin-top: 5px;
}
.box .box-header .title {
    font-weight: bold;
}
/** jstree begin */
.jstree li a {
    height: auto;
    vertical-align: middle;
}
.jstree li a .node-content {
    padding-left: 20px;
}
.jstree li a .node-hint {
    display: block;
    color: #777;
    font-size: 10px;
    font-style: italic;
    line-height: 12px;
}
/** jstree end */
div.alert-center {
    float: none;
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto;
    padding-top: 7px;
    padding-bottom: 7px;
}
.link-button {
    width: 110px;
}
/* css for timepicker */
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
.ui-timepicker-div dl { text-align: left; }
.ui-timepicker-div dl dt { float: left; clear:left; padding: 0 0 0 5px; }
.ui-timepicker-div dl dd { margin: 0 10px 10px 40%; }
.ui-timepicker-div td { font-size: 90%; }
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }
.ui-timepicker-rtl{ direction: rtl; }
.ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; }
.ui-timepicker-rtl dl dt{ float: right; clear: right; }
.ui-timepicker-rtl dl dd { margin: 0 40% 10px 10px; }
/* css for timepicker application tweaks */
.ui-slider-horizontal { clear: none; }
dd > .ui-slider-horizontal{ top: 5px; }
.slash-list > :not(.option-hidden):after {
    content: ' / ';
}
.slash-list > :not(.option-hidden):last-child:after {
    content: '';
}
.options-list > span:not(.option-hidden):after {
    color: #CCC;
}
.options-list > .option-hidden {
    display: none;
}
/* Reports */
.report-select2-container {
    overflow: auto;
    max-height: 250px;
}
.report-select2-container .select2-search-choice {
    width: 332px;
}
.report-row {
    margin-bottom: 10px;
}
/* VAT settings */
.vat-list-table td input{
    margin: 0;
}
.vat-list-table td {
    text-align: center;
}
/* Custom reports */
.report-grid-container{
    margin-left: 30px;
    margin-bottom: 100px;
    width: calc(100% - 30px);
}
.item-animated {
    transition-timing-function: ease-out;
    transition: 150ms;
}
.grid-element.grid-warning {
    box-shadow: 0 0 2px 4px #ffc107;
}
.grid-element.grid-error{
    box-shadow: 0 0 1px 2px #ff0000;
}
.grid-element.grid-error:after{
    content: attr(data-error);
    position: relative;
    top: 5px;
    color: #ff0000;
}
.report-grid-container .grid-list{
    height: 450px;
    overflow: scroll;
    padding: 0;
    border: solid 1px #d2d2d2;
    position: relative;
}
.grid-element{
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    border-radius: 5px;
    box-sizing: border-box;
    z-index: 100;
    /*overflow: hidden;*/
}
.grid-element .report-table-container{
    box-sizing: border-box;
    border: solid 1px #000000;
    overflow: hidden;
    border-radius: 3px;

}
.grid-element .report-element-text{
    transition: all 0.5s ease-in-out;
    border: solid 1px #c3c3c3;
    box-sizing: border-box;
}
.grid-element .report-element-image{
    border: solid 1px #000;
    box-sizing: border-box;
    overflow: hidden;
}
.grid-element .report-element-image .contents{
    width: 100%;
    height: 100%;
    vertical-align: middle;
    font-size: 16px;
}
.grid-element .report-element-image .controls {
    position: absolute;
    top: 5px;
    right: 3px;
    font-size: 16px;
    text-align: center;
}
.imagepicker-control {
    width: 200px;
    height: 200px;
    display: table;
    background-size: 100%;
    position: relative;
}
.imagepicker-control .image-picker{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: table;
    transition: .25s ease-in-out;
}
.imagepicker-control .selected {
    transition: all .25s ease-in-out;
    opacity: 0;
}
.imagepicker-control:hover .selected {
    opacity: 1;
}
.imagepicker-control .picker-control {
    vertical-align: middle;
    text-align: center;
    display: table-cell;
    cursor: pointer;
}
.imagepicker-control .imagepicker-trigger {
    font-size: 14px;
    color: #6e6e6e;
    transition: .25s ease-in-out;
}
.imagepicker-control .background{
    width: 100%;
    height: 100%;
    background-size: 100%;
}
.imagepicker-control:hover .image-picker {
    background-color: rgba(216, 216, 216, 0.5);
}
.imagepicker-control:hover .imagepicker-trigger {
    color: #1a1a1a;
    font-size: 15px;
}
.grid-element .report-element-image .imagepicker-control {
    width: 100%;
    height: 100%;
}
.grid-element .report-element-image .background{
    transition: 0.25s ease-in-out;
    width: 100%;
    height: 100%;
}
.grid-animated{
    transition: 100ms, background-color 200ms linear;
}
.grid-element > div {
    width: 100%;
    height: 100%;
}
.sheet-tabs-container {
    display: flex;
    position: relative;
}
.sheet-tabs {
    display: flex;
    overflow-x: auto;
}
.sheet-tab {
    padding: 5px;
    min-width: 60px;
    cursor: pointer;
    display: flex;
    width: 100px;
    height: 30px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #b6b6b6;
    border-right: 1px solid #b6b6b6;
}
.sheet-tab:first-child {
    border-left: 1px solid #b6b6b6;
}
.sheet-tab:hover, .sheet-tab.active {
    border: 1px solid #6e6e6e;
    border-top: none;
    margin-left: -1px;
}
.sheet-tab:hover:first-child, .sheet-tab.active:first-child {
    margin-left: 0;
}
.sheet-tab.active {
    font-weight: bold;
}
.sheet-tab .settings {
    padding: 3px 5px;
}
.sheet-tab .contents {
    width: 90%;
}
.sheet-tab .contents .text-field {
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
}
.sheet-tab .rename-sheet {
    margin: 0;
    padding: 0;
    width: 90%;
}
.add-sheet {
    font-size: 16px;
    color: #b6b6b6;
    width: 50px;
    justify-content: center;
}
.add-sheet:hover {
    color: #6e6e6e;
}
.columns-separated{
    display: flex;
}
.report-element-table .dimension + .metric{
    border-left: solid 1px #808080;
}
.report-element-table{
    height: 100%;
    display: grid;
    grid-template-columns: 120px;
    grid-auto-flow: column;
}
.report-element-table > div{
    width: 120px;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: 120px;
    grid-auto-flow: column;
    border-right: solid 1px #d8d8d8;
    box-sizing: border-box;
    overflow: hidden;
}
.report-element-table > div:last-of-type{
    border-right: none;
}
.report-element-table > div > div {
    margin: 0;
    padding: 5px;
    height: 100%;
    width: 100%;
    display: table;
    box-sizing: border-box;
}
.report-element-table .content{
    display: table-cell;
    vertical-align: middle;
}
.report-element-table .cell{
    border-top: solid 1px #c4c4c4;
}
.report-element-table > .column > .cell:nth-child(3){
    border-bottom: solid 1px #c4c4c4;
}
.report-element-table .cell:nth-child(2n + 1){
    background-color: rgba(200,200,200, 0.3);
}
.report-element-table .header {
    position: relative;
}
.report-element-table .footer {
    position: relative;
}
.report-element-table .header .content{
    font-weight: bolder;
    flex-direction: row;
}
.report-element-table .text{
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 75px;
    overflow: hidden;
    padding-top: 3px;
}
.grid-element .controls{
    position: absolute;
    right: 3px;
    top: 6px;
    display: inline;
    float: right;
    transition: 200ms;
    white-space: nowrap;
    font-size: 16px;
    color: #b6b6b6;
}
.report-element-table .footer{
    font-weight: bolder;
}
.cell-items-templates .grid-element{
    margin: 10px;
    display: inline-block;
}
.grid-list canvas{
    padding: 0;
    margin: 0;
}
.grid-list .ui-state-disabled{
    opacity: 1;
}
.grid-list .report-element-text .text-field{
    font-size: 12px;
    display: inline-block;
    transition: .25s;
    word-wrap: break-word;
    word-break: break-all;
    padding: 5px;
}
.report-element-text .text-field[contenteditable=true]:empty::before {
    font-size: 12px;
    content: attr(placeholder);
    color: #949494;
}
.grid-list .report-element-text .text-field.active{
    border: solid 1px #9f9f9f;
}
.report-popup{
    position: absolute;
    z-index: 200;
    width: 250px;
    background-color: #fff;
    box-shadow: 1px 1px 2px 1px #9e9e9e;
    padding: 5px;
    border-radius: 3px;
    display: none;
}
.report-popup .dropdown-header{
    padding: 5px 10px;
    font-weight: bold;
}
.report-popup .dropdown-header > i {
    margin-right: 10px;
    font-size: 16px;
    color: #000;
}
.report-popup .clickable-item{
    color: #000;
    padding: 5px 5px;
    font-weight: bolder;
    cursor: pointer;
    transition: .25s;
}
.report-popup .form-row{
    color: #000;
    margin: 0 5px;
    box-sizing: border-box;
}
.report-popup .form-row label{
    color: #000;
    cursor: default;
}
.report-popup .form-row .sub-text{
    color: #494949;
}
.report-popup .form-row input{
    width: 100%;
    box-sizing: border-box;
}
.report-popup .color-row{
    display: flex;
}
.report-popup .color-row label{
    width: 100%;
    font-weight: bolder;
    color: #000;
}
.report-popup .clickable-item:hover{
    background-color: #ececec;
}
.grid-element .ui-resizable-handle{
    width: 12px;
    height: 13px;
    background-image: none;
    text-indent: 0;
    transition: .25s;
}
.grid-element:hover .ui-resizable-handle, .ui-resizable-resizing .ui-resizable-handle{
    width: 14px;
    height: 15px;
    background-image: none;
    text-indent: 0;
}
.grid-element .ui-resizable-handle:before{
    content: "\f065";
    font-family: FontAwesome;
    color: #acacac;
    text-indent: 0;
    font-size: 12px;
    transform: rotate(90deg);
    display: inline-block;
    transition: .25s;
}
.grid-element:hover .ui-resizable-handle:before{
    font-size: 14px;
}
.grid-element .ui-resizable-handle:hover:before, .ui-resizable-resizing .ui-resizable-handle:before {
    color: #575757;
}
.grid-element .control-item {
    color: #b6b6b6;
    cursor: pointer;
    display: inline-block;
    font-weight: normal;
    padding-left: 2px;
    padding-right: 2px;
    transition: .25s;
}
.grid-element .control-item:hover{
    color: #6e6e6e;
}
.grid-element .ui-resizable-handle:hover:before, .ui-resizable-resizing{
    z-index: 200;
}
.grid-element .report-element-text {
    display: block;
    overflow: hidden;
}
.grid-element .report-element-text .contents {
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
}
.grid-element .report-element-text .controls {
    position: absolute;
    top: 5px;
    right: 3px;
    font-size: 16px;
}
/* end of custom reports */
.custom-report-form {
    align-items: flex-end;
}
.custom-report-form .form-stacked {
    width: 420px;
}
.template-items-column {
    border: solid 1px #c4c4c4;
    width: 100%;
    margin-bottom: 20px;
}
.template-items-column > .header {
    text-align: center;
    padding: 10px;
    color: #6e6e6e;
    font-size: 14px;
}
.template-items-column .cell-items-templates {
    margin-bottom: 20px;
}
.permission-item {
    width: 250px;
}
.help-icon {
    color: #cccccc;
    margin-left: 2px;
}
.help-list {
    margin: 0 0 10px 10px;
}
.help {
    white-space: nowrap;
}
.popover-content {
    font-weight: normal;
}
/* Stacked form */
.form-stacked .field-margin-top {
    margin-top: 52px;
}
.form-stacked .field.field-small {
    width: 100px;
}
.form-stacked .field.field-medium {
    width: 160px;
}
.form-stacked .field.field-large {
    width: 220px;
}
.form-stacked .field.field-xlarge {
    width: 280px;
}
.form-stacked .field.field-xxlarge {
    width: 540px;
}
.form-stacked .field {
    display: block;
    margin-bottom: 10px;
}
.form-stacked .field-inline {
    display: inline-block;
    margin-bottom: 0;
}
.form-stacked .field > label {
    display: inline-block;
}
.form-stacked .field-inline > label {
    margin-left: 4px;
    margin-right: 4px;
}
.form-stacked .field-inline > label:first-child {
    margin-left: 0;
}
.form-stacked .field > input, .form-stacked .field > textarea, .form-stacked .field > .checkbox {
    margin-bottom: 0;
}
.form-stacked .field > input, .form-stacked .field > textarea, .form-stacked .field > .checkbox.inline {
    padding-top: 0;
}
.form-stacked .field > input, .form-stacked .field > textarea, .form-stacked .field .radio.inline {
    padding-top: 0;
}
.form-stacked .field input[type="text"], .form-stacked .field input[type="password"], .form-stacked .field textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 30px;
}
.form-stacked .field-inline input[type="text"], .form-stacked .field-inline textarea {
    width: auto;
}
.form-stacked .field .text-error {
    display: block;
}
.form-stacked .field-checkbox {
    margin-bottom: 5px;
}
.form-stacked .field-checkbox .text-error {
    margin-left: 20px;
}
.form-stacked .field-radiolist label, .form-stacked .field-checklist label {
    margin-bottom: 0;
}
.form-stacked .field-channel-input {
}
.form-stacked .field-channel-input img {
    margin: 3px;
}
.form-stacked .field-channel-input .close {
    float: none;
    margin: 4px;
}
.form-stacked .field-report-dates .field-report-date {
    position: relative;
}
.form-stacked .field-report-dates .field-report-date > input {
    margin-bottom: 0;
}
.form-stacked .field-report-dates .text-error {
    position: absolute;
    left: 0;
    top: 26px;
}
.form-stacked .field-report-entities .radio.inline {
    padding-top: 0;
    margin-bottom: 5px;
    margin-right: 40px;
}
.form-stacked .field-report-format .radio.inline {
    padding-top: 0;
    margin-left: 20px;
}
.form-stacked .field-search {
    width: 212px;
    position: relative;
}
.form-stacked .field-search .icon-search {
    position: absolute;
    right: 10px;
    top: 8px;
    color: #777;
}
/* Table-like form */
.form-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}
.form-table .form-table-row {
    display: table-row;
}
.form-table .form-table-row .form-table-cell {
    display: table-cell;
    border: 4px solid transparent;
}
.form-table .form-table-row:first-child .form-table-cell {
    border-top: none;
}
.form-table .form-table-row:last-child .form-table-cell {
    border-bottom: none;
}
.form-table .form-table-row .form-table-cell:first-child {
    border-left: none;
}
.form-table .form-table-row .form-table-cell:last-child {
    border-right: none;
}
.form-table .form-table-cell-tiny {
    width: 1%;
}
.form-table .form-table-cell label {
    display: inline;
    white-space: nowrap;
    margin-right: 5px;
}
.form-table .form-table-cell input[type="text"] {
    margin: 0;
    min-height: 30px;
    width: 100%;
    box-sizing: border-box;
}
.form-table .form-table-cell input.select2-input {
    min-height: 26px;
}
.form-table .form-table-cell input[type="radio"] {
    width: auto;
    min-height: 20px;
    margin-left: -20px;
    margin-right: 4px;
}
.form-table .form-table-cell label.radio.inline {
    display: inline-block;
    padding-top: 0;
}
.form-table .form-table-cell .select2-container {
    margin: 0;
}
/* Drop mask */
.drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    /* Beneath bootstrap popover div */
    z-index: 1099;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}
.drop-mask-locking {
    position: absolute;
    opacity: 0.5;
    filter: alpha(opacity=0.5);
}
.drop-mask-transparent {
    position: absolute;
}
.drop-mask-spinner {
    background: #fff url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/spin.gif) no-repeat center center;
}
/* Column presets */
.preset-row {
    height: 20px;
}
.preset {
    margin-right: 10px;
}
.presets div .delete-preset {
    float: none;
    display: none;
}
.presets div:hover .delete-preset {
    display: inline-block;
    margin-left: -10px;
    margin-right: -5px;
}
.small-height-select2 > ul > li.select2-search-field > input.select2-input {
    height: 22px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.field-small-height-select2 > ul > li.select2-search-field > input.select2-input {
    min-height: 22px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.statistics-select2-container {
    overflow: auto;
    max-height: 250px;
    margin-top: 2px;
}
.statistics-select2-container .select2-choices .select2-search-field input {
    height: 22px;
    padding-top: 2px;
    padding-bottom: 2px;
}
/* Box table */
.box-table {
    display: table;
    border-spacing: 20px;
    margin-left: -20px;
    margin-top: -20px;
}
.box-table-row {
    display: table-row;
}
.box-table-cell {
    display: table-cell;
    border-spacing: 0;
    vertical-align: top;
}
.edited-cell {
    background-color: #f6e1a4 !important;
}
.plot-tooltip {
    font-size: 0.9em;
    position: absolute;
    padding: 2px;
    opacity: 0.94;
}
.legend table {
    border-spacing: 3px;
    border-collapse: separate;
}
/* Status dropdown */
.status-dropdown {
    position: absolute;
    z-index: 9999;
}
.status-dropdown > ul {
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;

    background-color: whitesmoke;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZkZmRmZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Y1ZjVmNSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: linear-gradient(to bottom, #fdfdfd, #f5f5f5);

    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    text-decoration: none;
    outline: none;
    list-style: none;

    border: 1px solid #ccc;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}
.status-dropdown li > a:hover, .status-dropdown li > a:focus, .status-dropdown li > a:active {
    background-color: #f2f2f2;
    text-decoration: none;
}
.status-dropdown li > a {
    text-decoration: none;
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 20px;
    color: #686868;
    white-space: nowrap;
}
/* End of status dropdown */
i.default-cursor {
    cursor: default;
}
/* TabSelect control */
div.tab-select div {
    font-weight: normal;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 2px 4px;
    margin-right: 6px;

    cursor: pointer;

    text-shadow: 0 1px 1px rgba(0,0,0,.3);
    border-radius: .2em;
    box-shadow: 0 1px 2px rgba(160,160,160,1);
}
div.tab-select div.active {
    background-color: #5BA5CB;
    color: #fff;
    border: 1px #337CA1 solid;
}
div.tab-select div.active:hover {
    background-color: #0088CC;
    color: #fff;
    border: 1px #337CA1 solid;
}
div.tab-select div.error {
    background-color: #ff5959;
}
div.tab-select div.error:hover {
    background-color: #ff1d1d;
}
div.tab-select div {
    background-color: #ddd;
    color: #888;
    border: 1px #bbb solid;
    text-align: center;
}
div.tab-select div:hover {
    background-color: #bbb;
    color: #fff;
    border: 1px #888 solid;
}
/* End of TabSelect */
.bottom10 {
    margin-bottom: 10px;
}
.bottom20 {
    margin-bottom: 20px;
}
.bottom30 {
    margin-bottom: 30px;
}
.top10 {
    margin-top: 10px;
}
.top20 {
    margin-top: 20px;
}
.top30 {
    margin-top: 30px;
}
/* Placements */
.create-placement-form__connection-select {
    display: flex;
}
.create-placement-form__connection-select .btn {
    margin-left: 20px;
}
/* End of placements */
/* Booking */
.dropdown-group-placements {
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}
.dropdown-group-placements li > a {
    margin-right: 30px;
    clear: none;
    color: #0088cc;
    text-decoration: none;
}
.dropdown-group-placements li > a:hover {
    color: #005580;
    text-decoration: underline;
    background: transparent;
}
.dropdown-group-placements li .close {
    display: none;
    padding: 3px 10px;
}
.dropdown-group-placements li:hover .close {
    display: block;
}
/* End of booking */
/* Bidmanager */
.bidmanager-condition .close {
    visibility: hidden;
}
.bidmanager-condition:hover .close {
    visibility: visible;
}
/* End of Bidmanager */
/* Group table */
.group-item-options {
    width: 28px;
}
.group-item-options .close {
    float: none;
}
.group-item-options .remove {
    margin: 8px;
}
.group-item-options .move-up, .group-item-options .move-down {
    margin: 4px 8px;
}
/* End of group table */
.modal-header .header-inline {
    white-space: nowrap;
}
.modal-header .header-inline h1,h2,h3,h4,h5,h6 {
    padding-right: 20px;
}
.modal-block {
    top: 30%;
    padding: 20px 25px;
}
.modal-block > h4 {
    font-size: 20px;
}
.modal-text-body {
    padding: 8px 0px;
    font-size: 14px;
    line-height: 1.5em;
}
.modal-btn {
    padding: 8px 0px;
    margin: 10px -14px 10px 0px;
}
.project-dl-horizontal dt {
    width: 180px;
}
.ym-competitors .popover {
    white-space: nowrap;
    max-width: none;
}
.ym-competitors .popover p {
    margin-bottom: 0;
}
.tooltip-inner {
    white-space: pre-wrap;
}
/* Permissions */
.permissions-select2-container {
    overflow: auto;
}
.permissions-select2-container .select2-search-choice {
    width: 502px;
}
.sync-source-rule-item {
    margin: 0 10px;
    width: 100%;
}
.sync-source-rule-item:first-child {
    margin-left: 0;
}
.sync-source-rule-item:last-child {
    margin-right: 0;
}
.sync-source-rule-item > input {
    margin-bottom: 0;
    display: block;
}
.sync-source-rule-item > .select2-container {
    display: block;
}
.dropdown-max-width {
    max-width: 364px;
}
.generation-table-key {
    width: 99%;
}
.generation-table-templates {
    margin-bottom: 4px;
}
.remove-template {
    position: relative;
    top: 8px;
}
/* Begin of order metrics */
.metric-label {
    width: 100%;
}
/* End of group table */
/* Begin of YM segmentation */
.dl-table {
    display: table;
}
.dl-table > div.dl-row {
    display: table-row;
}
.dl-table > div.dl-row > div.dl-dt {
    font-weight: 700;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}
.dl-table > div.dl-row > div.dl-dd {
    padding-left: 20px;
    display: table-cell;
    vertical-align: middle;
}
/* End of YM segmentation */
/* Generation Segmentation */
.with-underline, .with-underline:hover {
    text-decoration: underline;
}
.code-input {
    padding: 0 3px 2px;
    font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
    font-size: 12px;
    color: #333333;
    border-radius: 3px
}
.table-vertical-middle.table td {
    vertical-align: middle;
}
input.generation-table-input, textarea.generation-table-input {
    margin-bottom: 0px;
    width: 99%;
}
input.full-width-input {
    width: 100%;
    height: 28px;
    box-sizing: border-box;
}
/* End of Generation Segmentation */
/* Begin of Select2 icon hack*/
.select2-search-choice-image-left div img:first-child {
     position: absolute;
     top: 1.5px;
}
.select2-search-choice-image-left div {
     padding-left: 18px;
}
/* No close element*/
.select2-search-choice-image-left.select2-locked div img:first-child {
     left: 3px;
}
/* Consider close element*/
.select2-search-choice-image-left:not(.select2-locked) div img:first-child {
     left: 18px;
}
/* End of Select2 icon hack*/
.icon-ok-ex {
    display: inline;
    background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/icon-success.png);
    background-position: 0 0;
    background-repeat: no-repeat;
}
.icon-ok-ex::before {
    content: "";
    width: 14px;
    height: 14px;
}
div.assign-budget-orderperiods {
    margin-top: 8px;
}
.assign-budget-orderperiods label, .assign-budget-orderperiods .button {
    display: inline;
}
.icon-connection-inactivity-reason {
    margin-right: 5px;
}
#breadcrumbs {
    padding-right: 0;
}
.required:after {
    content: " *";
    color: #b94a48;
}
.stretch-flexbox {
    display: flex;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-flow: row wrap;
    align-items: stretch
}
.stretch-flexbox-nowrap {
    display: flex;
    justify-content: flex-start;
    -ms-flex-wrap: nowrap;
    flex-flow: row nowrap;
    align-items: stretch;
}
.stretch-flexbox * {
    box-sizing: border-box;
}
.form-stacked .field .stretch-flexbox input[type="text"],
.form-stacked .field .stretch-flexbox-nowrap input[type="text"] {
    flex-shrink: 1;
    flex-grow: 1;
    width: auto;
}
.box-flexbox {
    margin-right: 20px;
    width: 375px;
}
.box-content .divider {
    *width: 100%;
    height: 1px;
    margin: 9px 1px;
    *margin: -5px 0 5px;
    overflow: hidden;
    background-color: #e5e5e5;
    border-bottom: 1px solid white
}
.statistics-table-container {
    min-height: 240px;
}
/* imageselect control */
.image-select {
    justify-content: space-evenly;
    display: flex;
    flex-wrap: wrap;
}
.image-select div.image-select-tab {
    position: relative;
    margin: 10px;
}
.image-select div.image-select-tab div.close-cross {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    top: 0;
}
/* imagecrop control */
.modal-body > .crop-container {
    max-height: 400px;
    overflow: hidden
}
.modal-body > .sizes {
    padding-top: 10px;
}
.crop-container {
    max-width: 100%;
}
.crop-container > img {
    width: 100%;
}
.icon-blue {
    color: #16ABE0;
}
.icon-pink {
    color: #D93D7A;
}
.icon-gold {
    color: #9D833E;
}
.icon-azure {
    color: #00B0A3;
}
.icon-purple {
    color: #5E1F6A;
}
.icon-grey {
    color: #969696;
}
.icon-black {
    color: #212129;
}
.icon-dark-blue {
    color: #3B5998;
}
/* mass edit orders */
:root {
    --mass-edit-box-width: 305px;
    --mass-edit-order-blocks-number: 9;
    --mass-edit-orders-number: 1;
    --mass-edit-block-header-background-color: #c4c4c4;
    --mass-edit-block-content-background-color: #f1f1f1;
    --table-border-color: #dddddd;
    --table-th-color: #ffffff;
    --table-sorted-th-color: #d9edf7;
    --base-pills-color: #0088cc;
    --sticky-header-row-offset: 0;
    --sticky-header-in-sticky-column-z-index: 30;
    --mass-edit-sticky-block-height: 0;
    --mass-edit-self-sticky-left: 0;
    /*
    * The values below are being changed from JS.
    * The defaults were somehow calculated from a number of CSS rules and blocks. (* v *)
    * */
    --mass-edit-left-curtain-offset: -16px;
    --mass-edit-left-curtain-width: 76px;
}
.semantic-wrapper {
    display: contents;
}
.mass-edit-box {
    width: 305px;
    width: var(--mass-edit-box-width);
    height: 100%;
    /* layout header and content as flexes */
    display: flex;
    flex-direction: column;
}
.mass-edit-box .box-header .title {
    display: inline-block;
    width: auto;
    font-size: 12px;
}
.mass-edit-box .box-header {
    padding-top: 8px;
    padding-right: 18px;
    padding-left: 20px;
    padding-bottom: 8px;
    background-color: #c4c4c4;
    background-color: var(--mass-edit-block-header-background-color);
}
.mass-edit-box .box-content {
    border: 1px solid #c4c4c4;
    border: 1px solid var(--mass-edit-block-header-background-color);
    background-color: #f1f1f1;
    background-color: var(--mass-edit-block-content-background-color);
    flex: 1;  /* stretch to parent's height */
}
.mass-edit-orders {
    overflow-x: auto;
    display: grid;
    margin-left: 60px;
    margin-right: 59px;
    grid-template-columns: repeat(1, 305px);
    grid-template-columns: repeat(var(--mass-edit-orders-number), var(--mass-edit-box-width));
    grid-template-rows: repeat(9, auto);
    grid-template-rows: repeat(var(--mass-edit-order-blocks-number), auto);
    grid-auto-flow: column;
    grid-column-gap: 12px;
}
.mass-edit-icons {
    float: right;
    display: block;
    font-size: 12px;
}
.mass-edit-icons i {
    padding-left: 5px;
}
.mass-edit-icons i:hover {
    cursor: pointer;
}
.mass-edit-icons .hide {
    display: none;
}
/* a class to add to `#siblinglist-container` from JS to make sure sticky elements and select2's go underneath it */
.top-z-index {
    z-index: 10000;
}
.mass-edit-orders::before, .mass-edit-orders::after {
    content: '';

    position: absolute;
    top: 0;
    z-index: 3;

    display: block;
    background-color: white;
    height: 100%; /* cover all possible overlapping elements */
}
.mass-edit-orders::before {
    left: -16px;
    left: var(--mass-edit-left-curtain-offset);
    width: 76px;
    width: var(--mass-edit-left-curtain-width);
}
.mass-edit-orders::after {
    right: -15px; /* `padding-right` of `.main-content` (15px) */
    width: 74px; /* `margin-right` of `.mass-edit-orders` (59px) + `padding-right` of `.main-content` (15px) */
}
.mass-edit-sticky-block-placeholder {
    display: none;
    width: calc(305px - 32px);
    width: calc(var(--mass-edit-box-width) - 32px); /* subtract padding and border of each side */
    height: 130px; /* height of two inputs with `margin`s */
}
.mass-edit-sticky-block {
    background-color: #f1f1f1;
    background-color: var(--mass-edit-block-content-background-color);
}
.fixed-mass-edit-sticky-block {
    position: fixed;

    top: 30px; /* that's the height which is mass-editing block header is being rendered to */
    left: calc(16px + 0);
    left: calc(16px + var(--mass-edit-self-sticky-left));

    z-index: 1;
    height: 0;
    height: var(--mass-edit-sticky-block-height);
    border-bottom: 1px solid #c4c4c4;
    border-bottom: 1px solid var(--mass-edit-block-header-background-color);

    margin: 0 -15px;
    padding: 15px 15px 25px;
}
.mass-edit-sticky-block-header-placeholder {
    display: none;
    width: 305px;
    width: var(--mass-edit-box-width);
    height: 31px; /* see `top` of `.fixed-mass-edit-sticky-block` */
}
.fixed-mass-edit-sticky-block-header {
    position: fixed;
    top: 0;

    left: calc(16px + 0);

    left: calc(16px + var(--mass-edit-self-sticky-left));

    z-index: 2;
}
.button-group-spacer > *:not(:first-child) {
    margin-left: 5px;
}
.nav-pills .multiple-pills a {
    margin-right: 5px;
}
.nav-pills .multiple-pills.active:not(:first-child) a,
.nav-pills .multiple-pills.active:not(:first-child) a:focus {
    background-color: transparent;
    color: #0088cc;
    color: var(--base-pills-color);
    box-shadow: 0 0 0.1px 1px #0088cc;
    box-shadow: 0 0 0.1px 1px var(--base-pills-color);
}
.baseline {
    align-items: baseline;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline
}
/* Set the same height for text inputs, select2 with multiple choices and select2 with single choice */
.mediaplan input {
    max-width: 100%;
    padding-top: 2px;
    padding-bottom: 2px;
}
.mediaplan .select2-container-multi .select2-choices .select2-search-field input {
    padding: 1px 5px 0 5px;
}
.mediaplan .select2-container-multi {
    margin-bottom: 11px;  /* align error message below */
}
.mediaplan .align-middle {
    padding-top: 9px;
}
.mediaplan .template {
    text-decoration: underline;
    text-transform: lowercase;
}
.mediaplan .fileinput-button input {
    /* Turn off weird style from jquery.fileupload-ui.css because it moves input aside from button */
    transform: none;
}
.mediaplan .fileinput-button input::-webkit-file-upload-button {
    /* https://stackoverflow.com/questions/7554845/the-cursorpointer-property-doesnt-apply-to-file-upload-buttons-in-webkit-brows */
    cursor: pointer;
}
.profile {
    padding-bottom: 10px;
}
.step-container .connection-select {
    table-layout: fixed;
}
.step-container .connection-select .form-table-cell:first-child {
    width: 15px;
}
.step-container .connection-select .form-table-cell:last-child {
    width: 330px;
}
.column-resizer {
    display: inline;
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: e-resize;
}
/* columnpicker */
.columnpicker-item-container {
    display: flex;
    align-items: center;
}
.columnpicker-item-container > *:not(:last-child) {
    margin-right: 5px;
}
/* for `dots` indicating draggable elements*/
span.grippy {
    color: gray;
    margin-top: -3px;
    cursor: move;
}
/* new css */
/* element to count string width in px, used in  breadcrumbs */
#ruler {
    visibility: hidden;
    position: absolute;
    white-space: nowrap;
    height: 0;
    overflow: hidden;
}
#page-layout {
    display: grid;

    --sidebar-color: #F6F7F9;
    --topbar-height: 63px;

    /* 3rd row is needed when content length is more than one screen
       then sidebar is fixed and content is scrollable */
    grid-template:
            [row1-start] "sidebar topbar"  var(--topbar-height)               [row1-end]
            [row2-start] "sidebar content" calc(100vh - var(--topbar-height)) [row2-end]
            [row3-start] "   .    content" auto                               [row3-end]
            / auto 1fr
}
#page-layout-sidebar {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    grid-area: sidebar;
    background-color: var(--sidebar-color);
    z-index: 5;
}
#page-layout-topbar {
    grid-area: topbar;
    margin-left: 16px;
    margin-right: 16px;
}
#page-layout-content {
    grid-area: content;
    margin-left: 16px;
    margin-right: 16px;
    /* needed to prevent content overflow one screen by x-axis */
    /* more: https://css-tricks.com/preventing-a-grid-blowout/ */
    min-width: 0;
}
.button {
    transition: 200ms ease-in-out;
    cursor: pointer;
    display: inline-block;
    border-radius: 5px;
    padding: 0 14px;
    height: 32px;
    line-height: 11px;
}
.button.button_disabled {
    cursor: not-allowed;
}
#misha:hover {
    transform: translate(0, -180px) rotate(20deg);
    transition: transform 1000ms;
}
#misha {
    transition: transform 1000ms;
    will-change: transform;
}

.bootstrap-select.btn-group, 
.bootstrap-select.btn-group[class*="span"] {
    float:none; 
    display: inline-block;
    margin-bottom: 10px;
    margin-left:0;
}

.bootstrap-select.btn-group.pull-right, 
.bootstrap-select.btn-group[class*="span"].pull-right, 
.row-fluid .bootstrap-select.btn-group[class*="span"].pull-right {
    float:right;
}

.input-append .bootstrap-select.btn-group {
    margin-left: -1px;
}

.input-prepend .bootstrap-select.btn-group {
    margin-right: -1px;
}

.bootstrap-select:not([class*="span"]) {
    width: 220px;
}

.bootstrap-select {
    width: 220px\9; /*IE8 and below*/
}

.bootstrap-select .btn {
    width: 100%;
}

.bootstrap-select.show-menu-arrow.open .btn {
    z-index:1001;
}

.bootstrap-select .btn:focus {
    outline: thin dotted #333333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
}

.bootstrap-select .btn:focus {
    outline-offset: -2px;
}

.bootstrap-select.btn-group .btn .filter-option {
    overflow:hidden; 
    position:absolute;
    left:12px; 
    right:25px;
    text-align:left;
}

.bootstrap-select.btn-group .btn .caret {
    position:absolute;
    right:12px;
}

.bootstrap-select.btn-group > .disabled, 
.bootstrap-select.btn-group .dropdown-menu li.disabled > a {
    cursor: not-allowed;
}

.bootstrap-select.btn-group[class*="span"] .btn {
    width:100%;
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width:100%;
    box-sizing:border-box;
}

.bootstrap-select.btn-group .dropdown-menu dt {
    display:block; 
    padding:3px 20px; 
    cursor:default;
}

.bootstrap-select.btn-group .div-contain {
    overflow:hidden;
}

.bootstrap-select.btn-group .dropdown-menu li > a.opt {
    padding-left:35px;
}

.bootstrap-select.btn-group .dropdown-menu li > a {
    min-height:20px;
    cursor: pointer;
}

.bootstrap-select.btn-group .dropdown-menu li > dt small {
    font-weight:normal;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a i.check-mark { 
    display:inline-block;
    position: absolute;
    right: 15px;
    margin-top: 2.5px;
}

.bootstrap-select.btn-group .dropdown-menu li a i.check-mark { 
    display: none;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px;
}

.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left:0.5em;
}

.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:hover small, 
.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:focus small {
    color: #64b1d8; 
    color:rgba(255,255,255,0.4);
}

.bootstrap-select.btn-group .dropdown-menu li > dt small {
    font-weight:normal;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #CCC;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid #ccc;
  border-bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.2);
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid #ffffff;
  border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
    display: block;
}
/*
Copyright (C) 2014 Acquisio Inc. V0.1.1

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
.clearfix {
    *zoom: 1;
}
.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
    line-height: 0;
}
.clearfix:after {
    clear: both;
}
.hide-text {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.input-block-level {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box;
}
.dropdown-checkbox {
    position: relative;
}
.dropdown-checkbox.dropdown.open .caret {
    border-top-color: #000000 !important;
}
.dropdown-checkbox .caret {
    margin-top: 8px;
    margin-left: 2px;
}
.dropdown-checkbox .dropdown-checkbox-content {
    display: none;
    position: absolute;
    background: white;
    z-index: 1000;
    top: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(360deg);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    border: 1px solid #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.dropdown-checkbox .dropdown-checkbox-content li .layout {
    padding: 0 10px;
}
.dropdown-checkbox .dropdown-checkbox-content li .layout:hover {
    background: #049cdb;
    color: white;
    cursor: pointer;
}
.dropdown-checkbox .dropdown-checkbox-content li .layout input[type=checkbox] {
    float: left;
    height: 25px;
    margin: 0;
    outline: none;
    padding: 0;
}
.dropdown-checkbox .dropdown-checkbox-content li .layout label {
    display: block;
    white-space: nowrap;
    line-height: 25px;
    padding-left: 30px;
    margin-bottom: 0;
    height: 25px;
}
.dropdown-checkbox.open .dropdown-checkbox-content {
    display: block;
}
.dropdown-checkbox .dropdown-checkbox-header {
    min-width: 245px;
    padding: 10px;
    border-radius: 4px 4px 0px 0px;
}
.dropdown-checkbox .dropdown-checkbox-header {
    margin: auto;
    background-color: #f0f0f0;
}
.dropdown-checkbox .dropdown-checkbox-header .search {
    margin: 0;
}
.dropdown-checkbox .dropdown-checkbox-header .checkbox-all {
    margin-right: 10px;
}
.dropdown-checkbox ul.dropdown-checkbox-menu {
    margin: 0;
    list-style: none;
    padding: 2px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: visible;
}
.dropdown-checkbox ul.dropdown-checkbox-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.dropdown-checkbox .dropdown-checkbox-apply {
    margin: 0 auto 10px;
    display: block;
    min-width: 92%;
    max-width: 92%;
}
/***
Spectrum Colorpicker v1.8.0
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/

.sp-container {
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    *display: inline;
    *zoom: 1;
    /* https://github.com/bgrins/spectrum/issues/40 */
    z-index: 9999994;
    overflow: hidden;
}

.sp-container.sp-flat {
    position: relative;
}

/* Fix for * { box-sizing: border-box; } */

.sp-container,
.sp-container * {
    box-sizing: content-box;
}

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */

.sp-top {
  position:relative;
  width: 100%;
  display:inline-block;
}

.sp-top-inner {
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
}

.sp-color {
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:20%;
}

.sp-hue {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:84%;
    height: 100%;
}

.sp-clear-enabled .sp-hue {
    top:33px;
    height: 77.5%;
}

.sp-fill {
    padding-top: 80%;
}

.sp-sat, .sp-val {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.sp-alpha-enabled .sp-top {
    margin-bottom: 18px;
}

.sp-alpha-enabled .sp-alpha {
    display: block;
}

.sp-alpha-handle {
    position:absolute;
    top:-4px;
    bottom: -4px;
    width: 6px;
    left: 50%;
    cursor: pointer;
    border: 1px solid black;
    background: white;
    opacity: .8;
}

.sp-alpha {
    display: none;
    position: absolute;
    bottom: -14px;
    right: 0;
    left: 0;
    height: 8px;
}

.sp-alpha-inner {
    border: solid 1px #333;
}

.sp-clear {
    display: none;
}

.sp-clear.sp-clear-display {
    background-position: center;
}

.sp-clear-enabled .sp-clear {
    display: block;
    position:absolute;
    top:0px;
    right:0;
    bottom:0;
    left:84%;
    height: 28px;
}

/* Don't allow text selection */

.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button  {
    -webkit-user-select:none;
    -moz-user-select: -moz-none;
    -o-user-select:none;
    user-select: none;
}

.sp-container.sp-input-disabled .sp-input-container {
    display: none;
}

.sp-container.sp-buttons-disabled .sp-button-container {
    display: none;
}

.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
    display: none;
}

.sp-palette-only .sp-picker-container {
    display: none;
}

.sp-palette-disabled .sp-palette-container {
    display: none;
}

.sp-initial-disabled .sp-initial {
    display: none;
}

/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */

.sp-sat {
    background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
    filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}

.sp-val {
    background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
    filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
}

.sp-hue {
    background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */

.sp-1 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}

.sp-2 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
}

.sp-3 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
}

.sp-4 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
}

.sp-5 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
}

.sp-6 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
}

.sp-hidden {
    display: none !important;
}

/* Clearfix hack */

.sp-cf:before, .sp-cf:after { content: ""; display: table; }

.sp-cf:after { clear: both; }

.sp-cf { *zoom: 1; }

/* Mobile devices, make hue slider bigger so it is easier to slide */

@media (max-device-width: 480px) {
    .sp-color { right: 40%; }
    .sp-hue { left: 63%; }
    .sp-fill { padding-top: 60%; }
}

.sp-dragger {
   border-radius: 5px;
   height: 5px;
   width: 5px;
   border: 1px solid #fff;
   background: #000;
   cursor: pointer;
   position:absolute;
   top:0;
   left: 0;
}

.sp-slider {
    position: absolute;
    top:0;
    cursor:pointer;
    height: 3px;
    left: -1px;
    right: -1px;
    border: 1px solid #000;
    background: white;
    opacity: .8;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/

.sp-container {
    border-radius: 0;
    background-color: #ECECEC;
    border: solid 1px #f0c49B;
    padding: 0;
}

.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
    font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.sp-top {
    margin-bottom: 3px;
}

.sp-color, .sp-hue, .sp-clear {
    border: solid 1px #666;
}

/* Input */

.sp-input-container {
    float:right;
    width: 100px;
    margin-bottom: 4px;
}

.sp-initial-disabled  .sp-input-container {
    width: 100%;
}

.sp-input {
   font-size: 12px !important;
}

.sp-input {
   border: 1px inset;
   padding: 4px 5px;
   margin: 0;
   width: 100%;
   background:transparent;
   border-radius: 3px;
   color: #222;
}

.sp-input:focus  {
    border: 1px solid orange;
}

.sp-input.sp-validation-error {
    border: 1px solid red;
    background: #fdd;
}

.sp-picker-container , .sp-palette-container {
    float:left;
    position: relative;
    padding: 10px;
    padding-bottom: 300px;
    margin-bottom: -290px;
}

.sp-picker-container {
    width: 172px;
    border-left: solid 1px #fff;
}

/* Palettes */

.sp-palette-container {
    border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
    border: 0;
}

.sp-palette .sp-thumb-el {
    display: block;
    position:relative;
    float:left;
    width: 24px;
    height: 15px;
    margin: 3px;
    cursor: pointer;
    border:solid 2px transparent;
}

.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: orange;
}

.sp-thumb-el {
    position:relative;
}

/* Initial */

.sp-initial {
    float: left;
    border: solid 1px #333;
}

.sp-initial span {
    width: 30px;
    height: 25px;
    border:none;
    display:block;
    float:left;
    margin:0;
}

.sp-initial .sp-clear-display {
    background-position: center;
}

/* Buttons */

.sp-palette-button-container,
.sp-button-container {
    float: right;
}

/* Replacer (the little preview div that shows up instead of the <input>) */

.sp-replacer {
    margin:0;
    overflow:hidden;
    cursor:pointer;
    padding: 4px;
    display:inline-block;
    *zoom: 1;
    *display: inline;
    border: solid 1px #91765d;
    background: #eee;
    color: #333;
    vertical-align: middle;
}

.sp-replacer:hover, .sp-replacer.sp-active {
    border-color: #F0C49B;
    color: #111;
}

.sp-replacer.sp-disabled {
    cursor:default;
    border-color: silver;
    color: silver;
}

.sp-dd {
    padding: 2px 0;
    height: 16px;
    line-height: 16px;
    float:left;
    font-size:10px;
}

.sp-preview {
    position:relative;
    width:25px;
    height: 20px;
    border: solid 1px #222;
    margin-right: 5px;
    float:left;
    z-index: 0;
}

.sp-palette {
    *width: 220px;
    max-width: 220px;
}

.sp-palette .sp-thumb-el {
    width:16px;
    height: 16px;
    margin:2px 1px;
    border: solid 1px #d0d0d0;
}

.sp-container {
    padding-bottom:0;
}

/* Buttons: http://hellohappy.org/css3-buttons/ */

.sp-container button {
  background-color: #eeeeee;
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}

.sp-container button:hover {
    background-color: #dddddd;
    background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd;
}

.sp-container button:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}

.sp-cancel {
    color: #d93f3f !important;

}

.sp-cancel {
    font-size: 11px;
    margin:0;
    padding:2px;
    margin-right: 5px;
    vertical-align: middle;
    text-decoration:none;

}

.sp-cancel:hover {
    color: #d93f3f !important;
}

.sp-cancel:hover {
    text-decoration: underline;
}

.sp-palette span:hover, .sp-palette span.sp-thumb-active {
    border-color: #000;
}

.sp-preview, .sp-alpha, .sp-thumb-el {
    position:relative;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}

.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
    display:block;
    position:absolute;
    top:0;left:0;bottom:0;right:0;
}

.sp-palette .sp-thumb-inner {
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

.sp-clear-display {
    background-repeat:no-repeat;
    background-position: center;
    background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}

/*
The jQuery UI Month Picker Version 3.0.4
https://github.com/KidSysco/jquery-ui-month-picker/

Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see
<http://www.gnu.org/licenses/gpl-3.0.txt>.
*/

.month-picker {
    display: inline-block;
    z-index: 9999;
}

.month-picker table {
  border-collapse: separate;
  border-spacing: 2px 2px;
}

.month-picker td {
    padding: 0px;
}

/*
Prevents the button labels from maving sligtly to the left
when applying the width CSS property to the buttons.
See: .month-picker-month-table button { width: 4.3em; }
*/

.month-picker .ui-button-text {
  padding: .4em 0;
}

.month-picker-header {
    margin: 3px 3px 0px 3px;
}

.month-picker-year-table {
    width: 100%;
    /*
    Makes sure the next/previous/jump years buttons are not unnecessarily
    selected if the user clicks them a couple of times fast.
    */ /* IE 10+ */
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    user-select: none;
}

/*
The plugin uses buttons with a transparent background in the year-table
(aka header) in order to look consistent with jQuery UI datepicker and to
make the year title a button that blends into the heading in the default state.

The plugin does this by removing the .ui-state-default class from (in MonthPicker.js)
the a tags (buttons) which also ends up removing the 1px border that it applies.

To prevent the button from resizing and moving everything around when you hover
in and out, we use a carefully constructed selector, which gets overroden by the
more specific .ui-state-hover/actove class selectors in the jquery-ui.css
that apply the visible borders that we want.

This selector applies a 1px transparent border that keeps the button
in the same size, but it doesen't hide the borders that .ui-state-hover/actove give us.
*/

.month-picker-year-table a {
    border: 1px solid transparent;
}

/*
Sets the size of the next/previous buttons,
and makes the buttons in the heading (year-table) sligtly bigger,
and removes the pointer cursor from the buttons in the heading (year-table).
*/

.month-picker-year-table .ui-button {
    font-size: 1.1em;
    width: 1.5em;
    height: 1.5em;
    cursor: default;
    margin: 0;
}

.month-picker-year-table .month-picker-title {
    text-align: center;
}

.month-picker-year-table .month-picker-title .ui-button {
    font-size: 1em;
    padding: .1em 0;
    width: 100%;
    font-weight: bold;
}

/*
The buttons in the heading (year-table) are slightly shrinked, but because jQuery ui and
the .month-picker .ui-button-text rule at the top of this CSS file apply some
padding which results in the button text being moved to the bottom of
the button.

This rule removes the unnecessary padding so the text in
the jump years button will be vericaly centred.
*/

.month-picker-year-table .ui-button-text {
    padding: 0;
}

.month-picker-month-table td {
    height: 35px;
    text-align: center;
}

/*
Makes sure the buttons stay in the same size when swithching
to the Jump years menu.
this also ensures that the entire menu dosen't resize itself
in response to the slightly bigger buttons in the Jump years menu.
 */

.month-picker-month-table .ui-button {
    width: 4.2em;
    margin: .2em;
}

.month-picker-open-button {
    height: 20px;
    width: 20px;
    vertical-align: bottom;
}

.month-picker-invalid-message {
    display: none;
    background-color: Yellow;
}

.month-picker-disabled {
    background-color: #e1e1e1;
}

.month-picker-title .ui-button-text-only .ui-button-text{
    padding: 0;
}

.month-picker-month-table .ui-button-text-only .ui-button-text {
    padding: .4em 0;
}
/*! jQuery UI - v1.9.2 - 2012-12-11
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&
bgColorError=fef1ec&bgTextureError=02_glass.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright (c) 2012 jQuery Foundation and other contributors Licensed MIT */

/* Layout helpers
----------------------------------*/

.ui-helper-hidden { display: none; }

.ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }

.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }

.ui-helper-clearfix:after { clear: both; }

.ui-helper-clearfix { zoom: 1; }

.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }

/* Interaction Cues
----------------------------------*/

.ui-state-disabled { cursor: default !important; }

/* Icons
----------------------------------*/

/* states and images */

.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }

/* Misc visuals
----------------------------------*/

/* Overlays */

.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.ui-resizable { position: relative;}

.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }

.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }

.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }

.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }

.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }

.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }

.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }

.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }

.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }

.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}

.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }

.ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; }

.ui-accordion .ui-accordion-icons { padding-left: 2.2em; }

.ui-accordion .ui-accordion-noicons { padding-left: .7em; }

.ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; }

.ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }

.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; }

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
}

/* workarounds */

* html .ui-autocomplete { width:1px; }

/* without this, the menu expands to 100% in IE6 */

.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; cursor: pointer; text-align: center; zoom: 1; overflow: visible; }

/* the overflow property removes extra width in IE */

.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active { text-decoration: none; }

.ui-button-icon-only { width: 2.2em; }

/* to make room for the icon, a width needs to be set here */

button.ui-button-icon-only { width: 2.4em; }

/* button elements seem to need a little more width */

.ui-button-icons-only { width: 3.4em; }

button.ui-button-icons-only { width: 3.7em; }

/*button text element */

.ui-button .ui-button-text { display: block; line-height: 1.4;  }

.ui-button-text-only .ui-button-text { padding: .4em 1em; }

.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }

.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }

.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }

.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }

/* no icon support for input elements, provide padding by default */

input.ui-button { padding: .4em 1em; }

/*button icon element(s) */

.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }

.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }

.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }

.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }

.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }

/*button sets*/

.ui-buttonset { margin-right: 7px; }

.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }

/* workarounds */

button.ui-button::-moz-focus-inner { border: 0; padding: 0; }

/* reset extra padding in Firefox */

.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }

.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }

.ui-datepicker .ui-datepicker-prev { left:2px; }

.ui-datepicker .ui-datepicker-next { right:2px; }

.ui-datepicker .ui-datepicker-prev-hover { left:1px; }

.ui-datepicker .ui-datepicker-next-hover { right:1px; }

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }

.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }

.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }

.ui-datepicker select.ui-datepicker-month-year {width: 100%;}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year { width: 49%;}

.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }

.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }

.ui-datepicker td { border: 0; padding: 1px; }

.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }

.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }

/* with multiple calendars */

.ui-datepicker.ui-datepicker-multi { width:auto; }

.ui-datepicker-multi .ui-datepicker-group { float:left; }

.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }

.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }

.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }

.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }

.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }

.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }

/* RTL support */

.ui-datepicker-rtl { direction: rtl; }

.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }

.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }

.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }

.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }

.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }

.ui-datepicker-rtl .ui-datepicker-group { float:right; }

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */

.ui-datepicker-cover {
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}

.ui-dialog { position: absolute; top: 0; left: 0; padding: .2em; width: 300px; overflow: hidden; }

.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative;  }

.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }

.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }

.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }

.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }

.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }

.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }

.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }

.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }

.ui-draggable .ui-dialog-titlebar { cursor: move; }

.ui-menu { list-style:none; padding: 2px; margin: 0; display:block; outline: none; }

.ui-menu .ui-menu { margin-top: -3px; position: absolute; }

.ui-menu .ui-menu-item { margin: 0; padding: 0; zoom: 1; width: 100%; }

.ui-menu .ui-menu-divider { margin: 5px -2px 5px -2px; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; }

.ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.5; zoom: 1; font-weight: normal; }

.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: -1px; }

.ui-menu .ui-state-disabled { font-weight: normal; margin: .4em 0 .2em; line-height: 1.5; }

.ui-menu .ui-state-disabled a { cursor: default; }

/* icon support */

.ui-menu-icons { position: relative; }

.ui-menu-icons .ui-menu-item a { position: relative; padding-left: 2em; }

/* left-aligned */

.ui-menu .ui-icon { position: absolute; top: .2em; left: .2em; }

/* right-aligned */

.ui-menu .ui-menu-icon { position: static; float: right; }

.ui-progressbar { height:2em; text-align: left; overflow: hidden; }

.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }

.ui-slider { position: relative; text-align: left; }

.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }

.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }

.ui-slider-horizontal { height: .8em; }

.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }

.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }

.ui-slider-horizontal .ui-slider-range-min { left: 0; }

.ui-slider-horizontal .ui-slider-range-max { right: 0; }

.ui-slider-vertical { width: .8em; height: 100px; }

.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }

.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }

.ui-slider-vertical .ui-slider-range-min { bottom: 0; }

.ui-slider-vertical .ui-slider-range-max { top: 0; }

.ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }

.ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; }

.ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; }

.ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; }

/* more specificity required here to overide default borders */

.ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; }

/* vertical centre icon */

.ui-spinner-up { top: 0; }

.ui-spinner-down { bottom: 0; }

/* TR overrides */

.ui-spinner .ui-icon-triangle-1-s {
    /* need to fix icons sprite */
    background-position:-65px -16px;
}

.ui-tabs { position: relative; padding: .2em; zoom: 1; }

/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */

.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }

.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; border-bottom: 0; padding: 0; white-space: nowrap; }

.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; }

.ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; }

/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */

.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    box-shadow: 0 0 5px #aaa;
}

/* Fades and background-images don't work well together in IE6, drop the image */

* html .ui-tooltip {
    background-image: none;
}

body .ui-tooltip { border-width: 2px; }

/* Component containers
----------------------------------*/

.ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; }

.ui-widget .ui-widget { font-size: 1em; }

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; }

.ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; }

.ui-widget-content a { color: #222222; }

.ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; }

.ui-widget-header a { color: #222222; }

/* Interaction states
----------------------------------*/

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #555555; }

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999; background: #dadada url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited { color: #212121; text-decoration: none; }

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; }

/* Interaction Cues
----------------------------------*/

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #fcefa1; background: #fbf9ee url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; }

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; }

.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }

.ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); }

/* For IE8 - See #6059 */

/* Icons
----------------------------------*/

/* states and images */

.ui-icon { width: 16px; height: 16px; background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-icons_222222_256x240.png); }

.ui-widget-content .ui-icon {background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-icons_222222_256x240.png); }

.ui-widget-header .ui-icon {background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-icons_222222_256x240.png); }

.ui-state-default .ui-icon { background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-icons_888888_256x240.png); }

.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-icons_454545_256x240.png); }

.ui-state-active .ui-icon {background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-icons_454545_256x240.png); }

.ui-state-highlight .ui-icon {background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-icons_2e83ff_256x240.png); }

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-icons_cd0a0a_256x240.png); }

/* positioning */

.ui-icon-carat-1-n { background-position: 0 0; }

.ui-icon-carat-1-ne { background-position: -16px 0; }

.ui-icon-carat-1-e { background-position: -32px 0; }

.ui-icon-carat-1-se { background-position: -48px 0; }

.ui-icon-carat-1-s { background-position: -64px 0; }

.ui-icon-carat-1-sw { background-position: -80px 0; }

.ui-icon-carat-1-w { background-position: -96px 0; }

.ui-icon-carat-1-nw { background-position: -112px 0; }

.ui-icon-carat-2-n-s { background-position: -128px 0; }

.ui-icon-carat-2-e-w { background-position: -144px 0; }

.ui-icon-triangle-1-n { background-position: 0 -16px; }

.ui-icon-triangle-1-ne { background-position: -16px -16px; }

.ui-icon-triangle-1-e { background-position: -32px -16px; }

.ui-icon-triangle-1-se { background-position: -48px -16px; }

.ui-icon-triangle-1-s { background-position: -64px -16px; }

.ui-icon-triangle-1-sw { background-position: -80px -16px; }

.ui-icon-triangle-1-w { background-position: -96px -16px; }

.ui-icon-triangle-1-nw { background-position: -112px -16px; }

.ui-icon-triangle-2-n-s { background-position: -128px -16px; }

.ui-icon-triangle-2-e-w { background-position: -144px -16px; }

.ui-icon-arrow-1-n { background-position: 0 -32px; }

.ui-icon-arrow-1-ne { background-position: -16px -32px; }

.ui-icon-arrow-1-e { background-position: -32px -32px; }

.ui-icon-arrow-1-se { background-position: -48px -32px; }

.ui-icon-arrow-1-s { background-position: -64px -32px; }

.ui-icon-arrow-1-sw { background-position: -80px -32px; }

.ui-icon-arrow-1-w { background-position: -96px -32px; }

.ui-icon-arrow-1-nw { background-position: -112px -32px; }

.ui-icon-arrow-2-n-s { background-position: -128px -32px; }

.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }

.ui-icon-arrow-2-e-w { background-position: -160px -32px; }

.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }

.ui-icon-arrowstop-1-n { background-position: -192px -32px; }

.ui-icon-arrowstop-1-e { background-position: -208px -32px; }

.ui-icon-arrowstop-1-s { background-position: -224px -32px; }

.ui-icon-arrowstop-1-w { background-position: -240px -32px; }

.ui-icon-arrowthick-1-n { background-position: 0 -48px; }

.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }

.ui-icon-arrowthick-1-e { background-position: -32px -48px; }

.ui-icon-arrowthick-1-se { background-position: -48px -48px; }

.ui-icon-arrowthick-1-s { background-position: -64px -48px; }

.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }

.ui-icon-arrowthick-1-w { background-position: -96px -48px; }

.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }

.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }

.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }

.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }

.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }

.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }

.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }

.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }

.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }

.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }

.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }

.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }

.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }

.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }

.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }

.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }

.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }

.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }

.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }

.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }

.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }

.ui-icon-arrow-4 { background-position: 0 -80px; }

.ui-icon-arrow-4-diag { background-position: -16px -80px; }

.ui-icon-extlink { background-position: -32px -80px; }

.ui-icon-newwin { background-position: -48px -80px; }

.ui-icon-refresh { background-position: -64px -80px; }

.ui-icon-shuffle { background-position: -80px -80px; }

.ui-icon-transfer-e-w { background-position: -96px -80px; }

.ui-icon-transferthick-e-w { background-position: -112px -80px; }

.ui-icon-folder-collapsed { background-position: 0 -96px; }

.ui-icon-folder-open { background-position: -16px -96px; }

.ui-icon-document { background-position: -32px -96px; }

.ui-icon-document-b { background-position: -48px -96px; }

.ui-icon-note { background-position: -64px -96px; }

.ui-icon-mail-closed { background-position: -80px -96px; }

.ui-icon-mail-open { background-position: -96px -96px; }

.ui-icon-suitcase { background-position: -112px -96px; }

.ui-icon-comment { background-position: -128px -96px; }

.ui-icon-person { background-position: -144px -96px; }

.ui-icon-print { background-position: -160px -96px; }

.ui-icon-trash { background-position: -176px -96px; }

.ui-icon-locked { background-position: -192px -96px; }

.ui-icon-unlocked { background-position: -208px -96px; }

.ui-icon-bookmark { background-position: -224px -96px; }

.ui-icon-tag { background-position: -240px -96px; }

.ui-icon-home { background-position: 0 -112px; }

.ui-icon-flag { background-position: -16px -112px; }

.ui-icon-calendar { background-position: -32px -112px; }

.ui-icon-cart { background-position: -48px -112px; }

.ui-icon-pencil { background-position: -64px -112px; }

.ui-icon-clock { background-position: -80px -112px; }

.ui-icon-disk { background-position: -96px -112px; }

.ui-icon-calculator { background-position: -112px -112px; }

.ui-icon-zoomin { background-position: -128px -112px; }

.ui-icon-zoomout { background-position: -144px -112px; }

.ui-icon-search { background-position: -160px -112px; }

.ui-icon-wrench { background-position: -176px -112px; }

.ui-icon-gear { background-position: -192px -112px; }

.ui-icon-heart { background-position: -208px -112px; }

.ui-icon-star { background-position: -224px -112px; }

.ui-icon-link { background-position: -240px -112px; }

.ui-icon-cancel { background-position: 0 -128px; }

.ui-icon-plus { background-position: -16px -128px; }

.ui-icon-plusthick { background-position: -32px -128px; }

.ui-icon-minus { background-position: -48px -128px; }

.ui-icon-minusthick { background-position: -64px -128px; }

.ui-icon-close { background-position: -80px -128px; }

.ui-icon-closethick { background-position: -96px -128px; }

.ui-icon-key { background-position: -112px -128px; }

.ui-icon-lightbulb { background-position: -128px -128px; }

.ui-icon-scissors { background-position: -144px -128px; }

.ui-icon-clipboard { background-position: -160px -128px; }

.ui-icon-copy { background-position: -176px -128px; }

.ui-icon-contact { background-position: -192px -128px; }

.ui-icon-image { background-position: -208px -128px; }

.ui-icon-video { background-position: -224px -128px; }

.ui-icon-script { background-position: -240px -128px; }

.ui-icon-alert { background-position: 0 -144px; }

.ui-icon-info { background-position: -16px -144px; }

.ui-icon-notice { background-position: -32px -144px; }

.ui-icon-help { background-position: -48px -144px; }

.ui-icon-check { background-position: -64px -144px; }

.ui-icon-bullet { background-position: -80px -144px; }

.ui-icon-radio-on { background-position: -96px -144px; }

.ui-icon-radio-off { background-position: -112px -144px; }

.ui-icon-pin-w { background-position: -128px -144px; }

.ui-icon-pin-s { background-position: -144px -144px; }

.ui-icon-play { background-position: 0 -160px; }

.ui-icon-pause { background-position: -16px -160px; }

.ui-icon-seek-next { background-position: -32px -160px; }

.ui-icon-seek-prev { background-position: -48px -160px; }

.ui-icon-seek-end { background-position: -64px -160px; }

.ui-icon-seek-start { background-position: -80px -160px; }

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */

.ui-icon-seek-first { background-position: -80px -160px; }

.ui-icon-stop { background-position: -96px -160px; }

.ui-icon-eject { background-position: -112px -160px; }

.ui-icon-volume-off { background-position: -128px -160px; }

.ui-icon-volume-on { background-position: -144px -160px; }

.ui-icon-power { background-position: 0 -176px; }

.ui-icon-signal-diag { background-position: -16px -176px; }

.ui-icon-signal { background-position: -32px -176px; }

.ui-icon-battery-0 { background-position: -48px -176px; }

.ui-icon-battery-1 { background-position: -64px -176px; }

.ui-icon-battery-2 { background-position: -80px -176px; }

.ui-icon-battery-3 { background-position: -96px -176px; }

.ui-icon-circle-plus { background-position: 0 -192px; }

.ui-icon-circle-minus { background-position: -16px -192px; }

.ui-icon-circle-close { background-position: -32px -192px; }

.ui-icon-circle-triangle-e { background-position: -48px -192px; }

.ui-icon-circle-triangle-s { background-position: -64px -192px; }

.ui-icon-circle-triangle-w { background-position: -80px -192px; }

.ui-icon-circle-triangle-n { background-position: -96px -192px; }

.ui-icon-circle-arrow-e { background-position: -112px -192px; }

.ui-icon-circle-arrow-s { background-position: -128px -192px; }

.ui-icon-circle-arrow-w { background-position: -144px -192px; }

.ui-icon-circle-arrow-n { background-position: -160px -192px; }

.ui-icon-circle-zoomin { background-position: -176px -192px; }

.ui-icon-circle-zoomout { background-position: -192px -192px; }

.ui-icon-circle-check { background-position: -208px -192px; }

.ui-icon-circlesmall-plus { background-position: 0 -208px; }

.ui-icon-circlesmall-minus { background-position: -16px -208px; }

.ui-icon-circlesmall-close { background-position: -32px -208px; }

.ui-icon-squaresmall-plus { background-position: -48px -208px; }

.ui-icon-squaresmall-minus { background-position: -64px -208px; }

.ui-icon-squaresmall-close { background-position: -80px -208px; }

.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }

.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }

.ui-icon-grip-solid-vertical { background-position: -32px -224px; }

.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }

.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }

.ui-icon-grip-diagonal-se { background-position: -80px -224px; }

/* Misc visuals
----------------------------------*/

/* Corner radius */

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { border-top-left-radius: 4px; }

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { border-top-right-radius: 4px; }

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 4px; }

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 4px; }

/* Overlays */

.ui-widget-overlay { background: #aaaaaa url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); }

.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); border-radius: 8px; }
@charset "UTF-8";
/*
 * jQuery File Upload UI Plugin CSS 7.4
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2010, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */
.fileinput-button {
  position: relative;
  overflow: hidden;
  float: left;
  margin-right: 4px;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translate(-300px, 0) scale(4);
  font-size: 23px;
  direction: ltr;
  cursor: pointer;
}
.fileupload-buttonbar .btn,
.fileupload-buttonbar .toggle {
  margin-bottom: 5px;
}
.files .progress {
  width: 200px;
}
.progress-animated .bar {
  /*background: url(../img/progressbar.gif) !important;*/
  filter: none;
}
.fileupload-loading {
  position: absolute;
  left: 50%;
  width: 128px;
  height: 128px;
  /*background: url(../img/loading.gif) center no-repeat;*/
  display: none;
}
.fileupload-processing .fileupload-loading {
  display: block;
}
/* Fix for IE 6: */
* html .fileinput-button {
  line-height: 24px;
  margin: 1px -3px 0 0;
}
/* Fix for IE 7: */
* + html .fileinput-button {
  padding: 2px 15px;
  margin: 1px 0 0 0;
}
@media (max-width: 767px) {
  .fileupload-buttonbar .toggle,
  .files .toggle,
  .files .btn span {
    display: none;
  }
  .files .preview * {
    width: 40px;
  }
  .files .name * {
    width: 80px;
    display: inline-block;
    word-wrap: break-word;
  }
  .files .progress {
    width: 20px;
  }
}

/*!
 * Cropper.js v1.3.2
 * https://github.com/fengyuanchen/cropperjs
 *
 * Copyright (c) 2015-2018 Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2018-03-03T03:42:40.122Z
 */

.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.cropper-container img {
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
}

.cropper-container img {/*Avoid margin top issue (Occur only when margin-top <= -height)
 */
  display: block;
  height: 100%;
  image-orientation: 0deg;
  width: 100%;
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: .5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline-color: rgba(51, 153, 255, 0.75);
  outline: 1px solid #39f;
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: .5;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: 33.33333%;
  left: 0;
  top: 33.33333%;
  width: 100%;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.33333%;
  top: 0;
  width: 33.33333%;
}

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: .75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center:before,
.cropper-center:after {
  background-color: #eee;
  content: ' ';
  display: block;
  position: absolute;
}

.cropper-center:before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

.cropper-center:after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: .1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: .75;
  width: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: .75;
    width: 5px;
  }
}

.cropper-point.point-se:before {
  background-color: #39f;
  bottom: -50%;
  content: ' ';
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/fonts/fontawesome-webfont.eot);
  src: url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),
      url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/fonts/fontawesome-webfont.woff2) format('woff2'),
      url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/fonts/fontawesome-webfont.woff) format('woff'),
      url(/static/docker-e3e49e89b1b7f8c64dedef9b650f641c/fonts/fontawesome-webfont.ttf) format('truetype'),
      url(static/docker-e3e49e89b1b7f8c64dedef9b650f641c/images//opt/frontend/src/_legacyDesign/fontawesome/fonts/fontawesome-webfont.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}


/*# sourceMappingURL=main~a2dee9c7~a2dee9c7.css.map*/