:root {
  --swiper2-theme-color: #fe5656;
  --swiper2-navigation-size: 44px;
 }
.swiper2-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper2-container .kiemelt div {
	padding: 5px;
}
.swiper2-container div {
	min-height: 10px !important;
}
.swiper2-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper2-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  overflow: hidden;
  /* overflow-y: scroll; */
}
.swiper2-slide::-webkit-scrollbar { width: 5px;}
.swiper2-slide::-webkit-scrollbar-track { background: transparent; }
.swiper2-slide::-webkit-scrollbar-thumb { background: #ddd; border-radius: 10px; }
.swiper2-slide::-webkit-scrollbar-thumb:hover { background: #aaa; }

.swiper2-button-prev,
.swiper2-button-next {
  position: absolute;
  /*bottom: 0px;*/
  bottom: 0px;
  /*width: calc(var(--swiper2-navigation-size) / 44 * 27);
  height: var(--swiper2-navigation-size);*/
  width: 30px;
  height: 30px;
  margin-top: calc(0px - (var(--swiper2-navigation-size) / 2));
  z-index: 11;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper2-navigation-color, var(--swiper2-theme-color));
}
.swiper2-button-prev:hover, .swiper2-button-next:hover {
	background-color: #fe5656;
	border-radius: 15px;
	color: white;
}
.swiper2-button-prev.swiper2-button-disabled,
.swiper2-button-next.swiper2-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper2-button-prev:after,
.swiper2-button-next:after {
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper2-button-prev {
  left: 5px;
  right: auto;
}

.swiper2-button-next {
  right: 5px;
  left: auto;
}

.swiper2-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper2-pagination.swiper2-pagination-hidden {
  opacity: 0;
}

.swiper2-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper2-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}
.swiper2-pagination-clickable .swiper2-pagination-bullet {
  cursor: pointer;
}
.swiper2-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper2-pagination-color, var(--swiper2-theme-color));
}


.swiper2-container-horizontal > .swiper2-pagination-bullets .swiper2-pagination-bullet {
  margin: 0 4px;
}
.swiper2-container-horizontal > .swiper2-pagination-bullets.swiper2-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper2-container-horizontal > .swiper2-pagination-bullets.swiper2-pagination-bullets-dynamic .swiper2-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper2-container-horizontal.swiper2-container-rtl > .swiper2-pagination-bullets-dynamic .swiper2-pagination-bullet {
  transition: 200ms transform, 200ms right;
}






.swiper2-container {
width: 100%;
height: 300px;
}

.swiper2-slide {
text-align: center;
font-size: 18px;
height: 260px;
border: 1px solid #eeeeee;
box-shadow: 0px 0px 5px 0px #ddd;
/* Center slide text vertically */
/* 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;
}

.swiper2-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}