/* ========================================================================
   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;
}

@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;
}

/* Button */

.uk-button {
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 50px;
  padding: 0 35px;
  -webkit-transition: linear 0.35s;
  transition: linear 0.35s;
}

.uk-button:hover, .uk-button:focus {
  background: #f5f5f5;
  color: #000;
}

/* 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-navbar-block {  
  width: 100%;
  height: 190px;
  max-width: 1920px;
  margin-top: 90px;  
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 100;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: top linear 0.45s;
  transition: top linear 0.45s;
}

.tm-navbar-block .uk-logo {
  padding: 20px 30px;
}

.tm-navbar-block .uk-logo > img {
  height: 150px;  
  -webkit-transition: height linear 0.45s;
  transition: height linear 0.45s;
}

.tm-navbar-block .uk-navbar-nav {
  padding: 45px 0 0;
}

.tm-navbar-block .uk-navbar-nav > li > a {
  color: #000;
  min-height: 100px;
  font-size: 18px;
  padding: 0 30px;
  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: 30px;
  -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;
}

/* Sticky */

.tm-navbar-scroll {
  background: #F8D91E;
  webkit-box-shadow: 0px 0px 12px -4px rgb(41 41 41 / 25%);
  -moz-box-shadow: 0px 0px 12px -4px rgba(41, 41, 41, .25);
  box-shadow: 0px 0px 12px -4px rgb(41 41 41 / 25%);
  height: 120px;
  margin-top: 0;
  position: fixed;
}

.tm-navbar-scroll .uk-logo>img {
  height: 80px;
}

.tm-navbar-scroll .uk-navbar-nav {
  padding: 10px 0 0;
}

@media(max-width: 767px) { 
  .tm-navbar-block {
    background: #F8D91E;
    height: 100px;
    margin-top: 0;
  }
  .tm-navbar-block .uk-logo {
    padding: 10px 30px;
  }
  .tm-navbar-block .uk-logo > img {
    height: 80px;
  }
  .tm-navbar-block .mobile > a {
    color: #000;
    line-height: 100px;
  }
}

@media(min-width: 768px) and (max-width: 959px) {
  .tm-navbar-block {
    background: #F8D91E;
    height: 100px;
    margin-top: 0;
  }

  .tm-navbar-block .uk-logo {
    padding: 10px 30px;
  }

  .tm-navbar-block .uk-logo > img {
    height: 80px;
  }

  .tm-navbar-block .mobile > a {
    color: #000;
    line-height: 100px;
  }
}

@media(min-width: 960px) and (max-width: 1199px) {
  .tm-navbar-block .uk-navbar-nav > li > a {
    padding: 0 10px;
  } 
}

/* ========================================================================
   Component: Headerbar / slideshow
 ========================================================================== */

.tm-block-slideshow .uk-overlay-primary {
  background: rgba(0,0,0,0.40);
}

/* Odtah */

.odtahPage .tm-block-slideshow .uk-overlay-primary {
  background: rgba(255, 255, 255, 0.10);
}

/* Servis */

.servisPage .tm-block-slideshow .uk-overlay-primary {
  background: rgba(255, 255, 255, 0.10);
}

/* Myčka */

.myckaPage .tm-block-slideshow .uk-overlay-primary {
  background: rgba(0,0,0, 0.20);
}

/* ========================================================================
   Component: Fast contact
 ========================================================================== */

.tm-fast-contact {
  background: #F8D91E;
  padding: 15px 0;
}

/* ========================================================================
   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;
}

/* ========================================================================
   Component: Services
 ========================================================================== */

.tm-services-block {
  background: transparent;
  padding: 50px 0 70px;
}

.tm-services-block .services-block #assistance {
  background: #eaeaea;
}

.tm-services-block .services-block #assistance .uk-button {
  background: #F8D91E;
  color: #000 !important;
}

.tm-services-block .services-block #assistance .uk-button:hover,
.tm-services-block .services-block #assistance .uk-button:focus {
  background: #000;
  color: #F8D91E !important;
}

.tm-services-block .services-block #service {
  background: #eaeaea;
}

.tm-services-block .services-block #service .uk-button {
  background: #fc3a3a;
  color: #000 !important;
}

.tm-services-block .services-block #service .uk-button:hover,
.tm-services-block .services-block #service .uk-button:focus {
  background: #000;
  color: #fc3a3a !important;
}

.tm-services-block .services-block #wash {
  background: #eaeaea;
}

.tm-services-block .services-block #wash .uk-button {
  background: #1e87f0;
  color: #000 !important;
}

.tm-services-block .services-block #wash .uk-button:hover,
.tm-services-block .services-block #wash .uk-button:focus {
  background: #000;
  color: #1e87f0 !important;
}

#odtah .uk-list-primary > ::before {
  color: #F8D91E !important;
}

#servis .uk-list-primary > ::before {
  color: #fc3a3a !important;
}

#mycka .uk-list-primary > ::before {
  color: #1e87f0 !important;
}

@media(max-width: 767px) {
  #odtah_mobile h2, #servis_mobile h2, #mycka_mobile h2 {
    font-size: 20px;
    line-height: 28px;
  }
}

/* slideset version */

.tm-services-block .mobile-block .uk-panel > div:nth-child(2) {
  padding: 20px 20px 0;
}

@media(max-width: 767px) {
  .tm-services-block {
    padding: 0 0 35px;
  }
  .tm-services-block .uk-container {
    padding: 0;
  }
}

/* ========================================================================
   Component: Content
 ========================================================================== */

.tm-wrapper-block .tm-content .uk-container {
  background: #fff;
  padding-top: 55px;
  padding-bottom: 55px;
  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 {
  background: #F8D91E;
  padding: 75px 0 55px;
}

.contactPage .tm-block-contact {
  background: #f8f8f8;
}

.contactPage .tm-block-contact .uk-button {
  background: #F8D91E;
  color: #000 !important;
}

.contactPage .tm-block-contact .uk-button:hover, .contactPage .tm-block-contact .uk-button:focus {
  background: #000;
  color: #F8D91E !important;
}

.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;
}

@media(max-width: 767px) {
  .tm-block-contact img {
    width: 100px;
  }
  .tm-block-contact .contactModule h2, .tm-block-contact .contactModule p {
    text-align: center;
  }
  .spacecontact-module form .recaptcha {
    text-align: center;
  }
}

/* ========================================================================
   Component: Price list
 ========================================================================== */

.tm-price-list-block {
  background: #eceded;
  padding: 75px 0 55px;
}

.tm-price-list-block .uk-thumbnav > *, .tm-content-equipment .uk-thumbnav > * {
  margin-bottom: 10px;
}

.tm-price-list-block .uk-thumbnav > *:last-child, .tm-content-equipment  .uk-thumbnav > *:last-child {
  margin-bottom: 0;
}

.tm-price-list-block .uk-inline-clip, .tm-price-list-block .uk-inline-clip > img, .tm-content-equipment .uk-inline-clip, .tm-content-equipment .uk-inline-clip > img {
  width: 100% !important;
}

@media(max-width: 767px) {
  .tm-price-list-block {
    padding: 35px 0 25px;
  }
}

@media(max-width: 959px) {
  .tm-price-list-block .uk-thumbnav, .tm-content-equipment .uk-thumbnav {
    display: block;
  }
  .tm-price-list-block .uk-thumbnav > *, .tm-content-equipment .uk-thumbnav > * {
    width: calc(33% - 15px);
    float: left;
  } 
}

/* ========================================================================
   Component: Maps
 ========================================================================== */

.tm-maps-block {
  background: #ECEDED;
  padding: 0 0 20px;
}

.homepage .tm-maps-block {
  background: transparent;
}

@media(max-width: 767px) {
  .tm-maps-block iframe {
    height: 300px !important;
  }
}

/* ========================================================================
   Component: About us
 ========================================================================== */

.tm-about-block {
  background: #fff;
  padding: 80px 0;
  position: relative;
}

.tm-about-block .subtitle {
  font-weight: 18px;
  font-weight: 600;
  color: #F8D91E;
}

.tm-about-block h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 34px;
  margin: 15px 0 20px;
}

.tm-about-block .introtext > div {
  margin-top: 20px;
}

.tm-about-block #aboutUs {
  width: 1px;
  height: 1px;
  z-index: -1;
  position: absolute;
  top: -120px;
  left: 0;
}

@media(max-width: 767px) {
  .tm-about-block h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .tm-about-block .introtext > p {
    font-size: 14px;
  }
}

@media(max-width: 959px) {
  .tm-about-block #aboutUs {
      top: -100px;
    }
}

@media(min-width: 1200px) {
  .tm-about-block .introtext {
    margin-left: 30px;
  }
}

@media(min-width: 1600px) {
  .tm-about-block h2 {
    margin-bottom: 35px !important;
  }
  .tm-about-block .introtext {
    margin-left: 50px !important;    
  }
    .tm-about-block .introtext > div {
      margin-top: 30px;
    }
}

/* ========================================================================
   Component: Footer
 ========================================================================== */

.tm-block-footer {
  background: #fff;
  color: #000 !important;
  padding: 75px 0 55px;
  position: relative;
}

.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;
}

/* Scroll */

.tm-block-footer .scrollUP {
  background: #fff;
  color: #F8D91E;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.tm-block-footer .scrollUP > span > svg {
  width: 30px;
  height: 30px;
}

/* ========================================================================
   Component: Offcanvas / mobile menu
 ========================================================================== */

#mobile-menu .uk-offcanvas-bar {
	background: #F8D91E;
}

.uk-offcanvas-bar .uk-close {
	color: #000;
}

#mobile-menu .logo {
  text-align: center;
  margin-bottom: 30px;
}

#mobile-menu .logo img {
  width: 120px;
}

#mobile-menu .uk-nav-primary > li > a {
	color: #000;
	border-bottom: 1px solid #937e08;
	font-size: 1.15rem;
	line-height: 1.15rem;
	padding: 20px 0;
}

#mobile-menu .uk-nav-primary > li.uk-active > a {
	color: #000;	
}

#mobile-menu .uk-nav-primary > li:last-child > a {
	border-bottom: 0;
}

#mobile-menu .uk-nav-primary:first-child > li:last-child > a {
  border-bottom: 1px solid #937e08;
}

#mobile-menu #social > li > a {
  background: #000;
  color: #F8D91E !important;
}

/* ========================================================================
   Component: Bubble stick
 ========================================================================== */

 .tm-bubble-left {
  background: #F8D91E;
  position: fixed;
  top: 230px;
  left: -77px;
  z-index: 1000;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transition: all ease 0.55s;
  transition: all ease 0.55s;
}

.tm-bubble-left > a {
  display: block;
  text-decoration: none;
  padding: 15px 25px;
}

/* ========================================================================
   Component: SPACEcontact
 ========================================================================== */

.spacecontact-module form input, .spacecontact-module form textarea {
  background: #fff;
  border: 2px solid #fff;
  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;
}

.form-control-danger {  
  border-color: red !important;
}

/* 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;
}

.tm-block-contact {
  position: relative;
}

.tm-block-contact #contactUs {
  width: 1px;
  height: 1px;
  z-index: -1;
  position: absolute;
  top: -120px;
  left: 0;
}

@media(max-width: 959px) {
  .tm-block-contact #contactUs {
      top: -100px;
    }
}

/* ========================================================================
   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-sosturek-gallery .uk-inline-clip {
  max-height: 255px;
  overflow: hidden; 
}

.uk-sosturek-gallery .uk-overlay {    
  max-height: 215px;
  overflow: hidden;
}

.uk-sosturek-gallery .uk-overlay-primary {
  background: rgba(0,0,0,0.35) !important;
}

.sosturek-youtube {
  margin-top: 50px;
}

.sosturek-youtube .uk-panel > .uk-margin {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.sosturek-youtube .uk-panel > .uk-margin iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ========================================================================
   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;
}

/* ========================================================================
   Components: Modal
 ========================================================================== */

.uk-modal .uk-modal-dialog {
  max-width: 1000px !important;
}

/* ========================================================================
   Components: Scroll
 ========================================================================== */

.scrollToTop {
  background: #F8D91E;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  line-height: 30px;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  -webkit-transition: linear 0.35s;
  transition: linear 0.35s; 
}

.scrollToTop > svg {
  -webkit-transition: linear 0.35s;
  transition: linear 0.35s;
}

.scrollToTop:hover {
  background: #000;
}

.scrollToTop:hover > svg {
  stroke: #F8D91E;
  width: 30px;
  height: 30px;
}

@media(max-width: 640px) {
  .scrollToTop {
    bottom: 10px;
    right: 10px;
  }
  .scrollToTop {
    width: 40px;
    height: 40px;
    line-height: 30px;
    padding: 5px;
  }
  .scrollToTop > svg {
    width: 20px;
    height: 20px;
  }
}