@import url("normalize.css");
@import url("font-awesome.min.css");
@import url("bootstrap.min.css");

* {
  outline: none;
}

html {
  /*background: #e5e5e5;*/
}

body {
  font-family: Tahoma, Arial, Sans-serif;
  font-size: 13px;
  color: #565656;
  background: #fff;
  line-height: 1.4;
  min-width: 350px;
}

dl, dd, dt, ul {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  margin-bottom: 20px;
}

a,
a:hover {
  color: #0171b9;
}

h1,
h2,
h3,
h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 150%;
  color: #0171b9;
}

h1 {
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;  
}

h2 {
  font-size: 16px;
  margin-bottom: 15px;
}

h3 {
  font-size: 14px;
}

h4 {
  font-size: 18px;
}

h1:first-child {
  margin-top: 0;
}

::-webkit-input-placeholder {
    color: inherit;
}

:-moz-placeholder {
   color: inherit;
   opacity:  1;
}

::-moz-placeholder {
   color: inherit;
   opacity: 1;
}

:-ms-input-placeholder {
   color: inherit;
}

.price .base {
  font-weight: 700;
  font-size: 1.2em;
}

.price .decimals {
  font-weight: 700;
  font-size: 1em;
}

.price .currency {
  font-weight: 400;
  font-size: 1em;
}

.price .vat {
  font-weight: 400;
  font-style: italic;
  font-size: 0.66em;
}

.ds-checkbox-inline,
.ds-checkbox-list,
.ds-radio-inline,
.ds-radio-list {
  padding-top: 7px;
}

.ds-checkbox-list .ds-checkbox,
.ds-radio-list .ds-radio {
  display: block;
  margin-bottom: 10px;
}

.ds-checkbox-inline .ds-checkbox,
.ds-radio-inline .ds-radio {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
  width: auto;
}

.ds-checkbox-inline .ds-checkbox:last-child,
.ds-radio-inline .ds-radio:last-child {
  margin-right: 0;
}

.ds-checkbox,
.ds-radio {
  font-family: inherit !important;
  padding-top: 2px;
  padding-left: 27px;
  cursor: pointer;
  position: relative;
}

.ds-checkbox input,
.ds-radio input {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
}

.ds-checkbox span,
.ds-radio span {
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid #d0d3d8;
  background: #fff;
  text-align: center;
}

.ds-radio span {
  border-radius: 50%;
}

.ds-radio input:checked ~ span:after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0171b9;
  display: inline-block;
  position: relative;
  top: -1px;
}

.ds-checkbox input:checked ~ span:after {
  content: '\f00c';
  font-family: FontAwesome;
  font-size: 13px;
  color: #0171b9;
  text-align: center;
  line-height: 14px;
}

.form-control,
textarea.form-control {
  border: 1px solid #dcdcdc;
  height: 28px;
  color: #848484;
  padding: 5px 7px;
  border-radius: 5px;
  font-size: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  height: 120px;
}

.container {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 1000px) {
  .container {
    width: 1000px;
  }
}

@media (max-width: 999px) {
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.required > label:after,
label.required:after {
  content: '*';
  color: #f7007a;
  margin-left: 5px;
  display: inline-block;
}

.btn {
  display: inline-block;
  text-transform: uppercase;
  background-color: #f7007a;
  background-image: linear-gradient(#f7007a, #d2006b);
  color: #fff;
  border-radius: 5px;
  padding: 4px 15px;
  font-weight: bold;
  font-size: 13px;
}

.btn:hover,
.btn:focus {
  color: #fff;
  background-color: #d2006b;
  background-image: linear-gradient(#d2006b, #f7007a);
  outline: none;
}

.btn-lg {
  font-size: 14px;
  padding: 25px 30px;
}

.btn-grey {
  color: #0c3b79;
  background: #ced8e4;
}

.btn-grey:hover,
.btn-grey:focus {
  background: #ced8e4;
}

.btn > .fa:first-child {
  margin-right: 5px;
}

.btn > .fa:last-child {
  margin-left: 5px;
}

.btn-info {
  border-color: transparent;
  background: #0171b9;
}

.btn-info:hover,
.btn-info:focus {
  background: #0085da;
}

.btn-success {
  border-color: transparent !important;
  background: #0db5e2;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:hover:focus,
.btn-success:active:focus {
  background: #11cdff;
}

.btn-secondary {
  border-color: transparent;
  background: #3da2d6;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:hover:focus,
.btn-secondary:active:focus {
  border-color: transparent;
  background: #5fb5e2;
}

.btn-xs {
  padding: 3px;
  font-size: 10px;
}

.form-control:focus {
  border-color: #dde0e7;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  text-align: right;
  font-weight: normal;
}

.input-error {
  font-size: 11px;
  color: #eb0075;
  display: block;
  margin-top: 3px;
  margin-bottom: 5px;
}

.header {
  position: relative;
  z-index: 100;
  box-sizing: content-box;
  height: 40px;
  background-color: #0072bc;
  color: #fff;
}

.header .top-menu {
  float: left;
  list-style: none;
}

.header .top-menu > li {
  float: left;
  height: 100%;
}

.header .top-menu > li > a {
  display: block;
  height: 100%;
  line-height: 40px;
  color: rgba(255, 255, 255, .8);
  transition: color .2s;
  padding: 0 8px;
  font-size: 12px;
}

.header .top-menu > li:hover > a,
.header .top-menu > li.active > a {
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
}

.header .top-menu .submenu {
  display: none;
  color: #fff;
  list-style-type: none;
  position: absolute;
  top: 40px;
  width: auto;
  background-color: #545659;
  background-image: linear-gradient(to top, #404245, #545659 20px);
  border-radius: 5px;
  border-top-left-radius: 0;
  padding: 15px;
  min-width: 150px;
  z-index: 50;
}

.header .top-menu li:hover > .submenu {
  display: block;
}

.header .top-menu .submenu a,
.header .top-menu .submenu a:hover {
  color: inherit;
}

.header .top-menu .submenu li {
  position: relative;
  float: none;
  padding-left: 13px;
  padding-top: 2px;
  padding-bottom: 6px;
}

.header .top-menu .submenu li:before {
  position: absolute;
  font-family: FontAwesome;
  content: '\f054';
  left: 0;
  top: 2px;
  font-size: 8px;
}

.header .top-menu .submenu li:after {
  content: '';
  position: absolute;
  border-top: 1px solid #434344;
  border-bottom: 1px solid #67686a;
  left: 15px;
  right: 0;
  bottom: 0;
}

.header .top-menu .submenu li:last-child {
  padding-bottom: 0;
}

.header .top-menu .submenu li:last-child::after {
  display: none;
}

@media (max-width: 970px) {
  .header .top-menu {
    display: none;
  }
}

.header .language-menu {
  list-style: none;
  float: right;
  margin-top: 9px;
  height: 24px;
}

.header .language-menu li {
  float: left;
  list-style: none;
}

.header .language-menu li::after {
  content: '';
  border-right: 1px solid #b2b2b2;
  height: 100%;
  margin: 0 6px;
}

.header .language-menu li a {
  display: inline-block;
  color: #fff;
  width: 22px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position-y: -18px;
  position: relative;
  top: 4px;
}

.header .language-menu li:last-child::after {
  display: none;
}

.header .language-menu li.active a,
.header .language-menu li a:hover {
  text-indent: -500px;
  background-position-y: 0;
}

.header .language-menu li.sk a {
  background-image: url('../images/flag-sk.png');
}

.header .language-menu li.cz a {
  background-image: url('../images/flag-cz.png');
}

.header .language-menu li.hu a {
  background-image: url('../images/flag-hu.png');
}

.main {
}

.main > .container {
  min-height: calc(100vh - 105px);
}

.content-header {
  position: relative;
  border-top: 1px solid #0171b9;
  border-radius: 5px;
  background-color: #137bbe;
  background-image: linear-gradient(#0071ba, #005287);
  margin: 15px 0 0 0;
  min-height: 76px;
  color: #fff;
  height: 76px;
}

.content-header a,
.content-header a:hover {
  color: inherit;
}

.content-header:after {
  content: '';
  display: table;
  clear: both;
}

.content-header .logo {
  margin-left: 14px;
  margin-top: 12px;
  margin-bottom: 12px;
  float: left;
}

.content-header .news {
  position: absolute;
  top: -6px;
  right: 90px;
  width: 31px;
  height: 116px;
  background: url('../images/button-special-news.png') no-repeat;
  text-indent: -999px;
  overflow: hidden;
  z-index: 10;
}

.responsive-menu-toggle {
  display: none;
  font-size: 40px;
  margin-right: 30px;
}

@media (max-width: 420px) {
  .responsive-menu-toggle {
    margin-right: 15px;
  }
}

.content-header .categories {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  list-style-type: none;
  position: relative;
}

.content-header .categories li {
  margin: 0 5px;
  position: relative;
  white-space: nowrap;
}

.content-header .categories li.active,
.content-header .categories li:hover {
  color: #005ca1;
  background: #fff;
  height: 47px;
  border-radius: 5px;
}

.content-header .categories > li:after {
  content: '';
  position: absolute;
  right: -5px;
  top: 10px;
  height: 30px;
  border-left: 1px solid #00558c;
  border-right: 1px solid #006eb7;
  pointer-events: none;
}

.content-header .categories > li:last-child:after {
  display: none;
}

.content-header .categories li.has-children.active,
.content-header .categories li.has-children:hover {
  height: 74px;
  border-radius: 0;
}

.content-header .categories li.has-children.active::after,
.content-header .categories li.has-children:hover::after,
.content-header .categories li.has-children.active::before,
.content-header .categories li.has-children:hover::before {
  content: ' ';
  position: absolute;
  width: 17px;
  height: 74px;
  top: 0;
  background-repeat: no-repeat;
}

.content-header .categories li.has-children.active::before,
.content-header .categories li.has-children:hover::before {
  left: -17px;
  background-image: url('../images/bg-top-categories-shadow-left.png');
}

.content-header .categories li.has-children.active::after,
.content-header .categories li.has-children:hover::after {
  right: -17px;
  background-image: url('../images/bg-top-categories-shadow-right.png');
  border: none;
}

.content-header .categories li > a {
  font-size: 14px;
  display: inline-block;
  padding: 15px 5px;
}

.content-header .categories li > a:hover {
  text-decoration: none;
}

.categories a:focus {
  outline: none;
}

.categories a i {
  margin-right: 8px;
}

.categories a span {
  font-size: 13px;
}

.categories .btn-help {
  display: inline-block;
  margin-left: 0px;
}

.categories .btn-help i {
  margin-right: 0;
}

.content-header .submenus {
  position: absolute;
  left: 0;
  right: 0;
  top: 94px;
  color: #565656;
  z-index: 1000;
}

.content-header .submenus .submenu {
  display: none;
  background: #fff;
  border-top: 1px solid #fff;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.15);
}

.content-header .submenus .submenu.active {
  display: inline-block;
}

.content-header .submenus a,
.content-header .submenus a:hover {
  color: #0171b9;
}

.content-header .submenu-table {
  /*width: 100%;*/
}

.content-header .submenu-table td {
  padding: 10px;
  width: 333.33333px;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  background-image: linear-gradient(to top, #e9e9e9, #fff 50%);
  vertical-align: top;
}

.content-header .submenu-table tr:last-child td {
  border-bottom: none;
}

.content-header .submenu-table td:last-child {
  border-right: none;
}

.content-header .submenu-table .image {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  max-width: 70px;
  height: auto;
}

.content-header .submenu-table .title {
  float: left;
  width: calc(100% - 82px);
  margin-bottom: 10px;
  font-weight: bold;
}

.content-header .submenu-table .subcategories {
  float: left;
  width: calc(100% - 82px);
  list-style: none;
}

.content-header .submenu-table .subcategories li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 12px;
}

.content-header .submenu-table .subcategories li:before {
  position: absolute;
  font-family: FontAwesome;
  content: '\f054';
  color: #e30b67;
  left: 0;
  top: 0;
  font-size: 8px;
}

.content-header .search {
  float: right;
  position: relative;
  padding-left: 5px;
  margin-top: 10px;
  height: 66px;
}

.content-header .search:before {
  content: '';
  position: absolute;
  border-left: 1px solid #176292;
  border-right: 1px solid #2d9ce2;
  left: 0;
  top: 0;
  bottom: 0;
}

.content-header .search .search-btn {
  display: block;
  background: url('../images/bg-top-search-sk.png') no-repeat;
  width: 63px;
  height: 78px;
  overflow: hidden;
  cursor: pointer;
  text-indent: -999px;
}

@media (max-width: 970px) {
  .content-header {
    display: none;
  }
  
  .content-header .categories {
    display: none;
  }
  
  .responsive-menu-toggle {
    display: block;
  }
}

@media (max-width: 645px) {
  .header {
    display: none;
  }
}

@media (max-width: 400px) {
  .content-header .news {
    display: none;
  }
}

.logo-header {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.logo-header .logo img {
  width: 168px;
  height: 79px;
}

@media (max-width: 420px) {
  .logo-header {
    margin-bottom: -5px;
    margin-top: 15px;
  }
  
  .logo-header .logo {
    display: none;
  }
  
  .logo-header .search-widget {
    margin-left: 0;
  }
}

.search-widget {
  margin-left: 40px;
  flex: 1 1 auto;
}

.search-widget:after {
  content: '';
  display: table;
  clear: both;
}

.search-input {
  position: relative;
}

.search-widget .form-control {
  border-radius: 3px;
  height: 46px;
  padding-left: 15px;
  padding-right: 40px;
  border-color: #0072bc;
  font-size: 16px;
}

.search-widget button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  color: #0072bc;
  background: none;
  border: none;
  font-size: 18px;
}

/*
.content-header .logo:after {
  border-left: 1px solid #176292;
  border-left: 1px solid #2d9ce2;
}*/

.footer {
  line-height: 150%;
  font-size: 0.85em;
  color: #565656;
  background: #e5e5e5;
  padding-bottom: 15px;
}

.footer:after {
  content: '';
  display: table;
  clear: both;
}

.footer a {
  color: inherit;
}

.footer hr {
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #fff;
  margin: 10px 0;
}

.footer .copy {
  float: left;
}

.footer .social {
  float: right;
}

.footer .social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0 2px;
  background: #fff;
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
}

.footer .social i {
  font-size: 20px;
}

.footer .title {
  text-transform: uppercase;
  font-size: 15px;
  color: #434343;
  font-weight: bold;
}

.footer .footer-headers,
.footer .footer-links .title {
  border-top: 1px solid #cacaca;
  border-top: 1px solid #c4c4c4;
  background-color: #e7e7e7;
  background-image: linear-gradient(#e7e7e7, #c9c9c9);
  box-shadow: 0 1px 3px #d5d5d5;
  padding: 14px 0;
  margin-bottom: 15px;
  white-space: nowrap;
}

.footer .footer-links .title {
  display: none;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 991px) {
  .footer .footer-links .title {
    display: block;
  }
}

.footer .footer-links ul {
  list-style: none;
  margin-bottom: 30px;
}

@media (max-width: 500px) {
  .footer .col-xs-6 {
    width: 100%;
  }
  
  .footer {
    display: none;
  }
}

.breadcrumb {
  list-style: none;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 11px;
  background: none;
  border: none;
}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb li::after {
  content: ' / ';
}

.breadcrumb li:last-child::after {
  content: '';
}

.price .number {
  font-size: 1em;
}

.price .currency {
  font-size: 0.8em;
}

.price .comment {
  font-size: 11px;
}

.portlet {
  border: 1px solid #dbdbdb;
  padding: 15px;
  border-radius: 3px;
  background-color: #fff;
  background-image: linear-gradient(to top, #e9e9e9, #fff 179px);
  margin-top: 10px;
  margin-bottom: 20px;
}

.portlet:after {
  content: '';
  display: table;
  clear: both;
}

.portlet > .title {
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 150%;
  font-size: 16px;
  color: #0171b9;
  text-transform: uppercase;  
}

.portlet-small {
  padding-top: 10px;
}

.portlet-small > .title {
  font-size: 14px;
}

.portlet > .title .fa {
  margin-right: 5px;
}

.portlet.categories .category {
  margin-top: 15px;
  min-height: 250px;
}

.portlet.categories .row {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 20px;
}

.portlet.categories .category .title {
  font-weight: bold;
  margin-bottom: 10px;
}

.portlet.categories .category .image {
  float: left;
}

.portlet.categories .category img {
  padding: 5px;
  border: 1px solid #E7E7E7;
  -webkit-box-shadow: 0px 0px 5px rgba(186, 186, 186, 0.5);
  -moz-box-shadow: 0px 0px 5px rgba(186, 186, 186, 0.5);
  box-shadow: 0px 0px 5px rgba(186, 186, 186, 0.5);
}

.portlet.categories .category .subcategories {
  width: calc(100% - 82px);
  float: left;
  list-style: none;
  padding-left: 10px;
}

.portlet.categories .category-text ul {
  padding-left: 40px;
}

.portlet.categories .small-subcategories:after {
  content: '';
  display: table;
  clear: both;
}

.portlet.categories .small-subcategories .subcategory {
  width: 138px;
  height: 280px;
  float: left;
  text-align: center;
  font-weight: bold;
  padding: 0 10px;
}

.portlet.categories .small-subcategories .subcategory img {
  padding: 5px;
  border: 1px solid #E7E7E7;
  -webkit-box-shadow: 0px 0px 5px rgba(186, 186, 186, 0.5);
  -moz-box-shadow: 0px 0px 5px rgba(186, 186, 186, 0.5);
  box-shadow: 0px 0px 5px rgba(186, 186, 186, 0.5);
  margin-bottom: 10px;
}

.catalog-options {
  border-top: 1px solid #0171b9;
  border-radius: 5px;
  background-color: #137bbe;
  background-image: linear-gradient(#137bbe, #137bbe 50%, #0171b9, #0171b9 50%);
  margin-top: 15px;
  color: #fff;
  padding: 10px 20px;
}

.catalog-options .sizes {
  display: inline-block;
  margin: 0 10px;
}

.catalog-options a {
  color: inherit;
  padding: 2px 4px;
  display: inline-block;
}

.catalog-options a.active {
  background: #ec0076;
  border-radius: 5px;
}

.catalog-options .catalog-option {
  display: inline-block;
  padding-right: 30px;
}

.catalog {
  margin-top: 5px;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 20px;
}

.catalog:after {
  content: '';
  display: table;
  clear: both;
}

.catalog .product {
  float: left;
  width: 20%;
  height: 330px;
  padding: 5px;
  text-align: center;
}

.catalog .product .product-inner {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #dbdbdb;
  background-image: linear-gradient(to top, #e9e9e9, #fff 50%);
  padding: 10px;
  border-radius: 3px;
}

.catalog .product .image {
  display: flex;
  height: 150px;
  justify-content: center;
  align-items: center;
}

.catalog .product .image img {
  display: block;
  margin: 0 auto;
  max-height: 150px;
}

.catalog .product .name {
  display: block;
  max-height: 35px;
  overflow: hidden;
  margin: 10px 0;
  margin-bottom: 0;
  font-weight: bold;
}

.catalog .product .code {
  font-size: 10px;
  display: block;
  margin-bottom: 5px;
}

.catalog .product .name-code {
  height: 52px;
}

.catalog .product .price {
  display: block;
  color: #ec0076;
  font-weight: 600;
}

.catalog .product .mo-price {
  margin-bottom: 5px;
  color: #767e86;
  font-weight: normal;
  font-size: 11px;
}

.catalog .product .more {
  display: inline-block;
  text-transform: uppercase;
  background-color: #f7007a;
  background-image: linear-gradient(#f7007a, #d2006b);
  color: #fff;
  border-radius: 5px;
  padding: 5px 15px;
  font-weight: bold;
}

.catalog .product .buttons {
  white-space: nowrap;
}

.catalog .product .buttons .btn {
  font-size: 12px;
  padding-left: 5px;
  padding-right: 5px;
}

.catalog .product .buttons .btn i {
  margin-right: 0;
}

.catalog-actions .catalog {
  margin-bottom: 20px;
}

.catalog-actions .catalog-title {
  font-size: 14px;
  font-weight: bold;
}

.catalog-actions .catalog-title i {
  margin-right: 10px;
}

.catalog-actions .catalog .product {
  width: 25%;
}

@media(max-width: 879px) {
  .catalog .product {
    width: 25%;
  }
}

@media(max-width: 720px) {
  .catalog .product,
  .catalog-actions .catalog .product {
    width: 50%;
  }
}

@media(max-width: 400px) {
  .catalog .product,
  .catalog-actions .catalog .product {
    width: 100%;
  }
}

.pagination {
  margin: 20px 0;
  text-align: right;
}

.pagination a,
.pagination span {
  color: inherit;
  display: inline-block;
  padding: 2px 4px;
}

.pagination span {
  cursor: default;
}

.pagination a:hover {
  color: inherit;
}

.pagination span {
  color: #fff;
  background: #ec0076;
  border-radius: 5px;
}

.portlet.product {
  padding: 0;
}

.portlet.product:after {
  content: '';
  display: table;
  clear: both;
}

.portlet.product .image-column {
  float: left;
  width: 40%;
  background: #fff;
  box-shadow: 6px 0px 7px rgba(100, 100, 100, 0.1);
  padding: 30px 10px;
  text-align: center;
  min-height: 670px;
}

.portlet.product .image-column .main-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 355px;
  margin: 0 auto;
}

.portlet.product .image-column .gallery img {
  box-shadow: 4px 4px 8px rgba(50, 50, 50, 0.2);
  margin: 0 5px 10px 5px;
  width: 90px;
}

.portlet.product .content-column {
  float: right;
  width: 60%;
  padding: 30px 10px 30px 30px;
}

.portlet.product .content-column ul {
  padding-left: 20px;
}

.portlet.product .product-title:after {
  content: '';
  display: table;
  clear: both;
}

.portlet.product h1 {
  float: left;
  margin-bottom: 0;
}

.portlet.product h1 small {
  font-weight: normal;
  display: block;
  color: #565656;
  line-height: 100%;
  font-size: 12px;
  text-transform: none;
}

.portlet.product .stock {
  float: right;
}

@media (max-width: 520px) {
  .portlet.product .content-column,
  .portlet.product .image-column {
    float: none;
    width: 100%;
  }
  
  .portlet.product .content-column {
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
  }
  
  .portlet.product .image-column {
    box-shadow: none;
    min-height: 0;
    padding-top: 10px;
  }
}

.stock .in-stock {
  font-weight: bold;
  color: #50a211;
}

.stock .not-in-stock {
  font-weight: bold;
  color: #ff9800;
}

.stock .ordered {
  font-weight: bold;
  color: #ff9800;
}

.portlet.product .shopping-info {
  margin-bottom: 30px;
}

.portlet.product .shopping-info .to-cart {
  margin-top: 15px;
}

.portlet.product .shopping-info .to-cart .form-control {
  width: 40px;
  text-align: center;
  display: inline-block;
}

.portlet.product .shopping-info .to-cart .btn {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 3px;
}

.portlet.product .shopping-info .price-main {
  display: block;
  color: #0171b9;
  font-size: 20px;
  margin-bottom: 5px;
}

.portlet.product .shopping-info .price-netto {
  color: #9b9ca7;
  display: block;
}

.portlet.product .shopping-info .price-old {
  display: block;
  font-size: 16px;
  margin-top: 20px;
}

.portlet.product .shopping-info .price-old .number {
  position: relative;
}

.portlet.product .shopping-info .price-old .number:after {
  content: '';
  border-top: 1px solid red;
  position: absolute;
  left: 0;
  bottom: 8px;
  right: 0;
  transform: rotateZ(-10deg);
  
}

.nav-tabs li:hover a,
.nav-tabs li a {
  color: #fff;
  background: #0171b9;
  border-color: transparent;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 5px 15px;
  margin-right: 5px;
}

.nav-tabs li.active a,
.nav-tabs li.active a:hover,
.nav-tabs li.active a:focus {
  color: #137bbe;
  font-weight: bold;
  background: #fff;
  border-color: #dbdbdb #dbdbdb transparent #dbdbdb;
}

.tab-content {
  background-color: #fff;
  background-image: linear-gradient(to top, #e9e9e9, #fff 179px);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 1px solid #dbdbdb;
  border-top: none;
  min-height: 200px;
  margin-bottom: 20px;
  padding: 15px;
}

.parameters {
  border-collapse: separate;
  border-spacing: 2px;
}

.parameters th,
.parameters td {
  padding: 3px 5px;
}

.parameters th {
  color: #fff;
  background: #0171B9;
  font-weight: normal;
}

.parameters td {
  background: #D9DDE0;
}

.download-list {
  list-style: none;
}

.download-list i {
  font-size: 20px;
  margin-right: 5px;
}

.download-list li {
  margin-bottom: 7px;
}

.download-list .fa-file-pdf-o {
  color: #f24236;
}

.numlbl {
  background-color: #0db4e1;
  color: #fff;
  border-radius: 9px;
  font-size: 12px;
  padding: 2px 4px;
  min-width: 19px;
  min-height: 19px;
  display: inline-block;
  text-align: center;
  position: relative;
  top: -10px;
  left: -4px;
}

.table-bordered th {
  font-weight: normal;
  background: #0171B9;
  background-image: linear-gradient(#137bbe, #137bbe 50%, #0171b9, #0171b9 50%);
  color: #fff;
}

.table-bordered>thead>tr>th, .table-bordered>thead>tr>td {
  border-bottom-width: 1px;
}

.table td,
.table th {
  vertical-align: middle !important;
}

.table .actions {
  text-align: center;
  white-space: nowrap;
}

.table .actions .btn {
  margin: 0 5px;
}

.table-filter {
  margin-bottom: 20px;
}

fieldset {
  padding: 15px;
  padding-top: 25px;
  padding-bottom: 30px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  margin-bottom: 30px;
  background: #fff;
  position: relative;
}

fieldset > legend {
  width: auto;
  border: none;
  color: #757272;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
  position: absolute;
  left: 15px;
  top: -9px;
  background: #fff;
}

fieldset > .form-group:last-child {
  margin-bottom: 0;
}

.conditional-fields {
  /*display: none; vue*/
  margin: 10px 0 20px 25px;
}

.input-group-addon {
  background-color: #f9f9f9;
  padding-left: 8px;
  padding-right: 8px;
  min-width: 30px;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active:active {
  background-color: #137bbe;
  border-color: #137bbe;
}

.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover:active {
  background-color: #137bbe;
  border-color: #137bbe;
}

.datepicker table tr td.active.active.focus, .datepicker table tr td.active.active:focus, .datepicker table tr td.active.active:hover, .datepicker table tr td.active.highlighted.active.focus, .datepicker table tr td.active.highlighted.active:focus, .datepicker table tr td.active.highlighted.active:hover, .datepicker table tr td.active.highlighted:active.focus, .datepicker table tr td.active.highlighted:active:focus, .datepicker table tr td.active.highlighted:active:hover, .datepicker table tr td.active:active.focus, .datepicker table tr td.active:active:focus, .datepicker table tr td.active:active:hover {
  background-color: #0171b9 ;
  border-color: #0171b9 ;
}

.datepicker table tr td span.active.active.focus, .datepicker table tr td span.active.active:focus, .datepicker table tr td span.active.active:hover, .datepicker table tr td span.active.disabled.active.focus, .datepicker table tr td span.active.disabled.active:focus, .datepicker table tr td span.active.disabled.active:hover, .datepicker table tr td span.active.disabled:active.focus, .datepicker table tr td span.active.disabled:active:focus, .datepicker table tr td span.active.disabled:active:hover, .datepicker table tr td span.active.disabled:hover.active.focus, .datepicker table tr td span.active.disabled:hover.active:focus, .datepicker table tr td span.active.disabled:hover.active:hover, .datepicker table tr td span.active.disabled:hover:active.focus, .datepicker table tr td span.active.disabled:hover:active:focus, .datepicker table tr td span.active.disabled:hover:active:hover, .datepicker table tr td span.active:active.focus, .datepicker table tr td span.active:active:focus, .datepicker table tr td span.active:active:hover, .datepicker table tr td span.active:hover.active.focus, .datepicker table tr td span.active:hover.active:focus, .datepicker table tr td span.active:hover.active:hover, .datepicker table tr td span.active:hover:active.focus, .datepicker table tr td span.active:hover:active:focus, .datepicker table tr td span.active:hover:active:hover {
  background-color: #0171b9 ;
  border-color: #0171b9 ;
}

.dropdown-menu {
  padding: 5px;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover {
  color: inherit;
  background-color: #eee;
  border-color: #eee;
}

.service .editale-table {
  margin-bottom: 60px;
}

.service .editale-table .line {
  width: 30px;
  text-align: center;
}

.service .editale-table .actions {
  width: 100px;
}

.service .services-table .time {
  width: 80px;
  text-align: right;
}

.service .services-table .price-hour {
  width: 100px;
  text-align: right;
}

.service .services-table .price-total {
  width: 110px;
  text-align: right;
}

.service .summary {
  text-align: right;
  font-size: 16px;
  margin-bottom: 15px;
  border-bottom: 1px solid #dcdcdc;
}

.service .summary .price {
  display: block;
  margin-bottom: 20px;
}

.service .summary .label {
  font-size: inherit;
  font-weight: normal;
  color: inherit;
}

.service .summary .number {
  display: inline-block;
  font-weight: bold;
  width: 200px;
  text-align: right;
}

.service .summary .price-total .number {
  font-size: 26px;
}

@media (max-width: 400px) {
  .service .summary .label,
  .service .summary .number {
    display: block;
    text-align: left;
    padding-left: 0;
  }
  
  .service .summary .label {
    margin-bottom: 5px;
  }
}

.service .inspection-dates .form-inline {
  margin-bottom: 10px;
}

.breadcrumb>li+li:before {
  display: none;
}

/* nakupny kosik */
.cart {
  padding-bottom: 40px;
}

.cart .steps {
  text-align: center;
  margin-bottom: 57px;
  margin-top: 30px;
}

.cart .steps a {
  text-align: center;
  color: #6c7b8e;
  display: inline-block;
  width: 160px;
  vertical-align: top;
  position: relative;
  margin-right: 80px;
  line-height: 140%;
  font-size: 14px;
  font-weight: 700;
}

.cart .steps a:last-child {
  margin-right: 0;
}

.cart .steps a:after {
  content: '';
  height: 3px;
  background: linear-gradient(90deg, #d9dee4, #fff);
  position: absolute;
  left: 99px;
  top: 50px;
  width: 300px;
  z-index: 1;
}

.cart .steps a:last-child:after {
  display: none;
}

.cart .steps .fa {
  position: relative;
  z-index: 2;
  width: 99px;
  height: 99px;
  line-height: 99px;
  border-radius: 50%;
  border: 1px solid #d4d8e1;
  font-size: 28px;
  display: block;
  margin: 0 auto 18px auto;
  background: #f6f7f9;
  background: linear-gradient(-45deg, #fff, #eef2f5);
}

.cart .steps a.active,
.cart .steps a:hover {
  color: #0171b9;
}

.cart .steps a:hover,
.cart .steps a:focus {
  text-decoration: none;
}

.cart .steps a.active .fa,
.cart .steps a:hover .fa {
  border-color: #0171b9;
}

.cart .steps a.completed {
  color: #d2d7dd;
}

.cart .steps a.completed .fa {
  border-color: #d2d7dd;
}

.cart .tip {
  padding: 15px;
  background: #ff8d11;
  border-bottom: 4px solid #d5730e;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.cart .tip em {
  font-weight: 700;
  font-style: normal;
}

.cart .tip strong,
.cart .tip .underline {
  font-size: 22px;
  font-weight: 700;
}

.cart .tip .underline:after {
  border-color: #fff;
  border-width: 2px;
  padding-top: 3px;
}

.cart .tip .btn {
  border: 1px solid #fec484;
  background: none;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 15px;
  margin-left: 20px;
  vertical-align: middle;
}

.cart .tip .btn:hover,
.cart .tip .btn:focus {
  background: #ff8500;
  color: #fff;
}

.table-cart-items>thead>tr>th {
  font-weight: 700;
  background: #edeef2;
  padding: 12px;
}

.table-cart-items>tbody>tr>td {
  vertical-align: middle;
  padding: 12px;
}

.table-cart-items td:nth-child(1) img {
  width: 100px;
  height: auto;
}

.table-cart-items .delete {
  color: #ff1138;
  font-size: 20px;
}

.table-cart-items .price {
  color: #000;
}

.table-cart-items .qty {
  width: 40px;
  height: auto !important;
  text-align: center;
  margin: 0 auto;
}

.table-cart-items>tbody>tr:nth-child(even)>td {
  background: #f4f5f7;
}

.table-cart-items>tbody>tr:nth-child(even)>td:first-child {
  background: #fff;
}

.table-cart-items>tbody>tr>td:nth-child(1),
.table-cart-items>tbody>tr>td:nth-child(7) {
  width: 1%;
}

.table-cart-items>thead>tr>th:nth-child(4),
.table-cart-items>tbody>tr>td:nth-child(5) {
  text-align: center;
}

.table-cart-items tr.loan td {
  background-color: #c5e9f6 !important;
}

.table-cart-items .in-stock,
.table-cart-items .not-in-stock,
.table-cart-items .ordered {
  font-weight: normal;
}

.cart .gift-code {
  background: url('../images/gift-bkg.png') left top repeat-x;
  height: 101px;
  padding: 20px;
  font-size: 18px;
}

.cart .gift-code .title .fa {
  font-size: 40px;
  margin-right: 40px;
  position: relative;
  vertical-align: middle;
}

.cart .gift-code .title:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.cart .gift-code .input-group {
  float: right;
  width: 450px;
  margin-top: 6px;
}

.cart .gift-code .input-group .form-control {
  height: 50px;
}

.cart .gift-code .input-group .btn {
  padding-top: 15px;
  padding-bottom: 15px;
}

.cart .items-sum-price {
  font-size: 24px;
  color: #000;
  text-align: right;
  margin-top: 35px;
  margin-bottom: 60px;
}

.cart .items-sum-price .title {
  color: #0171b9;
  display: inline-block;
  padding: 10px 0;
}

.cart .items-sum-price .price {
  margin-left: 20px;
  white-space: nowrap;
  display: inline-block;
  padding: 10px 0;
}

.cart .items-sum-price .vat {
  font-weight: 300;
  font-size: 13px;
  font-style: normal;
}

.cart .payment-options .option {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.cart .payment-options .option > .ds-radio {
  position: absolute;
  left: 0;
  top: -4px;
}

.cart .payment-options .option > label {
  text-transform: uppercase;
  color: #0171b9;
  font-weight: 700;
}

.cart .payment-options .description {
  line-height: 140%;
}

.cart .payment-options .price {
  color: #000;
  display: block;
  margin-top: 20px;
}

.cart .price-recap {
  margin-bottom: 40px;
}

.cart .price-recap:after {
  content: '';
  display: table;
  clear: both;
}

.cart .price-recap-container {
  float: right;
}

.cart .price-recap dl {
  padding: 10px 0;
}

.cart .price-recap dl:after {
  content: '';
  display: table;
  clear: both;
}

.cart .price-recap dt {
  text-transform: uppercase;
  text-align: right;
  font-size: 22px;
  float: left;
  min-width: 270px;
}

.cart .price-recap dd {
  text-align: right;
  float: right;
  min-width: 250px;
}

.cart .price-recap .total {
  color: #000;
  border-top: 1px solid #d9dee4;
  padding-top: 20px;
}

.cart .price-recap .total dt {
  font-size: 28px;
}

.cart .price-recap .total .price {
  font-size: 28px;
}

.cart .price-recap .total .price .vat {
  color: #6c7b8e;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
}

.cart .cart-toolbar {
  display: table;
  width: 100%;
}

.cart .cart-toolbar .ds-checkbox span {
  top: 2px;
}

.cart .cart-toolbar > div {
  display: table-cell;
}

.cart .cart-toolbar .back-button,
.cart .cart-toolbar .finish-button {
  width: 1%;
}

.cart .cart-toolbar .agreements {
  background-color: #f4f5f7;  
  padding: 20px 15px;
}

@media (max-width: 767px) {
  .cart .cart-toolbar,
  .cart .cart-toolbar > div {
    display: block;
  }
  
  .cart .cart-toolbar > div {
    float: left;
  }
  
  .cart .cart-toolbar .btn {
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .cart .cart-toolbar .back-button {
    width: 20%;
  }
  
  .cart .cart-toolbar .agreements {
    width: 80%;
    height: 70px;
    line-height: 100%;
  }
  
  .cart .cart-toolbar .finish-button {
    width: 100%;
  }
  
  .cart .cart-toolbar .finish-button .btn {
    font-size: 11px;
  }
}

@media (max-width: 630px) {
  .cart .price-recap-container {
    float: none;
  }
  
  .cart .price-recap-container dt,
  .cart .price-recap-container dd {
    float: none;
    text-align: left;
  }
}

.order-summary .title {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.order-summary .title2 {
  display: block;
  color: #0171b9;
  text-transform: uppercase;
  font-weight: 700;
}

.order-summary small {
  display: block;
  line-height: 150%;
}

.order-summary .price {
  display: block;
  color: #000;
  margin-top: 15px;
}

.cart-thanks {
  background: url('../images/sleeping-woman.jpg') center top no-repeat;
  background-size: cover;
  min-height: 884px;
}

.cart-thanks .thanks {
  margin-top: 150px;
  font-size: 40px;
  font-weight: 700;
  line-height: 150%;
}

.cart-thanks .thanks strong {
  font-size: 63px;
  display: block;
}

.cart-thanks .thanks em {
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  display: block;
}

.cart-register {
  background: url('../images/contact-bg.jpg') top right no-repeat;
  background-size: contain;
  min-height: 600px;
  padding-bottom: 140px;
  margin-bottom: 60px;
}

.cart-register .login-register {
  margin-top: 60px;
}

.cart-register .login-box {
  background: #f6f7f9;
  border: 1px solid #e8e9ee;
  padding: 30px;
}

.cart-register .login-box .title {
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cart-register .login-box .btn-facebook,
.cart-register .login-box .btn-google {
  font-size: 12px;
  border: 1px solid #3b5999;
  background: none;
  padding: 10px 10px;
  text-transform: none;
}

.cart-register .login-box .btn-facebook {
  color: #3b5998;
  border-color: #3b5999;
}

.cart-register .login-box .btn-google {
  color: #ce5239;
  border-color: #ce523a;
}

.cart-register .login-box .btn-facebook .fa,
.cart-register .login-box .btn-google .fa {
  font-size: 16px;
}

.cart-register .login-box .login-btn {
  text-align: center;
  margin-top: 30px;
}

.cart-register .login-box .login-btn .btn {
  margin-bottom: 20px;
}

.cart-register .registration-box .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}

.cart-register .registration-box .title strong {
  color: #ff8d11;
}

.cart-register .registration-box .benefits {
  font-size: 16px;
  margin: 20px 0;
}

.cart-commands:after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 580px) {
  .cart .cart-commands .btn span {
    display: none;
  }
}

.cart .thanks {
  text-align: center;
  margin-bottom: 200px;
}

.cart .thanks .success-icon {
  margin: 60px auto;
  width: 150px;
  height: 150px;
  line-height: 150px;
  font-size: 100px;
  border-radius: 50%;
  background: #81dc35;
  background-image: linear-gradient(#81dc35, #70bf2f);
  color: #fff;
  text-shadow: 0px 5px 0px #64b124;
  box-shadow: inset -1px -8px 20px 0px #64b124, 0px 14px 20px 0px #e4e4e4;;
}

.cart .thanks .thx-line {
  font-size: 30px;
  font-weight: 300;
  color: #088abf;
  margin-bottom: 60px;
  line-height: 120%;
}

@media (max-width: 922px) {
  .cart .steps a {
    margin-right: 25px;
  }
  
  .cart .steps a:after {
    display: none ;
  }
}

@media (max-width: 774px) {
  .cart .steps a {
    font-size: 0;
    margin-right: 0px;
    width: 110px;
  }
}

@media (max-width: 500px) {
  .cart .steps {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .cart .steps a {
    width: 60px;
  }
  
  .cart .steps .fa {
    width: 50px;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
  }
}

/* home banner */
.banner {
  position: relative;
  max-width: 1000px;
  border-radius: 5px;
  overflow: hidden !important;
  width: 100%;
  /*height: 340px;*/
  margin-top: 23px;
}

.banner .big-caption {
  font-size: 32px;
  color: #f50079;
  text-shadow: 1px 1px 3px #d3006c;
}

.banner .small-caption {
  font-size: 16px;
  color: #fff;
}

.banner li {
  visibility: hidden;
}

.banner .tp-static-layers .caption  {
  visibility: hidden;
}

.portlet-login {
  margin-top: 15px;
}

.portlet-login .actions {
  text-align: center;
  font-size: 11px;
}

.portlet-login .actions .btn {
  display: block;
  margin: 15px auto 10px auto;
}

.trainings {
  list-style-type: none;
}

.trainings li {
  margin-bottom: 15px;
}

.trainings a {
  color: #f50079;
  font-weight: bold;
}

.trainings .title {
  display: block;
}

.trainings .description {
  display: block;
}

.trainings .description p {
  margin-bottom: 0;
}

.trainings .date {
  display: block;
  font-style: italic;
}

.table-training-program th,
.table-training-program td {
  padding: 3px 6px;
  vertical-align: top;
}

.table-training-program th {
  text-align: left;
  color: #f50079;
}

.quick-actions {
  margin-top: 25px;
  margin-bottom: 20px;
  text-align: center;
}

.quick-actions a {
  padding: 15px 10px;
  margin-bottom: 5px;
  font-size: 12px;
}

.quick-actions i {
  color: #9ed0ea;
  font-size: 18px;
  margin-right: 10px !important;
}

.quick-actions .btn-help {
  padding-left: 10px;
  padding-right: 10px;
  border-left: 1px solid #9ed0ea;
}

.quick-actions .btn-help i {
  margin: 0 !important;
}

@media (max-width: 970px) {
  .quick-actions a {
    padding: 8px 5px;
  }
}

@media (max-width: 715px) {
  .quick-actions {
    margin-top: 15px;
    margin-bottom: 7px;
  }  
  
  .quick-actions a {
    font-size: 12px;
    font-weight: normal;
  }
}

@media (max-width: 715px) {
  .quick-actions {
    margin-top: 5px;
    margin-bottom: 0px;
  }  
  
  .quick-actions i {
    margin-right: 0 !important;
  }
  
  .quick-actions a {
    padding: 10px 15px;
  }
  
  .quick-actions a span {
    display: none;
  }
}

.dashboard .portlet {
  min-height: 330px;
}

.dashboard .portlet-content {
  height: 250px;
  overflow-y: auto;
}

.dashboard .portlet-profile-info .portlet-content {
  overflow-y: visible;
  height: auto;
  font-size: 11px;
}

.dashboard .portlet-profile-info .profile-button {
  text-align: center;
  margin-top: 20px;
}

.dashboard .portlet-profile-info address {
  background: #ebeef2;
  padding: 5px;
  border: 1px dashed #bfbfbf;
}

.dashboard .credit-limit {
  margin: 0 auto 20px auto;
}

.dashboard .credit-limit td {
  padding: 4px;
}

.dashboard .credit-limit td:nth-child(1) {
  text-align: right;
  font-weight: bold;
}

.dashboard .credit-limit .zostavajuci {
  color: #0171b9;
  font-size: 16px;
}

.dashboard .credit-limit .cerpany {
  color: #e90969;
  font-size: 16px;
}

.dashboard .table {
  font-size: 11px;
}

.dashboard .table td,
.dashboard .table th {
  padding: 4px;
}

.dashboard .label {
  font-size: 10px;
}

.dashboard .no-records {
  text-align: center;
  margin-top: 100px;
  color: #aaa;
}

/* responsive menu */


.side-menu-wrapper {
  overflow: hidden;
  min-width: 320px;
}

.mobile-menu {
  position: fixed;
  width: 320px;
  color: #fff;
  background-color: #137bbe;
  background-image: linear-gradient(#137bbe, #0171b9);
  left: -350px;
  top: 0;
  height: 500px;
  z-index: 30000;
  height: 100%;
  box-shadow: -1px 0 5px #dfdede;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.mobile-menu .btn-close {
  position: absolute;
  right: 10px;
  top: 0px;
  text-decoration: none;
  font-size: 20px;
  padding: 5px;
  color: inherit;
}

    
.mobile-menu .menu {
  margin-top: 20px;
}
    
.mobile-menu .menu .site-title {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-size: 20px;
}
    
.mobile-menu .menu a {
  display: block;
  padding: 14px 20px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}
    
.mobile-menu .menu a.active,
.mobile-menu .menu a:focus,
.mobile-menu .menu a:hover {
  color: #fff;
  background-color: #0ed9f7;
  background-image: linear-gradient(horizontal, #0ed9f7, #0c98d2);
}

.mobile-menu .menu a i {
  margin-right: 10px;
}

.mobile-menu .menu a.btn-help {
  display: none;
}

.mobile-menu.active {
  left: 0;
}

.menu-logo {
  text-align: center;
  margin-top: 20px;
}

.menu-logo img {
  width: 168px;
  height: 79px;
}

.page-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #e5e5e5;
  z-index: 10000;
  opacity: 0.8;
}

.centered-captcha .g-recaptcha {
  margin-top: 30px;
}

.centered-captcha .g-recaptcha > div {
  margin-left: auto;
  margin-right: auto;
}

.display-none {
  display: none;
}

.modal-backdrop {
  background-color: #e8f0f5;
}

.modal-content {
  box-shadow: 3px 3px 1px rgba(0,0,0,.1);
}

.modal {
  text-align: center;
  padding: 0!important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.modal-title {
  font-weight: normal;
}

.modal-title i {
  color: #f5007a;
  margin-right: 5px;
}

.modal-header .close {
  margin-top: 3px;
}

.modal .form-group label {
  text-align: left;
}

.modal-compatibility .input-group {
  margin-top: 15px;
}

.modal-compatibility .contact-support {
  margin-top: 10px;
  display: inline-block;
}

.loading {
  position: relative;
  padding-right: 25px;
}

.loading:after {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  right: 5px;
  top: 5px;
  background: url('../images/spinner-white.svg') no-repeat;
  background-size: 15px 15px;
}

.table-filter {
  margin-bottom: 20px;
}

.accordion-gallery {
  margin-top: 25px;
}

.accordion .panel-heading {
  color: #fff;
  background: #0171B9;
  background-image: linear-gradient(#137bbe, #137bbe 50%, #0171b9, #0171b9 50%);
  padding: 8px 15px;
}

.accordion .panel-title {
  font-size: 13px;
  font-weight: bold;
}

.accordion .panel-title a:hover {
  color: #fff;
}

.accordion .panel-title i {
  margin-right: 5px;
}

.gallery-images {
  margin-left: -3px;
  margin-right: -3px;
}

.gallery-images .image-container {
  width: 25%;
  height: 160px;
  float: left;
  padding: 3px;
}

.gallery-images .image {
  display: block;
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 5px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all .3s ease;
}

.gallery-images .image-content {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gallery-images .image:hover {
  border-color: #0171b9;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity .5s
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
  opacity: 0
}

input[type=number] {
  -moz-appearance:textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.edit-profile address {
  position: relative;
  padding: 5px;
  border: 1px dashed #bfbfbf;
  font-size: 11px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.edit-profile address .buttons {
  position: absolute;
  right: 5px;
  top: 5px;
}

.edit-profile address .buttons a {
  display: inline-block;
}

.edit-profile address .buttons a:nth-child(2) {
  color: #d2006b;
  margin-left: 5px;
}

.edit-profile address.default {
  color: #0171b9;
}

.grid-filter {
  padding: 9px;
  margin-bottom: 15px;
}

.grid-filter .date-picker {
  min-width: 80px;
}

.grid-filter > .form-control,
.grid-filter .input-group {
  margin-top: 2px;
  margin-bottom: 2px;
}

.grid-toolbar {
  margin-bottom: 15px;
  text-align: right;
}

.grid-footer-toolbar .btn {
  margin-bottom: 4px;
}

.input-group-small {
  width: 120px;
}

.table-data .check-row {
  padding-top: 2px;
  vertical-align: top !important;
  width: 30px;
  text-align: center;
}

.table-data .check-row .ds-checkbox-inline {
  padding-top: 0;
}

.table-data .check-row .ds-checkbox {
  padding-left: 18px;
}

.table-data .check-row .ds-checkbox span {
  top: 0;
}

/* select2 */
.select2 {
  width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.select2-container .select2-selection--multiple {
  min-height: 34px;
  height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow {
  top: 0;
  height: 28px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  line-height: 28px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #0171b9;
}

.select2-results__option {
  min-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default .select2-selection--multiple .select2-selection__arrow b {
  border-color: #afafaf transparent transparent transparent;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  font-size: 13px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  line-height: 20px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #0171b9;
}

.datepicker {
  z-index: 100 !important;
}

.btn-popover {
  border: none;
  background: none;
  color: #0171b9;
  font-size: 16px;
}

.btn-popover i {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.catalog .product .stock {
  margin-bottom: 5px;
}

.catalog .product .stock span {
  font-weight: normal;
}

.search-autocomp {
  background: #fff;
  border: 1px solid #d9dddf;
  position: absolute;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  box-shadow: 1px 1px 3px rgba(0,0,0,.1);
  z-index: 1000;
  max-height: 80vh;
  overflow-y: auto;
}
      
.search-autocomp .section {
  background: #f0f1f2;
  padding: 8px 15px;
}
  
.search-autocomp a {
  color: #000;
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  border-bottom: 1px solid #d9dddf;
}

.search-autocomp a:last-child {
  border-bottom: none;
}
    
.search-autocomp a:hover,
.search-autocomp a.active {
  background: #fffccd;
}
    
.search-autocomp a em {
  display: inline-block;
  background: #ffef07;
  color: inherit;
  font-style: normal;
}
  
.search-autocomp .products-results a {
  display: flex;
  align-items: center;
} 

.search-autocomp .products-results a .image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  flex: 0 0 60px;
}
        
.search-autocomp .products-results a img {
  max-width: 40px;
  max-height: 40px;
}
      
.search-autocomp .products-results a .name {
  flex: 1 1 auto;
}
        
.search-autocomp .products-results a .name strong {
  display: block;
}
      
.search-autocomp .products-results a .price {
  flex: 0 0 100px;
  text-align: right;
}
  
.search-autocomp .empty {
  display: block;
  padding: 8px 15px;
  font-style: italic;
  color: #7a7e81;
}

.item-info {
  padding: 15px 0;
}

.item-info label {
  font-weight: bold;
}

.item-info .btn {
  display: block;
  margin: 40px auto 0 auto;
}

.item-info .service-dates {
  margin-left: 10px;
}

.btn-floating-action {
  color: #fff;
  background: #f7007a;
  border-radius: 50%;
  font-size: 25px;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, .1);
}

.btn-floating-action:hover,
.btn-floating-action:focus {
  color: #fff;
}

@media (max-width: 767px) { 
  .page-login .logo-header {
    display: none;
  }
  
  .page-login .breadcrumb {
    display: none;
  }
}

.item-quick-action {
  padding: 15px 0;
  text-align: center;
}

.item-quick-action .serial {
  margin-top: 5px;
  margin-bottom: 30px;
  font-weight: bold;
}

.item-quick-action .buttons a {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 13px 15px;
}

.ui-helper-hidden-accessible {
  display: none;
}

.ui-autocomplete {
  position: absolute;
  list-style: none;
  background: #fff;
  border: 1px solid #d9dddf;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  border-top: none;
  z-index: 1000;
  overflow-y: auto;
}

.ui-autocomplete li {
  color: #000;
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  border-bottom: 1px solid #d9dddf;
  font-size: 12px;
}

.ui-autocomplete li:last-child {
  border-bottom: none;
}
    
.ui-autocomplete li:hover {
  background: #fffccd;
}
   
.form-inspection .form-control {
  margin-top: 3px;
  margin-bottom: 3px;
}

.form-shipping-expenses {
  max-width: 140px;
  margin-bottom: 30px;
}

.grid-footer-right {
  text-align: right;
}

.help-block .btn {
  display: none;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.video-help {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 20px;
}

.video-help iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 700px) {
  .help-block .btn {
    display: table;
  }
  
  .video-help {
    display: none;
  }
}

.home-buttons {
  display: flex;
  margin-top: 15px;  
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.home-buttons .btn {
  flex: 0 0 calc(33.33333% - 15px);
  margin-left: 7.5px;
  margin-right: 7.5px;
  padding: 15px;
}

@media (max-width: 600px) {
  .home-buttons {
    display: block;
  }
  
  .home-buttons .btn {
    display: block;
    max-width: 322px;
    margin: 0 auto 15px auto;
  }
}

.attached-files {
  margin-top: 10px;
}

.attached-file {
  margin-bottom: 5px;
}

.attached-file .remove {
  display: inline-block;
  margin-left: 5px;
  color: #f00;
}

.nested-questionnaire .form-group .form-group {
  margin-top: 10px;
 /*margin-left: 30px;*/
}

.nested-questionnaire .form-group .form-group > label {
  text-align: left;
  display: block;
}

.nested-questionnaire .form-group .form-group .input-group,
.nested-questionnaire .form-group .form-group .form-control {
  max-width: 300px;
}

.dpd-pickup-form .btn {
  margin-top: 20px;
}

.dpd-pickup-form .selected-place {
  display: block;
  margin-top: 5px;
  font-weight: bold;
}