/**
* Template Name: sportcon
* Updated: 28.10.2023
* Template URL: https://sportcon.cz/
* Author: Fresh Mill studio, tvorba webovych stranek
* License: https://freshmill.cz/
*/

@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Roboto', sans-serif;
  color: #114081;
}

a {
  color: #FA443E;
  text-decoration: none;
}

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

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


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


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #114081;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #FA443E;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 120px;
  border-bottom: 8px solid #114081;
  padding: 0 25px;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

img.custom-logo {
  width: auto;
  height: 50px;
  object-fit: contain;
}

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 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: 'Bungee', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #114081;
    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;
    bottom: -32px;
    left: 0;
    background-color: #FA443E;
    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: #FA443E;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 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: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

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

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

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .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: 'Bungee', sans-serif;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    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: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

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

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

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

  .mobile-nav-hide {
    color: var(--color-secondary);
    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: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

.socialhead a svg {
  font-size: 25px;
  margin: 0 0 0 25px;
  color: #114081;
}
.socialhead a svg:hover {
  color: #FA443E;
}

.current_page_item a {
    color: #fa443e
}
@media only screen and (max-width: 1500px) {
  .navbar a, .navbar a:focus {
    font-size: 14px;
  }
}
@media only screen and (max-width: 425px) {
  .socialhead a svg {
    font-size: 20px;
    margin: 0 0 0 10px;
  }
  img.custom-logo {
    height: 40px;
  }
}


/*--------------------------------------------------------------
# ELEMENTY TLACITKA
--------------------------------------------------------------*/
.nadpis h2 {
  font-size: 24px;
  font-weight: 600;
  color: #FA443E;
  padding-bottom: 15px;
}

/* BUTTONS */
button.btn-red-border {
  background-color: #fff;
  border: 3px solid #FA443E;
  border-radius: 50px;
  padding: 18px 35px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #FA443E;
  font-weight: 600;
  transition: .2s;
}
button.btn-red-border:hover {
  background-color: #FA443E;
  color: #fff;
}
.item-cta {
  padding-top: 35px;
}
a.cart-contents {
  color: #fa443e;
  background-color: #f6f5f8;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  button.btn-red-border {
    padding: 15px 25px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# UVOD
--------------------------------------------------------------*/
/* SLIDER */
section.slider-bg {
  padding-top: 60px;
  padding-bottom: 0;
}
.slider {
    padding: 0 260px;
}
.slider .right-side {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.slider .right-side .slideblock.middle {
  margin: 8px 0;
}
.slider .right-side .slideblock img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}
@media only screen and (max-width: 1780px) {
  .slider .right-side {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
  .slider {
    padding: 0 100px;
  }
  .slider .right-side .slideblock img {
    height: auto;
  }
}
@media only screen and (max-width: 1199px) {
  section.slider-bg {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1275px) {
  .slider .right-side .slideblock img {
    height: auto;
  }
}

@media only screen and (max-width: 991px) {
  .slider. col-lg-9.left-side {
    width: 100%;
  }
  .slider. col-lg-3.right-side {
    width: 100%;
  }
  .slider .right-side {
    justify-content: center;
  }
  .slider .right-side .slideblock.middle {
    margin: 15px 0;
  }
  section.slider-bg {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  section.slider-bg {
    padding-top: 85px;
  }
}
@media only screen and (max-width: 575px) {
  .slide {
    margin-bottom: 25px;
  }
  .slider {
    padding: 0;
  }
}

/* ROZCESTNIK */
section.roz-bg {
  background-color: #fff;
}
.rozbox img {
  width: auto;
  height: 250px;
  object-fit: contain;
  transition: all .2s ease-in-out;
}
.rozbox img:hover {
  transform: scale(.9); /* Results in 40 pixels square */
  transition: all .2s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .rozbox img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 575px) {
  .rozbox img {
    width: 50%;
    height: auto;
  }
}

/* O NAS */
section.onashp-bg {
  background-color: #fff;
}
.onashp .left-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.onashp .left-side h2 span {
  font-size: 36px;
  color: #FA443E;
  font-weight: 600;
}
.onashp .left-side h2 {
  font-size: 60px;
  color: #FA443E;
  font-weight: 600;
  padding-bottom: 15px;
}
.onashp .left-side p {
  font-size: 16px;
  color: #114081;
  font-weight: 400;
}
.onashp .left-side p strong {
  font-size: 18px;
  color: #114081;
  font-weight: 700;
}

.features .bg, .features .overlay {
  text-align: center;
}
.features img, .features .overlay {
  transition: 0.3s all;
  border-radius: 3px;
}
.features .bg {
  float: left;
  max-width: 100%;
  position: relative;
  margin: 0.5%;
}
.features .bg img {
  width: 100%;
  margin-bottom: -4px;
}
.features .bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
background: rgb(250,68,62);
background: -moz-linear-gradient(180deg, rgba(250,68,62,1) 0%, rgba(17,64,129,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(250,68,62,1) 0%, rgba(17,64,129,1) 100%);
background: linear-gradient(180deg, rgba(250,68,62,1) 0%, rgba(17,64,129,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fa443e",endColorstr="#114081",GradientType=1);
  color: #fff;
  opacity: 0;
}
.features .bg .overlay {
  justify-content: center;
  align-items: center;
  display: flex;
}
.features .bg .overlay p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  padding: 10px;
  margin-bottom: 0;
}
.features .bg:hover .overlay {
  opacity: 1;
}
.features .bg:hover img {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
@media only screen and (max-width: 1199px) {
  .onashp .left-side h2 {
    font-size: 40px;
  }
  .onashp .left-side h2 span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .onashp .left-side h2 {
    font-size: 40px;
  }
  .onashp .left-side h2 span {
    font-size: 20px;
  }
  section.onashp-bg {
    padding-top: 0;
  }
  .onashp .left-side p strong {
    font-size: 16px;
  }
  .onashp .right-side .col-lg-4 {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .onashp .left-side h2 {
    font-size: 30px;
  }
  .onashp .left-side h2 span {
    font-size: 20px;
  }
  section.onashp-bg {
    padding-top: 0;
  }
  .onashp .left-side p strong {
    font-size: 15px;
  }
  .onashp .right-side {
    margin-top: 25px;
  }
}

/* RECENZE */
section.rec-bg {
  background-color: #fff;
}
.recbox {
  background-color: #114081;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
}
.recbox h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.recbox p {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}
.recbox .checked {
  color: #FA443E;
  margin: 15px 0;
}
.rec-bg p {
  font-size: 17px;
}
@media only screen and (max-width: 1199px) {
  .recbox h3 {
    font-size: 15px;
  }
  .rec-bg p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .rec-bg .col-sm-3 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .nadpis h2 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .nadpis h2 {
    font-size: 15px;
  }
}

/* PARTNERI */
section.partneri-bg {
  background-color: #fff;
}
.partneri {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.partnerbox {
  margin-top: 25px;
}
.partnerbox img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  margin-right: 15px;
}

/*--------------------------------------------------------------
# PODSTRANKY
--------------------------------------------------------------*/
section.pods-bg {
  padding-top: 150px;
  background-color: #fff;
}
.pods h1 {
  font-size: 36px;
  font-weight: 600;
  color: #FA443E;
  padding-bottom: 10px;
}
.pods p {
  color: #114081;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 1199px) {
  .kontakt h1 {
     font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .pods h1 {
    font-size: 25px;
  }
  .pods h4 {
    font-size: 16px;
  }
  section.pods-bg {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .pods h1 {
    font-size: 22px;
  }
  section.pods-bg {
    padding-top: 100px;
  }
}

/*--------------------------------------------------------------
# NAS TYM
--------------------------------------------------------------*/
section.tym-bg {
  padding-top: 150px;
  background-color: #fff;
}
.tym h1 {
  font-size: 36px;
  font-weight: 600;
  color: #FA443E;
  padding-bottom: 10px;
}
.tym h2 {
  font-size: 30px;
  font-weight: 600;
  color: #114081;
  padding-bottom: 10px;
}
.tym .left-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.tym .left-side p {
  font-size: 16px;
  color: #114081;
  font-weight: 400;
}
.tym .left-side p strong {
  font-weight: 600;
}

.tym .right-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.tymbox .left-side img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.tymbox .left-side {
  justify-content: center;
  align-items: center;
  display: block;
}
.tymbox .right-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.tymbox .right-side h3 {
  font-size: 18px;
  padding-bottom: 15px;
}
.tymbox .right-side p {
  font-size: 14px;
  font-weight: 400;
  color: #114081;
}
.tymbox .right-side a {
  color: #FA443E;
  text-decoration: underline;
}
.tymbox .right-side a:hover {
  color: #114081;
  text-decoration: none;
}
.tymbox {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .tym h1 {
     font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .tym h1 {
    font-size: 25px;
  }
  .tym h2 {
    font-size: 16px;
  }
  section.tym-bg {
    padding-bottom: 0;
  }
  .tymbox .left-side img {
    height: 150px;
    width: 150px;
  }
  .tymbox {
    margin: 25px 0;
  }
  .tymbox .right-side h3 {
    padding-bottom: 5px;
    padding-top: 15px;
  }
  .tymbox .right-side p {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .tymbox .right-side h3 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .tym h1 {
    font-size: 17px;
  }
  section.tym-bg {
    padding-top: 100px;
  }
}

/*--------------------------------------------------------------
# DETAIL CLENA
--------------------------------------------------------------*/
section.detailclena-bg {
  padding-top: 150px;
  background-color: #fff;
}
.detailclena .left-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.detailclena .left-side h1 {
  font-size: 36px;
  font-weight: 600;
  color: #114081;
  padding-bottom: 10px;
}
.detailclena .left-side p {
  font-size: 16px;
  color: #114081;
  font-weight: 400;
}
.detailclena .left-side a {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #114081;
  margin-top: 25px;
}
.detailclena .left-side svg {
  margin-right: 15px;
}
.detailclena .left-side a:hover {
  color: #FA443E;
}
.detailclena .right-side {
  justify-content: center;
  align-items: center;
  display: flex;
}
.detailclena .right-side img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  .detailclena .left-side h1 {
     font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .detailclena .left-side h1 {
    font-size: 25px;
  }
  section.detailclena-bg {
    padding-bottom: 0;
  }
  .detailclena .left-side {
    margin-bottom: 25px;
  }
  .detailclena .right-side {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .detailclena .left-side h1 {
    font-size: 22px;
  }
  section.detailclena-bg {
    padding-top: 100px;
  }
}

/*--------------------------------------------------------------
# O NAS
--------------------------------------------------------------*/
/* O NAS */
section.onas-bg {
  padding-top: 150px;
  background-color: #fff;
}
.onas .left-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.onas .left-side h2 span {
  font-size: 36px;
  color: #FA443E;
  font-weight: 600;
}
.onas .left-side h2 {
  font-size: 60px;
  color: #FA443E;
  font-weight: 600;
  padding-bottom: 15px;
}
.onas .left-side p {
  font-size: 16px;
  color: #114081;
  font-weight: 400;
}
.onas .left-side p strong {
  font-size: 18px;
  color: #114081;
  font-weight: 700;
}

.onas .right-side {
  align-items: center;
  display: flex;
}
.onas .right-side img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  .onas .left-side h2, .onas .left-side h2 span {
     font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .onas .left-side h2, .onas .left-side h2 span {
    font-size: 25px;
  }
  .onas .left-side p {
    font-size: 15px;
  }
  .onas .left-side p strong {
    font-size: 16px;
  }
  section.onas-bg {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .onas .left-side h2, .onas .left-side h2 span {
    font-size: 22px;
  }
  section.onas-bg {
    padding-top: 100px;
  }
}

/*--------------------------------------------------------------
# KONTAKT
--------------------------------------------------------------*/
section.kontakt-bg {
  background-color: #fff;
  padding-top: 150px;
}
.kontakt h1 {
  font-size: 36px;
  font-weight: 600;
  color: #FA443E;
  padding-bottom: 10px;
}
.kontakt p {
  color: #114081;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
section.kontaktinfo-bg {
  background-color: #fff;
}
.kontaktinfo .left-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.kontaktinfo p {
  color: #114081;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
.kontaktinfo a {
  color: #FA443E;
  text-decoration: underline;
}
.kontaktinfo a:hover {
  color: #114081;
  text-decoration: none;
}
.kontaktinfo .right-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.wpcf7 form.sent .wpcf7-response-output {
    background-color: #143c28;
    border-color: #143c28;
    color: #fff;
    padding: 15px;
    font-weight: 700;
}
.buttonred {
background-color: #fff;
    border: 3px solid #FA443E;
    border-radius: 50px;
    padding: 18px 35px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #FA443E;
    font-weight: 600;
    transition: .2s;
}
.buttonred:hover {
    background-color: #FA443E;
    color: #fff;
}

.wpcf7 .wpcf7-validation-errors,.wpcf7 .wpcf7-acceptance-missing {
    border: 5px solid FA443E;
    margin-top: -30px;
}
.wpcf7 span.wpcf7-not-valid-tip {
    font-family: 'Roboto',sans-serif;
    background-color: #FA443E;
    color: #fff;
    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 #FA443E;
  background-color: #fff;
  height: 60px;
  font-family: 'Roboto',sans-serif;
  font-weight: 400;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 5px;
  border-radius: 50px;
}
.wpcf7-form-control.wpcf7-select {
  border: 2px solid #FA443E;
  background-color: #fff;
  height: 60px;
  font-family: 'Roboto',sans-serif;
  font-weight: 400;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 5px;
  border-radius: 50px;
}
.wpcf7-form-control {
  margin-top: 5px;
}
.form-group label {
  font-weight: 500;
  font-size: 16px;
}
.wpcf7-form-control.wpcf7-textarea {
  border: 2px solid #FA443E;
  background-color: #fff;
  height: 60px;
  font-family: 'Roboto',sans-serif;
  font-weight: 400;
  width: 100%;
  padding-left: 25px;
  padding-top: 15px;
  height: 100px;
  font-size: 14px;
  border-radius: 25px;
}
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-tel {
  border: 2px solid #FA443E;
  background-color: #fff;
  height: 60px;
  font-family: 'Roboto',sans-serif;
  font-weight: 400;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 15px;
  border-radius: 50px;
}
.wpcf7 :focus {
  color: #333;
  background-color: #f3f2f2!important;
  outline: 0;
  border: none;
}
.wpcf7-form-control.wpcf7-number {
  border: 2px solid #FA443E;
  background-color: #fff;
  height: 60px;
  font-family: 'Roboto',sans-serif;
  font-weight: 400;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 15px;
  border-radius: 50px;
}
.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: #9fb4cd!important;
  opacity: 1;
}
:-moz-placeholder {
  color: #9fb4cd!important;
  opacity: 1;
}
::-moz-placeholder {
  color: #9fb4cd!important;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #9fb4cd!important;
  opacity: 1;
}
@media only screen and (max-width: 1199px) {
  .kontakt h1 {
     font-size: 30px;
  }
  .kontaktinfo .left-side h2 {
    font-size: 25px;
  }
  .kontaktinfo .left-side {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 991px) {
  .kontakt h1 {
    font-size: 25px;
  }
  section.kontakt-bg {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .kontakt h1 {
    font-size: 22px;
  }
  section.kontakt-bg {
    padding-top: 100px;
  }
  .kontaktinfo .left-side h2 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
section.blog-bg {
  background-color: #fff;
  padding-top: 150px;
}
.blog-bg .bread h1 {
  font-size: 36px;
  font-weight: 600;
  color: #FA443E;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .blog-bg .bread h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-bg .bread h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-bg .bread h1 {
    font-size: 22px;
  }
  section.blog-bg {
    padding-top: 100px;
  }
}

/* VYPIS CLANKU */
.blogbox {
  margin-bottom: 40px;
}
.blogbox .obrazek img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.blogbox .obrazek {
  height: 280px;
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}
.blogbox .obrazek img {
  transition: transform .5s ease;
}
.blogbox .obrazek:hover img {
  transform: scale(1.5);
}
.blogbox .desc h3 {
  font-size: 18px;
  font-weight: 600;
  color: #114081;
  padding-bottom: 15px;
  padding-top: 15px;
}
.blogbox .desc p {
  color: #114081;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
.blogbox .desc a {
  font-weight: 600;
  color: #FA443E;
  text-decoration: underline;
}
.blogbox .desc a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 1199px) {
  .blogbox .desc h3 {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 991px) {
  .blogbox .desc h3 {
    font-size: 17px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .blogbox .desc h3 {
    font-size: 15px;
    padding-bottom: 0;
  }
  .blogbox .desc p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .blogbox .desc a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 425px) {
  .blogbox .desc h3 {
    font-size: 15px;
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# DETAIL CLANKU
--------------------------------------------------------------*/
section.bread-det-bg {
  background-color: #fff;
  padding-top: 150px;
}
.bread-det h1 {
  font-size: 36px;
  font-weight: 600;
  color: #114081;
  padding-bottom: 10px;
}

section.detailclanku-bg {
  background-color: #fff;
}
.detailclanku .left-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.detailclanku .left-side p {
  font-size: 16px;
  color: #114081;
  font-weight: 400;
}
.detailclanku .left-side strong {
  font-weight: #FA443E;
  font-weight: 600;
}
.detailclanku .left-side h2 {
  font-size: 30px;
  color: #114081;
  padding-bottom: 10px;
}
.detailclanku .left-side h3 {
  font-size: 27px;
  color: #114081;
  padding-bottom: 10px;
}
.detailclanku .left-side h4 {
  font-size: 24px;
  color: #114081;
  padding-bottom: 10px;
}
.detailclanku .left-side h5 {
  font-size: 20px;
  color: #114081;
  padding-bottom: 10px;
}
.detailclanku .left-side a {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #114081;
  margin-top: 25px;
}
.detailclanku .left-side a:hover {
  color: #FA443E;
}
.detailclanku .left-side svg {
    margin-right: 15px;
}

.detailclanku .right-side {
  align-items: center;
  display: flex;
  justify-content: center;
}
.detailclanku .right-side img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
section.widget.widget_block {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .bread-det h1 {
    font-size: 30px;
  }
  section.bread-det-bg {
    padding-bottom: 0;
  }
  .detailclanku .left-side h5 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .bread-det h1 {
    font-size: 25px;
  }
  .detailclanku .left-side {
    padding-bottom: 25px;
  }

}
@media only screen and (max-width: 575px) {
  .bread-det h1 {
    font-size: 22px;
  }
  section.bread-det-bg {
    padding-top: 100px;
  }
  .detailclanku .left-side h5 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 425px) {
  .bread-det h1 {
    font-size: 18px;
  }
  section.bread-det-bg {
    padding-top: 100px;
  }
  .detailclanku .left-side h5 {
    font-size: 15px;
  }
  section.detailclanku-bg {
    padding-top: 0;
  }
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
footer {
  background-color: #114081;
  padding-top: 50px;
  padding-bottom: 30px;
}

.paticka h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  color: #fff;
  font-weight: 800;
  height: 45px;
  line-height: 1.5;
  margin-bottom: 45px;
}
.paticka .column1 ul li {
  list-style: none;
  line-height: 1.9;
}
.paticka .column1 ul {
  padding-left: 0;
}
.paticka .column1 ul li a {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}
.paticka .column1 ul li a svg {
  margin-right: 10px;
}
.paticka .column1 ul li a:hover {
  color: #fa443e;
  text-decoration: underline;
}


.paticka .columnpopis a {
  color: #fa443e;
  text-decoration: underline;
}
.paticka .columnpopis a:hover {
  text-decoration: none;
}
.paticka .columnpopis p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

/* SOCKET */
.socket {
  border-top: 1px solid #2a548f;
  padding-top: 45px;
  margin-top: 45px;
}
.socket p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .paticka h5 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 991px) {
  .paticka h5 {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .paticka .column1 {
    border-top: 1px solid #2b528c;
    padding-top: 25px;
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
#KROUZKY
--------------------------------------------------------------*/
section.krouzky-bg {
  background-color: #fff;
  padding-top: 150px;
}
.krouzek {
  justify-content: center;
  align-items: center;
  display: flex;
}
.krouzek h3 {
  position: absolute;
  color: #FA443E;
  font-size: 20px;
}
.krouzkybox .bg, .krouzkybox .overlay {
  text-align: center;
}
.krouzkybox img, .krouzkybox .overlay {
  transition: 0.3s all;
}
.krouzkybox {
  margin-bottom: 25px;
}
.krouzkybox .bg {
  float: left;
  max-width: 100%;
  position: relative;
  margin: 0;
}
.krouzkybox .bg img {
  width: 100%;
  margin-bottom: 0;
}
.krouzkybox .bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
background: rgb(250 68 62 / 89%);
  color: #fff;
  opacity: 0;
}
.krouzkybox .bg .overlay {
  justify-content: center;
  align-items: center;
  display: flex;
}
.krouzkybox .bg .overlay p {
  font-family: "Bungee", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #114081;
  padding: 10px;
  margin-bottom: 0;
}
.krouzkybox .bg:hover .overlay {
  opacity: 1;
}
.krouzkybox .bg:hover img {
  -webkit-filter: blur(0px);
  filter: blur(0px);
}
@media only screen and (max-width: 991px) {
  .krouzkybox .bg {
    float: none;
  }
}

/*--------------------------------------------------------------
# DETAIL PRODUKTU
--------------------------------------------------------------*/
.detailproduktu {
  padding-top: 100px;
}
.woocommerce-page div.product div.summary {
  float: left;
  width: 100%;
}

.detailproduktu .kodproduktu {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  padding-bottom: 20px;
}
.detailproduktu .dostupnost {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fa443e;
  padding-bottom: 20px;
}
.detailproduktu .rezervovat .button.add_to_cart_button {
  background-color: #fff;
  border: 3px solid #FA443E;
  border-radius: 50px;
  padding: 18px 35px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #FA443E;
  font-weight: 600;
  transition: .2s;
}
.detailproduktu .rezervovat .button.add_to_cart_button:hover {
  background-color: #FA443E;
  color: #fff;
}

.detailproduktu .cena bdi {
  font-family: 'Roboto', sans-serif;
  font-size: 30px !important;
  font-weight: 600 !important;
  color: #114081 !important;
}
.detailproduktu .cena {
  padding-bottom: 50px !important;
}

/* INFO DETAIL */
.infodetail {
  margin-top: 30px;
  margin-bottom: 30px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}
.infodetailbox {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.infodetailbox .icon img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
.infodetailbox .icon {
  width: 50px;
}
.infodetailbox .desc {
  width: 100%;
  margin-left: 10px;
}

/* BOTTOM DETAIL */
.detailproduktu .bottomdetail {
  padding-top: 50px;
}
.detailproduktu .bottomdetail h2 {
  font-size: 20px;
  color: #fa443e;
}
.detailproduktu .bottomdetail p {
  font-size: 16px;
  color: #114081;
  font-weight: 400;
}
@media only screen and (max-width: 1199px) {
  .detailproduktu .nazev h1 {
    font-size: 30px;
  }
  .detailproduktu .cena {
    padding-bottom: 30px !important;
  }
}
@media only screen and (max-width: 991px) {
  .detailproduktu .dostupnost {
    font-size: 15px;
  }
  .detailproduktu .rezervovat .button.add_to_cart_button {
    padding: 15px 25px;
    font-size: 14px;
  }
  .infodetail {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    margin-top: 0;
  }
  .infodetailbox {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .detailproduktu .rezervovat {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .detailproduktu .nazev h1 {
    font-size: 25px;
  }
  .detailproduktu .cena {
    padding-bottom: 20px !important;
  }
  .detailproduktu .bottomdetail p {
    font-size: 15px;
  }
  .detailproduktu .bottomdetail h2 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 575px) {
  .detailproduktu {
    padding-top: 35px;
    padding-bottom: 0;
  }
  section.detail-pr-bg {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 425px) {
  .detailproduktu .nazev h1 {
    font-size: 20px;
  }
  .detailproduktu .cena {
    padding-bottom: 15px !important;
  }
  .detailproduktu .cena bdi {
    font-size: 20px !important;
  }
  .detailproduktu .bottomdetail p {
    font-size: 15px;
  }
  .detailproduktu .bottomdetail h2 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 575px) {
  .detailproduktu {
    padding-top: 35px;
    padding-bottom: 0;
  }
  section.detail-pr-bg {
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# KOSIK
--------------------------------------------------------------*/
section.bread-bg {
  padding-top: 150px;
  background-color: #fff;
  padding-bottom: 0;
}
.bread h1 {
  font-size: 36px;
  font-weight: 600;
  color: #FA443E;
  padding-bottom: 10px;
}
td.product-thumbnail {
    display: none;
}
th.product-thumbnail {
    display: none;
}
th.product-quantity {
  display: none;
}
td.product-quantity {
  display: none;
}
.woocommerce table.shop_table {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 2px solid #EAEEF4 !important;
}
.woocommerce table.shop_table td {
  border-color: #EAEEF4;
  border-top: 2px solid #EAEEF4 !important;
}
th.product-name, th.product-price, th.product-quantity, th.product-subtotal {
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #131313;
}


.woocommerce a.remove {
  color: #fa443e !important;
  font-weight: 600;
  font-size: 30px;
}
.woocommerce a.remove:hover {
  background-color: #fff;
  color: #114081 !important;
}
.woocommerce-cart table.cart img {
  width: 60px;
}
td.product-name a {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #114081;
}
td.product-name a:hover {
  color: #fa443e;
  text-decoration: underline;
}
td.product-price bdi {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
}




.woocommerce table.shop_table td small {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
td.product-subtotal bdi {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
td.actions input#coupon_code {
  width: 350px;
  background-color: #f9fafa;
  border: none;
  height: 60px;
}
td.actions .coupon button {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #5bc0de;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #ffffff;
  border: 2px solid #5bc0de;
  height: 60px;
  border-radius: 0;
}


/* CELKEM K PLATBE */
.cart-collaterals {
  margin-top: 60px;
}
.cart_totals h2 {
  font-size: 22px;
  font-weight: 600;
  color: #fa443e;
}
tr.cart-subtotal th {
  border-top: 2px solid #EAEEF4 !important;
  padding: 24px 12px !important;
  131313
  font-size: 15px;
  font-weight: 400 !important;
  color: #000;
}
tr.cart-subtotal span.woocommerce-Price-amount.amount {
  131313
  font-size: 15px;
  font-weight: 700;
  color: #000;
}
.woocommerce table.shop_table tbody:first-child tr:first-child td, .woocommerce table.shop_table tbody:first-child tr:first-child th {
  padding: 24px 12px !important;
}
.woocommerce-cart .cart-collaterals .cart_totals tr th {
  border-top: 2px solid #EAEEF4 !important;
  padding: 24px 12px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400 !important;
  color: #000;
}
tr.woocommerce-shipping-totals.shipping td {
  padding: 24px 12px !important;
}
tr.order-total td {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  padding: 24px 12px !important;
}


p.woocommerce-shipping-destination {
  background-color: #eaeef4;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  padding: 20px;
}
form.woocommerce-shipping-calculator {
  background-color: #ffffff;
  border: 2px solid #eaeef4;
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  padding: 20px;
}
form.woocommerce-shipping-calculator a {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fa443e;
}
form.woocommerce-shipping-calculator a:hover {
  color: #676767;
  text-decoration: underline;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fa443e;
  border: 2px solid #fa443e;
  line-height: 2.5;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #fff;
  color: #fa443e;
}
.woo-kosik-bg .woocommerce-message {
  display: none
}
.woocommerce-cart-form .actions .button[name="update_cart"] {
    display: none;
}


/*--------------------------------------------------------------
# POKLADNA
--------------------------------------------------------------*/
/* FAKTURACNI UDAJE */
.woocommerce-billing-fields h3 {
display: none;
}
#udaje_pro_registraci_field h3 {
  font-size: 22px;
  font-weight: 600;
  color: #131313;
  font-weight: 600;
  color: #fa443e;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
border: 1px solid #FA443E;
    background-color: #fff;
    height: 50px;
    font-family: 'Roboto',sans-serif;
    font-weight: 400;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    margin-top: 5px;
    border-radius: 50px;
}
.select2-container--default .select2-selection--single {
border: 1px solid #FA443E;
    background-color: #fff;
    height: 50px;
    font-family: 'Roboto',sans-serif;
    font-weight: 400;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    margin-top: 5px;
    border-radius: 50px;
}
.select2-container .select2-selection--single {
  height: 45px !important;
  padding: 7px; !important;
}
.woocommerce form .form-row label {
  color: #114081;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10px;
  height: 45px;
  align-items: flex-end;
  display: flex;
}
input#billing_address_2 {
  display: none;
}
p#billing_country_field {
  display: none;
}
.woocommerce form .form-row label span.optional {
  display: none;
}


/* FORMULAR KROUZEK */
#formular_krouzek_field h2 {
  font-size: 22px;
  font-weight: 600;
  color: #131313;
  font-weight: 600;
  color: #fa443e;
  margin-top: 50px;
}



/* VASE OBJEDNAVKA */
h3#order_review_heading {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
tr.cart_item td {
  padding: 24px 12px !important;
}
span.woocommerce-Price-amount.amount bdi {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
th.product-total {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}



/* SOUHRN A PLATBA */
.woocommerce-checkout #payment {
  background-color: #eaeef4;
  padding: 25px;
  border-radius: 5px;
}
a.woocommerce-privacy-policy-link {
  color: #fa443e;
  text-decoration: underline;
}
a.woocommerce-terms-and-conditions-link {
  color: #114081;
  text-decoration: underline;
}
.woocommerce button.button.alt {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fa443e;
  border: 2px solid #fa443e;
  line-height: 2.5;
  width: 100%;
}
.woocommerce button.button.alt:hover {
background-color: #fff;
    color: #fa443e;
}
.woocommerce form .form-row .input-checkbox {
  margin: 0;
}



/* FORMULAR */
.checkout.woocommerce-checkout {
  display: flex;
}
.woocommerce .col2-set, .woocommerce-page .col2-set {
  width: 60%;
}
.woocommerce-checkout-review-order {
  width: 40%;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  display: none;
}
#customer_details .col-1, #customer_details .col-2 {
    width: 100%;
  background-color: #fff;
  border: 1px solid #114081;
  padding: 25px;
}
h3#order_review_heading {
  display: none;
}
.woocommerce-checkout-review-order {
  background-color: #fff;
  border: 1px solid #114081;
  padding: 25px;
}

/* KUPON */
.woocommerce form.checkout_coupon input#coupon_code.input-text {
  background-color: #f9fafa;
  border: none;
  height: 60px;
  border-radius: 0;
  margin-top: 0;
}
.woocommerce form.checkout_coupon button {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5bc0de;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #ffffff;
    border: 2px solid #5bc0de;
    height: 60px;
    border-radius: 0;
}
@media only screen and (max-width: 991px) {
.checkout.woocommerce-checkout {
  display: block;
}
.woocommerce .col2-set, .woocommerce-page .col2-set {
  width: 100%;
}
.woocommerce-checkout-review-order {
  width: 100%;
  }
}

/*--------------------------------------------------------------
# VYPIS PRODUKTU
--------------------------------------------------------------*/
p.woocommerce-result-count {
  display: none;
}
form.woocommerce-ordering {
  display: none;
}
.produktbox {
  background-color: #114081;
  padding: 25px;
}
.produktbox:hover h3 {
  text-decoration: underline !important;
  color: #fa443e;
}
.produkt-box.kategorie h3 {
  font-size: 25px !important;
}
.produkt-box.kategorie h3:hover {
  text-decoration: underline !important;
  color: #fa443e;
}
.produkt-box.kategorie .kdy {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 0;
}
.produkt-box.kategorie .kde {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  padding: 10px 0;
}
.produkt-box.kategorie .price bdi {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  padding: 10px 0;
}

/* FILTR */
.filtr-bg {
  background-color: #eaeef4;
  padding: 25px;
}
.filtr-bg select {
  border: 1px solid #d3dae6;
  background-color: #fff;
  height: 50px;
  font-family: 'Roboto',sans-serif;
  font-weight: 400;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 0;
  border-radius: 0;
}
.wpc-filter-title {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1199px) {
  .bread h1{
     font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .bread h1 {
    font-size: 25px;
  }
  section.bread-bg {
    padding-bottom: 0;
    padding-top: 150px;
  }
  section.vypis-eshop-bg {
    padding-top: 0;
    padding-bottom: 0;
  }
  section.vypis-eshop-bg .right-side {
    padding: 25px;
  }
  .produkt-box.kategorie h3 {
    font-size: 17px !important;
  }
  .produkt-box.kategorie .kdy {
    font-size: 14px;
  }
  .produkt-box.kategorie .price bdi {
    font-size: 20px;
  }
  .filtr-bg {
    padding: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .bread h1 {
    font-size: 22px;
  }
  section.bread-bg {
    padding-top: 100px;
  }
  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
    display: grid;
  }
}


/*--------------------------------------------------------------
# OBJEDNAVKA PRODUKTU
--------------------------------------------------------------*/
.thwcfe-section-title {
  display: none !important;
}
#qrcode_zencore h2 {
  font-size: 18px;
}
section.woocommerce-bacs-bank-details h2 {
  font-size: 18px;
}
section.woocommerce-bacs-bank-details h3 {
  font-size: 18px;
}
section.woocommerce-order-details h2 {
  font-size: 18px;
}
