@font-face {
    /* font-family: 'helveticaneuecyrroman'; */
    font-family: 'Helvetica Neue';
    src: url('/fonts/helveticaneuecyr-roman-webfont.eot');
    src: url('/fonts/helveticaneuecyr-roman-webfont.eot?#iefix') format('embedded-opentype'),
    url('/fonts/helveticaneuecyr-roman-webfont.woff2') format('woff2'),
    url('/fonts/helveticaneuecyr-roman-webfont.woff') format('woff'),
    url('/fonts/helveticaneuecyr-roman-webfont.ttf') format('truetype'),
    url('/fonts/helveticaneuecyr-roman-webfont.svg#helveticaneuecyrroman') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    /* font-family: 'helveticaneuecyrlight'; */
    font-family: 'Helvetica Neue';
    src: url('/fonts/helveticaneuecyr-light-webfont.eot');
    src: url('/fonts/helveticaneuecyr-light-webfont.eot?#iefix') format('embedded-opentype'),
    url('/fonts/helveticaneuecyr-light-webfont.woff2') format('woff2'),
    url('/fonts/helveticaneuecyr-light-webfont.woff') format('woff'),
    url('/fonts/helveticaneuecyr-light-webfont.ttf') format('truetype'),
    url('/fonts/helveticaneuecyr-light-webfont.svg#helveticaneuecyrlight') format('svg');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    /* font-family: 'helveticaneuecyrmedium'; */
    font-family: 'Helvetica Neue';
    src: url('/fonts/helveticaneuecyr-medium-webfont.eot');
    src: url('/fonts/helveticaneuecyr-medium-webfont.eot?#iefix') format('embedded-opentype'),
    url('/fonts/helveticaneuecyr-medium-webfont.woff2') format('woff2'),
    url('/fonts/helveticaneuecyr-medium-webfont.woff') format('woff'),
    url('/fonts/helveticaneuecyr-medium-webfont.ttf') format('truetype'),
    url('/fonts/helveticaneuecyr-medium-webfont.svg#helveticaneuecyrmedium') format('svg');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    /* font-family: 'helveticaneuecyrbold'; */
    font-family: 'Helvetica Neue';
    src: url('/fonts/helveticaneuecyr-bold-webfont.eot');
    src: url('/fonts/helveticaneuecyr-bold-webfont.eot?#iefix') format('embedded-opentype'),
    url('/fonts/helveticaneuecyr-bold-webfont.woff2') format('woff2'),
    url('/fonts/helveticaneuecyr-bold-webfont.woff') format('woff'),
    url('/fonts/helveticaneuecyr-bold-webfont.ttf') format('truetype'),
    url('/fonts/helveticaneuecyr-bold-webfont.svg#helveticaneuecyrbold') format('svg');
    font-weight: bold;
    font-style: normal;
}

body {
	color: #888;
    overflow-x: hidden; 
}

.uk-text-white {
	color: #fff;
}

.uk-button-gold {
	background: #e0d28f;
	color: #222222;
	text-shadow: none;
	border-radius: 0;
}

.uk-background-color-main {
    background-color: #222;
}

.z-index-9 {
    z-index: 9;
}

a {
	color: #e0d28f;
}

.uk-table {
    border: 1px solid #2f2f2f;
    background: transparent;
    color: #888;
}

.uk-table-striped tbody tr:nth-of-type(odd) {
    background: #292929;
}


.uk-table th, .uk-table td {
    border-top: 1px solid #2f2f2f;
    border-bottom: 1px solid #2f2f2f;
}

hr {
    box-sizing: content-box;
    height: 0;
    margin: 25px 0;
    border: 0;
    border-top: 1px solid #2a2a2a;
}

.uk-pagination > li > a, .uk-pagination > li > span {
    display: inline-block;
    min-width: 30px;
    padding: 5px 5px;
    line-height: 30px;
    text-decoration: none;
    box-sizing: content-box;
    text-align: center;
    border-radius: 20px;
    text-transform: uppercase;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    background: transparent;
    text-shadow: none;
    color: #888;
}
.uk-pagination > li > a:hover, .uk-pagination > li > span:hover {
	background: rgba(34, 34, 34, 0.6);
	color: #fff;
}

.uk-pagination > .uk-active > span {
    background: #e0d28f;
    color: #222222;
}

/*
 * 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
 */
.inp,.uk-form select,
.uk-form textarea,
.uk-form input:not([type]),
.uk-form input[type="text"],
.uk-form input[type="password"],
.uk-form input[type="datetime"],
.uk-form input[type="datetime-local"],
.uk-form input[type="date"],
.uk-form input[type="month"],
.uk-form input[type="time"],
.uk-form input[type="week"],
.uk-form input[type="number"],
.uk-form input[type="email"],
.uk-form input[type="url"],
.uk-form input[type="search"],
.uk-form input[type="tel"],
.uk-form input[type="color"] {
  /* 1 */
  height: 40px;
  /* 2 */
  max-width: 100%;
  /* 3 */
  padding: 5px 10px;
  /* 4 */
  border: 1px solid #2a2a2a;
  background: #222222;
  color: #888888;
  -webkit-transition: all 0.2s linear;
  -webkit-transition-property: border, background, color, box-shadow, padding;
  transition: all 0.2s linear;
  transition-property: border, background, color, box-shadow, padding;
  position: relative;
  border-radius: 1px;
  font-weight: inherit;
}
.uk-form select:focus,
.uk-form textarea:focus,
.uk-form input:not([type]):focus,
.uk-form input[type="text"]:focus,
.uk-form input[type="password"]:focus,
.uk-form input[type="datetime"]:focus,
.uk-form input[type="datetime-local"]:focus,
.uk-form input[type="date"]:focus,
.uk-form input[type="month"]:focus,
.uk-form input[type="time"]:focus,
.uk-form input[type="week"]:focus,
.uk-form input[type="number"]:focus,
.uk-form input[type="email"]:focus,
.uk-form input[type="url"]:focus,
.uk-form input[type="search"]:focus,
.uk-form input[type="tel"]:focus,
.uk-form input[type="color"]:focus {
  border-color: #323232;
  outline: 0;
  background: #323232;
  color: #ffffff;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}
.uk-form select:disabled,
.uk-form textarea:disabled,
.uk-form input:not([type]):disabled,
.uk-form input[type="text"]:disabled,
.uk-form input[type="password"]:disabled,
.uk-form input[type="datetime"]:disabled,
.uk-form input[type="datetime-local"]:disabled,
.uk-form input[type="date"]:disabled,
.uk-form input[type="month"]:disabled,
.uk-form input[type="time"]:disabled,
.uk-form input[type="week"]:disabled,
.uk-form input[type="number"]:disabled,
.uk-form input[type="email"]:disabled,
.uk-form input[type="url"]:disabled,
.uk-form input[type="search"]:disabled,
.uk-form input[type="tel"]:disabled,
.uk-form input[type="color"]:disabled {
  border-color: #2a2a2a;
  background-color: rgba(0, 0, 0, 0);
  color: #666666;
}
/*
 * Placeholder
 */
.uk-form :-ms-input-placeholder {
  color: #666666 !important;
}
.uk-form ::-moz-placeholder {
  color: #666666;
}
.uk-form ::-webkit-input-placeholder {
  color: #666666;
}
.uk-form :disabled:-ms-input-placeholder {
  color: #666666 !important;
}
.uk-form :disabled::-moz-placeholder {
  color: #666666;
}
.uk-form :disabled::-webkit-input-placeholder {
  color: #666666;
}

/* ========================================================================
   Component: Tab
 ========================================================================== */
.uk-tab {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #2a2a2a;
}
/*
 * Micro clearfix on the deepest container
 */
.uk-tab:before,
.uk-tab:after {
  content: "";
  display: table;
}
.uk-tab:after {
  clear: both;
}
/*
 * Items
 * 1. Create position context for dropdowns
 */
.uk-tab > li {
  margin-bottom: -1px;
  float: left;
  /* 1 */
  position: relative;
}
.uk-tab > li > a {
  display: block;
  padding: 12px 16px 12px 16px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  color: #888888;
  text-decoration: none;
  position: relative;
  border: none;
  font-family: 'Inconsolata', Consolas, monospace, serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.uk-tab > li > a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  border-bottom: 1px solid #e0d28f;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.uk-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
 */
.uk-tab > li > a:hover,
.uk-tab > li > a:focus,
.uk-tab > li.uk-open > a {
  border-color: #e0d28f;
  background: rgba(0, 0, 0, 0);
  color: #ffffff;
  /* 2 */
  outline: none;
}
.uk-tab > li > a:hover::after,
.uk-tab > li > a:focus::after,
.uk-tab > li.uk-open > a::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.uk-tab > li:not(.uk-active) > a:hover,
.uk-tab > li:not(.uk-active) > a:focus,
.uk-tab > li.uk-open:not(.uk-active) > a {
  margin-bottom: 1px;
  padding-bottom: 11px;
}
/* Active */
.uk-tab > li.uk-active > a {
  border-color: #e0d28f;
  border-bottom-color: transparent;
  background: rgba(0, 0, 0, 0);
  color: #e0d28f;
}
.uk-tab > li.uk-active > a::after {
  border-width: 2px;
  border-color: #e0d28f;
  opacity: 1;
  -webkit-transition: border-width 0.2s, -webkit-transform 0.35s;
  transition: border-width 0.2s, transform 0.35s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* Disabled */
.uk-tab > li.uk-disabled > a {
  color: #666666;
  cursor: text;
}
.uk-tab > li.uk-disabled > a::after {
  opacity: 0;
}
.uk-tab > li.uk-disabled > a:hover,
.uk-tab > li.uk-disabled > a:focus,
.uk-tab > li.uk-disabled.uk-active > a {
  background: none;
  border-color: transparent;
}
/* Modifier: 'tab-flip'
 ========================================================================== */
.uk-tab-flip > li {
  float: right;
}
.uk-tab-flip > li:nth-child(n+2) > a {
  margin-left: 0;
  margin-right: 5px;
}
/* Modifier: 'tab-responsive'
 ========================================================================== */
.uk-tab > li.uk-tab-responsive > a {
  margin-left: 0;
  margin-right: 0;
}
/*
 * Icon
 */
.uk-tab-responsive > a:before {
  content: "\f0c9\00a0";
  font-family: FontAwesome;
}
/* Modifier: 'tab-center'
 ========================================================================== */
.uk-tab-center {
  border-bottom: 1px solid #2a2a2a;
}
.uk-tab-center-bottom {
  border-bottom: none;
  border-top: 1px solid #2a2a2a;
}
.uk-tab-center:before,
.uk-tab-center:after {
  content: "";
  display: table;
}
.uk-tab-center:after {
  clear: both;
}
/*
 * 1. Using `right` to prevent vertical scrollbar caused by centering if to many tabs
 */
.uk-tab-center .uk-tab {
  position: relative;
  right: 50%;
  border: none;
  float: right;
}
.uk-tab-center .uk-tab > li {
  position: relative;
  right: -50%;
}
.uk-tab-center .uk-tab > li > a {
  text-align: center;
}
/* Modifier: 'tab-bottom'
 ========================================================================== */
.uk-tab-bottom {
  border-top: 1px solid #2a2a2a;
  border-bottom: none;
}
.uk-tab-bottom > li {
  margin-top: -1px;
  margin-bottom: 0;
}
.uk-tab-bottom > li > a {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom-width: 1px;
  border-top-width: 0;
}
.uk-tab-bottom > li:not(.uk-active) > a:hover,
.uk-tab-bottom > li:not(.uk-active) > a:focus,
.uk-tab-bottom > li.uk-open:not(.uk-active) > a {
  margin-bottom: 0;
  margin-top: 1px;
  padding-bottom: 12px;
  padding-top: 11px;
}
.uk-tab-bottom > li.uk-active > a {
  border-top-color: transparent;
  border-bottom-color: #e0d28f;
}
/* Modifier: 'tab-grid'
 ========================================================================== */
/*
 * 1. Create position context to prevent hidden border because of negative `z-index`
 */
.uk-tab-grid {
  margin-left: -5px;
  border-bottom: none;
  /* 1 */
  position: relative;
  z-index: 0;
}
.uk-tab-grid:before {
  display: block;
  position: absolute;
  left: 5px;
  right: 0;
  bottom: -1px;
  border-top: 1px solid #2a2a2a;
  /* 1 */
  z-index: -1;
}
.uk-tab-grid > li:first-child > a {
  margin-left: 5px;
}
.uk-tab-grid > li > a {
  text-align: center;
}
/*
 * If `uk-tab-bottom`
 */
.uk-tab-grid.uk-tab-bottom {
  border-top: none;
}
.uk-tab-grid.uk-tab-bottom:before {
  top: -1px;
  bottom: auto;
}

/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-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`.
 */
.uk-button {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: #ffffff;
  /* 6 */
  text-transform: none;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  background: #191919;
  vertical-align: middle;
  /* 8 */
  line-height: 40px;
  /* 9 */
  min-height: 40px;
  /* 10 */
  font-size: 14px;
  /* 11 */
  text-decoration: none;
  text-align: center;
  padding: 0 33px;
  border-radius: 1px;
  overflow: hidden;
  z-index: 1;
  font-family: 'Inconsolata', Consolas, monospace, serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-backface-visibility: hidden;
}
.uk-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.uk-button:hover,
.uk-button:focus {
  background-color: #111111;
  color: #ffffff;
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
}
/* Active */
.uk-button:active,
.uk-button.uk-active {
  background-color: #0c0c0c;
  color: rgba(255, 255, 255, 0.65);
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `uk-button-primary`
 */
.uk-button-primary {
  background-color: #e0d28f;
  color: #222222;
}
/* Hover */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #d7ca89;
  color: #222222;
}
/* Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  background-color: #d4c478;
  color: rgba(34, 34, 34, 0.65);
  box-shadow: inset 2px 2px 6px rgba(126, 113, 52, 0.15);
}
/*
 * Modifier: `uk-button-success`
 */
.uk-button-success {
  background-color: #8ebc87;
  color: #ffffff;
}
/* Hover */
.uk-button-success:hover,
.uk-button-success:focus {
  background-color: #8aaf84;
  color: #ffffff;
}
/* Active */
.uk-button-success:active,
.uk-button-success.uk-active {
  background-color: #7daa76;
  color: rgba(255, 255, 255, 0.65);
  box-shadow: inset 2px 2px 6px rgba(84, 105, 80, 0.15);
}
/*
 * Modifier: `uk-button-danger`
 */
.uk-button-danger {
  background-color: #d05c5c;
  color: #ffffff;
}
/* Hover */
.uk-button-danger:hover,
.uk-button-danger:focus {
  background-color: #c44e4e;
  color: #ffffff;
}
/* Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #bd4646;
  color: rgba(255, 255, 255, 0.65);
  box-shadow: inset 2px 2px 6px rgba(138, 71, 71, 0.4);
}
/* Disabled state
 * Overrides also the color modifiers
 ========================================================================== */
/* Equal for all button types */
.uk-button:disabled {
  background-color: #292929;
  color: #666666;
  box-shadow: none;
}
/* Modifier: `uk-button-link`
 ========================================================================== */
/* Reset */
.uk-button-link,
.uk-button-link:hover,
.uk-button-link:focus,
.uk-button-link:active,
.uk-button-link.uk-active,
.uk-button-link:disabled {
  border-color: transparent;
  background: none;
  padding: 0 5px 0 15px;
  box-shadow: none;
}
.uk-button-link:hover,
.uk-button-link:hover:hover,
.uk-button-link:focus:hover,
.uk-button-link:active:hover,
.uk-button-link.uk-active:hover,
.uk-button-link:disabled:hover {
  text-decoration: none;
}
.uk-button-link::before,
.uk-button-link:hover::before,
.uk-button-link:focus::before,
.uk-button-link:active::before,
.uk-button-link.uk-active::before,
.uk-button-link:disabled::before {
  content: '\f061';
  position: relative;
  top: -1px;
  margin: 0 5px 0 -10px;
  font-family: 'FontAwesome';
  font-size: 12px;
}
/* Color */
.uk-button-link {
  color: #e0d28f;
}
.uk-button-link:hover,
.uk-button-link:focus,
.uk-button-link:active,
.uk-button-link.uk-active {
  color: #d5c267;
  text-decoration: underline;
}
.uk-button-link:disabled {
  color: #666666;
}
/* Focus */
.uk-button-link:focus {
  outline: 1px dotted;
}
/* Size modifiers
 ========================================================================== */
.uk-button-mini {
  min-height: 25px;
  padding: 0 21px;
  line-height: 25px;
  font-size: 12px;
}
.uk-button-small {
  min-height: 25px;
  padding: 0 29px;
  line-height: 25px;
  font-size: 14px;
}
.uk-button-large {
  min-height: 50px;
  line-height: 50px;
  font-size: 18px;
  padding: 0 42px;
  border-radius: 1px;
}
/* Sub-object `uk-button-group`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 * 3. Remove whitespace between child elements when using `inline-block`
 * 4. Prevent buttons from wrapping
 * 5. Remove whitespace between child elements when using `inline-block`
 */
.uk-button-group {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  font-size: 0.001px;
  /* 4 */
  white-space: nowrap;
}
.uk-button-group > * {
  display: inline-block;
}
/* 5 */
.uk-button-group .uk-button {
  vertical-align: top;
}
/* Sub-object: `uk-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.uk-button-dropdown {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
}
.uk-button-small {
  padding: 0 29px;
}
.uk-button-mini {
  padding: 0 21px;
}
.uk-button-group > .uk-button:not(:first-child):not(:last-child),
.uk-button-group > div:not(:first-child):not(:last-child) .uk-button {
  border-radius: 0;
}
.uk-button-group > .uk-button:first-child,
.uk-button-group > div:first-child .uk-button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.uk-button-group > .uk-button:last-child,
.uk-button-group > div:last-child .uk-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.uk-button-group > .uk-button:nth-child(n+2),
.uk-button-group > div:nth-child(n+2) .uk-button {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}
.uk-button-group .uk-button:active {
  position: relative;
}
.uk-button-group .uk-button {
  padding: 0 20px;
}
.uk-button-group .uk-button-large {
  padding: 0 25px;
}
.uk-button-group .uk-button-small {
  padding: 0 17.5px;
}
.uk-button-group .uk-button-mini {
  padding: 0 12.5px;
}
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * This is the modal overlay and modal dialog container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Allow scrolling for the modal dialog
 * 4. Mask the background page
 * 5. Fade-in transition
 * 6. Deactivate browser history navigation in IE11
 * 7. force hardware acceleration to prevent browser rendering hiccups
 */
.uk-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  background: rgba(10, 10, 10, 0.6);
  /* 5 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  /* 6 */
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  /* 7 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/*
 * Open state
 */
.uk-modal.uk-open {
  opacity: 1;
}
/*
 * Prevents duplicated scrollbar caused by 4.
 */
.uk-modal-page,
.uk-modal-page body {
  overflow: hidden;
}
/* Sub-object: `uk-modal-dialog`
 ========================================================================== */
/*
 * 1. Create position context for caption, spinner and close button
 * 2. Set box sizing
 * 3. Set style
 * 4. Slide-in transition
 */
.uk-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 50px auto;
  padding: 30px;
  width: 600px;
  max-width: 100%;
  max-width: calc(100% - 20px);
  /* 3 */
  background: #222222;
  /* 4 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
  border-radius: 1px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Fit in small screen
     */
  .uk-modal-dialog {
    width: auto;
    margin: 10px auto;
  }
}
/*
 * Open state
 */
.uk-open .uk-modal-dialog {
  /* 4 */
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/*
 * Remove margin from the last-child
 */
.uk-modal-dialog > :not([class*='uk-modal-']):last-child {
  margin-bottom: 0;
}
/* Close in modal
 ========================================================================== */
.uk-modal-dialog > .uk-close:first-child {
  margin: -10px -10px 0 0;
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.uk-modal-dialog > .uk-close:first-child + :not([class*='uk-modal-']) {
  margin-top: 0;
}
/* Modifier: `uk-modal-dialog-lightbox`
 ========================================================================== */
.uk-modal-dialog-lightbox {
  margin: 15px auto;
  padding: 0;
  max-width: 95%;
  max-width: calc(100% - 30px);
  min-height: 50px;
  border-radius: 0;
}
/*
 * Close button
 */
.uk-modal-dialog-lightbox > .uk-close:first-child {
  position: absolute;
  top: -12px;
  right: -12px;
  margin: 0;
  float: none;
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .uk-modal-dialog-lightbox > .uk-close:first-child {
    top: -7px;
    right: -7px;
  }
}
/* Modifier: `uk-modal-dialog-blank`
 ========================================================================== */
.uk-modal-dialog-blank {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
/*
* Close button
*/
.uk-modal-dialog-blank > .uk-close:first-child {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  margin: 0;
  float: none;
}
/* Modifier: `uk-modal-dialog-large`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-modal-dialog-large {
    width: 930px;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-modal-dialog-large {
    width: 1130px;
  }
}
/* Sub-Object: `uk-modal-header` and `uk-modal-footer`
 ========================================================================== */
.uk-modal-header {
  margin-bottom: 25px;
  margin: -30px -30px 25px -30px;
  padding: 30px;
  border-bottom: 1px solid #181818;
  border-radius: 1px 1px 0 0;
  background: #1d1d1d;
}
.uk-modal-footer {
  margin-top: 25px;
  margin: 25px -30px -30px -30px;
  padding: 30px;
  border-top: 1px solid #181818;
  border-radius: 0 0 1px 1px;
  background: #1d1d1d;
}
/*
 * Remove margin from the last-child
 */
.uk-modal-header > :last-child,
.uk-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Sub-Object: `uk-modal-caption`
 ========================================================================== */
.uk-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin-bottom: -10px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Sub-Object: `uk-modal-spinner`
 ========================================================================== */
.uk-modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: #ddd;
}
.uk-modal-spinner:after {
  content: "\f110";
  display: block;
  font-family: FontAwesome;
  -webkit-animation: uk-rotate 2s infinite linear;
  animation: uk-rotate 2s infinite linear;
}
.uk-modal-dialog-blank .uk-modal-close {
  width: 42px;
  line-height: 42px;
}
.uk-modal-dialog-blank .uk-modal-close::after {
  font-size: 24px;
}
/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * This is the offcanvas overlay and bar container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Deactivate browser touch actions in IE11
 * 4. Mask the background page
 */
.uk-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  /* 3 */
  touch-action: none;
  /* 4 */
  background: rgba(25, 25, 25, 0.5);
}
.uk-offcanvas.uk-active {
  display: block;
}
/* Sub-object `uk-offcanvas-page`
 ========================================================================== */
/*
 * Prepares the whole HTML page to slide-out
 * 1. Fix the main page and disallow scrolling
 * 2. Side-out transition
 */
.uk-offcanvas-page {
  /* 1 */
  position: fixed;
  /* 2 */
  -webkit-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
}
/* Sub-object `uk-offcanvas-bar`
 ========================================================================== */
/*
 * This is the offcanvas bar
 * 1. Set fixed position
 * 2. Size and style
 * 3. Allow scrolling
 * 4. Side-out transition
 * 5. Deactivate scroll chaining in IE11
 */
.uk-offcanvas-bar {
  /* 1 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 1001;
  /* 2 */
  width: 280px;
  max-width: 100%;
  background: #111111;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  /* 5 */
  -ms-scroll-chaining: none;
}
.uk-offcanvas.uk-active .uk-offcanvas-bar.uk-offcanvas-bar-show {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
/* Modifier `uk-offcanvas-bar-flip`
 ========================================================================== */
.uk-offcanvas-bar-flip {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
/* Panel in offcanvas
 ========================================================================== */
.uk-offcanvas .uk-panel {
  margin: 20px 15px;
  color: rgba(102, 102, 102, 0.7);
}
.uk-offcanvas .uk-panel-title {
  color: #ffffff;
}
.uk-offcanvas .uk-panel a:not([class]) {
  color: rgba(179, 179, 179, 0.7);
}
.uk-offcanvas .uk-panel a:not([class]):hover {
  color: #ffffff;
}
.uk-offcanvas-bar:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
}
.uk-offcanvas-bar-flip:after {
  right: auto;
  left: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
}
/* Validation states
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Error state
 */
.uk-form-danger {
  border-color: #d05c5c !important;
  background: #222222 !important;
  color: #d05c5c !important;
}
/*
 * Success state
 */
.uk-form-success {
  border-color: #8ebc87 !important;
  background: #222222 !important;
  color: #8ebc87 !important;
}
/* Style modifiers
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Blank form
 */
.uk-form-blank {
  border-color: transparent !important;
  border-style: dashed !important;
  background: none !important;
}
.uk-form-blank:focus {
  border-color: #e0d28f !important;
  box-shadow: none;
}

.menu {
	background: #222222;
	height: 50px;
	z-index: 9;
}

.menu .uk-navbar-toggle {
	text-shadow: none;
	color: #e0d28f;
	line-height: 50px;
}

.menu .uk-navbar {
	background: #222222;
	border: 0;
}

.menu .uk-navbar-center {
	max-width: 90%;
}

.menu .uk-navbar li {
	height: 50px;
}

.menu .uk-navbar li:hover,.menu .uk-navbar li :hover {
	background: transparent;
}

.menu  nav li {
    border-radius: 0 !important;
}

.menu  nav li:active,
.menu  nav li:hover,
.menu  nav li:focus,
.menu  nav li a:active,
.menu  nav li a:hover,
.menu  nav li a:focus {
	color: #e0d28f;
    background: transparent;
}

.menu  nav li a:active,
.menu  nav li a:hover,
.menu  nav li a:focus {
	border-bottom: 2px solid;
 	-webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
}

.menu .uk-navbar a {
	color: #888888;
	text-shadow: none;
	line-height: 50px;
	height: 50px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
}

.menu .uk-navbar a:hover {
	cursor: pointer;
}

@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0)
	}
}

@-moz-keyframes scroll {
	0% {
		-moz-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-moz-transform: translate(-100%, 0);
		transform: translate(-100%, 0)
	}
}

@keyframes scroll {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-100%, 0)
	}
}

.marquee {
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	font-size: 18px;
}

.marquee span, 
.marquee .span {
	display: inline-block;
	padding-left: 100%;
	-webkit-animation: scroll 40s infinite linear;
	-moz-animation: scroll 40s infinite linear;
	animation: scroll 40s infinite linear;
}

.uk-alert {
	margin: 0px;
}

.marquee span:hover {
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	animation-play-state: paused;
}

.player {
	position: fixed;
    width: 100%;
	left: 0;
	bottom: -1px;
	height: 50px;
	line-height: 50px;
	background-color: #414141;
	border-top: 1px solid #2f2f2f;
	z-index: 9;
}

.player .rtplmain_window-mini {
    height: 50px;
    width: 100%;
}

.player .block-volume {
	line-height: 50px;
    height: 50px;
    display: inline-block;
    width: 320px;
    float: left;
    position: relative;
    margin-left: 20px;
}

.player .block-volume #rtplvolume-1 {
	height: 100%;
	width: 100%;
	background: transparent;
	border: 0;
}

.player .block-volume .progress {
	width: 100%;
	position: absolute;
	top: 24px;
	left: 0;
	height: 1px;
	background: #666;
}

.player .ui-slider-horizontal .ui-slider-range-min {
    background: #e0d28f;
    margin-top: 24px;
    height: 1px;
}

.player .ui-widget-content {
	background-color: #e0d28f;
}

.player .ui-slider-horizontal .ui-slider-handle {
    border: 0;
    border-radius: 0;
    top: 0.9em;
    width: 5px;
    height: 20px;
    background: #e0d28f;
}

.player .block-volume-action {
	display: inline-block;
	width: 120px;
	height: 50px;
	line-height: 50px;
}

.player .button_play_stop_style-14-mini {
    background-image: url('/img/player/gold/multimedia-1.svg');
    background-size: cover;
    background-position: 0;
    box-shadow: none;
    display: block;
    height: 25px;
    width: 40px;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    padding-top: 15px;
    margin-top: 5px;
    margin-left: 10px;
    float: left;
    outline: none;
}

.player .rtplmute-mini {
	display: inline-block;
    background-image: url('/img/player/gold/multimedia.svg');
    background-size: cover;
    background-position: 0;
    box-shadow: none;
    background-color: inherit;
    width: 40px;
    height: 40px;
    margin-top: 5px;
    margin-left: 15px;
    float: left;
}

.player .rtplcurrent_time-mini {
    display: none;
    font-size: 12px;
    color: #FFF;
    float: right;
    font-weight: normal;
    width: 63px;
}

.player .rtplmaxvol-mini {
	display: inline-block;
    background-image: url('/img/player/gold/technology-1.svg');
    background-size: cover;
    background-position: 0;
    box-shadow: none;
    background-color: inherit;
     width: 40px;
    height: 40px;
    margin-top: 5px;
    margin-left: 15px;
    float: right;
}

.player .rtplbutton_play_stop-mini.active {
    background-image: url('/img/player/gold/pause.svg');
}

.player .current .image {
	display: inline-block;
	float: left;
	margin-top: 5px;
	margin-right: 15px;
	width: 40px;
	height: 40px;
	background-position: center;
	background-size: cover;
}

.player .current .name {
	color: #e0d28f;
	font-size: 18px;
}

.player .current marquee {
    width: 80%;
}

.main {
	background-color: #222222;
	z-index: 1;
}

.main h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 35px;
    letter-spacing: 63px;
    margin-top: 2px;
    margin-bottom: 70px;
    margin-left: 60px;
}

.songs {
	/*background-image: url('/img/background/abstract-music.jpg');
	background-repeat: no-repeat;
	background-color: #222222;
	background-size: cover;
	background-position: center;
	z-index: 1;
	min-height: 800px;*/
    position: relative;
}

.songs .songs-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/background/abstract-music.jpg');
    background-position: 50% 50%;
    background-size: cover;
    z-index: -1;
}

.songs h2 {
	background-color: #292929; 
    font-size: 40px;
    font-line: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 0;
	color: #fff;
	font-weight: bold;
}

.songs .list {
    padding-top: 100px;
    padding-bottom: 100px;
}

.songs .uk-overlay-panel {
	padding: 10px;
}

.songs .list ul li figure {
	width: 100%;
}

.songs .list ul li figure .image {
	background-size: cover;
	background-position: 50% 50%;
	width: 100%;
	height: 240px;
}

.songs .uk-slidenav-position .uk-slidenav-previous {
	display: block;
	left: -70px;
	color: #e0d28f;
}

.songs .uk-slidenav-position .uk-slidenav-next {
	display: block;
	right: -70px;
	color: #e0d28f;
}


.posts {
	background: #222;
	z-index: 1;
}

.posts h2 {
	background-color: #292929; 
    font-size: 40px;
    font-line: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
	color: #fff;
	font-weight: bold;
}

.posts .uk-container {
    margin-top: 100px;
    padding-bottom: 100px;
}

.posts .list ul li {
	min-height: 180px;
	color: #888;
	overflow: hidden;
}

.posts .list ul li p {
	margin: 0;
}

.posts .uk-slidenav-position .uk-slidenav-previous {
	display: block;
	left: -70px;
	color: #e0d28f;
}

.posts .uk-slidenav-position .uk-slidenav-next {
	display: block;
	right: -70px;
	color: #e0d28f;
}

.maps {
	background-color: #222222;
}

.maps h2 {
	background-color: #292929; 
    font-size: 40px;
    font-line: 40px;
    margin: 0;
    padding-top: 100px;
    padding-bottom: 100px;
	color: #fff;
	font-weight: bold;
}

#GMap {
	width: 100%;
	margin-bottom: 50px;
}

.orders {
	background-color: #222222;
}

.orders h2 {
	background-color: #292929; 
    font-size: 40px;
    font-line: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
	color: #fff;
	font-weight: bold;
}

.orders .content {
    margin-top: 50px;
}

.orders .letterNav {
	text-align: center;
}

.orders .inp {
	width: 330px;
	height: 25px !important;
}

.orders .letterNav span {
	color: #e0d28f;
	font-size: 15px;
	font-weight: bold;
}
.orders .letterNav a {
	color: #e0d28f;
	font-size: 15px;
}

.orders .table-container {
    height: 880px;
}

.orders .uk-table {
	margin-bottom: 45px;
}

.orders .pageNav {
    margin-top: 50px;
    margin-bottom: 50px;
}

.orderDialog h2 {
	color: #fff;
}

.orderDialog textarea {
	height: 100px;
}

.arhive {
    position: relative;
}

.arhive h2 {
    background-color: #292929; 
    font-size: 40px;
    font-line: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
    font-weight: bold;
}

.arhive .arhive-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/background/archive.jpg');
    background-position: 50% 50%;
    background-size: cover;
    z-index: -1;
}

.arhive .content {
    background-color: #222; 
    margin-top: 90px;
    margin-bottom: 100px;
}

.arhive #arhive-content-player
{ 
	min-height: 572px;
}

.arhive .main-block-audios-blank, 
.arhive .main-block-audios-cinema, 
.arhive .main-block-audios-literature, 
.arhive .main-block-audios-other, 
.arhive .main-block-audios-program,
.arhive .main-block-audios-janr {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.arhive .item {
    padding: 50px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
}

.arhive .item:hover {
    cursor: pointer;
    background: #111;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
}

.arhive .item .icon {
    font-size: 50px;
}

.arhive .item .name {
    margin-top: 50px;
}

.arhive .item .name h3 {
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
}

.arhive .item .name p {

}

.arhive .content-ajax {
    overflow: hidden;
}

.arhive .uk-tab-center{
    border-bottom: 0;
}

.download {
    background-color: #222; 
}

.download h2 {
    background-color: #292929; 
	font-size: 40px;
	font-line: 40px;
	padding-top: 100px;
    padding-bottom: 100px;
	color: #fff;
	font-weight: bold;
}

.download .description {
    margin-top: 80px;
	margin-bottom: 80px;
}

.download .description img {
	margin-top: 40px;
}

.people {
    position: relative;
}

.people .people-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/background/abstract-music.jpg');
    background-position: 50% 50%;
    background-size: cover;
    z-index: -1;
}

.people h2 {
	background-color: #292929; 
    font-size: 40px;
    font-line: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 0;
	color: #fff;
	font-weight: bold;
}

.people .list {
    padding-top: 100px;
    padding-bottom: 100px;
}

.people .list ul li figure {
	width: 100%;
	border: 1px solid #000;
}

.people .list ul li figure:hover {
	cursor: pointer;
	border: 1px solid #e0d28f;
}

.people .list ul li figure .image {
	background-size: cover;
	background-position: 50% 50%;
	width: 100%;
	height: 230px;
}

.people .uk-slidenav-position .uk-slidenav-previous {
	display: block;
	left: -70px;
	color: #e0d28f;
}

.people .uk-slidenav-position .uk-slidenav-next {
	display: block;
	right: -70px;
	color: #e0d28f;
}

.content-info-people h2 {
	color: #fff;
}

.content-info-people p {
	color: #fff;
	font-size: 15px;
}


.contacts {
    background-color: #222; 
}

.contacts h2 {
    background-color: #292929; 
	font-size: 40px;
	font-line: 40px;
	padding-top: 100px;
    padding-bottom: 100px;
	color: #fff;
	font-weight: bold;
}

.contacts #feedback_form {
	margin: auto;
	margin-bottom: 95px;
}


.contacts #feedback_form textarea {
	height: 150px;
}

.contacts .uk-dropdown, 
.contacts .uk-dropdown-blank {
	width: auto;
}




@media (max-width: 780px) {
	.main h1 {
		letter-spacing: 40px;
		margin-left: 12px;
		margin-bottom: 25px;
	}
	
	.player {
		background-color: #414141;
	}

	.songs h2 {
		padding-top: 50px;
		padding-bottom: 50px;
		font-size: 30px;
	}
	
	.songs .list {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.songs .uk-slidenav-position .uk-slidenav-previous {
		left: -20px;
	}
	
	.songs .uk-slidenav-position .uk-slidenav-next {
		right: -20px;
	}
	
	.posts h2 {
		padding-top: 50px;
		padding-bottom: 50px;
		font-size: 30px;
	} 

	.posts .uk-container {
		margin-top: 60px;
		padding-bottom: 60px;
	}
	
	.posts .description {
		padding-left: 15px;
	}
	
	.posts .uk-slidenav-position .uk-slidenav-previous {
		left: -20px;
	}
	
	.posts .uk-slidenav-position .uk-slidenav-next {
		right: -20px;
	}
	
	.people .uk-slidenav-position .uk-slidenav-previous {
		left: -20px;
	}

	.people .uk-slidenav-position .uk-slidenav-next {
		right: -20px;
	}

	
	.maps h2 {
		padding-top: 50px;
		padding-bottom: 50px;
		font-size: 30px;
	}
	
	.orders h2 {
		padding-top: 50px;
		padding-bottom: 50px;
		font-size: 30px;
	}
	
	.orders .inp {
		width: 210px;
	}

	.orders .table-container {
		height: auto;
	}

	.orders .uk-table thead {
		display: none;
	}	

	.orders .uk-table tr {
		display: block;
		border-bottom: 1px solid #2f2f2f;
	}

	.uk-table th, .uk-table td {
		display: block;
		border: none;
		text-align: center;
	}

	.arhive h2 {
		padding-top: 50px;
		padding-bottom: 50px;
		font-size: 30px;
	}

	.download h2 {
		padding-top: 50px;
		padding-bottom: 50px;
		font-size: 30px;
	}

	.download .description {
		margin-top: 50px;
		margin-bottom: 50px;
	}

	.contacts h2 {
		padding-top: 50px;
		padding-bottom: 50px;
		font-size: 30px;
	}
}


