/* *{
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

.show {
  width: 400px;
  height: 400px;
  
} */

.small-img {
  width: 350px;
  height: 70px;
  margin-top: 10px;
  position: relative;
  /* left: 25px; */
  margin: auto;
}

.small-img .icon-left, .small-img .icon-right {
  width: 12px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.small-img .icon-left {  left: 0; }

.small-img .icon-right { right: 0; }

.small-img .icon-left:hover, .small-img .icon-right:hover { opacity: .5; }

.small-container {
  width: 310px;
  height: 70px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.small-container div {
  width: 800%;
  position: relative;
}
/* 
.small-container .show-small-img {
  width: 70px;
  height: 70px;
  margin-right: 6px;
  cursor: pointer;
  float: left;
}

.small-container .show-small-img:last-of-type { margin-right: 0; } */


.small-container .selected-small-img {
  border: solid 1px #951b25;
  padding: 2px;
}


.MultiCarousel {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  position:relative;
}

.MultiCarousel .MultiCarousel-inner {
  transition: 1s ease all;
  float: left;
}

.MultiCarousel .MultiCarousel-inner .item {
  float: left;
  height:10%;
}

.MultiCarousel .MultiCarousel-inner .item > div {
  text-align: center;
  padding:10px;
  margin:10px;
  background:#f1f1f1;
  color:#666;
}

.MultiCarousel .leftLst, .MultiCarousel .rightLst {
  position:absolute;
  border-radius:50%;
  top:calc(50% - 15px);
  background:#ff5b00;
  color:rgb(250, 245, 245);
}

.MultiCarousel .leftLst {
  left:0;
}

.MultiCarousel .rightLst {
  right:0; 
}

.MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over {
  pointer-events: none;
  background:#ccc;
}

