body,
html {
  width: 100%;
  height: 100%;
  font-family: kanit;
}

body {
  display: flex;
  justify-content: center;
  background: #1d1d1d;
  overflow: hidden;
  margin: 0;
}

* {
  position: relative;
}

.wrapper {
  min-height: 480px;
  width: 640px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  visibility: hidden;
}

.slides {
  width: 640px;
  height: 480px;
  min-height: 320px;
}

.slide {
  height: 100%;
  object-fit: fit;
  position: absolute;
  opacity: 0;
}

.number {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 30px;
  background: #6699fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 4px solid white;
}

.slide img {
  position: absolute;
}

.nav {
  height: 150px;
  display: flex;
  background: black;
  justify-content: space-around;
  align-items: center;
}

button {
  box-shadow: 0px 1px 0px 0px #fff6af;
  background: linear-gradient(to bottom, #ffec64 5%, #ffab23 100%);
  background-color: #ffec64;
  border-radius: 6px;
  border: 1px solid #ffaa22;
  display: inline-block;
  cursor: pointer;
  color: #333333;
  font-family: Arial;
  font-size: 21px;
  font-weight: bold;
  padding: 12px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ffee66;
}

button:hover {
  background: linear-gradient(to bottom, #ffab23 5%, #ffec64 100%);
  background-color: #ffab23;
}

button:active {
  position: relative;
  top: 1px;
}

.progress {
  background: black;
}

.bar {
  height: 10px;
  width: 100%;
  background: #ccc;
}

.dotNav {
  padding-top: 20px;
  display: flex;
  justify-content: space-around;
  height: 40px;
  align-items: center;
  background: black;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #ff3bb9;
  border: 3px white solid;
  cursor: pointer;
}

label {
  border-radius: 10px;
  display: inline-block;
  width: 20%;
  background: #fff;
  padding: 10px 15px;
  border-top: 1px solid #bbb;
}
label:last-child {
  border-bottom: 1px solid #bbb;
}
label > input {
  display: none;
}
label i {
  display: inline-block;
  float: right;
  padding: 2px;
  width: 40px;
  height: 20px;
  border-radius: 13px;
  vertical-align: middle;
  transition: 0.25s 0.09s;
  position: relative;
  background: #d8d9db;
  box-sizing: initial;
}
label i:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  transition: 0.25s;
}
label > input:checked + i {
  background: #4bd865;
}
label > input:checked + i:after {
  transform: translateX(20px);
}
label:hover {
  cursor: pointer;
}
