/* ========================================================================
   Component: Base style
 ========================================================================== */

/*

font-family: 'Raleway', sans-serif;
font-family: 'Roboto', sans-serif;

*/

/* Html / body */

html {
  background: #F7F7F7;
	font-family: 'Roboto', sans-serif;
	color: #000;
  font-weight: 400;
	font-size: 16px;
  line-height: 24px;
}

/* Loader */

#loader {
  position: fixed;
  top: 0;
  z-index: 9999;
  min-height: 480px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border: 16px solid #f7f7f7;
  border-top: 16px solid #f7f7f7;
  border-right: 16px solid #979ca4;
  border-bottom: 16px solid #979ca4;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load 2s infinite linear;
  animation: load 2s infinite linear;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#system-message-container { 
  max-width: 300px;
  width: 100%;
  position: fixed;
  top: 180px;
  left: 50%;
  z-index: 1000;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

@media(min-width: 768px) {
  #system-message-container { 
    max-width: 550px;
    width: 100%;
  }
}

/* Text, navigation */

.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}

@media(max-width: 639px) {
  h1 {
    font-size: 26px;
    line-height: 32px;
  }
  h2 {
    font-size: 22px;
    line-height: 28px;
  }
  h3 {
    font-size: 20px;
    line-height: 26px;
  }
  *+.uk-h1, *+.uk-h2, *+.uk-h3, *+.uk-h4, *+.uk-h5, *+.uk-h6, *+.uk-heading-2xlarge, *+.uk-heading-large, *+.uk-heading-medium, *+.uk-heading-small, *+.uk-heading-xlarge, *+h1, *+h2, *+h3, *+h4, *+h5, *+h6 {
    margin-top: 20px;
  }
}

.uk-panel-title {
	font-weight: 300;
}

.uk-panel-title > svg {
	width: 20px;
	height: 20px;
}

.uk-panel-title > svg.my-profile {
	margin-top: -7px;
}

.uk-panel-title > svg.category {
	margin-top: -7px;
}

.uk-panel-title > svg.envelope {
	margin-top: -4px;
}

.uk-panel-title > svg.recommend {
	margin-top: -5px;
}

.uk-link, a {
	color: #000000;
}

.uk-link:hover, a:hover {
	color: #000000;
	text-decoration: underline;
}

/* Wrapper */

.tm-wrapper-page {
  max-width: 1920px;
  margin: 0 auto;
}

/* Container */

.uk-container {
	max-width: 1300px;
}

@media(min-width: 1600px) {
  .uk-container-large {
    max-width: 1520px;
  }
}

/* Table */

.uk-table-responsive tbody tr > td h5 {
    display: none;
}

@media(max-width: 959px){
    .uk-table-responsive tbody tr > td h5 {
        font-size: .875rem;
        font-weight: 400;
        width: 50%;
        display: inline-block;
        visibility: visible;
        float: left;
        line-height: 24px;
        margin: 0 !important;
        text-align: left;
    }
    .uk-table-responsive tbody tr > td h5 + div {
        display: inline-block;
        width: 50%;
        text-align: left;
    }
}

/* ========================================================================
   Component: Headerbar / navbar
 ========================================================================== */
/*
.tm-header-block {
  max-height: 100vh;
  overflow: hidden;
}
*/

.tm-navbar-block {
  background: #fff;
  -webkit-box-shadow: 0px 0px 12px -4px rgba(41,41,41,.25);
  -moz-box-shadow: 0px 0px 12px -4px rgba(41,41,41,.25);
  box-shadow: 0px 0px 12px -4px rgba(41,41,41,.25);
  width: 100%;
  height: 130px;
  max-width: 1920px;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.tm-navbar-block .uk-logo {
  padding: 20px 30px;
}

.tm-navbar-block .uk-logo > img {
  height: 90px;  
}

.tm-navbar-block .uk-navbar-nav > li > a {
  color: #000;
  min-height: 130px;
  font-size: 16px;
  position: relative;
  -webkit-transition: linear 0.35s;
  transition: linear 0.35s;
}

.tm-navbar-block .uk-navbar-nav > li > a::before {
  background: #000;
  content:"";
  width: 0;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
   -webkit-transition: linear 0.35s;
  transition: linear 0.35s;
}

.tm-navbar-block .uk-navbar-nav > li.uk-active > a {
  color: #000 !important;
}

.tm-navbar-block .uk-navbar-nav > li.uk-active > a::before {
  background: #000 !important;
  width: calc(100% - 30px);
}

.tm-navbar-block .uk-navbar-nav > li > a:hover, .tm-navbar-block .uk-navbar-nav > li > a:focus {
  color: #1e87f0;
}

.tm-navbar-block .uk-navbar-nav > li > a:hover::before, .tm-navbar-block .uk-navbar-nav > li > a:focus::before {
  background: #1e87f0;
  width: calc(100% - 30px);
}

.tm-navbar-block .mobile > a {
  line-height: 130px;
}

@media(max-width: 767px) { 
  .tm-navbar-block {
    height: 100px;
  }
  .tm-navbar-block .uk-logo > img {
    height: 60px;
  }
  .tm-navbar-block .mobile > a {
    line-height: 100px;
  }
}

/* ========================================================================
   Component: Headerbar / slideshow
 ========================================================================== */

.tm-block-slideshow {
  margin-top: 130px;
}

.tm-block-slideshow .uk-overlay-primary {
  background: rgba(0,0,0,0.40);
}

@media(max-width: 767px) { 
  .tm-block-slideshow {
    margin-top: 100px;
  }
}

/* ========================================================================
   Component: homepage custom
 ========================================================================== */

.homepage .tm-wrapper-block {
  margin-top: 70px;
}

.homepage .tm-wrapper-block .tm-content .uk-container {
  background: transparent !important;
  margin-top: 0 !important;
}

.homepage .services-block .grid-custom > div .uk-inline-clip {
  width: 100% !important;
}

.homepage .services-block .grid-custom > div iframe {
  width: 100% !important;
  max-width: initial !important;
  height: 305px !important;
}

/* ========================================================================
   Component: Content
 ========================================================================== */

.tm-wrapper-block .tm-content .uk-container {
  background: #fff;
  padding-top: 55px;
  padding-bottom: 55px;
  margin-top: -200px;
  position: relative;
}

@media(max-width: 959px) {
  .tm-wrapper-block .tm-content .uk-container {
    margin-top: 0;
  }
}

/* ========================================================================
   Component: Breadcrumbs
 ========================================================================== */

.tm-breadcrumbs-block {
  margin: 0 0 35px;
}

/* ========================================================================
   Component: Contact
 ========================================================================== */

.tm-block-contact {
  padding: 75px 0 55px;
}

.tm-block-contact img {
  width: 150px;
}

.tm-block-contact ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.tm-block-contact ul > li {
  padding-left: 47px;
  margin-bottom: 30px;
  position: relative;
}

.tm-block-contact ul > li:last-child {
  margin-bottom: 0;
}

.tm-block-contact ul > li > span {
  position: absolute;
  top: 4px;
  left: 0;
}

.tm-block-contact ul > li:nth-child(3) > span, .tm-block-contact ul > li:nth-child(4) > span {
  top: 0;
}

.tm-block-contact ul > li > span > svg {
  width: 27px;
}

.tm-block-contact ul > li > div > strong {
  font-weight: 700;
}

.tm-block-contact ul > li > div > p {
  font-weight: 200;
  margin: 5px 0 0;
}

.tm-block-contact ul > li > div > p > .vcard {
  text-decoration: underline;
}


/* ========================================================================
   Component: Equipment
 ========================================================================== */

.tm-block-equipment {
  background: #eceded;
  padding: 75px 0 55px;
}

.tm-block-equipment .uk-thumbnav > *, .tm-content-equipment .uk-thumbnav > * {
  margin-bottom: 10px;
}

.tm-block-equipment .uk-thumbnav > *:last-child, .tm-content-equipment  .uk-thumbnav > *:last-child {
  margin-bottom: 0;
}

.tm-block-equipment .uk-inline-clip, .tm-block-equipment .uk-inline-clip > img, .tm-content-equipment .uk-inline-clip, .tm-content-equipment .uk-inline-clip > img {
  width: 100% !important;
}

@media(max-width: 959px) {
  .tm-block-equipment .uk-thumbnav, .tm-content-equipment .uk-thumbnav {
    display: block;
  }
  .tm-block-equipment .uk-thumbnav > *, .tm-content-equipment .uk-thumbnav > * {
    width: calc(33% - 15px);
    float: left;
  } 
}

/* ========================================================================
   Component: Review
 ========================================================================== */

.tm-block-review {
  background: #ECEDED;
  padding: 70px 0;
}

.homepage .tm-block-review {
  background: transparent;
}

/* ========================================================================
   Component: Footer
 ========================================================================== */

.tm-block-footer {
  background: #fff;
  color: #000 !important;
  padding: 75px 0 55px;
}

.tm-block-footer h3 {
  color: #000 !important;
  font-size: 18px;
  font-weight: 700;
}

.tm-block-footer ul > li > a {
  color: #000 !important;
  text-decoration: none !important;
}

.tm-block-footer .copyright, .tm-block-footer .copyright * {
  color: #000 !important;
  font-size: 14px;
}

.tm-block-footer .copyright img {
  height: 120px;
}

.tm-block-footer .copyright .uk-icon-button {
  background: #000;
  width: 50px;
  height: 50px;
}

.tm-block-footer .copyright .uk-icon-button > span > svg > * {
  color: #fff !important;
}

/* ========================================================================
   Component: Offcanvas / mobile menu
 ========================================================================== */

#mobile-menu .uk-offcanvas-bar {
	background: #1e87f0;
}

.uk-offcanvas-bar .uk-close {
	color: #fff;
}

#mobile-menu .uk-nav-primary > li > a {
	color: rgba(255,255,255,0.75);
	border-bottom: 1px solid rgba(255,255,255,0.15);
	font-size: 1.15rem;
	line-height: 1.15;
	padding: 20px 0;
}

#mobile-menu .uk-nav-primary > li.uk-active > a {
	color: #fff;	
}

#mobile-menu .uk-nav-primary > li:last-child > a {
	border-bottom: 0;
}

/* ========================================================================
   Component: Bubble stick
 ========================================================================== */
.uk-bubble-stick-left {
  background: rgba(255,255,255,0.70);
  width: 50px;
  height: 245px;
  position: fixed;
  top: 180px;
  left: 0;
  z-index: 1000;
  transition: all ease 0.55s;
  overflow: hidden;
}
.uk-bubble-stick-left > a {
  display: block;
}
.uk-bubble-stick-left:hover, .uk-bubble-stick-left:focus {
  filter: grayscale(100%);
}
.uk-bubble-stick-right {
  background: rgba(255,255,255,0.70);
  width: 50px;
  height: 245px;
  position: fixed;
  bottom: 75px;
  right: 0;
  z-index: 1000;
  transition: all ease 0.55s;
  overflow: hidden;
}
.uk-bubble-stick-right > a {
  display: block;
}
.uk-bubble-stick-right:hover, .uk-bubble-stick-right:focus {
  filter: grayscale(100%);
}

/* ========================================================================
   Component: SPACEcontact
 ========================================================================== */

.spacecontact-module form input, .spacecontact-module form textarea {
  background: #fff;
  border: 0 !important;
  font-size: 16px;
  color: #000;
}

.spacecontact-module form input::-webkit-input-placeholder, .spacecontact-module form textarea::-webkit-input-placeholder { /* Edge */
  color: #000;
}

.spacecontact-module form input:-ms-input-placeholder, .spacecontact-module form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
}

.spacecontact-module form input::placeholder, .spacecontact-module form textarea::placeholder {
  color: #000;
}

.spacecontact-module form .recaptcha {
  font-size: 10px;
  margin-top: 5px;
}

.spacecontact-module form .recaptcha > a {
  text-decoration: underline;
}

/* content version */

.spacecontact-content-module form input, .spacecontact-content-module form textarea {
  background: #f5f5f5 !important;
  border: 0 !important;
  font-size: 16px;
  color: #000;
}

.spacecontact-content-module {
  margin-top: 100px;
}

.spacecontact-content-module form input::-webkit-input-placeholder, .spacecontact-content-module form textarea::-webkit-input-placeholder { /* Edge */
  color: #000;
}

.spacecontact-content-module form input:-ms-input-placeholder, .spacecontact-content-module form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
}

.spacecontact-content-module form input::placeholder, .spacecontact-content-module form textarea::placeholder {
  color: #000;
}

.spacecontact-content-module form .recaptcha {
  font-size: 10px;
  margin-top: 5px;
}

.spacecontact-content-module form .recaptcha > a {
  text-decoration: underline;
}

.grecaptcha-badge {
    display: none !important;
}

/* ========================================================================
   Component: Custom widgets
 ========================================================================== */

.grid-custom .uk-card {
  padding-bottom: 80px;
  position: relative;
}

.grid-custom .uk-card .uk-card-body {
  padding-bottom: 0;
}

.grid-custom .uk-card .uk-card-body .title > a {
  font-weight: 700;
}

.grid-custom .uk-card .uk-card-body .content > *:last-child {
  margin-bottom: 0;
}

.grid-custom .uk-card .uk-card-body .link {
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.grid-custom-alt .uk-card {
  padding-bottom: 20px;
}

.grid-custom-alt .uk-card .uk-card-body .link {
  width: auto !important;
  position: initial !important;
  bottom: inherit !important;
  left: initial !important;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.uk-skoda-gallery .uk-inline-clip {
  max-height: 255px;
  overflow: hidden; 
}

.uk-skoda-gallery .uk-overlay {    
  max-height: 215px;
  overflow: hidden;
}

.uk-skoda-gallery .uk-overlay-primary {
  background: rgba(0,0,0,0.35) !important;
}

.skoda-youtube {
  margin-top: 50px;
}

.skoda-youtube .uk-panel > .uk-margin {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.skoda-youtube .uk-panel > .uk-margin iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ========================================================================
   Component: Color pallets
 ========================================================================== */

/* Header */

.view-header {
  background: #fff;
}

.view-header .view-colour-palette {
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 0 40px;
  position: relative;
}

.view-header .view-colour-palette .view-header {
  background: #f5f5f5;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}

.view-header .view-colour-palette .view-header > div, .view-header .view-colour-palette .view-footer > div {
  width: 40px;
  height: 40px;
  text-align: center;
  font-family: FontAwesome;
  font-size: 20px;
  display: block;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  -webkit-transition: all linear 0.35s;
  transition: all linear 0.35s;
}

.view-header .view-colour-palette .view-header > div:hover,
.view-header .view-colour-palette .view-footer > div:hover {
  background: #ddd;
}

.view-header .view-colour-palette .view-header > div::after {
  content: "<";
  line-height: 40px;
}

.view-header .view-colour-palette .view-footer {
  background: #f5f5f5;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

.view-header .view-colour-palette .view-footer > div::after {
  content: ">";
  line-height: 40px;
}

.view-header .view-colour-palette .view-content:before,
.view-header .view-colour-palette .view-content:after {
  content: "";
  display: block;
  overflow: hidden;
}

.view-header .view-colour-palette .view-content:after {
  clear: both;
}

.view-header .view-colour-palette .view-content .views-row {
  float: left;
  /*width: calc(100% / 86);*/
  width: calc(100% / 84);
  cursor: pointer;
}

.view-header .view-colour-palette .view-content .views-row .color-swatch {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  width: calc(100% - 2px) !important;
  height: 32px !important;
  margin: 4px 0;
}

.view-header .view-colour-palette .view-content .active .color-swatch {
  margin: 0;
  padding: 4px 0;
}

.view-header .view-colour-palette .view-content .views-row:hover .color-swatch {
  margin: 0;
  padding: 4px 0;
}

@media(max-width: 767px) {
  .view-header .view-colour-palette .view-content .views-row {
    width: calc(100% / 42);
  }
}

/* Contentcs */

#view-content {
  height: 1130px;
  overflow-y: hidden;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.view-content::-webkit-scrollbar {
  display: none;
}

.view-content .palette-content {
  position: relative;
}

.view-content .palette-content .item-paper {
  background: #f5f5f5;
  padding: 20px;
  margin-top: 20px;
}

.view-content .palette-content .item-paper > h3 {
  display: none;
  visibility: hidden;
}

.view-content .palette-content .item-paper > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.view-content .palette-content .item-paper > ul:before,
.view-content .palette-content .item-paper > ul:after {
  content: "";
  display: block;
  overflow: hidden;
}

.view-content .palette-content .item-paper > ul:after {
  clear: both;
}

.view-content .palette-content .item-paper > ul > li {
  width: calc(100% / 6);
  height: 166px;
  float: left;
  position: relative;
}

.view-content .palette-content .item-paper > ul > li div.item-shade {
  margin-top: 20px;
  -webkit-transition: all linear 0.25s;
  transition: all linear 0.25s;
}

.view-content .palette-content .item-paper > ul > li div.color-swatch {
  width: 100% !important;
}

.view-content .palette-content .item-paper > ul > li div.field-shade-title {
  background: #f5f5f5;
  padding: 3px 6px;
}

.view-content .palette-content .item-paper > ul > li:hover div.field-shade-title {
  background: #fff;
}

@media(max-width: 767px) {
  .view-content .palette-content .item-paper {
    padding: 20px 10px;
  }
  .view-content .palette-content .item-paper > ul > li div.field-shade-title {
    font-size: 10px;
  }
}

/* ========================================================================
   Cookie consent 2022
 ========================================================================== */

#termsfeed-com---preferences-center .cc-cp-body-tabs > li:nth-child(3), #termsfeed-com---preferences-center .cc-cp-body-content #content_functionality {
  display: none !important;
}

.termsfeed-com---palette-light .cc-nb-okagree, .termsfeed-com---palette-light .cc-cp-foot-save,
.termsfeed-com---palette-dark .cc-nb-okagree, .termsfeed-com---palette-dark .cc-cp-foot-save {
    background-color: #1e87f0 !important;
}

.termsfeed-com---palette-light .cc-nb-reject, .termsfeed-com---palette-dark .cc-nb-reject {
    background-color: #eaeaea !important;
    color: #111 !important;
}

/* ========================================================================
   Component: Google review
 ========================================================================== */

.tm-block-review-google {
  background: #ECEDED;
  padding: 50px 0;
}