/* Loader
-----------------------------------------------------------------------------*/
#page-preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 100500;
}
.spinner {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 50px;
  height: 30px;
  /* background: @orange;
  border-radius:50px;
  animation: preloader_5 1.5s infinite linear;
  &:after {
    position: absolute;
    width: 50px;
    height: 50px;
    border-top: 10px solid @greyText;
    border-bottom: 10px solid @greyText;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-radius: 50px;
    content: '';
    top: -20px;
    left: -20px;
    animation: preloader_5_after 1.5s infinite linear;
  }*/
}
/*

@keyframes preloader_5 {
  0% {transform: rotate(0deg);}
  50% {transform: rotate(180deg);background:#2ecc71;}
  100% {transform: rotate(360deg);}
}
@keyframes preloader_5_after {
  0% {border-top:10px solid #9b59b6;border-bottom:10px solid #9b59b6;}
  50% {border-top:10px solid #3498db;border-bottom:10px solid #3498db;}
  100% {border-top:10px solid #9b59b6;border-bottom:10px solid #9b59b6;}
}*/
.spinner span {
  display: block;
  bottom: 0px;
  width: 9px;
  height: 5px;
  background: #9b59b6;
  position: absolute;
  -webkit-animation: preloader_1 1.5s infinite ease-in-out;
          animation: preloader_1 1.5s infinite ease-in-out;
}
.spinner span:nth-child(2) {
  left: 11px;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}
.spinner span:nth-child(3) {
  left: 22px;
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}
.spinner span:nth-child(4) {
  left: 33px;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}
.spinner span:nth-child(5) {
  left: 44px;
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}
@-webkit-keyframes preloader_1 {
  0% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: #9b59b6;
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    background: #3498db;
  }
  50% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: #9b59b6;
  }
  100% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: #9b59b6;
  }
}
@keyframes preloader_1 {
  0% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: #9b59b6;
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    background: #3498db;
  }
  50% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: #9b59b6;
  }
  100% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: #9b59b6;
  }
}
/* reset styles
-----------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
q:before,
blockquote:after,
q:after {
  content: '';
}
input:focus,
textarea:focus,
a:focus,
button:focus,
select:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del,
s,
strike {
  text-decoration: line-through;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
  margin: 0;
}
/* Common classes
-----------------------------------------------------------------------------*/
.clear {
  clear: both;
}
.clear-fix:after,
.container:after,
.container-fluid:after,
.row:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.webkit-flicker-fix {
  -webkit-backface-visibility: hidden;
}
.webkit-border-radius-fix {
  -webkit-mask-image: -webkit-radial-gradient(circle, #ffffff, #000000);
  -webkit-backface-visibility: hidden;
}
/* positioning
-----------------------------------------------------------------------------*/
.pa {
  position: absolute;
}
.pr {
  position: relative;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/* sizing
-----------------------------------------------------------------------------*/
.full-width,
input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=tel],
input[type=url],
textarea,
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=range],
input[type=color] {
  box-sizing: border-box;
  width: 100%;
}
/* transitions
-----------------------------------------------------------------------------*/
a,
a *,
a:before,
a:after {
  transition: all 200ms ease;
}
/* --- */
.td-none {
  text-decoration: none;
}
.td-none:hover {
  text-decoration: underline;
}
.RobotoCondensed {
  font-family: 'Roboto Condensed', sans-serif;
}
.logo-font {
  font-family: 'Graduate', cursive;
}
.ul-default {
  margin: 0;
  padding: 0;
  list-style: none;
}
.border {
  border: 1px solid rgba(102, 102, 102, 0.3);
}
.gradient {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkaWVudCkiIC8+PC9zdmc+');
  background-image: linear-gradient(to bottom, #191919 0%, #000000 100%);
}
.lt-ie-9 .gradient {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff191919', endColorstr='#ff000000', GradientType=0);
}
.no-animation {
  -webkit-animation-name: none !important;
          animation-name: none !important;
}
.base-margin-bottom,
h1,
h2,
h3,
h4,
h4,
h5,
h6,
p,
ul,
ol,
table,
blockquote,
.content .row {
  margin-bottom: 10px;
}
.base-margin-bottom:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
table:last-child,
blockquote:last-child,
.content .row:last-child {
  margin-bottom: 0;
}
body,
input,
button,
select,
textarea {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 14px;
  color: #666666;
}
body {
  line-height: 1.42857143;
}
a {
  color: #ff9900;
  outline: none;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
img {
  border: none;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
h1 {
  font-size: 36px;
  font-weight: 300;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}
ul,
ol {
  padding-left: 20px;
}
ul.unstyled,
ol.unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
pre,
code {
  font-family: monospace;
}
.content {
  /* grid
-----------------------------------------------------------------------------*/
  /* table
-----------------------------------------------------------------------------*/
}
.content blockquote {
  border-left: 2px solid #ccc;
  background: #f2f2f2;
  padding: 10px;
}
.content q:before {
  content: '“';
}
.content q:after {
  content: '”';
}
.content thead th {
  border-bottom: 2px solid #ccc;
}
.content tbody td {
  border-bottom: 1px solid #ccc;
}
.content tbody tr:nth-child(even) td {
  background: #f2f2f2;
}
.content th,
.content td {
  padding: 10px;
}
.page-content blockquote {
  border-left: 5px solid #666666;
  background: #151515;
  padding: 8px 8px 8px 15px;
}
.page-content blockquote:after,
.page-content blockquote:before,
.page-content blockquote q:after,
.page-content blockquote q:before {
  content: none;
}
.page-content .table-responsive {
  min-height: .01%;
  overflow-x: auto;
  margin-bottom: 18px;
}
.page-content .table-responsive:last-child {
  margin-bottom: 0;
}
.page-content .table {
  width: 100%;
}
.page-content .table tr:nth-child(odd) td {
  background: rgba(21, 21, 21, 0.5);
}
.page-content .table th,
.page-content .table td {
  padding: 5px;
  border: 1px solid rgba(102, 102, 102, 0.3);
}
.page-content .table th {
  background: #151515;
}
hr {
  border: 0;
  height: 1px;
  background: #666666;
  margin: 1em 0;
}
.mark {
  color: #ff9900;
  font-weight: 600;
}
/* inputs
-----------------------------------------------------------------------------*/
input {
  vertical-align: middle;
}
input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=tel],
input[type=url],
textarea,
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=range],
input[type=color] {
  display: block;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
}
textarea {
  overflow: auto;
}
input[type=button],
input[type=reset],
input[type=submit],
button {
  -webkit-appearance: button;
  cursor: pointer;
}
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* button
-----------------------------------------------------------------------------*/
.btn {
  display: inline-block;
}
.btn.block {
  display: block;
  margin-bottom: 0;
  text-align: center;
}
.btn.block .button,
.btn.block button,
.btn.block input {
  display: block;
}
.btn.orange button {
  background: #ff9900;
  color: #000;
}
.btn.orange button:hover {
  background: #F58007;
  color: #fff;
}
.btn .button,
.btn button,
.btn input {
  margin: 0;
  border: none;
  background: #2f2f2f;
  color: #acacac;
  padding: 2px 5px;
  border-radius: 3px;
  height: 24px;
  text-decoration: none;
  transition: 400ms;
}
.btn .button:hover,
.btn button:hover,
.btn input:hover {
  transition: 400ms;
  color: #000;
  background-color: #ff9900;
}
.btn button {
  width: 100%;
  box-sizing: border-box;
}
.text {
  display: inline-block;
}
.text input {
  padding: 4px 8px;
  height: 24px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2), inset -2px -2px 5px rgba(0, 0, 0, 0.2);
}
.text input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.text input:focus::-moz-placeholder {
  opacity: 0;
}
.text input:focus:-ms-input-placeholder {
  opacity: 0;
}
.text input:focus::placeholder {
  opacity: 0;
}
.lte-ie-8 .text input:focus::-webkit-input-placeholder {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.lte-ie-8 .text input:focus::-moz-placeholder {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.lte-ie-8 .text input:focus:-ms-input-placeholder {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.lte-ie-8 .text input:focus::placeholder {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
/* form styler
-----------------------------------------------------------------------------*/
.select {
  display: inline-block;
}
.select.filter .jq-selectbox {
  max-width: 120px;
}
.jq-selectbox {
  cursor: pointer;
  vertical-align: middle;
}
.jq-selectbox .jq-selectbox__select {
  height: 24px;
  line-height: 24px;
  padding: 0 45px 0 10px;
  border: 1px solid #666666;
  border-radius: 4px;
  color: #666666;
}
.jq-selectbox .jq-selectbox__select-text {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.jq-selectbox .jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
  border-left: 1px solid #666666;
}
.jq-selectbox .jq-selectbox__trigger-arrow {
  position: absolute;
  top: 11px;
  right: 12px;
  width: 0;
  height: 0;
  overflow: hidden;
  border-top: 5px solid #666666;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.jq-selectbox .jq-selectbox__dropdown {
  top: 33px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 1px solid #666666;
  border-radius: 4px;
  background: #000;
}
.jq-selectbox .jq-selectbox__dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jq-selectbox .jq-selectbox__dropdown ul li {
  padding: 3px 10px;
}
.jq-selectbox .jq-selectbox__dropdown ul li:hover {
  background: #666666;
  color: #151515;
}
html {
  height: 100%;
}
.no-flexbox body {
  min-height: 100%;
  height: 100%;
  display: block !important;
}
.page-wrapper,
.footer {
  max-width: none;
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
}
.no-flexbox .page-wrapper,
.no-flexbox .footer {
  width: auto;
}
.page-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  background: #000000 url(../images/bg-main.jpg) 50% 0 no-repeat;
}
.lte-ie-11 .page-wrapper,
.lt-ie-11 .page-wrapper {
  min-height: 0;
}
.no-flexbox .page-wrapper {
  display: block !important;
  width: auto;
  min-height: 100%;
  height: auto !important;
  height: 100%;
}
.page-body {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page-body.flex-none {
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
.wrapper {
  position: relative;
}
/* responsive text align
-----------------------------------------------------------------------------*/
.text-xs-left {
  text-align: left;
}
.text-xs-right {
  text-align: right;
}
.text-xs-center {
  text-align: center;
}
.text-xs-justify {
  text-align: justify;
}
@media (min-width: 768px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-justify {
    text-align: justify;
  }
}
@media (min-width: 992px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-justify {
    text-align: justify;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-justify {
    text-align: justify;
  }
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container {
    width: 740px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1160px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
.row {
  margin-left: -10px;
  margin-right: -10px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-fifth-xs-1, .col-fifth-sm-1, .col-fifth-md-1, .col-fifth-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-fifth-xs-2, .col-fifth-sm-2, .col-fifth-md-2, .col-fifth-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-fifth-xs-3, .col-fifth-sm-3, .col-fifth-md-3, .col-fifth-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-fifth-xs-4, .col-fifth-sm-4, .col-fifth-md-4, .col-fifth-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-fifth-xs-5, .col-fifth-sm-5, .col-fifth-md-5, .col-fifth-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-fifth-xs-6, .col-fifth-sm-6, .col-fifth-md-6, .col-fifth-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-fifth-xs-7, .col-fifth-sm-7, .col-fifth-md-7, .col-fifth-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-fifth-xs-8, .col-fifth-sm-8, .col-fifth-md-8, .col-fifth-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-fifth-xs-9, .col-fifth-sm-9, .col-fifth-md-9, .col-fifth-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-fifth-xs-10, .col-fifth-sm-10, .col-fifth-md-10, .col-fifth-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-fifth-xs-11, .col-fifth-sm-11, .col-fifth-md-11, .col-fifth-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-fifth-xs-12, .col-fifth-sm-12, .col-fifth-md-12, .col-fifth-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
.col-xs-1, .col-fifth-xs-1, .col-xs-2, .col-fifth-xs-2, .col-xs-3, .col-fifth-xs-3, .col-xs-4, .col-fifth-xs-4, .col-xs-5, .col-fifth-xs-5, .col-xs-6, .col-fifth-xs-6, .col-xs-7, .col-fifth-xs-7, .col-xs-8, .col-fifth-xs-8, .col-xs-9, .col-fifth-xs-9, .col-xs-10, .col-fifth-xs-10, .col-xs-11, .col-fifth-xs-11, .col-xs-12, .col-fifth-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-fifth-xs-5 {
  width: 100%;
}
.col-fifth-xs-4 {
  width: 80%;
}
.col-fifth-xs-3 {
  width: 60%;
}
.col-fifth-xs-2 {
  width: 40%;
}
.col-fifth-xs-1 {
  width: 20%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-fifth-xs-pull-5 {
  right: 100%;
}
.col-fifth-xs-pull-4 {
  right: 80%;
}
.col-fifth-xs-pull-3 {
  right: 60%;
}
.col-fifth-xs-pull-2 {
  right: 40%;
}
.col-fifth-xs-pull-1 {
  right: 20%;
}
.col-fifth-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-fifth-xs-push-5 {
  left: 100%;
}
.col-fifth-xs-push-4 {
  left: 80%;
}
.col-fifth-xs-push-3 {
  left: 60%;
}
.col-fifth-xs-push-2 {
  left: 40%;
}
.col-fifth-xs-push-1 {
  left: 20%;
}
.col-fifth-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
.col-fifth-xs-offset-5 {
  margin-left: 100%;
}
.col-fifth-xs-offset-4 {
  margin-left: 80%;
}
.col-fifth-xs-offset-3 {
  margin-left: 60%;
}
.col-fifth-xs-offset-2 {
  margin-left: 40%;
}
.col-fifth-xs-offset-1 {
  margin-left: 20%;
}
.col-fifth-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-fifth-sm-1, .col-sm-2, .col-fifth-sm-2, .col-sm-3, .col-fifth-sm-3, .col-sm-4, .col-fifth-sm-4, .col-sm-5, .col-fifth-sm-5, .col-sm-6, .col-fifth-sm-6, .col-sm-7, .col-fifth-sm-7, .col-sm-8, .col-fifth-sm-8, .col-sm-9, .col-fifth-sm-9, .col-sm-10, .col-fifth-sm-10, .col-sm-11, .col-fifth-sm-11, .col-sm-12, .col-fifth-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-fifth-sm-5 {
    width: 100%;
  }
  .col-fifth-sm-4 {
    width: 80%;
  }
  .col-fifth-sm-3 {
    width: 60%;
  }
  .col-fifth-sm-2 {
    width: 40%;
  }
  .col-fifth-sm-1 {
    width: 20%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-fifth-sm-pull-5 {
    right: 100%;
  }
  .col-fifth-sm-pull-4 {
    right: 80%;
  }
  .col-fifth-sm-pull-3 {
    right: 60%;
  }
  .col-fifth-sm-pull-2 {
    right: 40%;
  }
  .col-fifth-sm-pull-1 {
    right: 20%;
  }
  .col-fifth-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-fifth-sm-push-5 {
    left: 100%;
  }
  .col-fifth-sm-push-4 {
    left: 80%;
  }
  .col-fifth-sm-push-3 {
    left: 60%;
  }
  .col-fifth-sm-push-2 {
    left: 40%;
  }
  .col-fifth-sm-push-1 {
    left: 20%;
  }
  .col-fifth-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-fifth-sm-offset-5 {
    margin-left: 100%;
  }
  .col-fifth-sm-offset-4 {
    margin-left: 80%;
  }
  .col-fifth-sm-offset-3 {
    margin-left: 60%;
  }
  .col-fifth-sm-offset-2 {
    margin-left: 40%;
  }
  .col-fifth-sm-offset-1 {
    margin-left: 20%;
  }
  .col-fifth-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-fifth-md-1, .col-md-2, .col-fifth-md-2, .col-md-3, .col-fifth-md-3, .col-md-4, .col-fifth-md-4, .col-md-5, .col-fifth-md-5, .col-md-6, .col-fifth-md-6, .col-md-7, .col-fifth-md-7, .col-md-8, .col-fifth-md-8, .col-md-9, .col-fifth-md-9, .col-md-10, .col-fifth-md-10, .col-md-11, .col-fifth-md-11, .col-md-12, .col-fifth-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-fifth-md-5 {
    width: 100%;
  }
  .col-fifth-md-4 {
    width: 80%;
  }
  .col-fifth-md-3 {
    width: 60%;
  }
  .col-fifth-md-2 {
    width: 40%;
  }
  .col-fifth-md-1 {
    width: 20%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-fifth-md-pull-5 {
    right: 100%;
  }
  .col-fifth-md-pull-4 {
    right: 80%;
  }
  .col-fifth-md-pull-3 {
    right: 60%;
  }
  .col-fifth-md-pull-2 {
    right: 40%;
  }
  .col-fifth-md-pull-1 {
    right: 20%;
  }
  .col-fifth-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-fifth-md-push-5 {
    left: 100%;
  }
  .col-fifth-md-push-4 {
    left: 80%;
  }
  .col-fifth-md-push-3 {
    left: 60%;
  }
  .col-fifth-md-push-2 {
    left: 40%;
  }
  .col-fifth-md-push-1 {
    left: 20%;
  }
  .col-fifth-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-fifth-md-offset-5 {
    margin-left: 100%;
  }
  .col-fifth-md-offset-4 {
    margin-left: 80%;
  }
  .col-fifth-md-offset-3 {
    margin-left: 60%;
  }
  .col-fifth-md-offset-2 {
    margin-left: 40%;
  }
  .col-fifth-md-offset-1 {
    margin-left: 20%;
  }
  .col-fifth-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-fifth-lg-1, .col-lg-2, .col-fifth-lg-2, .col-lg-3, .col-fifth-lg-3, .col-lg-4, .col-fifth-lg-4, .col-lg-5, .col-fifth-lg-5, .col-lg-6, .col-fifth-lg-6, .col-lg-7, .col-fifth-lg-7, .col-lg-8, .col-fifth-lg-8, .col-lg-9, .col-fifth-lg-9, .col-lg-10, .col-fifth-lg-10, .col-lg-11, .col-fifth-lg-11, .col-lg-12, .col-fifth-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-fifth-lg-5 {
    width: 100%;
  }
  .col-fifth-lg-4 {
    width: 80%;
  }
  .col-fifth-lg-3 {
    width: 60%;
  }
  .col-fifth-lg-2 {
    width: 40%;
  }
  .col-fifth-lg-1 {
    width: 20%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-fifth-lg-pull-5 {
    right: 100%;
  }
  .col-fifth-lg-pull-4 {
    right: 80%;
  }
  .col-fifth-lg-pull-3 {
    right: 60%;
  }
  .col-fifth-lg-pull-2 {
    right: 40%;
  }
  .col-fifth-lg-pull-1 {
    right: 20%;
  }
  .col-fifth-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-fifth-lg-push-5 {
    left: 100%;
  }
  .col-fifth-lg-push-4 {
    left: 80%;
  }
  .col-fifth-lg-push-3 {
    left: 60%;
  }
  .col-fifth-lg-push-2 {
    left: 40%;
  }
  .col-fifth-lg-push-1 {
    left: 20%;
  }
  .col-fifth-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-fifth-lg-offset-5 {
    margin-left: 100%;
  }
  .col-fifth-lg-offset-4 {
    margin-left: 80%;
  }
  .col-fifth-lg-offset-3 {
    margin-left: 60%;
  }
  .col-fifth-lg-offset-2 {
    margin-left: 40%;
  }
  .col-fifth-lg-offset-1 {
    margin-left: 20%;
  }
  .col-fifth-lg-offset-0 {
    margin-left: 0%;
  }
}
/* Product classes
-----------------------------------------------------------------------------*/
.products {
  overflow: hidden;
}
.product-box {
  padding: 10px;
  background: #151515;
  border-radius: 5px;
  margin-bottom: 30px;
  position: relative;
}
.product-box:hover {
  background: #222222;
}
.product-box .img-box {
  margin-bottom: 10px;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: rgba(102, 102, 102, 0.3);
}
.product-box .img-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  box-sizing: border-box;
  transition: 500ms;
}
.product-box .img-box .rating-box {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 5px;
  z-index: 4;
}
.product-box .img-box .product-img {
  width: 100%;
}
.product-box .img-box:hover:after {
  transition: 500ms;
  border-color: #666666;
  background: rgba(21, 21, 21, 0.5);
}
.product-box .img-box:hover .controls li {
  opacity: 1;
  transition: left 700ms, right 700ms, opacity 900ms;
}
.lte-ie-8 .product-box .img-box:hover .controls li {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.product-box .img-box:hover .controls li.left {
  left: 0;
}
.product-box .img-box:hover .controls li.right {
  right: 0;
}
.product-box .product-title {
  font-size: 18px;
  text-align: center;
  line-height: 20px;
}
.product-box .product-title a {
  text-decoration: none;
}
.product-box .product-title a:hover {
  text-decoration: underline;
}
.product-box .label {
  position: absolute;
  bottom: 40px;
  left: 0;
  padding: 2px 15px;
  z-index: 5;
  color: #fff;
  background: #ff9900;
  text-shadow: 0 0 2px #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.product-box .label:after {
  position: absolute;
  right: -10px;
  top: 0;
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 12px 0;
  border-color: #ff9900 transparent #ff9900 #ff9900;
  -webkit-transform: scale(0.9999);
      -ms-transform: scale(0.9999);
          transform: scale(0.9999);
}
.product-box .controls {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 15;
  font-size: 24px;
  line-height: 24px;
  margin-top: -22px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.product-box .controls li {
  position: relative;
  display: inline-block;
  opacity: 0;
  transition: 700ms;
}
.lte-ie-8 .product-box .controls li {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.product-box .controls li.left {
  left: -100%;
}
.product-box .controls li.right {
  right: -100%;
}
.product-box .controls a {
  background: #ff9900;
  color: #fff;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border: 1px solid rgba(140, 103, 47, 0.9);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}
.product-box .controls a:hover {
  background-color: #F58007;
  color: #FFDB00;
}
/* product info
-----------------------------------------------------------------------------*/
.product-info:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.product-info .left-box {
  float: left;
  width: 250px;
  margin: 0 20px 10px 0;
}
.product-info .left-box .img-box {
  border: 1px solid #666666;
  margin-bottom: 12px;
}
.product-info .left-box .img-box img {
  width: 100%;
}
.product-info .left-box .rating-box ul {
  width: 150px;
  margin: 0 auto;
}
.product-info .left-box .rating-box ul a {
  transition: none;
}
.product-info .info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  font-size: 15px;
}
.product-info .info-list li {
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.tabs-box .tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  border-bottom: 1px solid #666666;
}
.tabs-box .tabs:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.tabs-box .tabs li {
  float: right;
  margin-left: 5px;
}
.tabs-box .tabs a {
  display: inline-block;
  text-decoration: none;
  background: #151515;
  border: solid #666666;
  border-width: 1px 1px 0 1px;
  color: #666666;
  padding: 2px 15px;
}
.tabs-box .tabs a:hover {
  background: #ff9900;
  color: #151515;
}
.tabs-box .tabs a.active {
  background: #666666;
  color: #ccc;
}
.tabs-box .tab {
  background: #151515;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
}
/* nav
-----------------------------------------------------------------------------*/
nav {
  margin-bottom: 30px;
  background: #151515;
  border-radius: 5px;
  border: 1px solid rgba(102, 102, 102, 0.3);
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkaWVudCkiIC8+PC9zdmc+');
  background-image: linear-gradient(to bottom, #191919 0%, #000000 100%);
}
.lt-ie-9 nav {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff191919', endColorstr='#ff000000', GradientType=0);
}
nav:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.uMenuRoot {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 21px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkaWVudCkiIC8+PC9zdmc+');
  background-image: linear-gradient(to bottom, #191919 0%, #000000 100%);
}
.lt-ie-9 .uMenuRoot {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff191919', endColorstr='#ff000000', GradientType=0);
}
.uMenuRoot > li {
  float: left;
  position: relative;
}
.uMenuRoot > li:hover > a {
  color: #ff9900;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkaWVudCkiIC8+PC9zdmc+');
  background-image: linear-gradient(to bottom, #000000 0%, #191919 100%);
}
.lt-ie-9 .uMenuRoot > li:hover > a {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff000000', endColorstr='#ff191919', GradientType=0);
}
.uMenuRoot > li + li {
  border-left: 1px solid rgba(102, 102, 102, 0.3);
}
.uMenuRoot > li:last-child {
  border-right: 1px solid rgba(102, 102, 102, 0.3);
}
.uMenuRoot a {
  text-decoration: none;
  display: block;
  padding: 10px 20px;
  color: #666666;
}
.uMenuRoot a:hover {
  color: #ff9900;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkaWVudCkiIC8+PC9zdmc+');
  background-image: linear-gradient(to bottom, #000000 0%, #191919 100%);
}
.lt-ie-9 .uMenuRoot a:hover {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff000000', endColorstr='#ff191919', GradientType=0);
}
.uMenuRoot ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  white-space: nowrap;
  z-index: 10;
  background: #151515;
  border: 1px solid rgba(102, 102, 102, 0.3);
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkaWVudCkiIC8+PC9zdmc+');
  background-image: linear-gradient(to bottom, #191919 0%, #000000 100%);
  border-radius: 0 0 3px 3px;
  display: none;
}
.lt-ie-9 .uMenuRoot ul {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff191919', endColorstr='#ff000000', GradientType=0);
}
.uMenuRoot ul li {
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
/* pager
-----------------------------------------------------------------------------*/
.catPages1,
.pager {
  text-align: center;
}
.catPages1:after,
.pager:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.catPages1 .pgSwch,
.pager .pgSwch,
.catPages1 .pgSwchA,
.pager .pgSwchA,
.catPages1 .swchItemA1,
.pager .swchItemA1,
.catPages1 .swchItemA,
.pager .swchItemA,
.catPages1 .swchItem,
.pager .swchItem,
.catPages1 .swchItem1,
.pager .swchItem1 {
  display: inline-block;
  padding: 5px 15px;
  background: #ff9900;
  border-radius: 3px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid transparent;
  transition: 200ms;
  margin: 0 5px;
}
.catPages1 .swchItemA,
.pager .swchItemA,
.catPages1 .swchItem:hover,
.pager .swchItem:hover,
.catPages1 .swchItemA1,
.pager .swchItemA1,
.catPages1 .swchItem1:hover,
.pager .swchItem1:hover,
.catPages1 .pgSwch:hover,
.pager .pgSwch:hover,
.catPages1 .pgSwchA,
.pager .pgSwchA {
  transition: 200ms;
  background: #151515;
  border-color: rgba(102, 102, 102, 0.3);
  color: #ff9900;
}
/* social list
-----------------------------------------------------------------------------*/
.social-list {
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 5px 5px 0 0;
}
.social-list li {
  float: left;
  margin-left: 5px;
}
.social-list a {
  display: inline-block;
  border: 1px solid rgba(102, 102, 102, 0.3);
  text-decoration: none;
  padding: 8px;
  min-width: 20px;
  text-align: center;
  border-radius: 3px;
  font-size: 16px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkaWVudCkiIC8+PC9zdmc+');
  background-image: linear-gradient(to bottom, #191919 0%, #000000 100%);
}
.lt-ie-9 .social-list a {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff191919', endColorstr='#ff000000', GradientType=0);
}
.social-list a:hover {
  background: #ff9900;
  color: #000;
  transition: none;
}
/* content
-----------------------------------------------------------------------------*/
.content-area {
  background: #000;
  border: 1px solid rgba(102, 102, 102, 0.3);
  border-radius: 5px;
}
.content-area .content-info {
  padding: 20px;
}
.content-area .product-box {
  margin: 0;
}
.content-area .title {
  border-radius: 0;
  border: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
/* title
-----------------------------------------------------------------------------*/
.title {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkaWVudCkiIC8+PC9zdmc+');
  background-image: linear-gradient(to bottom, #191919 0%, #000000 100%);
  color: #666666;
  font-weight: 300;
  margin: 0;
  padding: 5px 25px;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  border-radius: 5px;
  border: 1px solid rgba(102, 102, 102, 0.3);
  margin-bottom: 20px;
}
.lt-ie-9 .title {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff191919', endColorstr='#ff000000', GradientType=0);
}
/* slider
-----------------------------------------------------------------------------*/
.slider {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
}
.slider .slick-list {
  overflow: hidden;
}
.slider .slide {
  float: left;
}
.slider .btn-slick {
  position: absolute;
  top: -67px;
  border: 1px solid rgba(102, 102, 102, 0.3);
  color: #666666;
  height: 36px;
  line-height: 32px;
  font-size: 32px;
  border-radius: 3px;
  background: #151515;
  width: 30px;
  text-align: center;
  cursor: pointer;
}
.slider .btn-slick:hover {
  background: #ff9900;
  color: #000;
}
.slider .btn-slick.next {
  right: 0;
}
.slider .btn-slick.prev {
  right: 40px;
}
/* informer slider
-----------------------------------------------------------------------------*/
.informer-slider {
  position: relative;
  -webkit-backface-visibility: hidden;
  z-index: 5;
  -webkit-transform: rotate(0.05deg);
      -ms-transform: rotate(0.05deg);
          transform: rotate(0.05deg);
}
.informer-slider .slide {
  width: 100%;
  padding: 0 10px;
}
.informer-slider .slide img {
  width: 100%;
}
/* main slider
-----------------------------------------------------------------------------*/
.main-slider {
  -webkit-backface-visibility: hidden;
  z-index: 6;
  -webkit-transform: rotate(0.05deg);
      -ms-transform: rotate(0.05deg);
          transform: rotate(0.05deg);
}
.main-slider:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.main-slider .slick-list {
  overflow: hidden;
}
.main-slider .thumbnail {
  float: left;
  width: 400px;
  margin-right: 40px;
}
.main-slider .thumbnail .slick-list {
  padding-right: 20px !important;
}
.main-slider .thumbnail .slide {
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #666666;
  padding: 10px 0 10px 10px;
}
.main-slider .thumbnail .slide:hover {
  background: rgba(21, 21, 21, 0.6);
}
.main-slider .thumbnail .img-box {
  float: left;
  border: 1px solid rgba(102, 102, 102, 0.3);
  margin-right: 20px;
  width: 100px;
  text-align: center;
}
.main-slider .thumbnail .img-box img {
  max-height: 126px;
}
.main-slider .thumbnail .wrap {
  height: 126px;
  overflow: hidden;
}
.main-slider .thumbnail .thumbnail-title {
  font-size: 21px;
  margin-bottom: 8px;
  line-height: normal;
}
.main-slider .thumbnail .slick-center {
  background: #151515;
}
.main-slider .thumbnail .slick-center:hover {
  background: #151515;
}
.main-slider .thumbnail .slick-center:after {
  content: '';
  width: 5px;
  position: absolute;
  right: 0;
  top: 0px;
  bottom: 0px;
  background: #ff9900;
}
.main-slider .thumbnail .slick-center:before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -10px;
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
  border-width: 10px 0 10px 10px;
  border-left-color: #ff9900;
  border-top-color: transparent;
  border-bottom-color: transparent;
  -webkit-transform: scale(0.9999);
      -ms-transform: scale(0.9999);
          transform: scale(0.9999);
}
.main-slider .slide-info {
  overflow: hidden;
  position: relative;
}
.main-slider .slide-info .video-box {
  height: 400px;
  margin-bottom: 20px;
}
.main-slider .slide-info .video-box iframe {
  height: 100% !important;
  width: 100% !important;
  background: url('img/preload.gif') no-repeat 50%;
}
.main-slider .slide-info .slick-dots {
  margin: 0;
  padding: 2px;
  list-style: none;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
}
.main-slider .slide-info .slick-dots li {
  float: left;
}
.main-slider .slide-info .slick-dot {
  display: inline-block;
  background: #151515;
  width: 10px;
  height: 10px;
  cursor: pointer;
  margin-right: 5px;
  vertical-align: middle;
  border: 2px solid rgba(21, 21, 21, 0.3);
}
.main-slider .slide-info .slick-active .slick-dot,
.main-slider .slide-info .slick-dot:hover {
  border-color: #ff9900;
}
/* News-box
-----------------------------------------------------------------------------*/
.all-news {
  float: right;
  margin: 16px 16px 0 0;
}
.news-box {
  margin-bottom: 30px;
  background: #151515;
  padding: 20px;
  position: relative;
}
.news-box .img-box {
  margin-bottom: 18px;
  padding: 10px;
  background: #2f2f2f;
}
.news-box .img-box img {
  width: 100%;
}
.news-box .news-title {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: bold;
}
.news-box .news-text {
  margin-bottom: 12px;
}
.news-box .more {
  padding: 3px 10px;
}
/* Aside
-----------------------------------------------------------------------------*/
.block {
  margin-bottom: 18px;
}
.block .blocktitle {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkaWVudCkiIC8+PC9zdmc+');
  background-image: linear-gradient(to bottom, #191919 0%, #000000 100%);
  font-size: 18px;
  padding: 5px 15px;
}
.lt-ie-9 .block .blocktitle {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff191919', endColorstr='#ff000000', GradientType=0);
}
.block .blockcontent {
  padding: 15px;
  background: #151515;
}
.btn .button.add {
  padding: 10px;
  text-transform: uppercase;
  height: auto;
}
/* breadcrumb
-----------------------------------------------------------------------------*/
.breadcrumb {
  margin: 0 0 8px;
  padding: 0 0 8px;
  list-style: none;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
.breadcrumb:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.breadcrumb li {
  float: left;
}
.breadcrumb li + li:before {
  content: '\00bb';
  margin: 0 5px;
}
.breadcrumb a {
  color: #666666;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb a:hover {
  color: #ff9900;
}
/* menu link
-----------------------------------------------------------------------------*/
.menu-link {
  color: #666666;
  font-size: 21px;
  text-decoration: none;
  display: inline-block;
  padding: 11px 15px;
}
.menu-link:hover,
.menu-link.active {
  color: #ff9900;
}
/* sort holder
-----------------------------------------------------------------------------*/
.sort-holder {
  margin-bottom: 18px;
}
.sort-holder:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.sort-holder .sort-box {
  padding: 15px;
  background: #151515;
  border-radius: 5px;
}
.sort-holder .catSortLink {
  margin: 0 5px;
}
.sort-holder .sortArrUp,
.sort-holder .sortArrDown {
  color: #ff9900;
}
.sort-holder .filters {
  float: right;
  padding: 12px;
}
.sort-holder .filter-box {
  display: inline-block;
  margin-left: 5px;
}
/* screen list
-----------------------------------------------------------------------------*/
.screen-list {
  margin: 20px -10px;
  padding: 0;
  list-style: none;
}
.screen-list:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.screen-list li {
  float: left;
  width: 33%;
  padding: 10px;
  box-sizing: border-box;
}
.screen-list .screen {
  box-sizing: border-box;
  padding: 10px;
  background: #151515;
  text-align: center;
  border: 1px solid rgba(102, 102, 102, 0.3);
  display: block;
}
/* zoom
-----------------------------------------------------------------------------*/
.zoom {
  position: relative;
  display: inline-block;
}
.zoom:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "\f00e";
  font-family: FontAwesome;
  font-size: 30px;
  margin: auto;
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  z-index: 3;
  text-shadow: 0 0 0 5px #000;
}
.zoom:hover img {
  opacity: 0.6;
}
.lte-ie-8 .zoom:hover img {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  filter: alpha(opacity=60);
}
.zoom:hover:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
/* Details
-----------------------------------------------------------------------------*/
.details {
  margin: 0 0 30px;
  padding: 8px 0 0;
  list-style: none;
  border: solid rgba(102, 102, 102, 0.3);
  border-width: 1px 0;
}
.details:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.details > li {
  float: left;
  margin: 0 0 10px 0;
}
.details > li:after {
  content: '|';
  margin: 0 10px;
}
.details > li:last-child:after {
  content: none;
}
.details .rating ul {
  display: inline-block;
  vertical-align: middle;
}
.details .rating a {
  transition: none;
}
/* search table
-----------------------------------------------------------------------------*/
.search-table {
  width: 100%;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
  margin-bottom: 10px;
}
.search-table td {
  padding-bottom: 10px;
}
.search-table td.img-box {
  width: 80px;
  vertical-align: middle;
  padding-right: 15px;
}
.search-table td.img-box img {
  width: 100%;
}
.search-table .path {
  text-align: right;
}
.search-table .path a {
  color: #666666;
}
/* Ucoz element
-----------------------------------------------------------------------------*/
.panel {
  position: absolute;
  top: 1px;
  right: 0;
  z-index: 99;
}
.noEntry {
  text-align: center;
}
.uf-tooltip {
  left: 0 !important;
}
.uf-tooltip:after {
  margin-left: 10px !important;
}
.uComForm .wysibb {
  border: 1px solid #424040;
}
.uComForm .wysibb .wysibb-toolbar {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkaWVudCkiIC8+PC9zdmc+');
  background-image: linear-gradient(to bottom, #191919 0%, #000000 100%);
}
.lt-ie-9 .uComForm .wysibb .wysibb-toolbar {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff191919', endColorstr='#ff000000', GradientType=0);
}
aside .banner {
  display: block;
}
aside .banner img {
  width: 100%;
}
.entryReadAllLink,
aside .eTag {
  display: inline-block;
  text-decoration: none;
  font-size: 14px !important;
  background: #2f2f2f;
  color: #666666;
  padding: 0 6px;
  border-radius: 3px;
  margin: 3px;
}
.entryReadAllLink:hover,
aside .eTag:hover {
  background: #ff9900;
  color: #000;
}
.news-box .entryReadAllLink {
  margin: 3px 0 0;
}
.calTable {
  width: 100%;
}
.calTable td {
  padding: 3px;
  border: 1px solid rgba(102, 102, 102, 0.3);
}
.calTable .calWday,
.calTable .calWdaySe,
.calTable .calWdaySu {
  font-weight: bold;
}
/* popup
-----------------------------------------------------------------------------*/
.popup {
  background: #151515;
}
.popup .popuptitle {
  font-size: 18px;
  background: #000;
  color: #ff9900;
  padding: 10px;
  text-align: center;
  margin-bottom: 12px;
}
.popup table {
  margin-bottom: 0;
}
.popup table td {
  padding: 5px;
}
.popup input[type="text"] {
  display: inline-block;
  padding: 5px;
}
.popup input[type="reset"],
.popup input[type="submit"],
.popup input[type="button"] {
  height: 28px;
  box-sizing: border-box;
  padding: 0 5px;
  border: 0;
}
.popup .social-accounts a {
  opacity: 1;
}
.lte-ie-8 .popup .social-accounts a {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
/* Pages classes
-----------------------------------------------------------------------------*/
.header {
  margin-bottom: 340px;
}
.section {
  margin-bottom: 70px;
  position: relative;
  opacity: 0;
}
.lte-ie-8 .section {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.section-slider {
  margin-bottom: 70px;
}
.main {
  margin-bottom: 40px;
}
.fadeInUp {
  opacity: 1;
}
.lte-ie-8 .fadeInUp {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.page-content {
  padding: 20px;
  border: 1px solid rgba(102, 102, 102, 0.3);
  border-radius: 5px;
  background: #000;
}
.page-content:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
/* add page
-----------------------------------------------------------------------------*/
.content-box input[type=text],
.user-page input[type=text],
.search-page input[type=text],
#addEntForm input[type=text] {
  display: inline-block;
  width: auto;
  padding: 5px;
}
.content-box .manTable iframe,
.user-page .manTable iframe,
.search-page .manTable iframe,
#addEntForm .manTable iframe {
  width: 100% !important;
}
.ps {
  position: static !important;
  -webkit-animation-name: none;
          animation-name: none;
}
/* allEntries
-----------------------------------------------------------------------------*/
.load #allEntries {
  margin: 0 -10px;
}
.load #allEntries:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.load #allEntries div[id^="entry"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .load #allEntries div[id^="entry"] {
    width: 50%;
    float: left;
  }
}
@media (min-width: 992px) {
  .load #allEntries div[id^="entry"] {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .load #allEntries div[id^="entry"] {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .load #allEntries div[id^="entry"] {
    width: 33.33333333%;
  }
}
/* news page */
.news-page h1 {
  line-height: normal;
  margin-bottom: 24px;
}
/* search page
-----------------------------------------------------------------------------*/
.search-page .queryField {
  display: inline-block;
  width: 79% !important;
}
.search-page input[type="submit"] {
  width: 20% !important;
  height: 28px;
  border: 0;
}
.search-page .search-holder {
  padding-bottom: 8px;
}
.search-page .search-holder table {
  width: 100%;
}
/* style page
-----------------------------------------------------------------------------*/
.content-box {
  margin-bottom: 18px;
}
.content-box:last-child {
  margin-bottom: 0;
}
.content-img {
  border: 1px solid rgba(102, 102, 102, 0.3);
}
.img-left {
  float: left;
  margin: 0 20px 7px 0;
}
.img-right {
  float: right;
  margin: 0 0 7px 20px;
}
.contact-form table td {
  padding: 5px 0;
}
.top-header {
  background: rgba(0, 0, 0, 0.7);
  padding: 7px 0;
  transition: 600ms;
}
.top-header:hover {
  transition: 600ms;
  background: #000000;
}
.top-header .user-menu {
  float: right;
  margin: 6px 0 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
}
.top-header .user-menu li {
  display: inline-block;
  margin-left: 8px;
}
.search-form {
  overflow: hidden;
  border-radius: 3px;
  margin-top: 4px;
}
.search-form .text {
  float: left;
  width: 80%;
}
.search-form .btn {
  width: 20%;
}
.search-form .btn button {
  border-radius: 0;
}
.logo {
  font-family: 'Graduate', cursive;
  font-size: 24px;
  display: inline-block;
}
.logo a {
  color: #fff;
  text-decoration: none;
}
.logo span {
  padding: 0 5px;
  color: #000;
  border-radius: 5px;
  background: #ff9900;
}
.footer {
  color: #666666;
  background: #000;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.info-section {
  background: #151515;
  padding: 30px 0;
  border: solid rgba(102, 102, 102, 0.3);
  border-width: 1px 0;
  box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.5), 0 -2px 10px rgba(0, 0, 0, 0.5);
}
.info-section .info-title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  font-family: 'Roboto Condensed', sans-serif;
}
.copyright-section {
  padding: 10px 0;
}
.copyright-section:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.copyright-section .hosting {
  float: right;
}
.copyright-section p {
  margin: 0;
}
.copyright-section a {
  color: #666666;
}
/* media
-----------------------------------------------------------------------------*/
@media (max-width: 1200px) {
  .uMenuRoot a {
    padding: 10px 15px;
  }
  .tab object,
  .tab embed,
  .tab iframe {
    width: 100% !important;
  }
  .sort-holder .filters {
    float: none;
    text-align: center;
  }
  .sort-holder .sort-box {
    text-align: center;
  }
}
@media (max-width: 991px) {
  nav .uMenuRoot {
    display: none;
  }
  nav .uMenuRoot > li {
    float: none;
    border-left: 0;
  }
  nav .uMenuRoot > li.has-submenu > a {
    background: #000;
    border-top: 1px solid #666666;
  }
  nav .uMenuRoot ul {
    display: block !important;
    position: static;
    text-transform: none;
    background-image: none;
    border: 0;
    border-radius: 0;
  }
  nav .uMenuRoot ul a {
    padding-left: 30px;
    background: transparent;
  }
  .main-slider .thumbnail {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
  .main-slider .thumbnail .slick-list {
    padding-right: 0 !important;
  }
  .main-slider .thumbnail .slick-center:before {
    content: none;
  }
  .product-info .left-box {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
  .product-info .left-box .zoom {
    display: block;
  }
  .product-info .left-box .img-box img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .search-form {
    margin-bottom: 10px;
  }
  .logo {
    margin-bottom: 10px;
  }
  .top-header {
    padding: 15px 0;
  }
  .top-header .user-menu {
    text-align: center;
    float: none;
  }
  .top-header .user-menu li {
    float: none;
    display: inline-block;
  }
  .product-box .controls li {
    opacity: 1;
  }
  .lte-ie-8 .product-box .controls li {
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
  .product-box .controls li.left {
    left: 0;
  }
  .product-box .controls li.right {
    right: 0;
  }
  .product-box .zoom {
    display: block;
  }
  .product-box .zoom:after {
    content: none;
  }
  .product-box .img-box:hover:after {
    content: none;
  }
  .product-box .img-box:hover .product-img {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .news-box {
    margin-bottom: 45px;
  }
  .news-box img {
    width: 100%;
  }
  .footer .info-box {
    margin-bottom: 25px;
  }
  #puzadpn {
    display: none;
  }
}
@media (max-width: 480px) {
  .main-slider .slide-info .video-box {
    height: 200px;
  }
  .tab object,
  .tab embed,
  .tab iframe {
    height: 200px !important;
  }
  .search-holder table td {
    display: block;
    padding-bottom: 5px !important;
    padding-left: 0 !important;
  }
}