/* HelpLess
*
*  @What is it:
*  HelpLess is a Helper Library for the brilliant LESS dynamic stylesheet language.
*  Read more about LESS: http://lesscss.org/
*  
*  I have tried to make HelpLess as all-encompasing as possible with support for dynamic
*  grids and page starter themes as well as all the css3 features I could think of.
*  Unlike other libraries, HelpLess has an invisible footprint until you call a mixin 
*  so if you import HelpLess but don't use it, it will not increase your compiled file size
*  
*  @thanks: 
*  Eric Meyer for his html reset - http://meyerweb.com/eric/tools/css/reset/
*  Necolas for his normalize - https://github.com/necolas/normalize.css
*
*  @How to use:
*  Import helpless.x.x.x.less into your main style.less file. 
*
*  @Author: 
*  m6tt: m6tt.com
*
*  @Reference:
*  ------------------------------------------------------------------------------
*    BASICS                     =>    syntax
*  ------------------------------------------------------------------------------
*    - .reset                   =>    #hl.reset() - call outside of element
*    - .normalize               =>    #hl.normalize - call outside of element
*    - .clearfix                =>    #hl.clearfix()
*    - .centered                =>    #hl.centered(width)
*    - .border                  =>    #hl.border(color)
*    - .opacity                 =>    #hl.opacity(value)
*    - .round-all-corners       =>    #hl.round-all-corners(radius)
*    - .rounded-corners         =>    #hl.rounded-corners(topLeft, topRight, bottomRight, bottomLeft)
*    - .transition              =>    #hl.transition(property, duration, ease, delay)
*    - .drop-shadow             =>    #hl.drop-shadow(x, y, blur, color)
*    - .inner-shadow            =>    #hl.inner-shadow(x, y, blur, color)
*    - .text-shadow             =>    #hl.text-shadow(x, y, blur, color)
*    - .background-gradient     =>    #hl.background-gradient(colorFrom, colorTo, fallbackColor, fallbackImageUrl)
*    - .scale                   =>    #hl.scale(amount)
*    - .scaleX                  =>    #hl.scaleX(amount)
*    - .scaleY                  =>    #hl.scaleY(amount)
*    - .rotate                  =>    #hl.rotate(degrees)
*    - .rotateX                 =>    #hl.rotateX(degrees)
*    - .rotateY                 =>    #hl.rotateY(degrees)
*    - .skew                    =>    #hl.skew(angleX, angleY)
*    - .skewX                   =>    #hl.skewX(angleX)
*    - .skewY                   =>    #hl.skewY(angleY)
*    - .translate               =>    #hl.translate(x, y)
*    - .translateX              =>    #hl.translateX(x)
*    - .translateY              =>    #hl.translateY(y)
*    - .matrix                  =>    #hl.matrix(n, n, n, n, n, n)
*
*  ------------------------------------------------------------------------------
*    GRID                       =>    syntax
*  ------------------------------------------------------------------------------
*    - .grid                    =>    namespace, do not call directly, use .make or one of the predefined grid makers
*     - .make                   =>    #hl.grid.make(width, colNumber, gutterWidth)
*     - .1200                   =>    #hl.grid.1200();
*     - .1120                   =>    #hl.grid.1120();
*     - .1040                   =>    #hl.grid.1040();
*     - .960                    =>    #hl.grid.960();
*     - .880                    =>    #hl.grid.880();
*     - .800                    =>    #hl.grid.800();
*     - .720                    =>    #hl.grid.720();
*     - .640                    =>    #hl.grid.640();
*     - .560                    =>    #hl.grid.560();
*     - .480                    =>    #hl.grid.480();
*     - .400                    =>    #hl.grid.400();
*     - .320                    =>    #hl.grid.320();
*     - .240                    =>    #hl.grid.240();
*     - .row                    =>    #hl.grid.row();
*     - .col                    =>    #hl.grid.col(colSpan);
*
*  ---------------------------------------
*    TYPOGRAPHY
*  ---------------------------------------
*    - .typo                    =>    namespace, do not call directly
*     - .serif                  =>    #hl.typo.serif(webfont-name-optional);
*     - .sans                   =>    #hl.typo.sans(webfont-name-optional);
*     - .columns                =>    #hl.typo.columns(count, gap)
* 
*  ---------------------------------------
*    IMAGES
*  ---------------------------------------
*    - .img                     =>    namespace, do not call directly
*     - .responsive             =>    #hl.img.responsive();
*     - .framed                 =>    #hl.img.framed();

*  ---------------------------------------
*    USER INTERFACE
*  ---------------------------------------
*    - .ui                      =>    namespace, do not call directly
*     - .themes                 =>    namespace, do not call directly
*      - .light                 =>    #hl.ui.themes.light(); - call within <body> element
*      - .dark                  =>    #hl.ui.themes.dark(); - call within <body> element
*     - .list                   =>    namespace, do not call directly
*      - .subtle                =>    #hl.ui.list.subtle(); - call within <ul> element
*      - .horizontal            =>    #hl.ui.list.horizontal(); - call within <ul> element
*
*/

/*
 * HTML5 ✰ Boilerplate - LESS
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * Converted to LESS by @m6tt: m6tt.com/less-boilerplate
 */

/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.cms-ui-label {
  padding: 1px 4px 2px;
  font-size: 10.4px;
  font-weight: bold;
  line-height: 13px;
  color: white;
  vertical-align: middle;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #999999;
}
.cms-ui-label:hover {
  color: white;
  text-decoration: none;
}
.label-important {
  background-color: #b94a48;
}
.label-important:hover {
  background-color: #953b39;
}
.label-warning {
  background-color: #f89406;
}
.label-warning:hover {
  background-color: #c67605;
}
.label-success {
  background-color: #468847;
}
.label-success:hover {
  background-color: #356635;
}
.label-info {
  background-color: #00709a;
}
.label-info:hover {
  background-color: #005d80;
}
.label-inverse {
  background-color: #333333;
}
.label-inverse:hover {
  background-color: #1a1a1a;
}
.label-full {
  width: 90%;
  display: inline-block;
  text-align: center;
}
.sprite-image {
  background: transparent url(http://asset.novena.hr/images/cms-sprite.png) no-repeat 0 0;
}
.sprite-image-gray {
  background: transparent url(http://asset.novena.hr/images/cms-sprite-gray.png) no-repeat 0 0;
}
.margin-top {
  margin: 7px 0 0 0;
}
.border-standard {
  border: 1px solid #cccccc;
}
.border-standard-light {
  border: 1px solid #cccccc;
}
.radius-small {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.radius-smaller {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.cms-ui-align-left {
  text-align: left !important;
}
TD.cms-ui-cell-right {
  text-align: right;
}
.cms-ui-fieldset,
.cms-ui-fieldset-small {
  border: 1px solid #cccccc;
  border-left: 0;
  border-right: 0;
  padding: 10px 0;
}
.cms-ui-fieldset LEGEND,
.cms-ui-fieldset-small LEGEND {
  padding: 0px;
  color: #35323c;
}
.cms-ui-fieldset HR,
.cms-ui-fieldset-small HR {
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  margin: 7px 0;
  /*box-shadow: 0 0 2px #999;*/

}
.cms-ui-fieldset H2,
.cms-ui-fieldset-small H2 {
  border-bottom: 1px solid #e6e6e6;
  color: black;
  font-size: 16px;
  font-weight: normal;
  margin: 10px 0 5px;
  padding-left: 75px;
}
.cms-ui-fieldset-small {
  margin-bottom: 10px;
}
.cms-ui-fieldset-small LEGEND {
  color: #555555;
  font-weight: normal;
  text-shadow: 1px 1px 0 white;
}
.cms-ui-panel {
  float: left;
}
.cms-ui-panel + .cms-ui-panel {
  margin-left: 10px;
}
.cms-ui-pane {
  margin: 0;
  background-color: white;
  /* MODIFIERS */

}
.cms-ui-pane.cms-ui-pane-bg {
  padding: 2px 5px;
  background-color: #f9f9f9;
}
.cms-ui-pane TH {
  text-align: left;
}
.cms-ui-pane .cms-ui-pane-title {
  color: #333333;
  line-height: 100%;
  line-height: 30px;
  display: block;
  margin: 0;
}
.cms-ui-pane .cms-ui-pane-topbar SPAN.cms-ui-pane-title {
  color: #333333;
  line-height: 100%;
  line-height: 30px;
  display: block;
  margin: 0;
}
.cms-ui-pane .cms-ui-pane-main {
  border-top: 2px solid #e3e3e3;
}
.cms-ui-pane TABLE {
  width: 100%;
}
.cms-ui-pane TABLE TR TD {
  padding: 2px;
}
.cms-ui-toolbar {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.cms-ui-toolbar.cms-ui-toolbar-no-margin {
  margin-bottom: 0;
}
.cms-ui-toolbar.cms-ui-toolbar-primary {
  /*background-color: lighten(#E8F1FA, 3%); */
  background-color: #f9f9f9;
  border-bottom: 0;
}
.cms-ui-toolbar.cms-ui-toolbar-white {
  background-color: white;
  padding: 2px;
  border-bottom: 1px solid #dddddd;
}
.cms-ui-table-no-padding TD {
  padding: 0 !important;
}
.cms-ui-table-filter {
  width: 100%;
}
.cms-ui-no-wrap {
  white-space: nowrap;
}
.cms-ui-table-zebra {
  width: 100%;
  /*TR:last-child TD {
		border-bottom: 0;
	}*/

  /*TR:hover TD {
		background-color: #eaf6fd;
	}*/

}
.cms-ui-table-zebra THEAD TH {
  border-bottom: 1px solid #e6e6e6;
  background-color: #eeeeee;
  text-align: left;
}
.cms-ui-table-zebra TFOOT TR TD {
  border-bottom: none;
  background-color: #eeeeee;
}
.cms-ui-table-zebra TR TD {
  border-bottom: 1px solid #e6e6e6;
  padding: 2px;
}
.cms-ui-table-zebra TR TD TABLE TD {
  border-bottom: none;
  padding: 0;
}
.cms-ui-table-zebra .cms-ui-selected-row TD {
  background-color: lightyellow !important;
}
.cms-ui-table-zebra .cms-ui-selected-row:hover:not(.cms-ui-no-highlight) TD {
  background-color: #ffffea !important;
}
.cms-ui-table-zebra .cms-ui-disabled-row TD {
  color: #666666;
}
.cms-ui-table-zebra TABLE TR:nth-child(2n+1) TD,
.cms-ui-table-zebra TABLE TR:nth-child(2n+1):hover TD {
  background-color: inherit !important;
}
.cms-ui-table-zebra TBODY TR:nth-child(2n) TD {
  background-color: #f3f3f3;
}
.cms-ui-table-zebra TBODY TR:nth-child(2n):hover:not(.cms-ui-no-highlight) TD {
  background-color: #f8f8f8;
}
.cms-ui-table-zebra TBODY TR:nth-child(2n+1) TD {
  background-color: #fafafa;
}
.cms-ui-table-zebra TBODY TR:nth-child(2n+1):hover:not(.cms-ui-no-highlight) TD {
  background-color: white;
}
/* CMS UI TABS*/

.cms-ui-tabs-container {
  margin: 10px 0;
}
UL.cms-ui-tabs {
  padding: 0;
  margin: 0;
  list-style-type: none;
  height: 38px;
}
UL.cms-ui-tabs LI {
  float: left;
}
UL.cms-ui-tabs LI A {
  display: block;
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  padding: 3px 7px;
  height: 30px;
  text-shadow: white 1px 1px 0;
  border-top: 2px solid white;
}
UL.cms-ui-tabs LI A:hover {
  color: black;
  text-shadow: none;
}
UL.cms-ui-tabs LI A.selected {
  background-color: #f9f9f9;
  border-top: 2px solid #da314b;
  color: black;
}
.cms-ui-tabs-content {
  background-color: white;
  display: none;
}
.cms-ui-tabs-content DIV.bg {
  background-color: #f9f9f9;
}
.cms-ui-tabs-content TABLE {
  width: 100%;
}
.cms-ui-tabs-content TABLE.cms-ui-table-zebra TD {
  border-bottom: 0;
}
.cms-ui-tabs-content TABLE.cms-ui-table-zebra TR:nth-child(2n+1) TD {
  background-color: #f6f6f6;
  /*background-color: lighten(#d8e8f7,2.5%);*/

}
.cms-ui-tabs-content HR.table-sep {
  border-color: #dddddd;
  margin: 7px 0 3px 0;
  border-bottom: 1px solid white;
}
.cms-ui-tabs-content FIELDSET {
  border-color: #a1c5ea;
}
.cms-ui-tabs-content FIELDSET LEGEND {
  border-color: #a1c5ea;
  background-color: #f4f8fd;
  color: #222222;
}
/* PAGER*/

.cms-ui-pager {
  width: auto !important;
  border: 0 !important;
  background-image: none;
  opacity: 0.4;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari and Chrome */

}
.cms-ui-pager:hover {
  opacity: 1;
}
.cms-ui-pager TD {
  padding: 0 2px 0 0 !important;
  vertical-align: middle;
}
.cms-ui-pager TD A,
.cms-ui-pager TD SPAN {
  display: inline-block;
  padding: 0 1px;
  text-decoration: none;
}
.cms-ui-pager TD A {
  font-size: 16px;
}
.cms-ui-pager TD A:hover {
  color: black;
}
.cms-ui-pager TD TD {
  padding: 0 2px 0 0 !important;
}
.cms-ui-pager TD INPUT[type=text],
.cms-ui-pager TD SELECT {
  font-size: 12px;
  text-align: center;
  padding: 1px;
  height: 22px;
  line-height: 22px;
}
.cms-ui-table-details {
  width: 100%;
}
.cms-ui-table-details.cms-ui-table-small {
  font-size: 85%;
}
.cms-ui-table-details[colspan=2] {
  background-color: red;
}
.cms-ui-table-details.cms-ui-table-zebra INPUT[type="checkbox"] {
  margin-top: 3px;
}
.cms-ui-table-details.cms-ui-table-zebra TR:last-child TD {
  border-bottom: 0;
}
.cms-ui-table-details .cms-ui-table-details-button-row TD {
  background-color: transparent !important;
  padding: 10px 0 0 0;
}
.cms-ui-table-details  > TBODY > TR > TD INPUT[type=text],
.cms-ui-table-details  > TBODY > TR > TD INPUT[type=password],
.cms-ui-table-details  > TBODY > TR > TD TEXTAREA {
  width: 100%;
}
.cms-ui-table-details  > TBODY > TR > TD SELECT {
  width: 200px;
}
.cms-ui-table-details  > TBODY > TR > TD:first-child {
  text-align: right;
}
.cms-ui-table-details  > TBODY > TR > TD:first-child[colspan=2] {
  background-color: red;
}
.cms-ui-table-details  > TBODY > TR > TD.cms-ui-no-padding {
  padding: 0 !important;
}
.cms-ui-table-details.cms-ui-table-multi > TBODY > TR > TD:first-child {
  text-align: inherit;
}
.cms-ui-table-details HR {
  border: 0;
  border-top: 1px solid #dddddd;
  margin: 5px 0;
}
.cms-ui-form-title-small {
  text-align: left;
  font-weight: 80%;
  padding: 0 1px;
  color: black;
}
.cms-ui-no-highlight TR:hover TD {
  background-color: inheri !important;
}
/* TR.cms-ui-no-highlight:hover TD {
	background-color: inherit !important;
}*/

/* UL which resembles tree*/

.cms-ui-tree-like {
  font-weight: bold;
  list-style-type: none;
  padding: 0;
}
.cms-ui-tree-like UL {
  padding: 0;
  margin: 2px 0;
  list-style-type: none;
}
.cms-ui-tree-like LI LI {
  margin-left: 10px;
  font-weight: normal;
  border-bottom: 1px solid #cccccc;
}
.cms-ui-tree-like LI LI:last-child,
.cms-ui-tree-like LI LI LI:last-child {
  border-bottom: 0;
}
.cms-ui-tree-like LI LI INPUT {
  margin-right: 5px;
}
TR.cms-ui-table-footer TD {
  background-color: #fcfcfc !important;
}
.cms-ui-clickable-title {
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.cms-ui-clickable-title:hover {
  border-color: #333333;
}
.cms-ui-table-align-top TD {
  vertical-align: top;
}
.cms-ui-table-align-top TD TD {
  vertical-align: inherit;
}
.cms-ui-table-flex {
  width: auto !important;
}
.cms-ui-table-vertical-row {
  background: transparent url(http://asset.novena.hr/images/cms-vertical-separator.png) repeat-y 50% 0;
}
/* HR */

HR.cms-ui-hr-break {
  margin: 7px 0 7px 0;
  border-color: white;
}
.cms-ui-chosen {
  transition-duration: 0s;
}
/* FOR AUTOCOMPLETE */

.cms-ui-shadow {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.cms-ui-ckeckboxes LABEL {
  padding-left: 5px;
  cursor: pointer;
}
.cms-ui-border {
  border: 1px solid #e6e6e6;
}
.cms-ui-show-hide-on-alt {
  display: none;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 2;
  animation-name: blinker;
  animation-duration: 0.8s;
  animation-timing-function: linear;
  animation-iteration-count: 2;
}
@-webkit-keyframes blinker {
  0% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1.0;
  }
}
@keyframes blinker {
  0% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1.0;
  }
}
#cms-main-menu A .uk-icon {
  color: #777777;
  margin-right: 5px;
}
#cms-main-menu A:hover .uk-icon {
  color: #da314b;
}
.cms-sidebar {
  border-right: 1px solid #dddddd;
  margin-right: -1px !important;
}
.cms-main {
  border-left: 1px solid #dddddd;
}
.uk-navbar {
  border-bottom: 2px solid #dddddd;
}
.uk-navbar .uk-navbar-brand {
  color: #da314b;
}
.uk-navbar .uk-navbar-nav UL UL {
  margin: 0;
  padding: 0;
}
.uk-navbar .uk-navbar-nav UL UL LI A {
  color: #444444;
  padding-left: 20px;
  font-size: 80%;
}
.uk-navbar .uk-navbar-nav UL UL LI A:hover {
  color: white;
  background-color: #35b3ee;
}
.uk-tooltip {
  max-width: 350px;
}
.uk-dropdown {
  margin-top: 0;
  padding: 0 15px;
}
.uk-icon-small:before {
  font-size: 133%;
}
.cms-ui-cmdlink-delete I {
  color: #da314b;
}
.uk-nav-side A.active {
  font-weight: bold;
  background-color: #f6f6f6;
  color: #111111;
}
.uk-nav-side UL LI {
  margin-left: 10px;
  font-size: 80%;
}
.uk-nav-side UL LI A {
  color: #444444;
}
.uk-nav-side UL LI A:hover {
  color: #444444;
  background-color: rgba(0, 0, 0, 0.05);
}
.radSelectTree {
  display: none;
  border: 1px solid #cccccc;
  background-color: white;
  width: 350px;
  position: absolute;
  height: 200px;
  z-index: 300;
  padding: 0px;
  left: 1px;
}
.accept_button:hover {
  background-color: #8cc14c;
  color: white;
}
.uk-form .cke_inner textarea {
  height: 100% !important;
  box-sizing: border-box;
}
.uk-container {
  padding-left: 0;
}
.uk-text-medium {
  font-size: 12px;
}
[class*=uk-icon-] {
  margin-right: 5px;
}
.uk-button-small [class*=uk-icon-] {
  margin-right: 5px;
}
#structure-uppercase-htmlname .uk-icon,
#structure-lowercase-htmlname .uk-icon,
#structure-smallcaps-htmlname .uk-icon,
#structure-copy-htmlname .uk-icon,
#structure-uppercase-name .uk-icon,
#structure-lowercase-name .uk-icon,
#structure-smallcaps-name .uk-icon,
#structure-copy-name .uk-icon {
  background: transparent url(http://asset.novena.hr/images/cms-sprite-gray.png) no-repeat 0 0;
  display: block;
  width: 16px;
  height: 16px;
  background-position: 0 -32px;
}
#structure-uppercase-name .uk-icon {
  background-position: -16px -32px;
}
#structure-smallcaps-name .uk-icon {
  background-position: -32px -32px;
}
#structure-lowercase-name .uk-icon {
  background-position: -48px -32px;
}
#structure-uppercase-htmlname .uk-icon {
  background-position: -16px -32px;
}
#structure-smallcaps-htmlname .uk-icon {
  background-position: -32px -32px;
}
#structure-lowercase-htmlname .uk-icon {
  background-position: -48px -32px;
}
.cms-region-choose .active {
  color: #da314b !important;
}
.cms-ui-table-scroll {
  margin-bottom: 0 !important;
}
.accept_button I {
  margin-right: 0;
}
UL#lista-strukture {
  padding: 0;
  list-style-type: none;
}
UL#lista-strukture LI:nth-child(2n+1) {
  background-color: #eeeeee;
}
UL#lista-strukture TD {
  padding: 2px 5px 2px 0;
  background-color: transparent;
}
.cms-ui-table-zebra td {
  text-align: left !important;
}
.cms-ui-table-zebra tr {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.cms-ui-table-zebra .main-selector {
  cursor: pointer;
}
.cms-ui-table-zebra .main-selector :hover td {
  background-color: aqua !important;
}
.button {
  background-color: #4caf50;
  /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}
.uk-form textarea {
  min-height: 120px;
}
.comment {
  font-weight: normal;
  font-style: italic;
}
.nice-form {
  margin-bottom: 30px !important;
}
.nice-form h3 {
  font-weight: bold;
}
.nice-form label {
  font-weight: bold;
  display: block;
}
.nice-form input {
  margin-bottom: 15px;
}
.lefter td {
  text-align: left !important;
}
.lefter label {
  font-weight: bold;
  margin-top: 12px;
  display: inline-block;
}
.lefter h3 {
  margin-top: 38px;
}
.lefter .delimiter span {
  display: block;
  border-bottom: 1px solid #e2dada;
  width: 100%;
  padding: 7px 10px;
  margin-bottom: 20px;
}
#history-hover {
  z-index: 10000;
  display: none;
  background-color: white;
  max-width: 400px;
  width: 300px;
  position: absolute;
  padding: 10px;
  border-radius: 2px;
  box-shadow: 1px 1px 7px 0px #bfb7b7;
}
#history-hover.visible {
  display: block;
}
#history-hover .uk-clearfix {
  margin-top: 30px;
}
#history-hover .close-history {
  position: absolute;
  right: 10px;
}
#history-hover .history-text {
  display: block;
  width: 100%;
  min-height: 100px;
}
#history-hover .history-text .old {
  display: block;
  background: #f2f2f2;
  padding: 5px;
}
#history-hover .history-text .new {
  margin-top: 20px;
  display: block;
  padding: 5px;
  background-color: #c2ffc1;
}
.cms-ui-buttons button {
  margin-right: 12px;
}
.history-table-holder {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  max-height: 500px;
  overflow-y: scroll;
}
.history-table-holder th {
  color: white;
}
.full-width-search table {
  margin-top: 0px;
}
.full-width-search .form-title {
  font-weight: bold;
}
.full-width-search .extra-search li {
  font-size: 10px;
  padding: 0px 0px;
}
.full-width-search .uk-form {
  font-size: 12px !important;
}
.full-width-search .uk-form input,
.full-width-search .uk-form select {
  margin: 0px;
  padding: 0px;
  padding-left: 12px;
  font-size: 12px;
}
.full-width-search .uk-form .form-cb {
  width: 10px;
}
.full-width-search .uk-form .form-cb input {
  position: relative;
  top: 2px;
}
.full-width-search .uk-form .form-lbl {
  font-weight: bold;
  width: 200px;
}
.full-width-search .uk-form .form-compare-type {
  width: 200px;
}
.full-width-search .uk-form .form-compare-type select {
  width: 150px;
}
.full-width-search #searchResults {
  font-size: 12px;
}
.full-width-search .texter {
  position: relative;
}
.full-width-search .texter .big-text {
  display: none;
}
.full-width-search .texter:hover .big-text {
  display: block;
  position: absolute;
  z-index: 10000;
  background-color: white;
  width: 750px;
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  border: 1px solid #dddddd;
  padding: 10px;
  line-height: 1.5em;
}
.full-width-search .db-pick-all {
  margin-left: 22px;
}
.full-width-search .db-pick-all input {
  position: relative;
  top: 2px;
}
