/*

.proizvod article input:hover{
  color: #fff;
  background: #EF2D56;
}
.block-facet--links.widget ul{
  list-style-type: none;
  padding-left: 0;
}
.block-facet--links.widget li{
  list-style-type: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.slika-proizvoda{
  position: relative;
  overflow: hidden;
}
.slika-proizvoda img {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.proizvod{
  text-transform: uppercase;
  font-family: "Raleway",sans-serif;
  margin-bottom: 20px;
}
.proizvod:hover .slika-proizvoda img,
.slika-proizvoda:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.proizvod input{
  border: 1px solid #EF2D56;
  color: #EF2D56;
  background: transparent;
  padding: 8px 20px;
  width: 60%;
}
.proizvod input:hover{
  background: #EF2D56;
  color: #fff;
}
.views-field-title{
  margin-top: 15px;
}
.views-field-title .field-content a{
  color: #191b1d;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
}
.views-field-title .field-content:hover a{
  color: #EF2D56;
}
.views-field-variations {
  position: absolute;
  z-index: 55;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 0;
  top: 310px;
}

.proizvod:hover .views-field-variations{
  opacity: 1;
}
.thumb.images{
  margin-top: 5px;
}
.thumb.images img{
  opacity: 0.55;
  width: 32%;
}
.thumb.images img:hover{
  opacity: 1;
  cursor: pointer;
}


.dodato{
  position: absolute;
  width: 80%;
  left: 10%;
  right: 10%;
  background: rgba(255,255,255,0.75);
  padding: 6px 15px;
//  border: 1px solid #4d4d4d;
  animation-name: dodato;
  animation-duration: 1400ms;
  opacity: 0;
  transform: translateY(-80px);
}

@-webkit-keyframes dodato {
  0%   {transform: translateY(10px); opacity: 1; }
  40%  {transform: translateY(14px); opacity: 1; }
  100% {transform: translateY(-80px); opacity: 0; display: none;}
}
@-moz-keyframes dodato {
  0%   {transform: translateY(10px); opacity: 1; }
  40%  {transform: translateY(14px); opacity: 1; }
  100% {transform: translateY(-80px); opacity: 0; display: none;}
}
@-o-keyframes dodato {
  0%   {transform: translateY(10px); opacity: 1; }
  40%  {transform: translateY(14px); opacity: 1; }  
  100% {transform: translateY(-80px); opacity: 0; display: none;}

}
@keyframes dodato {
  0%   {transform: translateY(10px); opacity: 1; }
  40%  {transform: translateY(14px); opacity: 1; }
  100% {transform: translateY(-40px); opacity: 0; display: none;}
}

*/