/* /templates2_0/module/banner/main.less */
.module_banner_main_container {
  width: 700px;
  margin: 20px 0;
}
.module_banner_main_container .module_banner_main {
  display: inline-block;
}
.module_banner_main_container .module_banner_main + .module_banner_main {
  margin-left: 20px;
}
.module_banner_main_block_container .module_banner_main + .module_banner_main {
  margin-top: 20px;
}
.module_banner_main {
  position: relative;
  overflow: hidden;
  height: 260px;
  width: 700px;
  text-align: center;
  /* Боковые контролы */
  /* Слой с баннером */
  /* Превью баннеров у боковых контролов */
}
.module_banner_main.module_banner_main_small {
  width: 220px;
  height: 350px;
}
.module_banner_main.module_banner_main_middle {
  width: 460px;
  height: 350px;
}
.module_banner_main .banner_main_content {
  position: relative;
  height: inherit;
  width: inherit;
}
.module_banner_main .banner_main_control.prev {
  left: 0;
}
.module_banner_main .banner_main_control.next {
  right: 0;
}
.module_banner_main .banner_main_item {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  /* Эффект перехода */
}
.module_banner_main .banner_main_item img {
  opacity: inherit;
}
.module_banner_main .banner_main_item.selected {
  opacity: 1;
  z-index: 0;
}
.module_banner_main .banner_main_item.precede {
  opacity: 0;
  z-index: 2;
}
.module_banner_main .banner_main_item div.banner_main_title {
  color: black;
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  font: bold 16px/1.2 Utkonos;
  text-decoration: underline;
}
.module_banner_main .banner_main_item:hover div.banner_main_title {
  text-decoration: none;
}
.module_banner_main .banner_main_preview {
  position: absolute;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.6);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  width: 160px;
  height: 60px;
  top: 50%;
  margin-top: -30px;
  left: 40px;
}
.module_banner_main .banner_main_preview.next {
  left: auto;
  right: 40px;
}
.module_banner_main .banner_main_control.prev:hover ~ .banner_main_preview.prev {
  display: block;
}
.module_banner_main .banner_main_control.next:hover ~ .banner_main_preview.next {
  display: block;
}
