/*
====================================================================
CSS
CSS za stilizovanje SLIDER-A
HOME PAGE
Sindiri Studio 
v1.0
Miloš Krčobić
=====================================================================
*/

/*MOJ KONTEJNER KOJI OBUHVATA SLIDER*/
.slider_wrap
{
  background-color: #EBEBEB;
  /*min-width: 600px;*/
  height: 580px;
  width: 100%;
  margin-top: 250px;
}

.swiper-container 
{
  width: 80%;
  height: 580px;
  margin-top: 15vw;
}
/*MOJ KONTEJNER KOJI OBUHVATA SLIDER*/

/*SAM SLIDE KOJI SE SMENJUJE KLIKOM NA DUGME*/
.swiper-slide 
{
  text-align: center;
  font-size: 18px;
  background-color: #EBEBEB;
  padding-bottom: 10px;
  
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  flex-direction: column;
}
/*SAM SLIDE KOJI SE SMENJUJE KLIKOM NA DUGME*/

/*TEKST KOJI SE MENJA*/
.slide_text
{
  margin-left: 10%;
  margin-right: 10%;
  color: #2A2A2A;

  font-weight: 400;
  font-size: 1.9rem;
  letter-spacing: 0;
  line-height: 47.02px;

  margin-top: 30px;
  margin-bottom: 30px;

  transition: ease-in all 0.9s;
}
/*TEKST KOJI SE MENJA*/

/*USER ISPOD*/
.slide_user
{
  margin-top: 40px;
  height: 29px;
  width: 227px;
  color: #888888;

  font-weight: 400;
  font-size: 1.27rem;
  letter-spacing: 0;
  line-height: 29px;

  text-align: center;
}
/*USER ISPOD*/

/*IKONICE IZNAD TEKSTOVA*/
.slide_quote1
{
  height: 22px;
  width: 22px;

  background-image: url("../../ikonice/quote1.png");
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: 100% 100%;
}

.slide_quote
{
  height: 22px;
  width: 22px;

  background-image: url("../../ikonice/quote2.png");
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: 100% 100%;
}
/*IKONICE IZNAD TEKSTOVA*/

/*STILIZOVANJE BULLET-A*/
.swiper-pagination-bullet-active 
{
  background-color: #D1A068 !important;
  border: 5px solid #FFF;
  box-shadow: 0 0 0 2px #D1A068;

  position: relative;
  top: 4px;
  
}

.swiper-container-horizontal>.swiper-pagination-bullets
{
  bottom: 15px !important;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet 
{
  width: 4px;
  height: 4px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
}
/*STILIZOVANJE BULLET-A*/



@media only screen and (max-width:500px)
{
  .slide_text
  {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
  }

  .swiper-container
  {
    width: 100% !important;
  }
}