.auto-slider{
    position: relative;
    box-sizing: content-box;
    display: inline-block;
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
	border: 4px solid #495393;
    box-shadow: 1px 2px 7px 3px rgb(73 83 147 / 85%);

}


@keyframes sliding{
            0%{left: 0%; }
            10%{left: -100%;}
            20%{left: -200%;}
            30%{left: -300%;}
            40%{left: -400%;}
            50%{left: -500%;}
            60%{left: -600%;}
            70%{left: -700%;}
            80%{left: -800%;}
            90%{left: -900%;}
            100%{left: 0%;}
        }

@keyframes indicating{
            from{
                left: -100%;
            }
            to{
                left: 0;
            }
}


div#slider { overflow: hidden; }
div#slider figure img { width: 10%; float: left; }
div#slider figure {
  position: relative;
  width: 1000%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 50s sliding ease infinite;
}

/* Slider indicator */
.indicator{
    width: 100%;
    max-width: 720px;
    height: 6px;
    background: #FACA0E;
    position: absolute;
    bottom: 0;

    animation: indicating 5s ease infinite;

}
.Scriptcontent{
	max-width: 720px;
    margin: 0 auto;
}