/**
   * @file
   * Generic theme-independent base styles.
   */
  
  /**
   * Autocomplete.
   *
   * @see autocomplete.js
   */
  /* Suggestion list */
  #autocomplete {
    border: 1px solid;
    overflow: hidden;
    position: absolute;
    z-index: 100;
  }
  #autocomplete ul {
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
  }
  #autocomplete li {
    background: #fff;
    color: #000;
    cursor: default;
    white-space: pre;
    zoom: 1; /* IE7 */
  }
  /* Animated throbber */
  html.js input.form-autocomplete {
    background-image: url(/misc/throbber-inactive.png);
    background-position: 100% center; /* LTR */
    background-repeat: no-repeat;
  }
  html.js input.throbbing {
    background-image: url(/misc/throbber-active.gif);
    background-position: 100% center; /* LTR */
  }
  
  /**
   * Collapsible fieldsets.
   *
   * @see collapse.js
   */
  html.js fieldset.collapsed {
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    height: 1em;
  }
  html.js fieldset.collapsed .fieldset-wrapper {
    display: none;
  }
  fieldset.collapsible {
    position: relative;
  }
  fieldset.collapsible .fieldset-legend {
    display: block;
  }
  
  /**
   * Resizable textareas.
   *
   * @see textarea.js
   */
  .form-textarea-wrapper textarea {
    display: block;
    margin: 0;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .resizable-textarea .grippie {
    background: #eee url(/misc/grippie.png) no-repeat center 2px;
    border: 1px solid #ddd;
    border-top-width: 0;
    cursor: s-resize;
    height: 9px;
    overflow: hidden;
  }
  
  /**
   * TableDrag behavior.
   *
   * @see tabledrag.js
   */
  body.drag {
    cursor: move;
  }
  .draggable a.tabledrag-handle {
    cursor: move;
    float: left; /* LTR */
    height: 1.7em;
    margin-left: -1em; /* LTR */
    overflow: hidden;
    text-decoration: none;
  }
  a.tabledrag-handle:hover {
    text-decoration: none;
  }
  a.tabledrag-handle .handle {
    background: url(/misc/draggable.png) no-repeat 6px 9px;
    height: 13px;
    margin: -0.4em 0.5em; /* LTR */
    padding: 0.42em 0.5em; /* LTR */
    width: 13px;
  }
  a.tabledrag-handle-hover .handle {
    background-position: 6px -11px;
  }
  div.indentation {
    float: left; /* LTR */
    height: 1.7em;
    margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
    padding: 0.42em 0 0.42em 0.6em; /* LTR */
    width: 20px;
  }
  div.tree-child {
    background: url(/misc/tree.png) no-repeat 11px center; /* LTR */
  }
  div.tree-child-last {
    background: url(/misc/tree-bottom.png) no-repeat 11px center; /* LTR */
  }
  div.tree-child-horizontal {
    background: url(/misc/tree.png) no-repeat -11px center;
  }
  .tabledrag-toggle-weight-wrapper {
    text-align: right; /* LTR */
  }
  
  /**
   * TableHeader behavior.
   *
   * @see tableheader.js
   */
  table.sticky-header {
    background-color: #fff;
    margin-top: 0;
  }
  
  /**
   * Progress behavior.
   *
   * @see progress.js
   */
  /* Bar */
  .progress .bar {
    background-color: #fff;
    border: 1px solid;
  }
  .progress .filled {
    background-color: #000;
    height: 1.5em;
    width: 5px;
  }
  .progress .percentage {
    float: right; /* LTR */
  }
  /* Throbber */
  .ajax-progress {
    display: inline-block;
  }
  .ajax-progress .throbber {
    background: transparent url(/misc/throbber-active.gif) no-repeat 0px center;
    float: left; /* LTR */
    height: 15px;
    margin: 2px;
    width: 15px;
  }
  .ajax-progress .message {
    padding-left: 20px;
  }
  tr .ajax-progress .throbber {
    margin: 0 2px;
  }
  .ajax-progress-bar {
    width: 16em;
  }
  
  /**
   * Inline items.
   */
  .container-inline div,
  .container-inline label {
    display: inline;
  }
  /* Fieldset contents always need to be rendered as block. */
  .container-inline .fieldset-wrapper {
    display: block;
  }
  
  /**
   * Prevent text wrapping.
   */
  .nowrap {
    white-space: nowrap;
  }
  
  /**
   * For anything you want to hide on page load when JS is enabled, so
   * that you can use the JS to control visibility and avoid flicker.
   */
  html.js .js-hide {
    display: none;
  }
  
  /**
   * Hide elements from all users.
   *
   * Used for elements which should not be immediately displayed to any user. An
   * example would be a collapsible fieldset that will be expanded with a click
   * from a user. The effect of this class can be toggled with the jQuery show()
   * and hide() functions.
   */
  .element-hidden {
    display: none;
  }
  
  /**
   * Hide elements visually, but keep them available for screen-readers.
   *
   * Used for information required for screen-reader users to understand and use
   * the site where visual display is undesirable. Information provided in this
   * manner should be kept concise, to avoid unnecessary burden on the user.
   * "!important" is used to prevent unintentional overrides.
   */
  .element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
  }
  
  /**
   * The .element-focusable class extends the .element-invisible class to allow
   * the element to be focusable when navigated to via the keyboard.
   */
  .element-invisible.element-focusable:active,
  .element-invisible.element-focusable:focus {
    position: static !important;
    clip: auto;
    overflow: visible;
    height: auto;
  }
  
  /**
   * Markup free clearing.
   *
   * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
   */
  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  /* IE6 */
  * html .clearfix {
    height: 1%;
  }
  /* IE7 */
  *:first-child + html .clearfix {
    min-height: 1%;
  }
/*})'"*/
/* Field display */
  .field .field-label {
    font-weight: bold;
  }
  .field-label-inline .field-label,
  .field-label-inline .field-items {
    float:left; /*LTR*/
  }
  
  /* Form display */
  form .field-multiple-table {
    margin: 0;
  }
  form .field-multiple-table th.field-label {
    padding-left: 0; /*LTR*/
  }
  form .field-multiple-table td.field-multiple-drag {
    width: 30px;
    padding-right: 0; /*LTR*/
  }
  form .field-multiple-table td.field-multiple-drag a.tabledrag-handle {
    padding-right: .5em; /*LTR*/
  }
  
  form .field-add-more-submit {
    margin: .5em 0 0;
  }
/*})'"*/
.node-unpublished {
    background-color: #fff4f4;
  }
  .preview .node {
    background-color: #ffffea;
  }
  td.revision-current {
    background: #ffc;
  }
/*})'"*/
.views-exposed-form .views-exposed-widget {
    float: left; /* LTR */
    padding: .5em 1em 0 0; /* LTR */
  }
  
  .views-exposed-form .views-exposed-widget .form-submit {
    margin-top: 1.6em;
  }
  
  .views-exposed-form .form-item,
  .views-exposed-form .form-submit {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .views-exposed-form label {
    font-weight: bold;
  }
  
  .views-exposed-widgets {
    margin-bottom: .5em;
  }
  
  /* table style column align */
  .views-align-left {
    text-align: left;
  }
  .views-align-right {
    text-align: right;
  }
  .views-align-center {
    text-align: center;
  }
  
  /* Remove the border on tbody that system puts in */
  .views-view-grid tbody {
    border-top: none;
  }
  
  .view .progress-disabled {
    float: none;
  }
/*})'"*/
/* General indentation & positioning classes */
  
  .rteindent1 {
      margin-left: 40px;
  }
  .rteindent2 {
      margin-left: 80px;
  }
  .rteindent3 {
      margin-left: 120px;
  }
  .rteindent4 {
      margin-left: 160px;
  }
  .rteleft {
      text-align: left;
  }
  .rteright {
      text-align: right;
  }
  .rtecenter {
      text-align: center;
  }
  .rtejustify {
      text-align: justify;
  }
  .ibimage_left {
      float: left;
  }
  .ibimage_right {
      float: right;
  }
/*})'"*/
.ctools-locked {
    color: red;
    border: 1px solid red;
    padding: 1em;
  }
  
  .ctools-owns-lock {
    background: #ffffdd none repeat scroll 0 0;
    border: 1px solid #f0c020;
    padding: 1em;
  }
  
  a.ctools-ajaxing,
  input.ctools-ajaxing,
  button.ctools-ajaxing,
  select.ctools-ajaxing {
    padding-right: 18px !important;
    background: url(/sites/all/modules/ctools/images/status-active.gif) right center no-repeat;
  }
  
  div.ctools-ajaxing {
    float: left;
    width: 18px;
    background: url(/sites/all/modules/ctools/images/status-active.gif) center center no-repeat;
  }
/*})'"*/
.video_thumbnail {
    min-width: 100px;
    min-height: 100px;
  }
  
  .video-width-text {
    width:10px;
  }
  
  .video-thumb-selection{
  
  }
  
  .video-thumb-selection .form-item {
  
  }
  
  .video-thumbnails{
    /*  display : block;*/
  }
  .video-thumbnails .form-item{
    float:left;
    margin-right:10px;
    max-width:30%;
    padding-right:10px;
  }
  
  .video-bypass-auto-conversion{
  
  }
  .video-default-thumbnail{
  
  }
  
  .video-data{
  
  }
  
  .video_image_teaser {
    float: left;
    padding: 0.5em;
  }
  
  br.video_image_clear {
    clear: both;
  }
  
  .video_image_view {
    /* inser here rules for node page image */
  }
  
  .video-inprogress {
    border: 1px solid red;
    padding: .5em;
  }
  .video-conversion-failed{
    border: 1px solid red;
    padding: .5em;
  }
  
  /* override filefield entry */
  .widget-edit{
    max-width:70%;
  }
  
  .widget-edit .form-item { white-space: normal !important; }
  
  .admin_flv_player_wrapper { display: none; }
  
  /*
  * VIDEO OJBECT FIXES CROSS BROWSER
  */
  * html object.video-object {
    display: none;
  }
  
  * html object.video-object/**/ {
    display: inline;
  }
  
  * html object.video-object {
    display/**/: none;
  }
  
  div.video-preview {
    float: left; /* LTR */
    padding: 0 10px 10px 0; /* LTR */
  }
  div.video-widget-data {
    float: left; /* LTR */
    width: 85%;
  }
  div.video-widget-data input.text-field {
    width: auto;
  }
  /**
  * Wysiwyg video browser
  */
  div#video-browser-page-wrapper div#video-browser-page div.video-item{
    float: left;
    height:128px;
    padding: 5px;
    text-align: center;
    border: 1px #ccc dotted;
  }
  div#video-browser-page-wrapper div#video-browser-page div.video-item:hover{
    background-color: antiquewhite;
  }
/*})'"*/
/* This is a fix for ensuring Fontello icons display properly. */
  .icon.fontello {
    background: none;
    display: inline-block;
    height: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    vertical-align: inherit;
    width: auto;
    /* IE 7 Hack for inline-block */
    *display: inline; 
    *zoom: 1;
  }
/*})'"*/
@font-face {
    font-family: 'lekker-online';
    src: url(/sites/default/files/icon/fontello/lekker_online/font/lekker-online.eot?24502494);
    src: url(/sites/default/files/icon/fontello/lekker_online/font/lekker-online.eot?24502494#iefix) format('embedded-opentype'),
         url(/sites/default/files/icon/fontello/lekker_online/font/lekker-online.woff?24502494) format('woff'),
         url(/sites/default/files/icon/fontello/lekker_online/font/lekker-online.ttf?24502494) format('truetype'),
         url(/sites/default/files/icon/fontello/lekker_online/font/lekker-online.svg?24502494#lekker-online) format('svg');
    font-weight: normal;
    font-style: normal;
  } 
 /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
  /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
  /*@font-face {
      font-family: 'lekker-online';
      src: url(/sites/default/files/icon/fontello/lekker_online/font/lekker-online.svg?24502494#lekker-online) format('svg');
    } 
@media screen and (-webkit-min-device-pixel-ratio:0) {
  
}*/
   
   [class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "lekker-online";
    font-style: normal;
    font-weight: normal;
    speak: none;
   
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
   
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
       
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
   
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
   
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
   
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  }
   
  .icon-chevron-down:before { content: '\e800'; } /* '' */
  .icon-map:before { content: '\e801'; } /* '' */
  .icon-facebook:before { content: '\e802'; } /* '' */
  .icon-instagram:before { content: '\e803'; } /* '' */
  .icon-dycon-logo:before { content: '\e804'; } /* '' */
  .icon-location:before { content: '\e805'; } /* '' */
  .icon-skype:before { content: '\e806'; } /* '' */
  .icon-chevron-left:before { content: '\e807'; } /* '' */
  .icon-chevron-right:before { content: '\e808'; } /* '' */
  .icon-thumbs-up:before { content: '\e809'; } /* '' */
  .icon-linkedin-alt:before { content: '\e80a'; } /* '' */
  .icon-whatsapp:before { content: '\e80b'; } /* '' */
  .icon-thumbs-up-1:before { content: '\e80c'; } /* '' */
  .icon-chevron-up:before { content: '\e80d'; } /* '' */
  .icon-clock:before { content: '\e80e'; } /* '' */
  .icon-twitter:before { content: '\e80f'; } /* '' */
  .icon-youtube:before { content: '\e810'; } /* '' */
  .icon-twitter-alt:before { content: '\e811'; } /* '' */
  .icon-video:before { content: '\e812'; } /* '' */
  .icon-cloud-download:before { content: '\e813'; } /* '' */
  .icon-cloud-upload:before { content: '\e814'; } /* '' */
  .icon-lekker-online-logo:before { content: '\e815'; } /* '' */
  .icon-yahoo:before { content: '\e816'; } /* '' */
  .icon-vimeo:before { content: '\e817'; } /* '' */
  .icon-trashcan:before { content: '\e818'; } /* '' */
  .icon-comment:before { content: '\e819'; } /* '' */
  .icon-comment-discuss:before { content: '\e81a'; } /* '' */
  .icon-html5:before { content: '\e81b'; } /* '' */
  .icon-lock:before { content: '\e81c'; } /* '' */
  .icon-print:before { content: '\e81d'; } /* '' */
  .icon-heart:before { content: '\e81e'; } /* '' */
  .icon-locked:before { content: '\e81f'; } /* '' */
  .icon-map-1:before { content: '\e820'; } /* '' */
  .icon-photo:before { content: '\e821'; } /* '' */
  .icon-light-bulb:before { content: '\e822'; } /* '' */
  .icon-facebook-places:before { content: '\e823'; } /* '' */
  .icon-telephone:before { content: '\e824'; } /* '' */
  .icon-user:before { content: '\e825'; } /* '' */
  .icon-user-outline:before { content: '\e826'; } /* '' */
  .icon-location-arrow:before { content: '\e827'; } /* '' */
  .icon-mirror:before { content: '\e828'; } /* '' */
  .icon-quote:before { content: '\e829'; } /* '' */
  .icon-link-external:before { content: '\e82a'; } /* '' */
  .icon-users:before { content: '\e82b'; } /* '' */
  .icon-users-outline:before { content: '\e82c'; } /* '' */
  .icon-mail:before { content: '\e82d'; } /* '' */
  .icon-search:before { content: '\e82e'; } /* '' */
  .icon-social-apple:before { content: '\e82f'; } /* '' */
  .icon-check:before { content: '\e830'; } /* '' */
  .icon-zoom:before { content: '\e831'; } /* '' */
  .icon-zoom-in-1:before { content: '\e832'; } /* '' */
  .icon-eye:before { content: '\e833'; } /* '' */
  .icon-social-android:before { content: '\e834'; } /* '' */
  .icon-call-phone:before { content: '\e835'; } /* '' */
  .icon-dashboard:before { content: '\e836'; } /* '' */
  .icon-zoom-out-1:before { content: '\e837'; } /* '' */
  .icon-flag:before { content: '\e838'; } /* '' */
  .icon-results-demograp:before { content: '\e839'; } /* '' */
  .icon-address:before { content: '\e83a'; } /* '' */
  .icon-gplus:before { content: '\e83b'; } /* '' */
  .icon-pinterest:before { content: '\e83c'; } /* '' */
  .icon-zoom-1:before { content: '\e83d'; } /* '' */
/*})'"*/
/*
     Animation example, for spinners
  */
  .animate-spin {
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
    display: inline-block;
  }
  @-moz-keyframes spin {
    0% {
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -moz-transform: rotate(359deg);
      -o-transform: rotate(359deg);
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg);
    }
  }
  @-webkit-keyframes spin {
    0% {
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -moz-transform: rotate(359deg);
      -o-transform: rotate(359deg);
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg);
    }
  }
  @-o-keyframes spin {
    0% {
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -moz-transform: rotate(359deg);
      -o-transform: rotate(359deg);
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg);
    }
  }
  @-ms-keyframes spin {
    0% {
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -moz-transform: rotate(359deg);
      -o-transform: rotate(359deg);
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg);
    }
  }
  @keyframes spin {
    0% {
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -moz-transform: rotate(359deg);
      -o-transform: rotate(359deg);
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg);
    }
  }
/*})'"*/
