@charset "UTF-8";


.flame{
  position: relative;
  top: 0px;
  left: 0px;

  border: ridge 3px #9B7C50;
  border-radius: 10px;
  overflow: hidden;

  width: 394px;
  height: 154px;
  user-select: none;

  z-index: 1;
}

.swiper-container .swiper-slide{
  position: relative;
  display: block;
  height: 160px;
}

.swiper-container .swiper-slide img{
  width: 394px;
  height: 154px;
  border: 0;
}

.swiper-container .swiper-slide img.height_resize{
  display: block;
  width: auto;
  margin: auto;
}

.swiper-container .swiper-slide img.width_resize{
  height: auto;

  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.swiper-button-next{
  background: url(img/btn_right.png) no-repeat center;
  background-size: contain;
}

.swiper-button-prev{
  background: url(img/btn_left.png) no-repeat center;
  background-size: contain;
}

.swiper-pagination.swiper-pagination-bullets{
  background: url(img/pager_bg.png) no-repeat center;
  height: 30px;
  line-height: 30px;
  bottom: -30px;
  text-align: left;
  padding: 0 10px;

  transition: all 300ms 0s ease;
}

.swiper-pagination.swiper-pagination-bullets.active{
  bottom: 20px;
}

.swiper-pagination-bullet{
  background: url(img/pager.png) no-repeat center;
  background-size: contain;
  width: 18px;
  height: 24px;
  opacity: 1;

  font-size: 12px;
  font-weight: bold;
  line-height: 24px;

  vertical-align: middle;
  text-align: center;
}

.swiper-pagination-bullet-active{
  background: url(img/pager_active.png) no-repeat center;
  background-size: contain;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}


.loader,
.loader:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}
.loader {
  margin: 44px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.8em solid rgba(255, 255, 255, 0.2);
  border-right: 0.8em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.8em solid rgba(255, 255, 255, 0.2);
  border-left: 0.8em solid #9B7C50;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
