/* ---------------------
      slider component
  ----------------------- */
.beforeAfterContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.beforeAfterContainer .slider-wrapper {
  flex-basis: 38em;
}

.beforeAfterContainer #comparison {
  width: 100%;
  height: 600px;
  max-height: 60vh;
  margin: 0px auto;
  padding: 3vh 10px;
}

.beforeAfterContainer #comparison .before {
  background-color: black;
  background-size: cover;
  position: relative;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  border: 1px solid grey;
}

.beforeAfterContainer #comparison figure > img {
  position: relative;
  width: 100%;
}

.beforeAfterContainer #comparison .after {
  background-color: #faa716;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 0%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  bottom: 0;
  height: 100%;
  border: 1px solid grey;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  top: -2rem;
  left: -2%;
  background-color: rgba(255, 255, 255, 0.5);
  width: 102%;
  height: 15px;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]:active {
  outline: none;
}

input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 102%;
  right: 2%;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  outline: none;
}

input[type=range]::active {
  border: none;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  background: #faa716;
  border-radius: 50%;
  border: 6px solid #ffffff;
}

input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
  width: 25px;
  height: 25px;
  background: #faa716;
  border: 6px solid #ffffff;
  border-radius: 50%;
}

input[type=range]:focus::-webkit-slider-thumb {
  background: #faa716;
}

input[type=range]:focus::-moz-range-thumb {
  background: #faa716;
}

/* ---------------------
        toggler component
  ----------------------- */
.switchContainer {
  display: flex;
  justify-content: end;
}

.switchContainer p {
  padding: 0 5px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.toggler {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.toggler:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .toggler {
  background-color: #faa716;
}

input:focus + .toggler {
  box-shadow: 0 0 1px #faa716;
}

input:checked + .toggler:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.toggler.round {
  border-radius: 34px;
}

.toggler.round:before {
  border-radius: 50%;
}

.maincontent {
  width: 100%;
  max-width: 95vw;
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gallery .categories {
  width: 1300px;
  max-width: 95vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery .categories .wrapper {
  flex-basis: 15rem;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-inline: 1rem;
  text-transform: uppercase;
  text-align: center;
}

.gallery .categories .wrapper .icon {
  font-size: 8rem;
}

.gallery .categories .wrapper:hover,
.gallery .categories .wrapper:active {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  border: 1px solid rgb(25, 25, 25);
  border-radius: 5rem;
}

.previous {
  padding: 8px 16px;
  background-color: #f1f1f1;
  color: black;
  float: left;
}

body {
  overflow: none;
}/*# sourceMappingURL=gallery.css.map */