/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
* Kroc Camen, and the H5BP dev community and team.
*/

/* ==========================================================================
 Base styles: opinionated defaults
 ========================================================================== */

@font-face {
  font-family: DroidSans;
  src: url(../font/KlK7B3C2.ttf);
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
* Remove text-shadow in selection highlight: h5bp.com/i
* These selection rule sets have to be separate.
* Customize the background color to match your design.
*/

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
* A better looking default horizontal rule
*/

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
* Remove the gap between images, videos, audio and canvas and the bottom of
* their containers: h5bp.com/i/440
*/

audio,
canvas,
img,
svg,
video {
  vertical-align: middle;
}

/*
* Remove default fieldset styles.
*/

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
* Allow only vertical resizing of textareas.
*/

textarea {
  resize: vertical;
}

/* ==========================================================================
 Browse Happy prompt
 ========================================================================== */

.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
 Author's custom styles
 ========================================================================== */

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #172d38;
  font: 13px/20px DroidSans;
  padding-top: 85px;
}

a {
  color: #0894d8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrapper {
  margin: auto;
  overflow: hidden;
}

.btn {
  width: 180px;
  height: 40px;
  display: inline-block;
  outline: none;
  border: 0;
  color: #fff;
  border-radius: 4px;
  background: #2f9bb4;
  background: -moz-linear-gradient(top,  #2f9bb4 0%, #147c93 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2f9bb4), color-stop(100%,#147c93));
  background: -webkit-linear-gradient(top,  #2f9bb4 0%,#147c93 100%);
  background: -o-linear-gradient(top,  #2f9bb4 0%,#147c93 100%);
  background: -ms-linear-gradient(top,  #2f9bb4 0%,#147c93 100%);
  background: linear-gradient(to bottom,  #2f9bb4 0%,#147c93 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f9bb4', endColorstr='#147c93',GradientType=0 );
}

.btn:hover {
  background: #35aec6;
  background: -moz-linear-gradient(top,  #35aec6 0%, #147c93 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#35aec6), color-stop(100%,#147c93));
  background: -webkit-linear-gradient(top,  #35aec6 0%,#147c93 100%);
  background: -o-linear-gradient(top,  #35aec6 0%,#147c93 100%);
  background: -ms-linear-gradient(top,  #35aec6 0%,#147c93 100%);
  background: linear-gradient(to bottom,  #35aec6 0%,#147c93 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#35aec6', endColorstr='#147c93',GradientType=0 );
}

.btn:active {
  background: #147c93;
  background: -moz-linear-gradient(top,  #147c93 0%, #35aec6 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#147c93), color-stop(100%,#35aec6));
  background: -webkit-linear-gradient(top,  #147c93 0%,#35aec6 100%);
  background: -o-linear-gradient(top,  #147c93 0%,#35aec6 100%);
  background: -ms-linear-gradient(top,  #147c93 0%,#35aec6 100%);
  background: linear-gradient(to bottom,  #147c93 0%,#35aec6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#147c93', endColorstr='#35aec6',GradientType=0 );
}



/* ==========================================================================
  Header
  ========================================================================== */
@media screen and (min-width: 992px) {
    body > .header nav a {
      float: left;
    }
    body > .header nav a {
      display: inline-block;
    }
}

@media screen and (max-width: 991px) {
    .menu-list {
        display: none;
        overflow-y: scroll;
    }

    body > .header nav a {
      display: block;
    }
}

body > .header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  padding-top: 15px;
  background-color: #fff;

  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .1);
     -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .1);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .1);
}

body > .header .logo {
  display: inline-block;
  width: 225px;
  height: 46px;
  float: left;
  background-image: url(../img/Logo%20POS%20Technology.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
}


/*--------------
  Navigation
---------------*/

body > .header nav {
  float: right;
  margin-top: 3px;
}

body > .header nav a {
  color: #004389;
  padding: 10px 5px;
  text-decoration: none;
  border-radius: 4px;
}

body > .header nav a:hover,
body > .header .active {
  color: #fff;
  background-color: #1d8ca5;
}



/* ==========================================================================
  Subheader
  ========================================================================== */

.subheader {
  margin-bottom: 10px;
}

.subheader ul {
  height: 40px;
  line-height: 40px;
  overflow: hidden;
}

.subheader ul li {
  float: left;
}

.subheader ul li + li {
  margin-left: 40px;
}

.subheader .contact-phone {
  font-size: 1.571em;
}

.subheader .send-request .btn {
  width: 180px;
  height: 40px;
}



/* ==========================================================================
  Jcarousel
  ========================================================================== */

.jcarousel {
  position: relative;
  overflow: hidden;
}

.jcarousel ul {
  width: 20000em;
  position: relative;
}

.jcarousel li {
  float: left;
}



/* ==========================================================================
  Main jcarousel
  ========================================================================== */

.jcarousel-main {
  margin-bottom: 30px;
}

.jcarousel-main li {
  width: 980px;
  height: 444px;
}


/* ==========================================================================
  News jcarousel
  ========================================================================== */

.jcarousel-news {
  margin-top: 25px;
}

.jcarousel-news .date {
  color: #3d464f;
  margin-bottom: 0;
}

.jcarousel-news .description {
  margin-top: 0;
}

.jcarousel-news li {
  width: 310px;
}

.jcarousel-news-prev,
.jcarousel-news-next {
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  z-index: 1;
  cursor: pointer;

  -webkit-transition: opacity .3s ease-out;
     -moz-transition: opacity .3s ease-out;
       -o-transition: opacity .3s ease-out;
          transition: opacity .3s ease-out;
}

.jcarousel-news-prev.disabled,
.jcarousel-news-next.disabled {
  cursor: default;
  opacity: .4;
}

.jcarousel-news-prev {
  left: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right:15px solid #004389;
}

.jcarousel-news-next {
  right: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #004389;
}

/* ==========================================================================
  Content sections
  ========================================================================== */

section {
  margin-bottom: 40px;
}

section .title {
  margin: 0;
  font-weight: normal;
  color: #fff;
  font-size: 2em;
  padding: 15px 20px;
  text-transform: uppercase;
  background-color: #004389;
  border-radius: 2px;
  overflow: hidden;
}

section .content {
  padding: 0 25px;
  position: relative;
}

section .well {
  color: #fff;
  background-color: #1e8da6;
  font-weight: normal;
  padding: 25px 0;
  margin: 0;
  text-align: center;
  font-size: 1.846em; /* 24px */
}


/*--------------
  About company
---------------*/

.about-company .intro {
  width: 700px;
}

.about-company ul {
  overflow: hidden;
  margin-bottom: 35px !important;
}

.about-company ul li {
  width: 33%;
  float: left;
  margin-top: 20px;
  padding: 0 10px;
  position: relative;
}

.about-company ul li:before {
  content: '';
  width: 5px;
  height: 100%;
  background-color: #1e8da6;
  position: absolute;
  top: 0;
  left: 0;
}


/*----------------------
  Decision and products
------------------------*/

.decision-and-products .promo {
  float: right;
  margin-left: 40px;
}


/*----------------------
  Products
------------------------*/

.products table td {
  width: 50%;
}

.products table td .description {
  font-size: 16px;
}

.products .content h3 {
  color: #004389;
  text-transform: uppercase;
}

.products .request {
  margin: 50px 0 60px 0 ;
  display: inline-block;
  width: 225px;
  height: 45px;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  background-color: #168098;
  border-radius: 3px;
  line-height: 45px;
  text-align: center;
  text-decoration: none;
}

.products .parameters {
  margin: 0 0 0 12px;
  padding: 0;
  list-style: none;
  list-style-image: url(../img/list-style.png)
}

.products h5 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.products h5.second {
  margin-left: 61px;
}

.products .parameters.second {
  margin: 0 0 63px 75px;
}

.products .all {
  position: relative;
  margin: 30px 0 30px 0;
  display: inline-block;
  border-bottom: 2px dashed #004389;
  color: #004389;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.products .all .icon {
  position: absolute;
  width: 17px;
  height: 17px;
  top: 3px;
  right: -25px;
}

.products .all .icon.more {
  background-image: url(../img/more.png);
}

.products .all .icon.less {
  background-image: url(../img/less.png);
}

.products .request.terminal {
  margin-bottom: 135px;
}

.products .parameters.secondk {
  margin: 0 0 110px 75px;
}

.products table.caharacteristics {
  width: 100%;
}

.products table.caharacteristics thead {
  background-color: #E2E2E2;
  font-size: 16px;
  font-weight: 800;
}

.products table.caharacteristics thead tr {
  height: 30px;
}

.products table.caharacteristics tr td {
  padding:0 20px 0 20px;
  height: 30px;
}


.products table.caharacteristics tbody tr {
  border-bottom: 1px solid #C4C7CA;
}

.products table.caharacteristics tbody tr:last-child {
  border-bottom: none;
}

.products table.caharacteristics tr td:nth-child(2n) {
  width: 30%;
}


/*----------------------
  Software
------------------------*/

.software table {
  width: 100%;
}

.software table thead {
  background-color: #E2E2E2;
}

.software table tr td {
  padding:0 20px 0 20px;
  height: 30px;
}

.software table tr {
  border-bottom: 1px solid #C4C7CA;
}

.software table tr:last-child {
  border-bottom: none;
}

.software table thead td {
  font-size: 16px;
  font-weight: bold;
  width: 30%;
}

.software .request {
  margin: 25px 0 25px 0 ;
  display: inline-block;
  width: 252px;
  height: 45px;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  background-color: #168098;
  border-radius: 3px;
  line-height: 45px;
  text-align: center;
  text-decoration: none;
}


/*----------------------
  Partners
------------------------*/

.partners table.part {
  margin-top: 30px;
  width: 100%
}

.partners table.part tr td {
  width: 50%
}

.partners table.part tr td:first-child {
  padding-right: 50px;
}

.partners table.part tr td p {
  font-size: 18px;
  margin: 0 0 54px 0;
}

.partners .content h3 {
  font-size: 18px;
  text-transform: uppercase;
}

.partners table.obligatory tr:first-child td:first-child {
  padding-right: 20px;
  padding-left: 0;
}

.partners table.obligatory p {
  margin: 0;
}

.partners table.obligatory tr td {
  width: 33%;
  padding: 10px;
}

.partners .partners-icons {
  width: 100%;
  height: 230px;
  background-image: url(../img/partners-icons.jpg);
  margin-bottom: 40px;
}


/*----------------------
  Dillers
------------------------*/

.dillers table {
  width: 100%;
  margin: 20px 0 20px 0;
}

.dillers table tr td {
  width: 33%;
}


/*----------------------
  Support
------------------------*/

.support table {
  width: 100%
}

.support  h3 {
  font-size: 18px;
  margin-top: 35px;
  text-transform: uppercase;
}

.support table tr td{
  height: 25px;
}

.support table a {
  height: 23px;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: 0 , 0;

}

.support table a.pdf{
  background-image: url(../img/icon-pdf.png);
}

.support table a.doc{
  background-image: url(../img/icon-doc.png);
}

.support table a.rar{
  background-image: url(../img/icon-rar.png);
}


.support a {
  color: #0894D8;
  display: inline-block;
}

.support span {
  color: #0894D8;
  border-bottom: 1px dashed #0894D8;
  display: block;
  font-size: 16px;
  cursor: pointer;
}

.support span.connect {
  width: 99px;
}


.support span.mistakes {
  width: 60px;
}

.support span.service {
  width: 60px;
}

.support span.contacts {
  width: 70px;
}

/* ==========================================================================
  Contacts
  ========================================================================== */

.contacts .social-groups {
  position: absolute;
  right: 30px;
  top: 6px;
}

.contacts .social-groups li {
  float: left;
}

.contacts a[class*="icon-"] {
  width: 48px;
  height: 48px;
  display: inline-block;
  background-repeat: no-repeat;
}

.contacts .icon-fb {
  background-image: url(../img/socials/facebook.png);
}

.contacts .icon-google-plus {
  background-image: url(../img/socials/google_plus.png);
}

.contacts .icon-linkedin {
  background-image: url(../img/socials/linkedin.png);
}

.contacts .icon-twitter {
  background-image: url(../img/socials/twitter.png);
}

.contacts .icon-vk {
  background-image: url(../img/socials/vk.png);
}

.contacts .icon-ok {
  background-image: url(../img/socials/ok.png);
}

.contacts .icon-youtube {
  background-image: url(../img/socials/youtube.png);
}

.subpictures img {
    max-width: 100%;
}

/*.catalog-item-top .images {
  height: 505px;
  overflow: hidden;
}

.catalog-item-top .images img{
  max-height: 450px;
  overflow: hidden;
}*/




/* ==========================================================================
   Effects
   ========================================================================== */

.fade {
  opacity: .8;

  -webkit-transition: opacity .3s ease-out;
     -moz-transition: opacity .3s ease-out;
       -o-transition: opacity .3s ease-out;
          transition: opacity .3s ease-out;
}

.fade:hover {
  opacity: 1;
}

/* ==========================================================================
 Helper classes
 ========================================================================== */

/*
* Hide from both screenreaders and browsers: h5bp.com/u
*/

.hidden {
  display: none !important;
  visibility: hidden;
}

/*
* Hide only visually, but have it available for screenreaders: h5bp.com/v
*/

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
* Extends the .visuallyhidden class to allow the element to be focusable
* when navigated to via the keyboard: h5bp.com/p
*/

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
* Hide visually and from screenreaders, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}


ul.unstyled,
ol.unstyled {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.focused {
  font-size: 1.286em; /* 18px */
}

.centered {
  text-align: center;
}

.no-select {
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */

  /* No support for these yet, use at own risk */
  -o-user-select: none;
  user-select: none;
}

/* ==========================================================================
 EXAMPLE Media Queries for Responsive Design.
 These examples override the primary ('mobile first') styles.
 Modify as content requires.
 ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
     (-o-min-device-pixel-ratio: 5/4),
     (-webkit-min-device-pixel-ratio: 1.25),
     (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
 Print styles.
 Inlined to avoid required HTTP connection: h5bp.com/r
 ========================================================================== */

@media print {
  * {
      background: transparent !important;
      color: #000 !important; /* Black prints faster: h5bp.com/s */
      box-shadow: none !important;
      text-shadow: none !important;
  }

  a,
  a:visited {
      text-decoration: underline;
  }

  a[href]:after {
      content: " (" attr(href) ")";
  }

  abbr[title]:after {
      content: " (" attr(title) ")";
  }

  /*
   * Don't show links for images, or javascript/internal links
   */

  a[href^="javascript:"]:after,
  a[href^="#"]:after {
      content: "";
  }

  pre,
  blockquote {
      border: 1px solid #999;
      page-break-inside: avoid;
  }

  thead {
      display: table-header-group; /* h5bp.com/t */
  }

  tr,
  img {
      page-break-inside: avoid;
  }

  img {
      max-width: 100% !important;
  }

  p,
  h2,
  h3 {
      orphans: 3;
      widows: 3;
  }

  h2,
  h3 {
      page-break-after: avoid;
  }
}
