* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: "Vazirmatn", system-ui;
  font-feature-settings: "ss01";
}
body {
  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;

  background-color: #fff;
}
/* wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
/* container */
.container {
  width: 300px;
  height: 56px;

  border-radius: 64px;
  background-color: #0d4082;

  padding: 8px;

  display: flex;
  align-items: center;

  transition: background-color 1.5s ease;
}
.container.change-color {
  background-color: #e3eaf9;
}
.container.change-color-green {
  background-color: #12a533;
}
/* A button that moves */
.go {
  width: 40px;
  height: 40px;

  background-color: #fff;
  border-radius: 50%;

  transition: transform 3s ease-in-out;

  display: flex;
  justify-content: center;
  align-items: center;

  transform: translate(0);

  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  cursor: pointer;
}
.go.translate {
  transform: translate(-244px, 0);
}
.go img {
  transform: rotate(180deg);
}
/* Icons(Show and Hide) */
img {
  transition: opacity 0.5s ease, height 0.5s ease;
}
img.complete-icon {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transform: rotate(360deg);
}
img.arrow-icon-hide {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
img.complete-icon-show {
  opacity: 1;
  height: auto;
}
/* reload-btn */
button {
  outline: 0;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;

  padding: 5px 5px;

  border-radius: 12px;
  background-color: #fff;
  border: 3px dashed hsl(217, 16%, 84%);

  font-family: inherit;
  font-size: 15px;

  transition: 0.5s background-color ease;

  color: hsl(216, 18%, 34%);
}
button:hover {
  background-color: hsl(210deg 9% 91% / 60%);
}
.reload-container svg {
  width: 20px;
  height: 20px;
}
.reload-container svg path {
  fill: hsl(216, 18%, 34%);
}
