/*! UIkit 2.18.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* 
 * @package    Norr_Competition
 * @theme      Default
 * @author     Shtier <support@norrnext.com>
 * @copyright  Copyright (C) 2015 - 2016 NorrNext. All rights reserved.
 * @license    GNU General Public License version 3 or later; see license.txt
 */
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Normalizes default `font-family` and sets `font-size` here to support `rem` units
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 * 3. Style
 */
#norrc {
  /* 1 */
  font: normal 14px / 20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
}
/* Images
 ========================================================================== */
/*
 * 1. Responsiveness: Sets a maximum width relative to the parent and auto scales the height
 * 2. Corrects `max-width` behavior if padding and border are used
 * 3. Remove border when inside `a` element in IE 8/9/10.
 * 4. Remove the gap between images and the bottom of their containers
 */
#norrc img {
  /* 1 */
  max-width: 100%;
  height: auto;
  /* 2 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 3 */
  border: 0;
  /* 4 */
  vertical-align: middle;
}
/*
 * Preserve original image dimensions
 */
#norrc .nc-img-preserve,
#norrc .nc-img-preserve img {
  max-width: none;
}
/* Headings
 ========================================================================== */
#norrc h1,
#norrc h2,
#norrc h3,
#norrc h4,
#norrc h5,
#norrc h6 {
  margin: 0 0 15px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-transform: none;
}
/*
 * Margins
 */
* + #norrc h1,
* + #norrc h2,
* + #norrc h3,
* + #norrc h4,
* + #norrc h5,
* + #norrc h6 {
  margin-top: 25px;
}
/*
 * Sizes
 */
#norrc h1,
.nc-h1 {
  font-size: 36px;
  line-height: 42px;
}
#norrc h2,
.nc-h2 {
  font-size: 24px;
  line-height: 30px;
}
#norrc h3,
.nc-h3 {
  font-size: 18px;
  line-height: 24px;
}
#norrc h4,
.nc-h4 {
  font-size: 16px;
  line-height: 22px;
}
#norrc h5,
.nc-h5 {
  font-size: 14px;
  line-height: 20px;
}
#norrc h6,
.nc-h6 {
  font-size: 12px;
  line-height: 18px;
}
/*
 * Reset margin for nested lists
 */
#norrc ul > li > ul,
#norrc ul > li > ol,
#norrc ol > li > ol,
#norrc ol > li > ul {
  margin: 0;
}
/* Horizontal rules
 ========================================================================== */
/*
 * 1. Address differences between Firefox and other browsers.
 * 2. Style
 */
#norrc hr {
  /* 1 */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  /* 2 */
  margin: 15px 0;
  border: 0;
  border-top: 1px solid #dddddd;
}
/* Fix viewport for IE10 snap mode
 ========================================================================== */
@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: device-width;
  }
}
/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Makes grid more robust so that it can be used with other block elements like lists
 */
.nc-grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * DEPRECATED
 * Micro clearfix
 * Can't use `table` because it creates a 1px gap when it becomes a flex item, only in Webkit
 */
.nc-grid:before,
.nc-grid:after {
  content: "";
  display: block;
  overflow: hidden;
}
.nc-grid:after {
  clear: both;
}
/*
 * Grid cell
 * 1. Space is allocated solely based on content dimensions
 * 2. Makes grid more robust so that it can be used with other block elements
 * 3. DEPRECATED Using `float` to support IE9
 */
.nc-grid > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  margin: 0;
  /* 3 */
  float: left;
}
/*
 * Remove margin from the last-child
 */
.nc-grid > * > :last-child {
  margin-bottom: 0;
}
/* Grid gutter
 ========================================================================== */
/*
 * Default gutter
 */
/* Horizontal */
.nc-grid {
  margin-left: -25px;
}
.nc-grid > * {
  padding-left: 25px;
}
/* Vertical */
.nc-grid + .nc-grid,
.nc-grid-margin {
  margin-top: 25px;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /* Horizontal */
  .nc-grid {
    margin-left: -25px;
  }
  .nc-grid > * {
    padding-left: 25px;
  }
  /* Vertical */
  .nc-grid + .nc-grid,
  .nc-grid-margin {
    margin-top: 25px;
  }
}
/* Match panels in grids
 ========================================================================== */
.nc-grid-match > * {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/*
 * 1. Behave like a block element
 */
.nc-grid-match > * > * {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 1 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/* Even grid cell widths
 ========================================================================== */
[class*='nc-grid-width'] > * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.nc-grid-width-1-2 > * {
  width: 50%;
}
.nc-grid-width-1-3 > * {
  width: 33.333%;
}
.nc-grid-width-1-4 > * {
  width: 25%;
}
.nc-grid-width-1-5 > * {
  width: 20%;
}
.nc-grid-width-1-6 > * {
  width: 16.666%;
}
.nc-grid-width-1-10 > * {
  width: 10%;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .nc-grid-width-medium-1-2 > * {
    width: 50%;
  }
  .nc-grid-width-medium-1-3 > * {
    width: 33.333%;
  }
  .nc-grid-width-medium-1-4 > * {
    width: 25%;
  }
  .nc-grid-width-medium-1-5 > * {
    width: 20%;
  }
  .nc-grid-width-medium-1-6 > * {
    width: 16.666%;
  }
  .nc-grid-width-medium-1-10 > * {
    width: 10%;
  }
}
/* Sub-objects: `nc-width-*`
 ========================================================================== */
[class*='nc-width'] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/*
 * Widths
 */
/* Whole */
.nc-width-1-1 {
  width: 100%;
}
/* Halves */
.nc-width-1-2,
.nc-width-2-4,
.nc-width-3-6,
.nc-width-5-10 {
  width: 50%;
}
/* Thirds */
.nc-width-1-3,
.nc-width-2-6 {
  width: 33.333%;
}
.nc-width-2-3,
.nc-width-4-6 {
  width: 66.666%;
}
/* Quarters */
.nc-width-1-4 {
  width: 25%;
}
.nc-width-3-4 {
  width: 75%;
}
/* Fifths */
.nc-width-1-5,
.nc-width-2-10 {
  width: 20%;
}
.nc-width-2-5,
.nc-width-4-10 {
  width: 40%;
}
.nc-width-3-5,
.nc-width-6-10 {
  width: 60%;
}
.nc-width-4-5,
.nc-width-8-10 {
  width: 80%;
}
/* Sixths */
.nc-width-1-6 {
  width: 16.666%;
}
.nc-width-5-6 {
  width: 83.333%;
}
/* Tenths */
.nc-width-1-10 {
  width: 10%;
}
.nc-width-3-10 {
  width: 30%;
}
.nc-width-7-10 {
  width: 70%;
}
.nc-width-9-10 {
  width: 90%;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  /* Whole */
  .nc-width-medium-1-1 {
    width: 100%;
  }
  /* Halves */
  .nc-width-medium-1-2,
  .nc-width-medium-2-4,
  .nc-width-medium-3-6,
  .nc-width-medium-5-10 {
    width: 50%;
  }
  /* Thirds */
  .nc-width-medium-1-3,
  .nc-width-medium-2-6 {
    width: 33.333%;
  }
  .nc-width-medium-2-3,
  .nc-width-medium-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .nc-width-medium-1-4 {
    width: 25%;
  }
  .nc-width-medium-3-4 {
    width: 75%;
  }
  /* Fifths */
  .nc-width-medium-1-5,
  .nc-width-medium-2-10 {
    width: 20%;
  }
  .nc-width-medium-2-5,
  .nc-width-medium-4-10 {
    width: 40%;
  }
  .nc-width-medium-3-5,
  .nc-width-medium-6-10 {
    width: 60%;
  }
  .nc-width-medium-4-5,
  .nc-width-medium-8-10 {
    width: 80%;
  }
  /* Sixths */
  .nc-width-medium-1-6 {
    width: 16.666%;
  }
  .nc-width-medium-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .nc-width-medium-1-10 {
    width: 10%;
  }
  .nc-width-medium-3-10 {
    width: 30%;
  }
  .nc-width-medium-7-10 {
    width: 70%;
  }
  .nc-width-medium-9-10 {
    width: 90%;
  }
}
/* ========================================================================
   Component: Nav
 ========================================================================== */
.nc-nav,
.nc-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Items
 */
.nc-nav li > a {
  display: block;
  text-decoration: none;
}
.nc-nav > li > a {
  padding: 5px 15px;
}
/*
 * Nested items
 */
.nc-nav ul {
  padding-left: 15px;
}
.nc-nav ul a {
  padding: 2px 0;
}
/*
 * Item subtitle
 */
.nc-nav li > a > div {
  font-size: 12px;
  line-height: 18px;
}
/* Sub-object: `nc-nav-header`
 ========================================================================== */
.nc-nav-header {
  padding: 5px 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}
.nc-nav-header:not(:first-child) {
  margin-top: 15px;
}
/* Sub-object: `nc-nav-divider`
 ========================================================================== */
.nc-nav-divider {
  margin: 9px 15px;
}
/* Sub-object: `nc-nav-sub`
 ========================================================================== */
/*
 * `ul` needed for higher specificity to override padding
 */
ul.nc-nav-sub {
  padding: 5px 0 5px 15px;
}
/* Modifier: `nc-nav-parent-icon`
 ========================================================================== */
.nc-nav-parent-icon > .nc-parent > a:after {
  content: "\f104";
  width: 20px;
  margin-right: -10px;
  float: right;
  font-family: FontAwesome;
  text-align: center;
}
.nc-nav-parent-icon > .nc-parent.nc-open > a:after {
  content: "\f107";
}
/* Modifier `nc-nav-dropdown`
 ========================================================================== */
/*
 * Items
 */
.nc-nav-dropdown > li > a {
  color: #444444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.nc-nav-dropdown > li > a:hover,
.nc-nav-dropdown > li > a:focus {
  background: #009dd8;
  color: #ffffff;
  /* 2 */
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/*
 * Sub-object: `nc-nav-header`
 */
.nc-nav-dropdown .nc-nav-header {
  color: #999999;
}
/*
 * Sub-object: `nc-nav-divider`
 */
.nc-nav-dropdown .nc-nav-divider {
  border-top: 1px solid #dddddd;
}
/*
 * Nested items
 */
.nc-nav-dropdown ul a {
  color: #0077dd;
}
.nc-nav-dropdown ul a:hover {
  color: #005599;
}
/* Modifier `nc-nav-offcanvas`
 ========================================================================== */
/*
 * Items
 */
/*
 * Hover
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Center pagination by default
 * 3. Remove whitespace between child elements when using `inline-block`
 */
.nc-pagination {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  text-align: center;
  /* 3 */
  font-size: 0.001px;
}
/*
 * Micro clearfix
 * Needed if `nc-pagination-previous` or `nc-pagination-next` sub-objects are used
 */
.nc-pagination:before,
.nc-pagination:after {
  content: "";
  display: table;
}
.nc-pagination:after {
  clear: both;
}
/* Items
 ========================================================================== */
/*
 * 1. Reset whitespace hack
 * 2. Remove the gap at the bottom of it container
 */
.nc-pagination > li {
  display: inline-block;
  /* 1 */
  font-size: 14px;
  /* 2 */
  vertical-align: top;
}
.nc-pagination > li:nth-child(n+2) {
  margin-left: 5px;
}
/*
 * 1. Makes pagination more robust against different box-sizing use
 * 2. Reset text-align to center if alignment modifier is used
 */
.nc-pagination > li > a,
.nc-pagination > li > span {
  display: inline-block;
  min-width: 16px;
  padding: 3px 5px;
  line-height: 20px;
  text-decoration: none;
  /* 1 */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
  text-align: center;
  border-radius: 4px;
}
/*
 * Links
 */
.nc-pagination > li > a {
  background: #f7f7f7;
  color: #444444;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.3);
  background-origin: border-box;
  background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
  text-shadow: 0 1px 0 #ffffff;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.nc-pagination > li > a:hover,
.nc-pagination > li > a:focus {
  background-color: #fafafa;
  color: #444444;
  /* 2 */
  outline: none;
  background-image: none;
}
/* OnClick */
.nc-pagination > li > a:active {
  background-color: #f5f5f5;
  color: #444444;
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.3);
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
/*
 * Active
 */
.nc-pagination > .nc-active > span {
  background: #009dd8;
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.4);
  background-origin: border-box;
  background-image: -webkit-linear-gradient(top, #00b4f5, #008dc5);
  background-image: linear-gradient(to bottom, #00b4f5, #008dc5);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/*
 * Disabled
 */
.nc-pagination > .nc-disabled > span {
  background-color: #fafafa;
  color: #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 0 #ffffff;
}
/* Previous and next navigation
 ========================================================================== */
.nc-pagination-previous {
  float: left;
}
.nc-pagination-next {
  float: right;
}
/* Alignment modifiers
 ========================================================================== */
.nc-pagination-left {
  text-align: left;
}
.nc-pagination-right {
  text-align: right;
}
/* ========================================================================
   Component: Tab
 ========================================================================== */
.nc-tab {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #dddddd;
}
/*
 * Micro clearfix on the deepest container
 */
.nc-tab:before,
.nc-tab:after {
  content: "";
  display: table;
}
.nc-tab:after {
  clear: both;
}
/*
 * Items
 * 1. Create position context for dropdowns
 */
.nc-tab > li {
  margin-bottom: -1px;
  float: left;
  /* 1 */
  position: relative;
}
.nc-tab > li > a {
  display: block;
  padding: 8px 12px 8px 12px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  color: #0077dd;
  text-decoration: none;
  border-radius: 4px 4px 0 0;
  text-shadow: 0 1px 0 #ffffff;
}
.nc-tab > li:nth-child(n+2) > a {
  margin-left: 5px;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.nc-tab > li > a:hover,
.nc-tab > li > a:focus,
.nc-tab > li.nc-open > a {
  border-color: #dddddd;
  background: #fafafa;
  color: #005599;
  /* 2 */
  outline: none;
}
.nc-tab > li:not(.nc-active) > a:hover,
.nc-tab > li:not(.nc-active) > a:focus,
.nc-tab > li.nc-open:not(.nc-active) > a {
  margin-bottom: 1px;
  padding-bottom: 7px;
}
/* Active */
.nc-tab > li.nc-active > a {
  border-color: #dddddd;
  border-bottom-color: transparent;
  background: #ffffff;
  color: #444444;
}
/* Disabled */
.nc-tab > li.nc-disabled > a {
  color: #999999;
  cursor: text;
}
.nc-tab > li.nc-disabled > a:hover,
.nc-tab > li.nc-disabled > a:focus,
.nc-tab > li.nc-disabled.nc-active > a {
  background: none;
  border-color: transparent;
}
/* Modifier: 'tab-responsive'
 ========================================================================== */
.nc-tab > li.nc-tab-responsive > a {
  margin-left: 0;
  margin-right: 0;
}
/*
 * Icon
 */
.nc-tab-responsive > a:before {
  content: "\e80d";
  font-family: fontello;
  padding-right: 5px;
}
/* ========================================================================
   Component: List
 ========================================================================== */
#norrc .nc-list {
  padding: 0;
  list-style: none;
  margin: 0;
}
/*
 * Micro clearfix to make list more robust
 */
#norrc .nc-list > li:before,
#norrc .nc-list > li:after {
  content: "";
  display: table;
}
#norrc .nc-list > li:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
#norrc .nc-list > li > :last-child {
  margin-bottom: 0;
}
/*
 * Nested lists
 */
#norrc .nc-list ul {
  margin: 0;
  padding-left: 30px;
  list-style: none;
}
/* Modifier: `nc-list-space`
 ========================================================================== */
#norrc .nc-list-space > li:nth-child(n+2) {
  margin-top: 10px;
}
/* Modifier: `nc-list-float`
 ========================================================================== */
#norrc .nc-list.nc-list-float li {
  display: inline-block;
}
/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Block element behavior
 * 3. Style
 */
.nc-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 15px;
}
/*
 * Add margin if adjacent element
 */
* + .nc-table {
  margin-top: 15px;
}
.nc-table th,
.nc-table td {
  padding: 8px 8px;
  border-bottom: 1px solid #dddddd;
}
/*
 * Set alignment
 */
.nc-table th {
  text-align: left;
}
.nc-table td {
  vertical-align: top;
}
.nc-table thead th {
  vertical-align: bottom;
}
/*
 * Caption and footer
 */
.nc-table caption,
.nc-table tfoot {
  font-size: 12px;
  font-style: italic;
}
.nc-table caption {
  text-align: left;
  color: #999999;
}
/* Sub-modifier: `nc-table-middle`
 ========================================================================== */
.nc-table-middle,
.nc-table-middle td {
  vertical-align: middle !important;
}
/* Modifier: `nc-table-striped`
 ========================================================================== */
.nc-table-striped tbody tr:nth-of-type(odd) {
  background: #fafafa;
}
/* Modifier: `nc-table-hover`
 ========================================================================== */
.nc-table-hover tbody tr:hover {
  background: #f0f0f0;
}
/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `button`, `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Correct `font` properties and `color` not being inherited.
 */
.nc-form input,
.nc-form select,
.nc-form textarea {
  /* 1 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  color: inherit;
}
/*
 * Address inconsistent `text-transform` inheritance which is only inherit in Firefox
 */
.nc-form select {
  text-transform: none;
}
/*
 * 1. Correct `font` properties not being inherited.
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.nc-form optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}
/*
 * Removes inner padding and border in Firefox 4+.
 */
.nc-form input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Removes excess padding in IE 8/9/10.
 */
.nc-form input[type="checkbox"],
.nc-form input[type="radio"] {
  padding: 0;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.nc-form input[type="checkbox"]:not(:disabled),
.nc-form input[type="radio"]:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove default style in iOS.
 */
.nc-form textarea,
.nc-form input:not([type]),
.nc-form input[type="text"],
.nc-form input[type="password"],
.nc-form input[type="email"],
.nc-form input[type="url"],
.nc-form input[type="search"],
.nc-form input[type="tel"],
.nc-form input[type="number"],
.nc-form input[type="datetime"] {
  -webkit-appearance: none;
}
/*
 * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
 */
.nc-form input[type="search"]::-webkit-search-cancel-button,
.nc-form input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
.nc-form input[type="number"]::-webkit-inner-spin-button,
.nc-form input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Define consistent border, margin, and padding.
 */
.nc-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/*
 * 1. Remove default vertical scrollbar in IE 8/9/10/11.
 * 2. Improve readability and alignment in all browsers.
 */
.nc-form textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  vertical-align: top;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.nc-form ::-moz-placeholder {
  opacity: 1;
}
/*
 * Removes `box-shadow` for invalid controls in Firefox.
 */
.nc-form :invalid {
  box-shadow: none;
}
/*
 * Vertical alignment
 */
.nc-form input:not([type="radio"]):not([type="checkbox"]),
.nc-form select {
  vertical-align: middle;
}
/* Style
 ========================================================================== */
/*
 * Remove margin from the last-child
 */
.nc-form > :last-child {
  margin-bottom: 0;
}
/*
 * Controls
 * Except for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
 * 1. Must be `height` because `min-height` is not working in OSX
 * 2. Responsiveness: Sets a maximum width relative to the parent to scale on narrower viewports
 * 3. Vertical `padding` needed for `select` elements in Firefox
 * 4. Style
 */
.nc-form select,
.nc-form textarea,
.nc-form input:not([type]),
.nc-form input[type="text"],
.nc-form input[type="password"],
.nc-form input[type="datetime"],
.nc-form input[type="datetime-local"],
.nc-form input[type="date"],
.nc-form input[type="month"],
.nc-form input[type="time"],
.nc-form input[type="week"],
.nc-form input[type="number"],
.nc-form input[type="email"],
.nc-form input[type="url"],
.nc-form input[type="search"],
.nc-form input[type="tel"],
.nc-form input[type="color"] {
  /* 1 */
  height: 30px;
  /* 2 */
  max-width: 100%;
  /* 3 */
  padding: 4px 6px;
  /* 4 */
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #444444;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  border-radius: 4px;
}
.nc-form select:focus,
.nc-form textarea:focus,
.nc-form input:not([type]):focus,
.nc-form input[type="text"]:focus,
.nc-form input[type="password"]:focus,
.nc-form input[type="datetime"]:focus,
.nc-form input[type="datetime-local"]:focus,
.nc-form input[type="date"]:focus,
.nc-form input[type="month"]:focus,
.nc-form input[type="time"]:focus,
.nc-form input[type="week"]:focus,
.nc-form input[type="number"]:focus,
.nc-form input[type="email"]:focus,
.nc-form input[type="url"]:focus,
.nc-form input[type="search"]:focus,
.nc-form input[type="tel"]:focus,
.nc-form input[type="color"]:focus {
  border-color: #99baca;
  outline: 0;
  background: #f5fbfe;
  color: #444444;
}
.nc-form select:disabled,
.nc-form textarea:disabled,
.nc-form input:not([type]):disabled,
.nc-form input[type="text"]:disabled,
.nc-form input[type="password"]:disabled,
.nc-form input[type="datetime"]:disabled,
.nc-form input[type="datetime-local"]:disabled,
.nc-form input[type="date"]:disabled,
.nc-form input[type="month"]:disabled,
.nc-form input[type="time"]:disabled,
.nc-form input[type="week"]:disabled,
.nc-form input[type="number"]:disabled,
.nc-form input[type="email"]:disabled,
.nc-form input[type="url"]:disabled,
.nc-form input[type="search"]:disabled,
.nc-form input[type="tel"]:disabled,
.nc-form input[type="color"]:disabled {
  border-color: #dddddd;
  background-color: #fafafa;
  color: #999999;
}
/*
 * Placeholder
 */
.nc-form :-ms-input-placeholder {
  color: #999999 !important;
}
.nc-form ::-moz-placeholder {
  color: #999999;
}
.nc-form ::-webkit-input-placeholder {
  color: #999999;
}
.nc-form :disabled:-ms-input-placeholder {
  color: #999999 !important;
}
.nc-form :disabled::-moz-placeholder {
  color: #999999;
}
.nc-form :disabled::-webkit-input-placeholder {
  color: #999999;
}
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct `color` not being inherited in IE 8/9/10/11.
 * 3. Remove padding
 * 4. `margin-bottom` is not working in Safari and Opera.
 *    Using `padding` and :after instead to create the border
 * 5. Style
 */
.nc-form legend {
  /* 1 */
  width: 100%;
  /* 2 */
  border: 0;
  /* 3 */
  padding: 0;
  /* 4 */
  padding-bottom: 15px;
  /* 5 */
  font-size: 18px;
  line-height: 30px;
}
/*
 * 1. Fixes IE9
 */
.nc-form legend:after {
  content: "";
  display: block;
  border-bottom: 1px solid #dddddd;
  /* 1 */
  width: 100%;
}
/* Size modifiers
 * Higher specificity needed to override defaults
 ========================================================================== */
select.nc-form-small,
textarea.nc-form-small,
input[type].nc-form-small,
input:not([type]).nc-form-small {
  height: 25px;
  padding: 3px 3px;
  font-size: 12px;
}
select.nc-form-large,
textarea.nc-form-large,
input[type].nc-form-large,
input:not([type]).nc-form-large {
  height: 40px;
  padding: 8px 6px;
  font-size: 16px;
}
/* Reset height
 * Must be after size modifiers
 ========================================================================== */
.nc-form textarea,
.nc-form select[multiple],
.nc-form select[size] {
  height: auto;
}
/* Validation states
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Error state
 */
.nc-form-danger {
  border-color: #dc8d99 !important;
  background: #fff7f8 !important;
  color: #d85030 !important;
}
/*
 * Success state
 */
.nc-form-success {
  border-color: #8ec73b !important;
  background: #fafff2 !important;
  color: #659f13 !important;
}
/* Style modifiers
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Blank form
 */
.nc-form-blank {
  border-color: transparent !important;
  border-style: dashed !important;
  background: none !important;
}
.nc-form-blank:focus {
  border-color: #dddddd !important;
}
/* Size sub-modifiers
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.nc-form-width-mini {
  width: 40px;
}
select.nc-form-width-mini {
  width: 65px;
}
.nc-form-width-small {
  width: 130px;
}
.nc-form-width-medium {
  width: 200px;
}
.nc-form-width-large {
  width: 500px;
}
/* Sub-objects: `nc-form-row`
 * Groups labels and controls in rows
 ========================================================================== */
/*
 * Micro clearfix
 * Needed for `nc-form-horizontal` modifier
 */
.nc-form-row:before,
.nc-form-row:after {
  content: "";
  display: table;
}
.nc-form-row:after {
  clear: both;
}
/*
 * Vertical gutter
 */
.nc-form-row + .nc-form-row {
  margin-top: 15px;
}
/* Help text
 * Sub-object: `nc-form-help-inline`, `nc-form-help-block`
 ========================================================================== */
.nc-form-help-inline {
  display: inline-block;
  margin: 0 0 0 10px;
}
.nc-form-help-block {
  margin: 5px 0 0 0;
}
/* Controls content
 * Sub-object: `nc-form-controls`, `nc-form-controls-condensed`
 ========================================================================== */
/*
 * Remove margins
 */
.nc-form-controls > :first-child {
  margin-top: 0;
}
.nc-form-controls > :last-child {
  margin-bottom: 0;
}
/*
 * Group controls and text into blocks with a small spacing between blocks
 */
.nc-form-controls-condensed {
  margin: 5px 0;
}
/* Modifier: `nc-form-stacked`
 * Requires sub-object: `nc-form-label`
 ========================================================================== */
.nc-form-stacked .nc-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
/* Modifier: `nc-form-horizontal`
 * Requires sub-objects: `nc-form-label`, `nc-form-controls`
 ========================================================================== */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `nc-form-stacked` */
  .nc-form-horizontal .nc-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .nc-form-horizontal .nc-form-label {
    width: 200px;
    margin-top: 5px;
    float: left;
  }
  .nc-form-horizontal .nc-form-controls {
    margin-left: 215px;
  }
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .nc-form-horizontal .nc-form-controls-text {
    padding-top: 5px;
  }
}
/* Sub-object: `nc-form-icon`
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.nc-form-icon {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}
/*
 * 1. Make form element clickable through icon
 */
.nc-form-icon > [class*='nc-icon-'] {
  position: absolute;
  top: 50%;
  width: 30px;
  margin-top: -7px;
  font-size: 14px;
  color: #999999;
  text-align: center;
  /* 1 */
  pointer-events: none;
}
.nc-form-icon:not(.nc-form-icon-flip) > input {
  padding-left: 30px !important;
}
/*
 * Sub-modifier: `nc-form-icon-flip`
 */
.nc-form-icon-flip > [class*='nc-icon-'] {
  right: 0;
}
.nc-form-icon-flip > input {
  padding-right: 30px !important;
}
/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.nc-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Style
 * 8. `line-height` is used to create a height
 * 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
 * 10. Reset button group whitespace hack
 * 11. Required for `a`.
 */
.nc-button {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: #444444;
  /* 6 */
  text-transform: none;
  /* 7 */
  display: inline-block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 12px;
  background: #f7f7f7;
  vertical-align: middle;
  /* 8 */
  line-height: 28px;
  /* 9 */
  min-height: 30px;
  /* 10 */
  font-size: 14px;
  /* 11 */
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.3);
  background-origin: border-box;
  background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
  border-radius: 4px;
  text-shadow: 0 1px 0 #ffffff;
}
.nc-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.nc-button:hover,
.nc-button:focus {
  background-color: #fafafa;
  color: #444444;
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  background-image: none;
}
/* Active */
.nc-button:active,
.nc-button.nc-active {
  background-color: #f5f5f5;
  color: #444444;
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.3);
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `nc-button-primary`
 */
.nc-button-primary {
  background-color: #009dd8;
  color: #ffffff;
  background-image: -webkit-linear-gradient(top, #00b4f5, #008dc5);
  background-image: linear-gradient(to bottom, #00b4f5, #008dc5);
  border-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.4);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* Hover */
.nc-button-primary:hover,
.nc-button-primary:focus {
  background-color: #00aff2;
  color: #ffffff;
  background-image: none;
}
/* Active */
.nc-button-primary:active,
.nc-button-primary.nc-active {
  background-color: #008abf;
  color: #ffffff;
  background-image: none;
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
/*
 * Modifier: `nc-button-success`
 */
.nc-button-success {
  background-color: #82bb42;
  color: #ffffff;
  background-image: -webkit-linear-gradient(top, #9fd256, #6fac34);
  background-image: linear-gradient(to bottom, #9fd256, #6fac34);
  border-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.4);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* Hover */
.nc-button-success:hover,
.nc-button-success:focus {
  background-color: #8fce48;
  color: #ffffff;
  background-image: none;
}
/* Active */
.nc-button-success:active,
.nc-button-success.nc-active {
  background-color: #76b430;
  color: #ffffff;
  background-image: none;
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
/*
 * Modifier: `nc-button-danger`
 */
.nc-button-danger {
  background-color: #d32c46;
  color: #ffffff;
  background-image: -webkit-linear-gradient(top, #ee465a, #c11a39);
  background-image: linear-gradient(to bottom, #ee465a, #c11a39);
  border-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.4);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* Hover */
.nc-button-danger:hover,
.nc-button-danger:focus {
  background-color: #e33551;
  color: #ffffff;
  background-image: none;
}
/* Active */
.nc-button-danger:active,
.nc-button-danger.nc-active {
  background-color: #c91c37;
  color: #ffffff;
  background-image: none;
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* Disabled state
 * Overrides also the color modifiers
 ========================================================================== */
/* Equal for all button types */
.nc-button:disabled {
  background-color: #fafafa;
  color: #999999;
}
/* Sub-object: `nc-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.nc-button-dropdown {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.nc-alert,
.alert {
  margin-bottom: 15px;
  padding: 10px;
  background: #ebf7fd;
  color: #2d7091;
  border: 1px solid rgba(45, 112, 145, 0.3);
  border-radius: 4px;
  text-shadow: 0 1px 0 #ffffff;
}
/*
 * Add margin if adjacent element
 */
* + .nc-alert,
* + .alert {
  margin-top: 15px;
}
/*
 * Remove margin from the last-child
 */
.nc-alert > :last-child,
.alert > :last-child {
  margin-bottom: 0;
}
/*
 * Keep color for headings if the default heading color is changed
 */
.nc-alert h1,
.alert h1,
.nc-alert h2,
.alert h2,
.nc-alert h3,
.alert h3,
.nc-alert h4,
.alert h4,
.nc-alert h5,
.alert h5,
.nc-alert h6,
.alert h6 {
  color: inherit;
}
/* Close in alert
 ========================================================================== */
.nc-alert > .nc-close:first-child,
.alert > .close:first-child {
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.nc-alert > .nc-close:first-child + *,
.alert > .close:first-child + * {
  margin-top: 0;
}
/* Modifier: `nc-alert-success`
 ========================================================================== */
.nc-alert-success,
.alert-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}
/* Modifier: `nc-alert-warning`
 ========================================================================== */
.nc-alert-warning,
.alert-warning {
  background: #fffceb;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}
/* Modifier: `nc-alert-danger`
 ========================================================================== */
.nc-alert-danger,
.alert-error {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
}
/* 
	Messages
*/
#norrc .nc-alert.nc-alert-popup {
  display: none;
  width: 300px;
  position: fixed;
  left: 50%;
  top: 50%;
  text-align: center;
  margin-left: -150px;
}
/* ========================================================================
   Component: Thumbnail
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Responsive behavior
 * 3. Corrects `max-width` behavior sed
 * 4. Required for `figure` element
 * 5. Style
 */
.nc-thumbnail {
  /* 1 */
  display: inline-block;
  /* 2 */
  max-width: 100%;
  /* 3 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 3 */
  margin: 0;
  /* 4 */
  padding: 4px;
  border: 1px solid #dddddd;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.nc-thumbnail figure {
  margin: 0;
}
.nc-thumbnail img {
  vertical-align: middle;
  width: 100%;
}
/*
 * Hover state for `a` elements
 * 1. Apply hover style also to focus state
 * 2. Needed for caption
 * 3. Remove default focus style
 */
a.nc-thumbnail:hover,
a.nc-thumbnail:focus {
  border-color: #aaaaaa;
  background-color: #ffffff;
  /* 2 */
  text-decoration: none;
  /* 3 */
  outline: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
/* Caption
 ========================================================================== */
.nc-thumbnail-caption {
  padding-top: 4px;
  text-align: center;
  color: #444444;
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Set max-width for responsive images to prevent `inline-block` consequences
 * 4. Remove the gap between the container and its child element
 * 5. Needed for transitions and to fixed wrong scaling calculation for images in Chrome
 * 6. Fixed `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 * 7. Reset margin
 */
.nc-overlay {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  overflow: hidden;
  /* 6 */
  -webkit-transform: translateZ(0);
  /* 7 */
  margin: 0;
}
/*
 * Remove margin from content
 */
.nc-overlay > :first-child {
  margin-bottom: 0;
}
/* Sub-object `nc-overlay-hover` and `nc-overlay-active`
 ========================================================================== */
.nc-overlay-hover:not(:hover):not(.nc-hover) .nc-overlay-panel:not(.nc-ignore) {
  opacity: 0;
}
.nc-overlay-active :not(.nc-active) > .nc-overlay-panel:not(.nc-ignore) {
  opacity: 0;
}
/* Modifier `nc-overlay-background`
 ========================================================================== */
.nc-overlay-background {
  background: rgba(0, 0, 0, 0.5);
}
/* DEPRECATED
 * Sub-object `nc-overlay-area`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.nc-overlay-area {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  background: rgba(0, 0, 0, 0.3);
  /* 3 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}
/*
 * Hover
 * 1. `nc-hover` to support touch devices
 * 2. Use optional `nc-overlay-toggle` to trigger the overlay earlier
 */
.nc-overlay:hover .nc-overlay-area,
.nc-overlay.nc-hover .nc-overlay-area,
.nc-overlay-toggle:hover .nc-overlay-area,
.nc-overlay-toggle.nc-hover .nc-overlay-area {
  opacity: 1;
}
/*
 * Icon
 */
.nc-overlay-area:empty:before {
  content: "\e800";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: fontello;
  text-align: center;
  color: #ffffff;
}
/* DEPRECATED
 * Sub-object `nc-overlay-area-content`
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 * Needed for Firefox
 */
.nc-overlay-area:not(:empty) {
  font-size: 0.001px;
}
/*
 * 1. Needed for vertical alignment
 */
.nc-overlay-area:not(:empty):before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/*
 * 1. Set vertical alignment
 * 2. Reset whitespace hack
 * 3. Set horizontal alignment
 * 4. Set style
 */
.nc-overlay-area-content {
  /* 1 */
  display: inline-block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  vertical-align: middle;
  /* 2 */
  font-size: 1rem;
  /* 3 */
  text-align: center;
  /* 4 */
  padding: 0 15px;
  color: #ffffff;
}
/*
 * Remove margin from the last-child
 */
.nc-overlay-area-content > :last-child {
  margin-bottom: 0;
}
/*
 * Links in overlay area
 */
.nc-overlay-area-content a:not([class]),
.nc-overlay-area-content a:not([class]):hover {
  color: inherit;
}
/* DEPRECATED
 * Sub-object `nc-overlay-caption`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.nc-overlay-caption {
  /* 1 */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  /* 3 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}
/*
 * Hover
 * 1. `nc-hover` to support touch devices
 * 2. Use optional `nc-overlay-toggle` to trigger the overlay earlier
 */
.nc-overlay:hover .nc-overlay-caption,
.nc-overlay.nc-hover .nc-overlay-caption,
.nc-overlay-toggle:hover .nc-overlay-caption,
.nc-overlay-toggle.nc-hover .nc-overlay-caption {
  opacity: 1;
}
/* 
	Animation Lightbox
*/
@-webkit-keyframes scaleOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-moz-keyframes scaleOut {
  0% {
    opacity: 1;
    -moz-transform: scale(1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@-o-keyframes scaleOut {
  0% {
    opacity: 1;
    -o-transform: scale(1);
  }
  100% {
    opacity: 0;
    -o-transform: scale(0.8);
  }
}
@keyframes scaleOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-moz-keyframes scaleIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@-o-keyframes scaleIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -o-transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.nc-modal-animate .mfp-with-anim {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  -o-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: scaleIn;
  -moz-animation-name: scaleIn;
  -o-animation-name: scaleIn;
  animation-name: scaleIn;
}
.nc-modal-animate.mfp-removing .mfp-with-anim {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  -o-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: scaleOut;
  -moz-animation-name: scaleOut;
  -o-animation-name: scaleOut;
  animation-name: scaleOut;
}
/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Box-sizing is needed for `nc-dropdown-justify`
 * 4. Set style
 * 5. Reset button group whitespace hack
 */
.nc-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1020;
  /* 3 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 4 */
  width: 200px;
  margin-top: 5px;
  padding: 15px;
  background: #ffffff;
  color: #444444;
  /* 5 */
  font-size: 14px;
  vertical-align: top;
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/*
 * 1. Show dropdown
 * 2. Set animation
 * 3. Needed for scale animation
 */
.nc-open > .nc-dropdown {
  /* 1 */
  display: block;
  /* 2 */
  -webkit-animation: nc-fade 0.2s ease-in-out;
  animation: nc-fade 0.2s ease-in-out;
  /* 3 */
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Nav in dropdown
 ========================================================================== */
.nc-dropdown .nc-nav {
  margin: 0 -15px;
}
/* Modifier `nc-dropdown-small`
 ========================================================================== */
/*
 * Set min-width and text expands dropdown if needed
 */
.nc-dropdown-small {
  min-width: 150px;
  width: auto;
  padding: 5px;
  white-space: nowrap;
}
/*
 * Nav in dropdown
 */
.nc-dropdown-small .nc-nav {
  margin: 0 -5px;
}
/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * 1. Deactivate browser history navigation in IE11
 */
.nc-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
  /* 1 */
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
}
/*
 * Items
 */
.nc-switcher > *:not(.nc-active) {
  display: none;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Color modifiers
 ========================================================================== */
#norrc .nc-text-muted {
  color: #999999 !important;
}
#norrc .nc-text-primary {
  color: #2d7091 !important;
}
#norrc .nc-text-success {
  color: #659f13 !important;
}
#norrc .nc-text-warning {
  color: #e28327 !important;
}
.nc-text-danger {
  color: #d85030 !important;
}
#norrc .nc-text-contrast {
  color: #ffffff !important;
}
#norrc .nc-text-small {
  font-size: 11px;
}
/* Alignment modifiers
 ========================================================================== */
.nc-text-left {
  text-align: left !important;
}
.nc-text-right {
  text-align: right !important;
}
.nc-text-center {
  text-align: center !important;
}
.nc-text-justify {
  text-align: justify !important;
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Clearing
 ========================================================================== */
/*
 * Micro clearfix
* `table-cell` is used with `:before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * `table` is used again with `:after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
.nc-clearfix:before {
  content: "";
  display: table-cell;
}
.nc-clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/* Alignment of block elements
 ========================================================================== */
/*
 * Float blocks
 * 1. Prevent content overflow on small devices
 */
.nc-float-left {
  float: left;
}
.nc-float-right {
  float: right;
}
/* 1 */
[class*='nc-float-'] {
  max-width: 100%;
}
/* Alignment of images and objects
 ========================================================================== */
/*
 * Alignment
 */
[class*='nc-align-'] {
  display: block;
  margin-bottom: 15px;
}
.nc-align-left {
  margin-right: 15px;
  float: left;
}
.nc-align-right {
  margin-left: 15px;
  float: right;
}
.nc-align-center {
  margin-left: auto;
  margin-right: auto;
}
/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.nc-margin {
  margin-bottom: 15px;
}
* + .nc-margin {
  margin-top: 15px;
}
.nc-margin-top {
  margin-top: 15px !important;
}
.nc-margin-bottom {
  margin-bottom: 15px !important;
}
.nc-margin-left {
  margin-left: 15px !important;
}
.nc-margin-right {
  margin-right: 15px !important;
}
.nc-margin-small {
  margin-bottom: 5px;
}
* + .nc-margin-small {
  margin-top: 5px;
}
.nc-margin-small-top {
  margin-top: 5px !important;
}
.nc-margin-small-bottom {
  margin-bottom: 5px !important;
}
.nc-margin-small-left {
  margin-left: 5px !important;
}
.nc-margin-small-right {
  margin-right: 5px !important;
}
/*
 * Remove margins
 */
.nc-margin-remove {
  margin: 0 !important;
}
.nc-margin-top-remove {
  margin-top: 0 !important;
}
.nc-margin-bottom-remove {
  margin-bottom: 0 !important;
}
/* Remove from the flow and screen readers on any device */
.nc-hidden {
  display: none !important;
  visibility: hidden !important;
}
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Set dimensions
 * 4. Set style
 */
.nc-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 200px;
  padding: 5px 8px;
  /* 4 */
  background: #333333;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
/* Triangle
 ========================================================================== */
/*
 * 1. Dashed is less antialised than solid
 */
.nc-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  /* 1 */
  border: 5px dashed #333333;
}
/* Direction modifiers
 ========================================================================== */
/*
 * Top
 */
.nc-tooltip-top:after,
.nc-tooltip-top-left:after,
.nc-tooltip-top-right:after {
  bottom: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #333333;
}
/*
 * Bottom
 */
.nc-tooltip-bottom:after,
.nc-tooltip-bottom-left:after,
.nc-tooltip-bottom-right:after {
  top: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #333333;
}
/*
 * Top/Bottom center
 */
.nc-tooltip-top:after,
.nc-tooltip-bottom:after {
  left: 50%;
  margin-left: -5px;
}
@font-face {
  font-family: 'fontello';
  src: url('../font/fontello.eot?70546353');
  src: url('../font/fontello.eot?70546353#iefix') format('embedded-opentype'), url('../font/fontello.woff?70546353') format('woff'), url('../font/fontello.ttf?70546353') format('truetype'), url('../font/fontello.svg?70546353#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="nc-icon-"]:before,
[class*=" nc-icon-"]:before {
  font-family: "fontello";
  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;
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.nc-icon-large {
  font-size: 46px;
}
.nc-icon-search:before {
  content: '\e800';
}
.nc-icon-cancel:before,
.nc-icon-remove:before,
.nc-icon-close:before {
  content: '\e801';
}
.nc-icon-folder:before {
  content: '\e802';
}
.nc-icon-play-circle:before {
  content: '\e803';
}
.nc-icon-stop:before {
  content: '\e804';
}
.nc-icon-calendar:before {
  content: '\e805';
}
.nc-icon-heart:before {
  content: '\e806';
}
.nc-icon-heart-empty:before {
  content: '\e807';
}
.nc-icon-forward:before,
.nc-icon-share:before {
  content: '\e808';
}
.nc-icon-left:before,
.nc-icon-reply:before {
  content: '\e809';
}
.nc-icon-ok:before,
.nc-icon-check:before {
  content: '\e80a';
}
.nc-icon-plus:before {
  content: '\e80b';
}
.nc-icon-lock:before {
  content: '\e80c';
}
.nc-icon-menu:before {
  content: '\e80d';
}
.nc-icon-video:before,
.nc-icon-videocam:before  { 
  content: '\e80f';
}
.nc-icon-camera:before {
  content: '\e810';
}
/* 
	Upload Process
*/
.nc-upload-process {
  padding: 20px 0;
}
.nc-upload-loader-image {
  background-image: url('../images/loader.gif');
  width: 64px;
  height: 64px;
  margin-top: 10px;
  border-radius: 100%;
}
.nc-upload-error {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
  padding: 15px;
  margin: 15px 0;
}
/* Fix */
#norrc .nc-category-image {
  max-width: 120px;
}
#norrc .nc-form input.invalid {
  border: 1px solid red;
}
.mfp-with-anim.mfp-iframe-scaler {
  overflow: visible;
}
#norrc .nc-filters > .nc-form-row > input {
  margin-bottom: 0;
}
.nc-onecolumn .nc-grid + .nc-grid,
.nc-onecolumn .nc-grid-margin {
  margin-top: 0;
}
#norrc.nc-appform input[type='text'] {
    min-width: 100px;
}
/* Competitions */
#norrc .nc-list li.nc-competition-category,
#norrc .nc-list li.nc-competition-status {
  display: block;
}
#norrc .nc-participant-grandprix .nc-align-left {
  max-width: 42%;
}
.nc-filter-panel {
  margin-bottom: 25px;
}
.nc-pagination {
  margin-top: 25px;
}
/*
	Utility / Helper
*/
#norrc .nc-hide {
  display: none;
}
/* Button Vote */
#nc-vote-result.nc-button-danger:disabled {
    color: #fff;
}