/**
* Template Name: Explorea
* Updated: 30.11.2023
* Template URL: https://www.explorea.cz/
* Author: Fresh Mill studio, tvorba webovych stranek
* License: https://freshmill.cz
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Readex+Pro:wght@200;300;400;500;600;700&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Readex Pro', sans-serif;
  color: #4e4d4d;
}
p {
  font-family: 'Readex Pro', sans-serif;
}
a {
  color: #156db3;
  text-decoration: none;
}

a:hover {
  color: #0075bf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #3396d9;
  width: 80px;
  height: 80px;
  border-radius: 0;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background: #0075bf;
  color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  .scroll-top {
    height: 60px;
    width: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .scroll-top {
    height: 40px;
    width: 40px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header category
--------------------------------------------------------------*/
.header.headercategory {
  height: 130px;
}
.dolninavigace {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-top: 1px solid #0072bb;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}


#mega-menu-wrap-hlavickakategorie #mega-menu-hlavickakategorie > li.mega-menu-item > a.mega-menu-link {
  text-transform: none;
  color: #092236;
  font-family: 'Readex Pro', sans-serif;
}
#mega-menu-wrap-hlavickakategorie #mega-menu-hlavickakategorie > li.mega-menu-item > a.mega-menu-link:hover {
  color: #0075bf;
}
#mega-menu-wrap-hlavickakategorie #mega-menu-hlavickakategorie > li.mega-menu-megamenu > ul.mega-sub-menu {
  border-bottom: 5px solid #0075bf;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}
#mega-menu-wrap-hlavickakategorie #mega-menu-hlavickakategorie .mega-sub-menu a.mega-menu-link {
  text-transform: none !Important;
  color: #092236 !important;
  font-family: 'Readex Pro', sans-serif;
}
#mega-menu-wrap-hlavickakategorie #mega-menu-hlavickakategorie .mega-sub-menu a.mega-menu-link:hover {
  color: #0075bf !important;
  text-decoration: underline !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  box-shadow: 0px 0px 26px -22px rgba(21,109,179,1);
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}
.header.sticked {
  border-color: #fff;
  border-color: #eee;
}
.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.horninavigace {
  height: 75px;
}
.current-menu-item a {
  color: #0075bf;
}
section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar ul li {
    white-space: nowrap;
    padding: 10px 28px;
  }


  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: 'Readex Pro', sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar ul li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: -32px;
    left: 0;
    background-color: #0075bf;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover a {
    color: #0075bf;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 0;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
    padding: 8px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar .dropdown ul a {
    padding: 8px 0;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 0px;
      top: -33px;
      left: 0;
      background-color: #eb782e;
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
  }
  .navbar .dropdown ul li:hover {
    background-color: #156db3;
  }
  .navbar .dropdown ul li:hover a {
    color: #fff;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: 'Readex Pro', sans-serif;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-family: 'Readex Pro', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover> a {
    color: #0075bf;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: #0075bf;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 0 20px;
    transition: all 0.5s ease-in-out;
    border-radius: 0;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: #000;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    z-index: 9996;
  }
}

/* SEARCH */
.search-form-container {
    display: inline-block;
    margin-right: 20px;
}
.search-form input[type="search"] {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
}
.search-form input[type="submit"] {
    background-color: #156db3;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}
.search-form input[type="submit"]:hover {
    background-color: #2481cb;
}


#search {
    position: relative;
}
#search-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}
#search-icon {
    cursor: pointer;
}


#search {
    position: relative;
}
#search-box {
    display: none;
    position: absolute;
    top: -15px;
    left: -270px;
    width: 260px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 999;
    transition: left 0.3s;
}
#search input {
  border: none !important;
}
form#searchform {
  display: flex;
  justify-content: space-between;
}
#search-icon {
    cursor: pointer;
}
button#searchsubmit {
    background-color: #0075bf;
  border: none;
  color: #fff;
  padding: 5px 8px;

}
:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

/* JAZYK */
.jazyk img {
  width: 25px;
  height: 20px;
  margin: 0 5px;
}
.navbar ul li img {
  width: 25px;
  height: 20px;
  margin: 0 5px;
}

.navbar li > a:after {
  content: '\21E3';
  padding-left: 5px;
}

.navbar li > a:only-child:after {
    content: "";
}

.navbar li li > a:after {
    content: "\21E2";
    position: absolute;
    right: 5px;
}
.navbar ul li.lang-item-en {
  padding: 0;
}
.navbar ul li.lang-item-hu {
  padding: 0;
}
.navbar ul li.lang-item-cs {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .header .logo img {
    width: 100%;
    height: 25px;
    object-fit: contain;
  }
}
@media only screen and (max-width: 375px) {
  .search {
    display: none;
  }
}

/*--------------------------------------------------------------
# OTHER ELEMENTS
--------------------------------------------------------------*/
.nadpis h2 {
  font-size: 30px;
  font-weight: 800;
  color: #403f41;
}
.nadpis h2 svg {
  padding-right: 10px;
  color: #403f41;
}
.nadpis hr.linkablue {
  content: " ";
  width: 100px;
  height: 3px;
  background: #0075bf;
  border-left: 50px solid #f3f4f6;
  border-top: 0px;
  opacity: 1;
  display: inline-block;
  vertical-align: top;
  margin: 25px 0px;
  display: none;
}
@media only screen and (max-width: 991px) {
  .nadpis h2 {
    font-size: 27px;
  }
  .nadpis hr.linkablue {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .nadpis h2 {
    font-size: 24px;
  }
  .nadpis hr.linkablue {
    width: 70px;
    border-left: 35px solid #f3f4f6;
  }
}
@media only screen and (max-width: 575px) {
  .nadpis h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 375px) {
  .nadpis h2 {
    font-size: 20px;
  }
  .nadpis hr.linkablue {
    width: 50px;
    border-left: 25px solid #f3f4f6;
  }
}

/* BUTTONS */
.cta {
  margin-top: 15px;
}
button.btn-blue {
  background-color: #0075bf;
  padding: 18px 35px;
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #0075bf;
  transition: .5s;
}
button.btn-blue:hover {
  background-color: #fff;
  color: #0075bf;
}


::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background-color: #fff;
}
::-webkit-scrollbar-thumb {
    background: #0075bf;
}

/*--------------------------------------------------------------
# UVOD
--------------------------------------------------------------*/
/* SLIDER */
section.slider-bg {
  background-color: #fafafa;
  padding-top: 110px;
  padding-bottom: 25px;
}
section.slider-bg {
  background-color: #fafafa;
}
.slider .right-side {
  justify-content: space-between;
  align-items: center;
  height: auto;
  display: flex;
}
.slider .left-side {
  justify-content: space-between;
  align-items: center;
  height: auto;
  display: flex;
}
.slider .right-side {
  background-color: #0075bf;
  padding: 25px;
}
.slider .right-side h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
  padding-bottom: 0;
  margin-bottom: 0;
}
.slider .right-side p {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  padding-bottom: 15px;
}
.slider .right-side a {
    font-family: 'Readex Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
}
.slider .right-side a svg {
  margin-left: 10px;
}
.slider .right-side a:hover {
  color:#f3f4f6;
  text-decoration: none;
}
div#n2-ss-2 .nextend-arrow img { 
	display: none !important;
}
div#n2-ss-7 .nextend-arrow img {
  display: none !important;
}
div#n2-ss-9 .nextend-arrow img {
	display: none !important;
}
@media only screen and (max-width: 700px) {
  .n2-ss-slider .n2-ss-layer-row-inner {
    display: grid !important;
  }
}
@media only screen and (max-width: 1199px) {
  .slider .right-side {
    padding: 20px;
  }
  .slider .right-side p {
    font-size: 14px;
  }
  .slider .right-side h2 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 1220px) {
  div#n2-ss-2 .n2-font-0f66784c265b6fe04598cf1e41ca7918-hover {
    font-size: 25px !important;
  }
  div#n2-ss-7 .n2-font-0f66784c265b6fe04598cf1e41ca7918-hover { 
	font-size: 25px !important;
  }
	div#n2-ss-9 .n2-font-0f66784c265b6fe04598cf1e41ca7918-hover { 
		font-size: 25px !important;
	}
}
@media only screen and (max-width: 991px) {
  .slider .right-side {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .slider .right-side {
    padding: 20px;
  }
  .slider .right-side p {
    font-size: 14px;
  }
  .slider .right-side h2 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .slider .right-side a {
    font-size: 14px;
  }
  .slider-text {
    font-size: 9px !important;
  }
  .slider-text {
    font-size: 9px !important;
    height: 150px !important
  }
}
@media only screen and (max-width: 375px) {
  .slider .right-side p {
    font-size: 14px;
  }
  .slider .right-side h2 {
    font-size: 18px;
    padding-bottom: 10px;
  }
  .slider .right-side a {
    font-size: 13px;
  }
}


/* ROZCESTNIK */
section.roz-bg {
  background-color: #fff;
}
.no-padding {
  padding: 0;
  margin: 0;
  border: 0.5px solid #fff;
}
.rozbox {
  background-color: #f3f4f6;
  transition: .2s;
  padding: 30px;
  height: 260px;
  align-content: space-between;
  justify-content: center;
  display: grid;
}
.rozbox:hover {
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.05);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.05);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.05);
  transition: all 200ms ease-in;
  transform: scale(1.05);
  transition: .5s;
  background-color: #fff;
  box-shadow: 0px 0px 60px 0px #0000002e;
}
.rozbox .ikonka {
  text-align: center;
}
.rozbox .ikonka img {
  width: auto;
  height: 105px;
  object-fit: contain;
}
.rozbox .desc {
  justify-content: center;
  align-items: center;
  display: flex;
}
.rozbox .desc .title h3 {
  font-size: 19px;
  font-weight: 700;
  color: #092236;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}
.rozbox .desc .icon {
  width: 20%;
  text-align: right;
}
.rozbox .desc .icon svg {
  font-size: 16px;
  color: #092236;
}
@media only screen and (max-width: 991px) {
  section.roz-bg {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .rozbox {
    padding: 25px;
  }
  .rozbox .desc .title h3 {
    font-size: 15px;
  }
  .rozbox .ikonka img {
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .colrozbox {
    width: 50%;
  }
  .rozbox .desc .title h3 {
    font-size: 17px;
  }
  .rozbox .ikonka img {
    height: 70px;
  }
}
@media only screen and (max-width: 515px) {
  .colrozbox {
    width: 100%;
  }
  .rozbox {
    padding: 45px;
    height: auto;
    }
  .rozbox .ikonka {
    padding-bottom: 15px;
    }
  }

/* NOVINKY */
section.novinky-bg {
  background-color: #fff;
  padding-top: 25px;
}
.blogbox {
  background-color: #fff;
  border: 1px solid #f3f4f6;
  transition: .5s;
  margin-bottom: 25px;
}
.blogbox .obrazek  {
  height: 250px;
  overflow: hidden;
}
.blogbox .obrazek img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .5s ease;
}
.blogbox:hover .obrazek img {
  transform: scale(1.1);
}

.blogbox .desc {
  padding: 40px;
  border-left: 5px solid #fff;
  transition: .5s;
}
.blogbox .desc h3 {
  font-size: 16px;
  color: #092236;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}
.blogbox .desc p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #605f5d;
}
.blogbox .link {
  border-left: 5px solid #0075bf;
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.blogbox .link .icon {
  width: 60%;
}
.blogbox .link .icon svg {
  font-size: 16px;
  color: #092236;
}
.blogbox .link .date {
  width: 40%;
  padding-right: 40px;
}
.blogbox .link .date p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  color: #8fa4b5;
  font-weight: 600;
  text-align: right;
  margin-bottom: 0;
}
.blogbox:hover {
  -webkit-box-shadow: 0px 0px 26px -22px rgba(21,109,179,1);
  -moz-box-shadow: 0px 0px 26px -22px rgba(21,109,179,1);
  box-shadow: 0px 0px 26px -22px rgba(21,109,179,1);
}
.blogbox .desc {
  border-left: 5px solid #0075bf;
  padding-left: 40px;
}
.blogbox:hover .desc h3 {
  color: #0075bf;
}
.blogbox:hover .link svg {
  color: #0075bf;
}
@media only screen and (max-width: 1199px) {
    .blogbox .desc {
      padding: 20px;
    }
  .blogbox .link{
    padding-left: 20px;
  }
}
@media only screen and (max-width: 991px) {
    .colblogbox {
      width: 100%;
    }
  .blogbox .link .date {
    text-align: right;
  }
  section.novinky-bg {
    padding-bottom: 45px;
  }
}

/* VIDEOS */
section.video-bg {
  background-color: #fafafa;
}
.videobox {
  background-color: #fff;
  border: 1px solid #f3f4f6;
  transition: .5s;
  margin-bottom: 25px;
}
.videobox:hover {
  -webkit-box-shadow: 0px 0px 26px -22px rgba(21,109,179,1);
  -moz-box-shadow: 0px 0px 26px -22px rgba(21,109,179,1);
  box-shadow: 0px 0px 26px -22px rgba(21,109,179,1);
}
.videobox .desc {
  padding: 40px;
  border-left: 5px solid #156db3;
}
.videobox .desc h3 {
  font-size: 17px;
  color: #092236;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}
.videobox:hover .desc h3 {
  color: #156db3;
}
.videobox .desc p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #605f5d;
  line-height: 1.6;
  margin-bottom: 0;
}
.videobox .yt img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.videobox .yt {
  height: 350px;
  overflow: hidden;
}
.videobox .yt img {
  transition: transform .5s ease;
}
.videobox:hover .yt img {
  transform: scale(1.1);
}

.videobox .link {
  border-left: 5px solid #0075bf;
  padding-left: 40px;
  background-color: #fff;
  height: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 25px;
}
.videobox .link a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #092236;
}
.videobox .link svg {
  color: #e1141c;
  font-size: 15px;
  padding-left: 10px;
}
.videobox .link a:hover {
  color: #0075bf;
  text-decoration: underline;
}
@media only screen and (max-width: 991px) {
  .colvideobox {
    width: 50%;
  }
  section.video-bg-vypis {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .videobox .desc {
    padding: 20px;
  }
  .videobox .desc h3 {
    font-size: 15px;
    margin-bottom: 0;
  }
  .videobox .link {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .videobox .yt img {
    height: 200px;
  }
    .videobox .desc {
      height: 80px;
    }
  .videobox .desc h3 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .colvideobox {
    width: 100%;
  }
  .videobox .yt img {
    height: 300px;
  }
  .videobox .desc {
    height: auto;
  }
}
@media only screen and (max-width: 375px) {
  .videobox .yt img {
    height: 250px;
  }
}

/* ZNACKY */
section.brands-bg {
  background-color: #fff;
}
.znackyboxcol {
    border: 1px solid #f3f4f6;
    padding: 10px;
}
.brands .znackybox img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  transition: .2s;
}
.brands .znackybox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands .znackybox img:hover {
  scale: 1.1;
}
@media only screen and (max-width: 1199px) {
  section.brands-bg {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
@media only screen and (max-width: 991px) {
    .zakaznici .no-padding {
      padding: 20px;
    }
    section.brands-bg {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .znackyboxcol {
    width: 25%;
  }
}
@media only screen and (max-width: 375px) {
  .znackyboxcol {
    width: 50%;
  }
  .brands .znackybox img {
    height: 120px;
  }
  .znackyboxcol {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
/* FOOTER */
section.paticka-bg {
  padding-bottom: 25px;
}
.paticka {
  padding-bottom: 80px;
}
footer {
  background-color: #000;
}
.paticka h5 {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #a5a5a5;
  text-transform: uppercase;
  padding-bottom: 35px;
}
.paticka .social-icons {
  display: flex;
}
.footer-area.patickasocial {
  display: flex;
}
.facebookfoot {
  opacity: 0;
  height: 15px;
  bottom: 15px;
  background: #191919;
  border: 1px solid #a0a0a0;
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  transition: all 0.4s;
  margin-right: 15px;
}
.facebookfoot i {
  font-size: 24px;
  color: #fff;
  line-height: 0
}
.facebookfoot:hover {
  background: #3b5998
}
.facebookfoot:hover svg {
  color: #fff;
}
.facebookfoot.active {
  visibility: visible;
  opacity: 1
}

.youtfoot {
  opacity: 0;
  height: 15px;
  bottom: 15px;
  color: #fff;
  width: 64px;
  height: 64px;
  transition: all 0.4s;
  margin-right: 15px;
}
.youtfoot svg {
  color: #fff;
  font-size: 50px;
}
.youtfoot:hover svg {
  color: #fff;
}
.youtfoot:hover svg:hover {
  color: #ff0000;
}
.youtfoot.active {
  visibility: visible;
  opacity: 1;
}

.linkedinfoot {
  opacity: 0;
  height: 15px;
  bottom: 15px;
  color: #fff;
  width: 65px;
  height: 64px;
  border-radius: 5px;
  transition: all 0.4s;
  margin-right: 15px;
}
.linkedinfoot svg {
  font-size: 50px;
  color: #fff;
}
.linkedinfoot:hover svg {
  color: #0a66c2;
}
.linkedinfoot.active {
  visibility: visible;
  opacity: 1
}

.paticka .sloupec1 .kontakt {
  margin-top: 0;
  margin-bottom: 15px;
}
.paticka .sloupec1 .kontakt a.mail {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3396d9;
  text-decoration: none;
}
.paticka .sloupec1 .kontakt a.mail:hover {
  text-decoration: underline;
}
.paticka .sloupec1 .kontakt a.phone {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.paticka .sloupec2 ul li a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #dbdbdb;
  line-height: 2.5;
}
.paticka .sloupec2 ul li a:hover {
  color: #fff;
}
.paticka .sloupec2 ul li {
  list-style: none;
}
.paticka .sloupec2 ul {
  list-style: none;
  padding-left: 0;
}
/* SOCKET */
.socket p {
  font-size: 12px;
  font-weight: 500;
  color: #606060;
  line-height: 1.5;
  margin-bottom: 0;
}
.socket p a {
  color: #606060;
  font-weight: 600;
  border-bottom: 1px solid #606060;
}
.socket p a:hover {
  color: #fff;
  text-decoration: none;
  border-bottom: 0;
}
@media only screen and (max-width: 1199px) {
    section.paticka-bg {
      padding-top: 45px;
      padding-bottom: 15px;
    }
}
@media only screen and (max-width: 991px) {
  .paticka h5 {
    padding-bottom: 5px;
  }
  .sloupec2 {
    padding-top: 25px;
    border-top: 1px solid #403f41;
    margin-top: 15px;
  }
  .paticka .sloupec1 .kontakt a.mail {
    font-size: 20px;
  }
  .paticka .sloupec1 .kontakt a.phone {
    font-size: 20px;
  }
  .paticka .sloupec2 ul li a {
    line-height: 2;
  }
  .paticka {
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .linkedinfoot, .youtfoot {
    width: 54px;
    height: 54px;
  }
  .socket p {
    padding: 0 80px 0 0;
  }
   .paticka .sloupec2 ul li a {
     font-size: 14px;
   }
}
@media only screen and (max-width: 375px) {
  .paticka .sloupec2 ul li a {
    font-size: 13px;
  }
  .paticka .sloupec1 .kontakt a.mail {
    font-size: 18px;
  }
  .paticka .sloupec1 .kontakt a.phone {
    font-size: 18px;
  }
  .linkedinfoot, .youtfoot {
    width: 48px;
    height: 48px;
  }
}

/*--------------------------------------------------------------
# BRANDS
--------------------------------------------------------------*/
/* BREAD */
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
  display: none !important;
}
section.bread-bg {
  background-color: #0075bf;
  padding-top: 120px;
  padding-bottom: 18px;
}
.bread h1 {
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
.breadcrumbs a {
  color: #fff;
}
.breadcrumbs span.separator {
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}
.breadcrumbs span.last {
  color: #fff;
}
.breadcrumbs {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .bread h1 {
    font-size: 30px;
  }
  .breadcrumbs {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .bread h1 {
    font-size: 25px;
    padding-bottom: 10px;
  }
  section.bread-bg {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 375px) {
  .bread h1 {
    font-size: 22px;
    padding-bottom: 0;
  }
  section.bread-bg {
    padding-top: 100px;
  }
  .breadcrumbs p {
    margin-bottom: 0;
  }
}

/* BRANDY */
section.brandy-bg {
  background-color: #fff;
}
.brandybox {
  background-color: #fff;
  border: 5px solid #fafafa;
  margin-bottom: 35px;
  transition: .5s;
}
.brandybox .left-side {
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 25px;
}
.brandybox .left-side img {
  width: auto;
  height: 70px;
  object-fit: contain;
  transition: .5s;
}
.brandybox .left-side img:hover {
  scale: 1.2;
}
.brandybox .middle-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  padding: 25px;
  background-color: #fafafa;
}
.brandybox .middle-side h3 {
  font-size: 25px;
  font-weight: 600;
  color: #0075bf;
}
.brandybox .middle-side p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #605f5d;
  margin-bottom: 0;
  line-height: 1.5;
}
.brandybox .right-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  padding: 25px;
  background-color: #fff;
}
.brandybox .right-side p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #605f5d;
  margin-bottom: 0;
  line-height: 1.5;
}
.brandybox .right-side ul li {
  list-style: disc;
  font-size: 15px;
}
.brandybox .right-side ul {
  margin-bottom: 0;
}
.brandybox .right-side ul li::marker {
  color: #156db3;
}
@media only screen and (max-width: 991px) {
  section.brandy-bg {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .brandybox .left-side img {
    height: 50px;
    object-fit: contain;
  }
  .brandybox {
    margin-bottom: 15px;
  }
  .brandybox .left-side {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .brandybox .right-side {
      padding:  0 15px 15px 15px;
  }
  section.brandy-bg {
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 375px) {
    .brandybox .right-side ul li {
      font-size: 14px;
    }
  .brandybox .left-side img  {
    height: 35px;
  }
}

/*--------------------------------------------------------------
# ABOUT US
--------------------------------------------------------------*/
/* ABOUT */

/* ZAKAZNICI */
section.zakaznici-bg {
  background-color: #fff;
  padding-top: 0;
}
.zakaznici .no-padding {
  border: 1px solid #f2f2f2;
  padding: 40px;
}
.zakaznici .reference-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.zakaznici .reference-box img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  transition: .2s;
}
.zakaznici .reference-box img:hover {
  scale: 1.1;
}
@media only screen and (max-width: 1199px) {
  section.about-bg {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .about-bg p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
    .zakaznici .no-padding {
      padding: 20px;
    }
}
@media only screen and (max-width: 767px) {
  section.about-bg {
    padding-top: 45px;
    padding-bottom: 35px;
  }
  .about-bg p {
    font-size: 14px;
  }
  .refbox {
    width: 25%;
  }
}
@media only screen and (max-width: 375px) {
  .refbox {
    width: 50%;
  }
  .zakaznici .no-padding {
    padding: 25px;
  }
  .zakaznici .reference-box img {
    height: 50px;
  }
}


/*--------------------------------------------------------------
# CONTACT
--------------------------------------------------------------*/
/* KONTAKTY */
section.kontakty-bg {
  background-color: #fff;
  padding-bottom: 45px;
}
.kontaktbox h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0075bf;
  line-height: 1.2;
}
.kontaktbox strong {
  font-size: 16px;
  color: #092236;
  font-weight: 700;
  line-height: 1.5;
}
.kontaktbox p {
  font-family: 'Readex Pro', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: #605f5d;
      line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  section.kontakty-bg {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .colkontaktbox {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .kontaktbox h3 {
    font-size: 17px;
  }
  .kontaktbox p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 425px) {
  .colkontaktbox {
    width: 100%;
  }
  .kontaktbox {
    margin-bottom: 35px;
  }
  section.kontakty-bg {
    padding-bottom: 0;
  }
}

/* MAPA */
section.mapa-bg {
  background-color: #fafafa;
  padding-top: 60px;
  padding-bottom: 35px;
}
.mapa p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #605f5d;
  line-height: 1.5;
}
.mapa p strong {
  font-size: 16px;
  color: #092236;
  font-weight: 700;
  line-height: 1.5;
}
.mapa p a {
  color: #156db3;
    text-decoration: none;
}
.mapa a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {
  section.mapa-bg {
    padding-bottom: 45px;
  }
}

/* TYM */
section.tym-bg {
  background-color: #fff;
}
section.tym-bg2 {
  background-color: #fafafa;
  padding-bottom: 30px;
}
.teambox {
  border: 2px solid #f3f6f8;
  padding: 25px;
  margin-bottom: 25px;
  height: 212px;
}
.teambox h3 {
  font-size: 16px;
  color: #092236;
  font-weight: 700;
  line-height: 1.5;
}
.teambox p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #605f5d;
  line-height: 1.5;
  height: 45px;
}
.teambox a:hover {
  color: #156db3;
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {
  section.tym-bg {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  section.tym-bg2 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .teambox p {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .teambox {
    padding: 15px;
  }
  .teambox {
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# PRODUCT
--------------------------------------------------------------*/
/* VYPIS KATEGORII */
section.popis-kategorie-bg {
  padding-top: 30px;
  padding-bottom: 30px;
}
.subkategorie ul li a {
  justify-content: flex-start;
  display: flex;
  width: 100%;
  align-items: center;
}
.subkategorie ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-left: 0;
}
.subkategorie li {
  list-style: none;
  margin: 5px;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 0;
  padding: 25px 15px;
  align-items: flex-start;
  align-items: center;
  display: flex;
}
.subkategorie img {
  display: none;
}
.subkategorie a img {
  transition: transform .5s ease;
}
.subkategorie a:hover img {
  transform: scale(.9)
}
.subkategorie span.category-name {
  font-family: 'Readex Pro', sans-serif;
  color: #156db3;
  font-size: 18px;
  font-weight: 500;
  margin-left: 10px;
  line-height: 1.5;
  display: block;
  width: 75%;
}
.subkategorie li:hover {
  background-color: #f3f4f6;
}
.subkategorie li:hover span {
  color: #030405;
  text-decoration: underline;
}

/* VYPIS PRODUKTU */
section.vypis-eshop-bg {
  padding-top: 40px;
}
p.woocommerce-result-count {
  display: none;
}
form.woocommerce-ordering {
  display: none;
}
.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pagination a {
  background-color: #2876c1;
  border: 2px solid #2876c1;
  color: #fff !important;
  padding: 15px 20px;
  transition: .5s;
}
.pagination a:hover {
  background-color: #fff;
  color: #2876c1 !important;
}
span.page-numbers.current {
  background-color: #030405 !important;
  border: 2px solid #030405;
  color: #fff !important;
  padding: 15px 20px;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  font-weight: 400;
  padding: 2.5em;
  min-width: 1em;
  display: block;
}
a.page-numbers {
  color: #262f3a;
}
.nav-previous {
  display: none;
}
.nav-next {
  display:  none;
}

@media only screen and (max-width: 1199px) {
    .subkategorie li {
      padding: 15px;
    }
  .subkategorie span.category-name {
    font-size: 15px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 991px) {
  .subkategorie ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
    .subkategorie span.category-name {
      font-size: 14px;
    }
  .subkategorie li {
    padding: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .subkategorie ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
  }
    .subkategorie li {
      height: 70px;
    }
}
@media only screen and (max-width: 320px) {
  .subkategorie ul {
    display: grid;
    grid-template-columns: 1fr ;
    padding-left: 0;
  }
    .subkategorie li {
      height: auto;
    }
}

/* PRODUKT BOX */
.produktbox {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06);
  border-radius: 0;
  padding: 25px;
  margin-bottom: 25px;
}
.produktbox .obrazek img {
  width: 100% !important;
  border-radius: 10px 0 0 10px;
  height: 220px !important;
  object-fit: contain;
}
.produktbox:hover {
  border-color: #156db3;
}
/* [1] The container */
.produktbox .thumb {
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
  padding: 15px;
}
/* [2] Transition property for smooth transformation of images */
.produktbox .thumb img {
  transition: transform .5s ease;
}
/* [3] Finally, transforming the image when container gets hovered */
.produktbox .thumb:hover img {
  transform: scale(1.1);
}
.produktbox .thumb img {
  width: 100%;
  border-radius: 10px 0 0 10px;
  height: 220px;
  object-fit: contain;
}
.produktbox .obrazek img {
  width: 100%;
  border-radius: 10px 0 0 10px;
  height: 220px;
  object-fit: contain;
}
.produktbox .desc h3 {
  font-size: 16px !important;
  color: #092236;
  font-weight: 700;
  line-height: 1.5;
}
.produktbox .desc span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #156db3;
}
.produktbox .desc p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #605f5d;
}
.produktbox button.btn-detail {
  background-color: #0075bf;
  width: 100%;
  line-height: 2.5;
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #156db3;
  transition: .5s;
}
.produktbox:hover button.btn-detail {
  background-color: #fff;
  color: #0075bf;
}
@media only screen and (max-width: 767px) {
  .produktbox .desc h3 {
    font-size: 15px;
  }
  .produktbox .desc {
    font-size: 14px;
  }
  .produktbox button.btn-detail {
    font-size: 14px;
  }
}

/* FILTR */
.archive-content {
  display: flex;
}
.product-categories {
    flex: 1 0 250px;
    width: 25%;
}
.products {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  justify-content: flex-end;
  position: relative;
  padding-left: 1rem;
  width: 75%;
}
.woocommerce .products ul, .woocommerce ul.products {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
li.product.type-product {
  width: calc(33% - 0px);
  margin: 10px 0;
  list-style: none;
}

.filtr-category.FixedWidget__fixed_widget {
  background-color: #fafafa;
  padding: 15px !important;
}
.product-categories h4 {
  font-size: 16px;
  font-weight: 700;
  color: #092236;
  text-align: left;
}
.product-categories {
  background-color: #fafafa;
  padding: 25px;
  border-top: 5px solid #0075bf;
}
.product-categories ul li {
  line-height: 1.8;
  list-style: none;
}
.product-categories ul li a:hover {
  color: #000;
  text-decoration: underline;
}
.product-categories ul {
  padding-left: 0;
}
@media only screen and (max-width: 991px)  {
  li.product.type-product {
  width: calc(50% - 0px);
    margin: 0;
  }
  .product-categories {
    flex: 1 0 230px;
    width: 20%;
  }
  .product-categories {
    padding: 15px;
  }
  .products {
    width: 80%;
  }
  section.vypis-eshop-bg {
    padding-top: 0;
    padding-bottom: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .product-categories {
    display: none;
  }
  .products {
    width: 100%;
    padding-left: 0;
  }
}
@media only screen and (max-width: 425px) {
  li.product.type-product {
    width: calc(100% - 0px);
  }
}

/* DETAIL PRODUKTU */
/* BREADCRUMBS */
.breadcrumbs.detailproduct a {
  color: #00111c;
}
.breadcrumbs.detailproduct span.separator {
  color: #00111c;
  padding-left: 10px;
  padding-right: 10px;
}
.breadcrumbs.detailproduct span.last {
  color: #0075bf;
}
.breadcrumbs.detailproduct {
  display: flex;
  padding-top: 50px;
}

.detail-pr-bg .product.type-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  margin-bottom: 50px !important;
  border: 4px solid #fafafa;
  padding: 0;
}
.backcontact {
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  padding: 50px;
  display: inline-grid;
  width: 25%;
}
.backcontact svg {
  margin-right: 10px;
  font-size: 15px;
}
.backcontact a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #092236;
}
.backcontact a:hover {
  color: #0075bf;
  text-decoration: underline;
}
button.btn-contact {
  background-color: #0075bf;
  width: 100%;
  padding: 10px 25px;
  line-height: 2.5;
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #156db3;
  transition: .5s;
}
button.btn-contact:hover {
  background-color: #fafafa;
  color: #156db3;
}
.detail-pr-bg .thumb {
  padding: 50px 0;
  margin: 0 25px;
}
.detail-pr-bg .thumb img {
  width: auto;
  height: 250px;
  object-fit: contain;
}
.detail-pr-bg h1 {
  font-size: 30px;
  font-weight: 800;
  color: #403f41;
  padding-top: 10px;
}
.detail-pr-bg .stitek span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #156db3;
}
.detail-pr-bg .kratky-popis p  {
  font-family: 'Readex Pro', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #605f5d;
  padding-top: 15px;
}
.detail-pr-bg .kratky-popis {
  padding-right: 20px;
}
.detail-pr-bg .znacka {
  padding-top: 18px;
}
.detail-pr-bg .znacka img {
  width: auto;
  height: 35px;
  object-fit: contain;
}
.woocommerce div.product div.images img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.dalsi-popis p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #605f5d;
}
.dalsi-popis ul li {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #605f5d;
  line-height: 1.8;
}
.dalsi-popis h2 {
  font-size: 25px;
  font-weight: 700;
  color: #403f41;
  padding-top: 25px;
}

.documents {
  background-color: #fafafa;
  padding: 50px;
  border-top: 5px solid #156db3;
  margin-top: 25px;
}
.documents h3 {
  font-size: 25px;
  font-weight: 700;
  color: #403f41;
  padding-bottom: 20px;
}
.documents p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #605f5d;
}
.documents p a {
  text-decoration: underline;
}
.documents p a:hover {
  color: #030405;
}

/* SOUVISEJICI PRODUKTY */
section.souvisejiciprodukty-bg {
  background-color: #fafafa;
}
.produktbox .desc.souvisejici {
  padding-top: 15px;
}

/* POPUP WINDOW */
.modal-content {
  background-color: #fcfcfc;
  padding: 25px;
  text-align: center;
  border: none;
  border-radius: 0;
}
.modal-content h4.modal-title {
    font-size: 30px;
    font-weight: 800;
    color: #403f41;
}
button.close {
  background-color: #0075bf;
  border: none;
  color: #fff;
  padding: 1px 37px;
  font-size: 43px;
  line-height: 1.5;
}
button.close:hover {
  background-color: #403f41;
}
.modal-dialog.modal-lg {
  padding: 0;
}

/* FORM */
.wpcf7 form.sent .wpcf7-response-output {
    background-color: #143c28;
    border-color: #143c28;
    color: #fff;
    padding: 15px;
    font-weight: 700;
}
.item-form .cta p {
  margin-bottom: 0;
}
.buttonred {
background-color: #0075bf;
    padding: 18px 35px;
    font-family: 'Readex Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #0075bf;
    transition: .5s;
}
.buttonred:hover {
    background-color: #fcfcfc;
    color: #0075bf !important;
}
.buttonred:hover {
    background-position: left bottom;
    color: #fff;
}
.wpcf7 .wpcf7-validation-errors,.wpcf7 .wpcf7-acceptance-missing {
    border: 5px solid red;
    margin-top: -30px;
}
.wpcf7 span.wpcf7-not-valid-tip {
    font-family: 'Poppins',sans-serif;
    background-color: #f3f2f2;
    color: #333;
    font-size: 12px;
    padding: 5px;
}
.wpcf7 .wpcf7-mail-sent-ok {
    border: 5px solid #fff;
    margin-top: -30px;
}
div.wpcf7-response-output {
    margin: 2em .5em 1em;
    padding: 1em;
    font-size: 14px;
}

.wpcf7-form-control.wpcf7-text {
  border: 2px solid #f0f0f0;
  background-color: #fff;
  height: 60px;
  font-family: 'Readex Pro',sans-serif;
  font-weight: 500;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 15px;
  border-radius: 0;
}
.wpcf7-form-control {
  margin-top: 15px;
}
.wpcf7-form-control.wpcf7-textarea {
  border: 2px solid #f0f0f0;
  background-color: #fff;
  height: 60px;
  font-family: 'Readex Pro',sans-serif;
  font-weight: 500;
  width: 100%;
  padding-left: 25px;
  padding-top: 15px;
  height: 100px;
  font-size: 14px;
  border-radius: 0;
}
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-tel {
  border: 2px solid #f0f0f0;
  background-color: #fff;
  height: 60px;
  font-family: 'Readex Pro',sans-serif;
  font-weight: 500;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 15px;
  border-radius: 0;
}
.wpcf7 :focus {
  color: #686868;
  background-color: #ffffff!important;
  outline: 0;
  border: 2px solid #a8b7c1!important;
}
.wpcf7-form-control.wpcf7-number {
  border: 2px solid #f0f0f0;
  background-color: #fff;
  height: 60px;
  font-family: 'Readex Pro',sans-serif;
  font-weight: 500;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 15px;
  border-radius: 0;
}
.wpcf7-form-control-wrap.yourmessage:before {
  width: 0rem!important;
  position: relative
}
.wpcf7-form-control-wrap.your-name:before {
  width: 0rem!important;
  position: relative
}
.wpcf7-form-control-wrap.last-name:before {
  width: 0rem!important;
}
.wpcf7-form-control-wrap.phone-number:before {
  width: 0rem!important;
}
.wpcf7-form-control-wrap.youremail:before {
    width: 0rem!important;
}
.wpcf7 form.invalid .wpcf7-response-output,.wpcf7 form.unaccepted .wpcf7-response-output {
  background-color: #ca0e0eb3;
  border: 2px solid #ca0e0e;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
  font-family: 'Poppins',sans-serif;
  font-size: 15px;
  font-weight: 700;
}
::-webkit-input-placeholder {
  color: #403f41!important;
  opacity: 1;
}
:-moz-placeholder {
  color: #403f41!important;
  opacity: 1;
}
::-moz-placeholder {
  color: #403f41!important;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #403f41!important;
  opacity: 1;
}
.ochrana-os p {
  color: #123a55;
}
.ochrana-os p a {
  color: #0075bf;
  text-decoration: underline;
}
@media only screen and (max-width: 1199px) {
  .backcontact {
    padding: 10px;
    width: 35%;
  }
  .detail-pr-bg .thumb img {
    height: 150px;
  }
  .detail-pr-bg .thumb {
    width: 25%;
  }
  .detail-pr-bg h1 {
    font-size: 20px;
  }
  .detail-pr-bg .stitek span {
    font-size: 14px;
  }
  .woocommerce div.product div.summary {
    padding-top: 15px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .detail-pr-bg .kratky-popis p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .documents {
    padding: 20px;
  }
  .documents h3 {
    font-size: 22px;
    padding-bottom: 10px;
  }
  section.souvisejiciprodukty-bg {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  section.detail-pr-bg {
    padding-top: 75px;
    padding-bottom: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .detail-pr-bg .product.type-product {
    display: grid;
  }
  .backcontact  {
    width: 100%;
  }
  .detail-pr-bg .thumb {
    width: 100%;
  }
  .woocommerce div.product div.summary {
    width: 100%;
    text-align: center;
  }
  .backcontact {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .detail-pr-bg .thumb {
     display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: 0;
  }
   .woocommerce div.product div.summary {
     padding: 15px;
   }
  .detail-pr-bg .znacka {
    padding-top:0;
  }
  .breadcrumbs.detailproduct span.separator {
    padding-left: 5px;
    padding-right: 5px;
  }
  .dalsi-popis p {
  font-size: 14px;
}
.dalsi-popis ul li {
  font-size: 14px;
  line-height: 1.5;
}
  .dalsi-popis h2 {
  font-size: 20px;
  }
  .detail-pr-bg .kratky-popis {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .detail-pr-bg h1 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .backcontact a {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# LOGIN
--------------------------------------------------------------*/
body.login {
    background-color: #2876c1;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center
}
#login h1 a {
    background-image: url('/wp-content/uploads/2023/11/logo.png');
    background-size: 130px;
    width: auto
}
.login form {
    box-shadow: none;
    padding: 20px
}
#login {
    background: #FFF;
    margin: 50px auto;
    padding: 40px 20px;
    width: 400px;
    border-radius: 8px
}
.login label {
    font-family: 'Fira sans',sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 14px
}
.login form .forgetmenot {
    float: none
}
#login form p.submit {
    margin-top: 15px
}
.login.wp-core-ui .button-primary {
    background: #0075bf;
    border-color: #0075bf;
    box-shadow: 0 0 0 #0075bf;
    color: #FFF;
    text-shadow: none;
    float: none;
    clear: both;
    display: block;
    width: 100%;
    padding: 7px;
    height: auto;
    font-size: 15px;
    font-family: 'fira sans',sans-serif;
    font-weight: 700;
    border-radius: 2px
}
.login.wp-core-ui .button-primary:hover {
    background: #000;
    border-color: #000;
    box-shadow: 0 1px 0 #000;
    transition: 1s
}
.login form {
    border: none
}
.login form .input,.login form input[type=checkbox],.login input[type=text] {
    background: #c7dbef;
}
.login form .input,.login input[type=password],.login input[type=text] {
    font-size: 24px;
    line-height: 1.33333333;
    width: 100%;
    border-width: .0625rem;
    padding: .1875rem .3125rem;
    margin: 0 6px 16px 0;
    min-height: 40px;
    max-height: none;
    border: 2px solid #25470b;
    border-radius: 3px
}
p#backtoblog {
    display: none
}
.privacy-policy-page-link a {
    font-family: 'Fira sans',sans-serif;
    font-size: 15px;
    color: #25470b;
    font-weight: 700
}
.login #nav a {
    font-family: 'Fira sans',sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: #0075bf;
}
.login #nav a:hover {
    color: #000;
}
