/* animace */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
     opacity: 0;
     -webkit-transform: translateY(-20px);
  }
  100% {
     opacity: 1;
     -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
     opacity: 0;
     transform: translateY(-20px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}
/* -- */

/* Scrollmenu */
div.scrollmenu {
  /* background-color: #dadada; */
  overflow: auto;
  white-space: nowrap;
}

div.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

div.scrollmenu a:hover {
  background-color: #777;
}
/* -- */

/* PAGINACE */
ul.paginace li {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #DDDDDD;
    background-color: #FFFFFF;
    margin-left: -1px;
    text-align: center;
}

ul.paginace li:hover {
    background: #fAfAfA;
}

ul.paginace li.neaktivni {
    color: #DDDDDD;
}

ul.paginace li.aktivni {
    color: #000000;
    background: #ffc107;
}

ul.paginace a {
        text-decoration: none;
}

.centrovany {
        text-align: center;
}
/* END PAGINACE */

.fb_dialog {
  z-index: 1 !important;
  bottom: 30pt !important;
}


.font-weight-600{
	font-weight: 600 !important;
}

a.sipka :hover {
	color:#F9BE2F;
}

input:disabled {
	cursor: default;
}

.cover-foto{
  width:100%;
  object-fit: cover;
}

.numberCircle {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 8px;


    border: 1px solid #666;
    color: #666;
    text-align: center;

    font-size: 25px;
}

.hp-pizza { 
  background-image: url("/img/web/header.jpg");
  background-size: auto;
}

.bt-1-orange { 
  border-bottom-color: #F28A0E;
  border-top: 1px;
}

.img-responsive { 
  width: 100%;
  object-fit: cover;
}

.kosik { 
  z-index: 21474836479;
  background-color: #ffc107;
  position: fixed;
  bottom:0;right:0; 
  border-radius: 7px 7px 0 0;
}

@media (max-width: 576px) { 

.kosik { 
  width: 100% !important; 
  margin: 0px !important;
}

.cover-foto{
  height:200px;
} 

}

@media (min-width: 576px) { 

.kosik { 
  width: 100% !important; 
  margin: 0px !important;
} 

.cover-foto{
  height:300px;
} 

}

@media (min-width: 768px) { 

.kosik { 
  width: 320px !important; 
  margin-right: 100px !important;
} 

.cover-foto{
  height:300px;
} 

}

@media (min-width: 992px) { 

.kosik { 
  width: 320px !important; 
  margin-right: 100px !important;
} 

.cover-foto{
  height:400px;
} 

}

@media (min-width: 1200px) { 

.kosik { 
  width: 320px !important; 
  margin-right: 100px !important;
} 

.cover-foto{
  height:400px;
} 

}

.zoom {  
  object-fit: cover;
	width: 100%;
	height: 100%;
  transition: all .3s ease-in-out;
}

.zoom:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
}