@charset "UTF-8";
.wrapper {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
}
.shoes {
  background: url(../images/shoes.png) left center no-repeat;
  height: 600px;
  margin-right: 40px;
}
.slider {
  background: transparent;
  height: 500px;
  position: relative;
  margin: 2rem 0;
  overflow: hidden;
  padding-bottom: 2.5rem;
  border: 0.25rem solid transparent;
}
.slider::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  content: "";
  display: block;
  background: transparent;
  height: 3rem;
}
.slide-switch {
  display: none;
}
input[type="radio"], input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  background-color: #91c4c3;
  color: #fff;
  height: 30px;
  width: 30px !important;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  margin-right: 7px;
  outline: none;
  top: 65%;
  left: 31%;
  margin-top: 10%;
}
.slide-label {
  position: absolute;
  bottom: 1rem;
  display: block;
  z-index: 5;
  height: 1rem;
  width: 1rem;
  text-indent: 1rem;
  overflow: hidden;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s;
  margin: 5px;
  padding: 10px;
}
.slide-label:nth-of-type(1) {
  left: 1rem;
}
.slide-label:nth-of-type(2) {
  left: 2.5rem;
}
.slide-label:nth-of-type(3) {
  left: 4rem;
}
.slide-label:nth-of-type(4) {
  left: 5.5rem;
}
.slide-label:nth-of-type(5) {
  left: 7rem;
}
.padded {
  padding: 1rem 2rem;
}
.slide-content {
  width: 100%;
  height: 500px;
  background: transparent;
  float: left;
  margin-right: -100%;
}
input[type="radio"]:checked::before {
  content: "•";
  font-size: 1rem;
}
.slide-content li {
  overflow: hidden;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.slide-content li a {
  text-decoration: none;
}
.slide-content span {
  float: left;
  text-align: center;
  font-weight: 700;
  font-size: 33px;
  background: #000;
  color: #fff;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: block;
  margin: 6px 20px 0 0;
}
.slide-switch:not(:checked) + .slide-label + .slide-content {
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.slide-switch:checked + .slide-label + .slide-content {
  animation: slide 1s;
}
@keyframes slide {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 770px) {
  input[type="radio"], input[type="checkbox"] {
    top: 87%;
    left: 16%;
  }
  .slide-content span {
    width: 48px;
  }
  .slide-content ul {
    padding-left: unset;
  }
  .slide-content li {
    align-items: flex-start;
    margin-bottom: 5%;
  }
  .slide-content li a {
    width: 100%;
  }
}
/*# sourceMappingURL=tutorial-slider.css.map */