/* 
    Created on : 19.7.2019, 15:23:33
    Author     : Zdeněk Józsa
*/

#modal {
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    top:0;
    opacity:0.5;
    background-color:#fff;
    color:#fff;
    z-index:9999;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #00b05b;
  background: -moz-linear-gradient(left, #00b05b 10%, rgba(0,176,91, 0) 42%);
  background: -webkit-linear-gradient(left, #00b05b 10%, rgba(0,176,91, 0) 42%);
  background: -o-linear-gradient(left, #00b05b 10%, rgba(0,176,91, 0) 42%);
  background: -ms-linear-gradient(left, #00b05b 10%, rgba(0,176,91, 0) 42%);
  background: linear-gradient(to right, #00b05b 10%, rgba(0,176,91, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader:before {
  width: 50%;
  height: 50%;
  background: #00b05b;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.loader:after {
  background: #ffffff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.search-clanek {
    background-color: #884a0e !important;
}

.search-recept {
    background-color: #389a61 !important;
}

.search-mazlicek {
    background-color: #ff0000 !important;
}

.search-kontakt {
    background-color: #ff6c00 !important;
}

.search-poradce {
    background-color: #00ff00 !important;
}

.search-produkt {
    background-color: #6b9110 !important;
}

.search-more {
    border-radius: 3px;
    background-color: var(--barva01);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 1rem;
    vertical-align: middle;
}

.subscribe { 
  background: #fff; 
  border-radius: 0 0 10px 10px; 
  box-shadow: 0 0 25px 0 rgba(0,0,0,.5); 
  display: none; 
  left: 10%; 
  line-height: 1.3;
  max-height: calc(100vh - 100px); 
  padding: 30px; 
  position: fixed; 
  right: auto; 
  top: 0; 
  width: 80%; 
  z-index: 100; 
}
.subscribe input[type="submit"] {
  -webkit-appearance: none;
}
.subscribe .container {
  display: block;
  text-align: center;
}
.subscribe__body {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 130px);
}
.subscribe__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
  padding-top: 20px;
}
.subscribe__footer input {
  width: auto;
}
.subscribe__scroll {
  overflow-y: auto;
  overflow-x: hidden;
}
.subscribe__title { 
  font-size: 26px; 
  margin-bottom: 25px; 
  text-align: center; 
}
@media (max-width: 991px) {
  .subscribe__title { 
    font-size: 20px;
  }
}

.position-relative { position: relative; }

a.call-us-button { 
	text-align: center;
    display: block;
    width: 100%;
    margin: auto;
    padding: 10px 25px 10px 50px;
    background-color: #008000;
    color: #fff !important;
    text-decoration: none !important;
    background-image: url(../../../../img/ikona-telefon.png);
    background-repeat: no-repeat;
    background-size: 25px 25px;
    background-position: 18px center;
}
a.call-us-button:hover { 
	background-color: #006600;
}
@media (min-width: 576px) {
  a.call-us-button {
    width: fit-content;
  }
}