/*1. DOCUMENT SETUP*/

@CHARSET "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  /*border: none;*/
  outline: 0;
  /*        font-size: 100%;*/
  /*        vertical-align: baseline;*/
  background: transparent;
}

fieldset {
  border: none;
  font-size: .9rem;
}

body {
  line-height: 1;
}
body.overflow {
    overflow: hidden;
}
main{
    margin-top: 170px;
    padding-bottom: 3rem;
}
img{
    max-width: 100%;
}
h1 {
  font-size: 2.2em;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/*FONT*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,500,700&subset=cyrillic');

body {
  font-family: 'Roboto', sans-serif;
  position: relative;
  line-height: 1.5;
}

h1 {
  /*  font-size: 24px;*/
  /*    font-weight: bold;*/
  /*    padding-left: 15px;*/
}

h3 {
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
}

a {
  color: #5c5c5c;
}

a:focus,
a:hover {
  text-decoration: none;
  outline: none;
}

.inline-block {
  display: inline-block;
}

.w150 {
  width: 150px;
}

.w70 {
  width: 70px;
}

.p0 {
  padding: 0;
}

.p1 {
  padding: 1rem;
}

#pages li a {
  position: relative;
  float: left;
  padding: .5rem .5rem;
  color: #0275d8;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

#filters {
  float: left;
  margin: .5rem 0;
}

.advs {
  font-size: .8rem;
}

.advs .advitem {
  margin-bottom: 2rem;
}

.advs p {
  font-weight: 700;
  font-size: 1.2rem;
}

.advs ul {
  list-style: disc;
}

.advs i {
  font-size: 3rem;
}

.item-article {
  padding-left: 1.25rem;
  font-weight: 700;
}

.advantages .icon {
  font-size: 3.5rem;
  color: #3498db;
  font-weight: 700;
}

.advantages .card {
  min-height: 15rem;
}

/*1.1 POSITIONING, MARGIN AND PADDING*/

.space {
  padding: 20px 0;
}

.figure-img {
  margin-bottom: 0;
}


/*1.2 COLORS*/

.green {
  color: #16a085;
}

.green-bg {
  background: #16a085;
}

.blue {
  color: #3498db;
}

.blue-bg {
  background: #3498db;
}

.dark {
  color: #34495e;
}

.dark-bg {
  background: #34495e;
}

.white {
  color: #ecf0f1;
}

.silver {
  color: #bdc3c7;
}


/*1.3 COLORS*/


/*1.4 BUTTONS*/

.green-button {
  float: right;
  background: #16a085;
  border: 0;
  border-radius: 0;
  padding: 5px 30px;
  color: #ecf0f1;
  text-transform: uppercase;
  transition: color .3s;
  box-shadow: 0 0 2px#34495e;
}

.green-button:hover {
  color: #34495e;
  transition: color .3s;
}

.blue-button {
  /*float: right;*/
  background: #3498db;
  border: 0;
  border-radius: 0;
  padding: 10px 25px;
  color: #ecf0f1;
  text-transform: uppercase;
  transition: color .3s;
  box-shadow: 0 0 2px#34495e;
  display: block;
  text-align: center;
}

.blue-button:hover {
  color: #34495e;
  transition: color .3s;
}

.dark-button {
  background: #34495e;
  border: 0;
  border-radius: 0;
  padding: 10px 25px;
  color: #ecf0f1;
  text-transform: uppercase;
  transition: color .3s;
}

.dark-button:hover {
  color: #16a085;
  transition: color .3s;
}

.button-rounded {
  border-radius: 25px;
}

.button-leaf {
  border-radius: 0 40px;
}


/*BUTTONS*/


/*MODAL*/

.modal-header .close {
  margin-top: -2px;
  font-size: 4em;
  line-height: 0.5em;
}


/*MODAL*/


/*1.5 H1 TITLE BLOCK*/

.title-block h1 {
  margin: 20px 0;
}

.title-block hr {
  border-top: 4px solid #2980b9;
  width: 40px;
  text-align: center;
  margin-top: 10px;
  position: relative;
  left: 17%;
  float: left;
  clear: both;
}

.title-block .line {
  border-top: 4px solid #2980b9;
  height: 10px;
  width: 60px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}


/*TITLE BLOCK*/


/*2. HEADER*/

.mobile-header {
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index:100;
  transition: all .2s ease;
}

.mobile-header.out {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: all .2s ease;
}

.mobile-header .top {
  padding: .5rem 0;
}

.mobile-header .controls {
  padding: .5rem 0;
}

.mobile-header .logo img{
    max-width:150px;
}

.mobile-menu .menu-wrapper {
  position: fixed;
  background-color: rgba(64, 64, 64, 0.8);
  top: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.mobile-menu .inner {
    overflow: scroll;
  width: 75%;
  background-color: rgba(255, 255, 255, 0.99);
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.mobile-menu .inner .menu-header {
  padding: 1rem;
  color: #3498db;
  font-weight: 600;
  font-size: 1.44rem;
  border-bottom: 1px solid rgba(238, 238, 238, 0.9);
  margin-bottom: 1.2rem;
}

.mobile-menu .inner .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mobile-menu.mobile-left-menu .inner {
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.mobile-menu.mobile-left-menu.opened .inner {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.mobile-menu.mobile-right-menu .inner {
  right: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.mobile-menu.mobile-right-menu.opened .inner {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.mobile-menu.opened .menu-wrapper {
  z-index: 1000;
  opacity: 1;
  height: 100%;
  width: 100%;
}

.mobile-main-menu {
  display: block;
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  z-index: 9999;
  left: 0;
  background-color: rgba(64, 64, 64, 0.8);
  overflow: hidden;
}

.mobile-main-menu.open {
  width: 100%;
}

.mobile-main-menu.open .mobile-main-menu--wrapper {
  left: 0;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.mobile-main-menu .mobile-main-menu--wrapper {
  position: absolute;
  left: -200%;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  background-color: #fff;
  width: 75%;
  margin-right: auto;
  height: 100%;
  padding: 1rem;
  font-size: 2.48832rem;
}

.mobile-main-menu .mobile-main-menu--wrapper ul li {
  padding: 1.24416rem;
  text-transform: uppercase;
  font-weight: 600;
}

.mobile-main-menu .mobile-main-menu--close {
  text-transform: uppercase;
  padding: 1.24416rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.48832rem;
  color: #585858;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mobile-menu {
    font-size: 1.2rem;
}

.mobile-menu .main-menu img{
   margin-right: .3rem;
}

.mobile-menu .main-menu .nav-link{
    color:#3498db;
}

.main-header {
  position: absolute;
  z-index: 1000;
  width: 100%;
  top: 0px;
}


/*2.1 TOP-CONTACTS*/

#top-contacts {
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 0;
  z-index: 10;
  position: relative;
}

#top-contacts a {
  color: #ecf0f1;
}

#top-contacts a:hover {
  color: #fff;
}

#top-contacts .phone {
  /*  margin-right: 30px; */
}

#top-contacts .email {
  /*  margin-right: 30px; */
}

#top-contacts .phone i,
#top-contacts .email i {
  margin-right: 5px;
  margin-bottom: 5px;
}

#top-contacts .call-order {
  margin-right: 30px;
}

.mini-cart {
  
}
.mini-cart span{
 background-color: #3498db;
    position: absolute;
    color: #fff;
    width: 1.3rem;
    height: 1.3rem;
    text-align: center;
    display: flex;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    margin: 0;
}

.mini-cart i {
  color: #fff;
  font-size: 2rem;
}

.mini-cart {
 position: relative; 
   padding: .3rem;
   width: 3rem;
    margin-left: auto;
}

@media (min-width: 480px) {
  .topphone {
    display: none;
  }
}
 .cart-rows .cart-order{
    margin-bottom: 1rem;
}
.cart-rows .price{
        font-weight: bold;
        font-size: 1.2rem;
        color:#000;
        text-align: right;
    }
.shk_count_button {
    border:0;
    background: #3498db;
    color:#fff;
}

/*TOP-CONTACTS*/


/*2.2 NAVBAR*/

.navbar {
  background: #8a8a8a;
  position: relative;
  /* padding: 0; */
  min-height: 70px;
  z-index: 10;
  margin-bottom: 0;
}

.navbar.is-sticky {
  min-height: 65px;
}

.navbar-brand {
  padding-top: 10px;
}

.navbar.is-sticky .navbar-brand {
  padding-top: 2px;
}

.navbar-brand .logo {
  float: left;
  font-size: 1.5em;
  line-height: 1;
}

.navbar-brand .logo img {
  max-height: 57px;
}

.navbar-brand .slogan {
  float: left;
  clear: both;
  line-height: 1;
  font-size: .83em;
}

/*
.navbar .btn {
    float: right;
}
*/
.nav-inline .nav-item+.nav-item,
.nav-inline .nav-link+.nav-link {
  margin-left: 0;
}

/* .nav-link {
  display: inline;
} */

.navbar-toggler {
  margin: 0.4rem .7rem;
}

.sticky.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
}

#top-menu .nav>li {
  float: left;
  border-right: 1px solid #969696;
  display: flex;
  justify-content: center;
}

#top-menu .nav>li:first-child {

  border-left: 1px solid #969696;

}

#top-menu ul.main-menu {
  /* line-height: 2.6; */
  display: flex;
  flex-direction:row;
  justify-content: space-between;
}

.is-sticky #top-menu ul.main-menu {
  line-height: 1.6;
}

#top-menu .nav>li>a {
  font-size: 0.9em;
  color: #fff;
  padding: 10px;
  transition: all 0.1s;
  font-weight: bold;
  display: flex;
  margin: auto 0;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

#top-menu .nav>li>a:hover {
  transition: all 0.2s;
  background: #2980b9;
}

#top-menu .nav>li>a.active {
  color: #ecf0f1;
  background: #3498db;
  transition: all 0.2s;
}

.navbar-toggle .icon-bar {
  background: #ecf0f1;
}

#top-menu .container {
  padding: 0;
}

#top-menu .dropdown-menu {
  background: rgba(0, 0, 0, 0.88);
}

#top-menu ul.main-menu .dropdown-menu {
  line-height: 2.6;
}

#top-menu .dropdown-menu li {
  padding: 0 15px;
  list-style: none;
}

#top-menu .dropdown-menu li a {
  color: #ecf0f1;
  display: block;
}

#top-menu .dropdown-menu li:hover {
  background-color: #2980b9;
}

#top-menu .menu-img {
  display: block;
  margin: 0 auto;
}

/*NAVBAR*/


/*BREADCRUMBS*/

.breadcrumbs li {
  display: inline;
}

.pageList {
  padding: 20px 0;
}

.pageList li {
  display: inline-block;
}

.pageList a {
  padding: 3px;
  margin: 3px !important;
}

.pageList .active {
  background-color: #2980b9;

}

.tac {
  text-align: center;
}

/*BREADCRUMBS*/


/*CAROUSEL*/

#carousel {
  /*    border-bottom: 1px solid#34495e;*/
}

.carousel-control.right {
  background: none;
}

.carousel-control.left {
  background: none;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 220px;
  color: #2980b9;
  text-align: center;
}

.carousel-control .icon-next,
.carousel-control .icon-prev {
  position: absolute;
  top: 40%;
}

@media (min-width: 576px) {

  .carousel-control .icon-next,
  .carousel-control .icon-prev {
    font-size: 220px;
  }
}

.carousel-inner>.carousel-item>a>img,
.carousel-inner>.carousel-item>img {
  position: relative;
  transform: translateX(-50%);
  left: 50%;
}

.overlay {
  width: 100%;
  min-height: 590px;
  /* display: block; */
  /* margin: 0 auto; */
  position: absolute;
  z-index: 5;
  background-color: rgba(75, 101, 128, 0.3);
}

.carousel-item {
  max-height: 975px;
}

.carousel-caption {
  z-index: 10;
  text-shadow: none;
  position: absolute;
  bottom: 20%;
  /*    text-align: left;*/
  text-shadow: 0 0 15px #000;
}

.caption-header {
  font-size: 5em;
  font-weight: bold;
  color: #ecf0f1;
  padding: 5px 10px;
  display: block;
}

.caption-text {
  font-size: 4em;
  font-weight: bold;
  color: #ecf0f1;
  padding: 5px 10px;
  display: block;
}


/*CAROUSEL*/


/*MESSAGE*/

#stripeMessage {
  border-bottom: solid 2px #fff;
  border-top: solid 3px #fff;
  padding: 22px 0;
  background: #fff url(../images/design/message-shadow.png) top center repeat-x;
  display: none;
}

#stripeMessage h2 {
  font-size: 30px;
  font-weight: 300;
  color: #000;
  letter-spacing: -2px;
  margin: 0;
  text-align: left !important;
  padding-left: 0;
  line-height: 30px;
}

#stripeMessage .phone {
  font-size: 2em;
  letter-spacing: -2px;
  line-height: 0;
}

@media (min-width: 480px) {
  #stripeMessage h2 {
    text-align: center;
  }
}

.message-shadow {
  position: absolute;
  margin-top: 25px;
  width: 100%;
  z-index: 77;
  background: url(../images/design/message-shadow.png) top center repeat-x;
  height: 21px;
}


/*MESSAGE*/


/*ACTIONS*/

#actions {
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

#actions h3 {
  padding-top: 20px;
  text-transform: uppercase;
  color: #ff0000;
}

#actions .action img {
  width: 100%;
}

#actions .hover-bg {
  /*	height: 260px;*/
  overflow: hidden;
  position: relative;
}

.hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.56);
  padding: 25% 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  font-size: 1.5em;
}

.hover-bg .hover-text>a {
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
}

.hover-bg:hover .hover-text>a {
  color: #fff;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.hover-bg:hover .hover-text>a:hover {
  color: #3498db;
}

.hover-bg .hover-text>i {
  color: #3498db;
  opacity: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: all 0.3s;
}

.hover-bg:hover .hover-text>i {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
}

.hover-bg:hover .hover-text {
  opacity: 1;
}


/*ACTIONS*/


/*CAR-MODELS*/

#car-models {
  padding-top: 40px;
  background: #ecf0f1;
}

#car-models .car-model {
  background: #ffffff;
  border: solid 1px #E4E3E3;
  margin-bottom: 30px;
  position: relative;
}

#car-models .car-model .model-name {
  color: #34495e;
  font-weight: bold;
  font-size: 1.2em;
  border-top: 1px solid #E4E3E3;
  padding: 15px 15px;
  transition: all 0.5s;
}

#car-models .car-model:hover .model-name {
  color: #fff;
  background: #3498db;
  transition: all 0.5s;
  border-top: 1px solid #3498db;
}

#car-models .car-model img {
  width: 100%;
  padding: 10px;
}

#car-models .hover-bg {
  /*	height: 260px;*/
  overflow: hidden;
  position: relative;
}

#car-models .hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #ecf0f1;
  background: rgba(49, 49, 49, 0.5);
  padding: 40% 0 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  font-size: 1.5em;
}

#car-models .hover-bg .hover-text>a {
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
}

#car-models .car-model:hover .hover-text {
  opacity: 1;
}


/*CAR-MODELS*/


/*PART-MODELS*/

.parts {
  padding-top: 40px;
  background: #ecf0f1;
}

.parts-top-image {
  /*  max-width: 200px; */
  border: 1px solid #eee;

}

.part-model {
  background: #ffffff;
  margin-bottom: 10px;
  position: relative;
}

.part-model .part-inner {
  /*
   border-left: solid 1px #E4E3E3;
    border-bottom: solid 1px #E4E3E3;
    
*/
  background: #eee;
  min-height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.part-model .part-name {
  color: #34495e;
  font-weight: bold;
  /* font-size: 1.2em; */
  /*    border-top: 1px solid #E4E3E3;*/
  padding: 15px 5px;
  transition: all 0.5s;
  /* min-height: 100px; */
  word-break: normal;
  text-align: center;
  word-break: break-word;
}

.part-model:hover .part-name {
  color: #fff;
}

.part-model:hover .part-inner {
  background: #3498db;
  transition: all 0.5s;
}

.part-model img {
  width: auto;
  padding: 5px;
  margin: 0 auto;
  display: block;
}

.part-model .hover-bg {
  /*	height: 260px;*/
  overflow: hidden;
  position: relative;
}

.part-model .hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #ecf0f1;
  background: rgba(49, 49, 49, 0.5);
  padding: 40% 0 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  font-size: 1.5em;
}

.part-model .hover-bg .hover-text>a {
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
}

.part-model:hover .hover-text {
  opacity: 1;
}


/*PART-MODELS*/



/*PRODUCT-PAGE*/
.product-page .item-price {
  font-weight: bold;
  font-size: 1.3em;
}

/*PRODUCT-PAGE*/

.product-preview-card{
    padding:.5rem;
    border:1px solid #eee;
}
/*TEXT-CONTENT*/

#text-content {
  padding: 60px 0;
}


/*TEXT-CONTENT*/


/*TESTIMONIALS */

#testimonials {
  width: 100%;
  padding: 70px 0px 85px;
  height: auto;
  background: #ecf0f1;
  text-align: center;
  border-top: 1px dashed #bad6e8;
}

#testimonials .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
  padding: 0px 0px 0px;
}

.testimonials-inner ul {
  margin: 0px;
  padding: 0px;
}

.testimonials-inner .star-rating li {
  list-style: none;
  display: inline-block;
  color: #3498db;
}

.testimonials-inner .line-dec {
  margin-top: 15px;
  width: 30px;
  height: 2px;
  background-color: #bdc3c7;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-inner p {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 300;
  color: #34495e;
  line-height: 32px;
}

.testimonials-inner .author-rate img {
  margin-top: 30px;
  border-radius: 50%;
}

.testimonials-inner .author-rate h4 {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonials-inner .author-rate span {
  font-size: 12px;
  font-weight: 700;
  color: #3498db;
}

#testimonials .carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #34495e;
  border: none;
  border-radius: 50%;
}

#testimonials .carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #3498db;
}

#testimonials .carousel-indicators {
  bottom: -40px;
}

.testimonials-inner .author-rate .line-dec2 {
  margin-top: 10px;
  margin-bottom: 5px;
  width: 30px;
  height: 2px;
  background-color: #bdc3c7;
  margin-left: auto;
  margin-right: auto;
}

#testimonials .carousel-control .icon-next,
#testimonials .carousel-control .icon-prev {
  position: absolute;
  top: 20%;
}


/*TESTIMONIALS END */

#map {
  border-top: 1px dashed #bad6e8;
}

/*FOOTER*/

footer {
  color: #ecf0f1;
  font-size: 1em;
  letter-spacing: -1px;
  font-weight: 300;
  border-top: 1px dashed #bad6e8;
}

.footer-info {
  background-color: #34495e;
  padding: 20px 0;
}

.footer-info a {
  color: #ecf0f1;
}

.footer-info a:hover {
  color: #3498db;
}

.bottom-copy {
  padding: 10px;
  background: #141d26;
}

.bottom-copy i {
  color: #ecf0f1;
}

.bottom-copy i:hover {
  color: #3498db;
}


/*FOOTER*/


/*METRIKA*/
.metrCounter {
  position: absolute;
  bottom: 0;
}

/*METRIKA*/

/*BREADCRUMBS*/

.breadcrumbs {
  padding-top: 1rem;
  padding-bottom: 1rem;
}


/*BREADCRUMBS*/


/*CATALOG-LIST*/

.catalog-list {
  padding: 10px 0;
  margin-bottom: 10px;
  font-size: 1em;
}

.catalog-list .shk-item {
/*   padding: 5px 0; */

}

.catalog-list .list {
  padding-top: 20px;
}

.catalog-list form {
  /*    float: left;*/
}

.catalog-list {
  min-height: 85px;
}

.listrow {
  margin: 1rem 0;
}

.catalog-list .item-title {
  float: left;
}

.catalog-list .catalog-list-header {
  background-color: #e6e6e6;
  text-align: center;
  padding: 5px 0;
  font-size: .8em;
}

.catalog-list .item-article {
  float: left;
  word-break: break-all;
}

.catalog-list .manufacturer {
  float: left;
}

.catalog-list .item-pic img {
  /*  max-width: 80px; */
  /* padding: .5rem; */
}

.catalog-list .item-price {
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}

.catalog-list .order-btn {
  border: none;
}

.catalog-list .order-btn:hover {
  background: #54a7dd;
  border: none;
}


/*CATALOG-LIST*/


/*SHOP*/
#shk_butOrder {
  float: right;
  background: #16a085;
  border: 0;
  border-radius: 0;
  padding: 5px 30px;
  color: #ecf0f1;
  text-transform: uppercase;
  transition: color .3s;
  box-shadow: 0 0 2px#34495e;
}

#shopOrderForm input,
select {
  width: 100%;
  height: 2em;
}

/*SHOP*/

/*SIDE MENU*/

.side {}

.side ul {

  margin-top: 0;
}

.side ul li {
  background-color: #3498db;

  margin-bottom: 5px;
}

.side ul li:hover a {
  text-decoration: underline;
}

.side ul li a {
  display: block;

  padding: 8px 0 8px 10px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: .9em;
}

.side ul li.active a {
  text-decoration: underline;
}

.side ul .subMenu li {
  background-color: #eee;
  margin: 5px 0;
  padding: 5px 0;
}

.side ul .subMenu li a {
  color: #2c2c2c;
  font-size: .8em;
  padding-top: 0;
  padding-bottom: 0;
  text-transform: none;

}

.subMenu {
  display: none;
}


/*SIDE MENU*/

/*CALLBACK POPUP BEGIN*/
#popup__toggle {
  bottom: 25px;
  right: 35px;
  position: fixed;
}

.img-circle {
  background-color: #00ff00;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

.circlephone {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  border: 2px solid #00ff00;
  width: 150px;
  height: 150px;
  bottom: -25px;
  right: 10px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  opacity: .5;
  -webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
  -moz-animation: circle-anim 2.4s infinite ease-in-out !important;
  -ms-animation: circle-anim 2.4s infinite ease-in-out !important;
  -o-animation: circle-anim 2.4s infinite ease-in-out !important;
  animation: circle-anim 2.4s infinite ease-in-out !important;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all 0.5s;
}

.circle-fill {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  background-color: #00ff00;
  width: 100px;
  height: 100px;
  bottom: 0px;
  right: 35px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -moz-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -ms-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -o-animation: circle-fill-anim 2.3s infinite ease-in-out;
  animation: circle-fill-anim 2.3s infinite ease-in-out;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all 0.5s;
}

.img-circle {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  width: 72px;
  height: 72px;
  bottom: 14px;
  right: 49px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: .7;
}

.img-circleblock {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  width: 72px;
  height: 72px;
  background-image: url(../images/mini.png);
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.img-circle:hover {
  opacity: 1;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 1;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.95);
    opacity: 1;
  }
}

@keyframes tossing {
  0% {
    transform: rotate(-8deg);
  }

  50% {
    transform: rotate(8deg);
  }

  100% {
    transform: rotate(-8deg);
  }
}

@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-8deg);
  }

  50% {
    -webkit-transform: rotate(8deg);
  }

  100% {
    -webkit-transform: rotate(-8deg);
  }
}

@-moz-keyframes circle-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: .1;
    -moz-opacity: .1;
    -webkit-opacity: .1;
    -o-opacity: .1;
  }

  30% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .5;
    -moz-opacity: .5;
    -webkit-opacity: .5;
    -o-opacity: .5;
  }

  100% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .6;
    -moz-opacity: .6;
    -webkit-opacity: .6;
    -o-opacity: .1;
  }
}

@-webkit-keyframes circle-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
    -webkit-opacity: .1;
  }

  30% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    -webkit-opacity: .5;
  }

  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    -webkit-opacity: .1;
  }
}

@-o-keyframes circle-anim {
  0% {
    -o-transform: rotate(0deg) kscale(0.5) skew(1deg);
    -o-opacity: .1;
  }

  30% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    -o-opacity: .5;
  }

  100% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    -o-opacity: .1;
  }
}

@keyframes circle-anim {
  0% {
    transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: .1;
  }

  30% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .5;
  }

  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .1;
  }
}

@-moz-keyframes circle-fill-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }

  50% {
    -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
    opacity: .2;
  }

  100% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
}

@-webkit-keyframes circle-fill-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }

  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .2;
  }

  100% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
}

@-o-keyframes circle-fill-anim {
  0% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }

  50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .2;
  }

  100% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
}

@keyframes circle-fill-anim {
  0% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }

  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .2;
  }

  100% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
}

/*CALLBACK POPUP END*/

/*MEDIA QUERY*/

@media (max-width:720px) {
    
    h1{
        font-size: 1.6rem;
    }
    h2{
        font-size: 1.44rem;
    }    
    h3,h4,h5{
        font-size: 1.2rem;
    }
    
  header {
    position: relative;
  }

  #top-menu {
    position: absolute;
    background: rgba(0, 0, 0, 0.65);
  }

  #car-models .car-model .model-name {
    font-size: .8em;
    padding: 15px 10px;
  }

  /*
    .navbar-brand .logo {
    font-size: .9em;
}
    .navbar-brand .slogan {
    padding: 5px 0;
    font-size: .5em;
}
*/
}

@media (min-width: 576px) {
  .navbar {
    border-radius: 0;
  }
  .navbar-nav .dropdown-menu {
    position: absolute;
    float: none;
}
}

@media (min-width: 761px) {

  #stripeMessage {
    display: block;
  }
  main{
    margin-top: 0;
}
}

@media (max-width: 991px) {
  #top-menu ul.main-menu {
    flex-direction: row;
    
  }
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #3498db;
  color: #fff;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.text-center {
  text-align: center;
}

.mx-0-5 {
  margin: 0 5px;
}


.btn {
  border: 0;
  border-radius: 0;
  transition: color .3s;
  box-shadow: 0 0 2px#34495e;
}

.btn-info {
  color: #fff;
  background-color: #3498db;
  border-color: #3498db;
  border-radius: 0;
  border-radius: 5px;
}

.btn-outline-info {
  color: #3498db;
  background-color: rgba(0, 0, 0, 0);
  border-color: #3498db;
  border-radius: 0;
  border: 1px solid;
  border-radius: 5px;
}

.product_options {
  /*padding: 0 .7rem;*/
  margin-bottom: 1.44rem;
}

.product_options .product_option:nth-last-child(even) {
  background-color: #f3f3f3;
}

.product_options .product_option {
  padding: 0.3333333333rem 0.5rem;
}

.fw-600 {
  font-weight: 600;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.d-flex {
  display: flex;
}

.mfp-iframe-holder .mfp-content {
  max-width: 90% !important;
  height: 90% !important;
}