@media only screen and (max-width: 576px) {
  .pe2:hover, .pe3:hover {
    border: 5px solid red;
  }
  .pe5 {
    padding: 0 4px;
  }
  .pe5:hover span {
    background-color: #B0B0B0;
  }
  .pe7 {
    height: 200px;
  }
  .pe8 {
    min-height: 200px;
    top: 68px;
  }
}

@media only screen and (min-width: 576px) {
  .pe2:hover, .pe3:hover {
    border: 5px solid red;
  }
  .pe5 {
    padding: 0 4px;
  }
  .pe5:hover span {
    background-color: #B0B0B0;
  }
  .pe7 {
    height: 250px;
  }
  .pe8 {
    min-height: 250px;
    top: 74px;
  }
}

@media only screen and (min-width: 1024px) {
  .pe2:hover, .pe3:hover {
    border: 5px solid red;
  }
  .pe5 {
    padding: 0 4px;
  }
  .pe5:hover span {
    background-color: #B0B0B0;
  }
  .pe7 {
    height: 300px;
  }
  .pe8 {
    min-height: 300px;
    top: 96px;
  }
}

@media only screen and (min-width: 1250px) {
  .pe2:hover, .pe3:hover {
    border: 5px solid blue;
  }
  .pe5 {
    padding: 0 6px;
  }
  .pe5:hover span {
    background-color: #464343;
  }
  .pe7 {
    height: 300px;
  }
  .pe8 {
    min-height: 300px;
    top: 102px;
  }
}

@media only screen and (min-width: 1400px) {
  .pe2:hover, .pe3:hover {
    border: 5px solid blue;
  }
  .pe5 {
    padding: 0 6px;
  }
  .pe5:hover span {
    background-color: #464343;
  }
  .pe7 {
    height: 300px;
  }
  .pe8 {
    min-height: 300px;
  }
}

.pe7 {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.pe1 {
  width: 100%;
}

.pe1.disabled {
  display: none;
}

.pe2, .pe3 {
  cursor: pointer;
  border: 5px solid red;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pe2 {
  left: 20px;
}

.pe3 {
  right: 20px;
}

.pe4 {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0;
}

.pe5 {
  background-color: transparent;
  border: none;
}

.pe5 span {
  cursor: pointer;
  border-radius: 50%;
  background-color: #B0B0B0;
  height: 18px;
  width: 18px;
  display: block;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pe5:focus {
  outline: none;
}

.pe5.active span {
  background-color: #464343;
}
/*# sourceMappingURL=styles.css.map */