@media screen {
  .filter {
    display: block;
  }
  .examples {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
  }
  .examples .example {
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: start;
  }
  .examples .img-carousel {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
  }
  .examples .img-carousel i {
    display: none;
    top: 50%;
    height: 44px;
    width: 44px;
    color: #343F4F;
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #fff;
    border-radius: 50%;
    border: #343F4F solid 2px;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
  }
  .examples .img-carousel i:nth-of-type(1) {
    left: -22px;
    display: none;
  }
  .examples .img-carousel i:nth-of-type(2) {
    right: -22px;
  }
  .examples .img-carousel i:active {
    transform: translateY(-50%) scale(0.9);
  }
  .examples .img-carousel i:hover {
    background: #f2f2f2;
  }
  .examples .img-carousel .example-photo {
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: start;
    overflow: hidden;
    scroll-behavior: smooth;
  }
  .examples .img-carousel .example-photo.dragging {
    cursor: grab;
    scroll-behavior: auto;
  }
  .examples .img-carousel .example-photo div {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .examples .img-carousel .example-photo img {
    max-width: inherit;
    object-fit: cover;
    user-select: none;
  }
  .examples .img-carousel .carousel-controller {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  .examples .img-carousel .carousel-controller input {
    appearance: unset;
    background-image: url("/media/main/svg/circle_32x32.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    border: 0;
    outline: 0;
    cursor: pointer;
  }
  .examples .img-carousel .carousel-controller input:hover {
    opacity: 0.6;
  }
  .examples .img-carousel .carousel-controller input:checked {
    opacity: 1;
  }
  .examples .example-info {
    flex: 100;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }
  .examples .example-title {
    color: var(--color-accent);
    text-align: right;
    font-weight: bold;
  }
  .examples .example-desc {
    max-width: inherit;
  }
  .examples .example-desc a {
    color: var(--font-primary);
    text-decoration: underline;
  }
}
@media screen and (max-width: 980px) {
  .example .carousel-controller input {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 980px) and (orientation: portrait) {
  .examples {
    gap: 20vw;
  }
  .example {
    flex-direction: column;
    align-items: center;
  }
  .example .img-carousel {
    max-width: 90vw;
  }
  .example .example-photo img {
    --width: 90vw;
    width: var(--width);
    height: auto;
  }
  .example .filler {
    flex: 0 5vh;
  }
}
@media screen and (max-width: 980px) and (orientation: landscape) {
  .img-carousel {
    max-width: 50vw;
  }
  .example-photo {
    width: 40vw;
  }
  .example-photo div {
    width: 40vw;
  }
  .example-photo img {
    height: 70vh;
  }
  .examples {
    gap: 20vh;
  }
  .example {
    flex-direction: row;
  }
}
@media screen and (min-width: 980px) {
  .examples {
    margin-top: 100px;
    gap: 50px;
  }
  .example .img-carousel {
    max-width: 750px;
    height: 100%;
    width: 50%;
  }
  .example .example-photo {
    width: 100%;
    height: 450px;
  }
  .example .example-photo div {
    width: 100%;
  }
  .example .example-photo img {
    height: 100%;
  }
  .example .carousel-controller input {
    height: 20px;
    width: 20px;
  }
  .example .filler {
    flex: 0 50px;
  }
}

/*# sourceMappingURL=examples.css.map */
