* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

.showImageGallry {
  width: 100%;
  height: 400px;
}

.show-img {
  width: 100%;
  height: 400px;
}

.gallery-show-img{
  width: 60% !important;
}

.small-img {
  width: 100%;
  height: 70px;
  margin-top: 10px;
  position: relative;
  left: 0px;
}

.small-img .icon-left,
.small-img .icon-right {
  width: 12px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 1;
  background: #ccc;
  padding: 1px;
}

.small-img .icon-left {
  transform: rotate(180deg)
}

.small-img .icon-right {
  right: 0;
}

.small-img .icon-left:hover,
.small-img .icon-right:hover {
  opacity: .5;
}

.small-container {
  width: 100%;
  height: 70px;
  overflow: hidden;
  position: absolute;
  left: 0px;
  right: 0;
  margin: 0 auto;
}

.small-container div {
  width: 1000%;
  position: relative;
}

.small-container .show-small-img {
  width: 73px;
  height: 70px;
  margin-right: 6px;
  cursor: pointer;
  float: left;
}

.small-container .show-small-img:last-of-type {
  margin-right: 0;
}

.autoSider {
  position: absolute;
  z-index: 999;
  bottom: 12%;
  filter: blur(10p);
  background: rgba(32, 32, 32, 0.185);
  backdrop-filter: blur(2px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.autoSider_admin {
  width: 94%;
  position: absolute;
  z-index: 999;
  bottom: 2%;
  filter: blur(10p);
  background: rgb(208 203 203 / 19%);
  backdrop-filter: blur(2px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

.photobanner {
  position: relative;
  height: 20vh;
  display: flex;
  width: 100%;
}

.autoSider_admin .photobanner {
  position: relative;
  height: 28vh;
  display: flex;
  width: 100%;
}

.photobanner img {
  margin: 8px;
  border-radius: 5px;
  box-shadow: 2px 2px 8px #343434;
}

.photobanner {
  animation: bannermove 150s linear infinite;
}

@keyframes bannermove {
  from {
    left: 0px;
  }

  to {
    left: -6000px;
  }
}