:root {
    --otrac-ink: #343e48;
    --otrac-muted: #66717d;
    --otrac-line: #e2e4e7;
    --otrac-surface: #f3f4f5;
    --otrac-action: #222;
    --otrac-action-hover: #0f0f0f;
    --otrac-focus: #1474c4;
    --otrac-gold: #d99a0b;
    --otrac-success: #176b3a;
    --otrac-error: #b42318;
}

* {
    box-sizing: border-box;
}

html {
    color: var(--otrac-ink);
    font-family: "Cairo", Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

html body {
    margin: 0;
    background: #fff;
    font-family: "Cairo", Arial, Helvetica, sans-serif;
    font-size: 14px;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
}


.used-machinery-page {
    width: min(1168px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 111px;
}

.used-machinery-page__header {
    margin-bottom: 24px;
}

.used-machinery-page__header h1 {
    margin: 0;
    color: #333e48;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.14px;
}

.machinery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.machinery-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
    padding: 12px;
    background: #fff;
}

@media (min-width: 1081px) {
    .machinery-card {
        min-height: 494px;
    }
}

.machinery-card__visual {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 12px;
    display: grid;
    place-items: center;
    background: #ddd;
}

.machinery-card__slides,
.machinery-card__slide,
.machinery-card__image-link {
    width: 100%;
    height: 100%;
}

.machinery-card__image-link {
    display: block;
}

.machinery-card__slide {
    display: none;
}

.machinery-card__slide[data-active="true"] {
    display: block;
}

.machinery-card__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.machinery-card__placeholder {
    padding: 24px;
    color: #999;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
}

.machinery-card__slider-button {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    padding: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
}

.machinery-card__slider-button--previous {
    left: 8px;
}

.machinery-card__slider-button--next {
    right: 8px;
}

.machinery-card__slider-button:hover {
    background: rgba(0, 0, 0, 0.82);
}

.machinery-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.machinery-card h3 {
    margin: 0 0 8px;
    color: #333e48;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.14px;
}

.machinery-card h3 a {
    text-decoration: none;
}

.machinery-card h3 a:hover {
    color: #1474c4;
}

.machinery-card__specifications {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
}

.machinery-card__specifications li {
    margin: 0 0 4px;
    color: #4b5661;
    font-size: 0.92rem;
}

.machinery-card__specifications strong {
    margin-right: 4px;
    color: #343e48;
}

.machinery-card__actions {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.machinery-card__price {
    min-width: 0;
    flex: 1;
}

.machinery-card__price-label,
.machinery-card__price-value {
    display: block;
}

.machinery-card__price-previous,
.machine-promotion__price-previous {
    margin-inline-end: 0.35em;
    color: #777;
    font-weight: 400;
}

.machinery-card__price-label {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.05;
}

.machinery-card__price-value {
    color: #343e48;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.inquiry-button,
.inquiry-submit,
.sell-machine__button {
    min-height: 46px;
    border: 0;
    padding: 11px 18px;
    background: var(--otrac-action);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
}

.inquiry-button {
    min-width: 140px;
    min-height: 0;
    margin-left: auto;
    padding: 10px 14px;
    border-radius: 6px;
    background: #222;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.inquiry-submit:hover {
    background: var(--otrac-action-hover);
}

.inquiry-button:hover {
    background: #222;
}

.sell-machine__button:hover {
    background: #111;
}

.inquiry-button:focus-visible,
.inquiry-submit:focus-visible,
.sell-machine__button:focus-visible,
.inquiry-dialog__close:focus-visible,
.machinery-card__slider-button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 3px solid var(--otrac-focus);
    outline-offset: 3px;
}

.machinery-state {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px;
    border-left: 4px solid var(--otrac-action);
    background: var(--otrac-surface);
}

.machinery-state--error {
    border-left-color: var(--otrac-error);
}

.sell-machine {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    border-radius: 14px;
    padding: 34px 26px;
    background: linear-gradient(135deg, #f6be2f 0%, var(--otrac-gold) 52%, #b67b00 100%);
    color: #111;
}

@media (min-width: 1081px) {
    .sell-machine {
        min-height: 246px;
    }
}

.sell-machine::before,
.sell-machine::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.sell-machine::before {
    top: -42px;
    right: -35px;
    width: 160px;
    height: 160px;
}

.sell-machine::after {
    right: 80px;
    bottom: -58px;
    width: 120px;
    height: 120px;
}

.sell-machine > * {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.sell-machine__eyebrow {
    display: inline-block;
    margin: 0 0 11px;
    border: 1px solid rgba(17, 17, 17, 0.25);
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 21.3907px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sell-machine h2 {
    margin: 0;
    font-size: 2.15rem;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

.sell-machine > p:not(.sell-machine__eyebrow) {
    margin: 10px 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.sell-machine__button {
    margin-top: 18px;
    min-width: 0;
    min-height: 0;
    border-radius: 6px;
    padding: 13px 24px;
    padding-inline: 24px;
    background: #111;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.inquiry-dialog {
    width: min(720px, calc(100% - 28px));
    max-height: calc(100vh - 28px);
    overflow: auto;
    border: 0;
    padding: 0;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.inquiry-dialog::backdrop {
    background: rgba(10, 16, 23, 0.76);
}

.inquiry-dialog__panel {
    position: relative;
    padding: clamp(28px, 6vw, 52px);
}

.inquiry-dialog__close {
    align-items: center;
    display: inline-flex !important;
    justify-content: center;
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--otrac-ink);
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    padding: 0 !important;
    text-align: center;
}

.inquiry-dialog__close::before,
.inquiry-dialog__close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    pointer-events: none;
    transform-origin: center;
}

.inquiry-dialog__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.inquiry-dialog__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.inquiry-dialog__eyebrow {
    margin: 0 0 10px;
    color: var(--otrac-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.inquiry-dialog h2 {
    max-width: calc(100% - 36px);
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 2.35rem);
    line-height: 1.12;
}

#inquiry-introduction {
    margin: 12px 0 28px;
    color: var(--otrac-muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-field {
    min-width: 0;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.9rem;
    font-weight: 800;
}

.form-field input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #aeb6be;
    border-radius: 0;
    padding: 10px 12px;
    color: var(--otrac-ink);
}

.form-field input[aria-invalid="true"] {
    border-color: var(--otrac-error);
    box-shadow: inset 0 0 0 1px var(--otrac-error);
}

.field-hint,
.field-error {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
}

.field-hint {
    color: var(--otrac-muted);
}

.field-error {
    min-height: 1.2em;
    color: var(--otrac-error);
    font-weight: 700;
}

.inquiry-captcha-field {
    min-width: 0;
    margin: 20px 0 0;
    border: 0;
    padding: 0;
}

.inquiry-captcha-label {
    display: block;
    margin: 0 0 7px;
    color: var(--otrac-ink);
    font-size: 0.9rem;
    font-weight: 800;
}

.inquiry-captcha {
    width: 304px;
    height: 78px;
    display: grid;
    grid-template-columns: 146px 96px 34px;
    align-items: center;
    gap: 7px;
    border: 1px solid #d6d6d6;
    padding: 8px;
    background: #f9f9f9;
}

.inquiry-captcha__image {
    width: 146px;
    height: 60px;
    display: block;
    object-fit: contain;
    background: #f3f4f6;
}

.inquiry-captcha input.inquiry-captcha__answer {
    min-width: 0;
    width: 100%;
    height: 40px;
    min-height: 40px;
    border: 1px solid #bbb;
    border-radius: 3px;
    padding: 7px 8px;
    text-transform: uppercase;
}

.inquiry-captcha input.inquiry-captcha__answer[aria-invalid="true"] {
    border-color: var(--otrac-error);
    box-shadow: inset 0 0 0 1px var(--otrac-error);
}

.inquiry-captcha__refresh {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 3px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #555;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
}

.inquiry-captcha__refresh:hover,
.inquiry-captcha__refresh:focus-visible {
    background: #e6e6e6;
    color: #1377d1;
}

.inquiry-captcha__refresh:disabled {
    cursor: wait;
    opacity: 0.55;
}

.inquiry-captcha-field .field-error {
    margin-top: 5px;
}

.form-status {
    min-height: 1.5em;
    margin: 20px 0 12px;
    font-weight: 700;
}

.form-status[data-state="error"] {
    color: var(--otrac-error);
}

.form-status[data-state="success"] {
    border-left: 4px solid var(--otrac-success);
    padding: 12px 14px;
    background: #eef8f2;
    color: var(--otrac-success);
}

.inquiry-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (max-width: 1080px) {
    .machinery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .used-machinery-page {
        width: min(100% - 28px, 1168px);
        padding-top: 38px;
    }

    .machinery-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-captcha {
        width: 304px;
        max-width: 100%;
        grid-template-columns: minmax(118px, 1fr) 88px 32px;
        gap: 6px;
    }

    .inquiry-captcha__image {
        width: 100%;
    }

    .sell-machine {
        padding: 30px 22px;
    }

}

.machinery-detail-page {
    width: 100%;
    overflow: hidden;
}

.machine-product-hero {
    position: relative;
    min-height: 250px;
    padding: 0 0 35px;
    background: #000;
    color: #fff;
}

.machine-product-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.machine-product-hero__shape {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -1px;
    left: 0;
    width: 201%;
    height: 55px;
    transform: translateX(-50%) rotateX(180deg) rotateY(180deg);
    transform-origin: center;
    pointer-events: none;
}

.machine-product-hero__shape path {
    fill: #fff;
}

.machine-product-hero .machine-gallery {
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.machine-gallery__hero {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.147 / 1;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: #000;
    cursor: zoom-in;
}

.machine-gallery__hero img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    display: block;
    object-fit: cover;
}

.machine-summary {
    min-width: 0;
    padding: 5%;
}

.machine-summary h1 {
    margin: 0;
    color: #fff;
    font-family: "Cairo", Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 4vw, 39px);
    font-weight: 400;
    line-height: 1.95;
    text-transform: uppercase;
}

.machine-breadcrumb {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 14px;
}

.machine-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.machine-breadcrumb a:hover,
.machine-breadcrumb a:focus-visible {
    text-decoration: underline;
}

.machine-product-body {
    width: min(1118px, calc(100% - 32px));
    min-height: 390px;
    margin: -36px auto -45px;
    padding: 86px 0 95px;
    display: grid;
    grid-template-columns: minmax(220px, 27%) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.machine-product-body--shared-specifications {
    width: min(1140px, calc(100% - 32px));
    grid-template-columns: minmax(344px, 1fr) minmax(0, 2fr);
}

.machine-categories {
    border: 1px solid #ececec;
    color: #333e48;
}

.machine-categories__toggle,
.machine-categories__current {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-bottom: 1px solid #ececec;
    padding: 12px 27px;
    background: #fff;
    color: #333e48;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
}

.machine-categories__toggle {
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.machine-categories__toggle > span {
    width: 7px;
    height: 7px;
    transform: rotate(-45deg);
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transition: transform .2s ease;
}

.machine-categories__toggle[aria-expanded="true"] > span {
    transform: rotate(45deg);
}

.machine-categories__all {
    margin: 0;
    border-bottom: 1px solid #ececec;
    padding: 8px 27px 8px 42px;
    list-style: none;
}

.machine-categories__all[hidden] {
    display: none;
}

.machine-categories__all a {
    padding: 5px 0;
    display: block;
    color: #6b747d;
    text-decoration: none;
}

.machine-categories__all a:hover,
.machine-categories__all a:focus-visible,
.machine-categories__current:hover,
.machine-categories__current:focus-visible {
    color: #1377d1;
}

.machine-accordion {
    min-width: 0;
    border-top: 1px solid #d4d4d4;
    color: #333e48;
}

.machine-accordion__item {
    border-right: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    border-left: 1px solid #d4d4d4;
}

.machine-accordion__heading {
    margin: 0;
}

.machine-accordion__trigger {
    width: 100%;
    min-height: 66px;
    border: 0;
    padding: 22px 23px;
    background: #fff;
    color: #333e48;
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    text-align: left;
}

.machine-accordion__trigger:hover,
.machine-accordion__trigger:focus-visible {
    background: #f8f8f8;
}

.machine-accordion__icon {
    width: 13px;
    height: 15px;
    flex: 0 0 13px;
    display: grid;
    place-items: center;
}

.machine-accordion__icon svg {
    width: 11px;
    height: 13px;
    fill: currentColor;
}

.machine-accordion__minus,
.machine-accordion__trigger[aria-expanded="true"] .machine-accordion__plus {
    display: none;
}

.machine-accordion__trigger[aria-expanded="true"] .machine-accordion__minus {
    display: block;
}

.machine-accordion__panel {
    border-top: 1px solid #d4d4d4;
    padding: 23px;
    background: #fff;
}

.machine-accordion__panel[hidden] {
    display: none;
}

.machine-description > :first-child,
.machine-quote > :first-child {
    margin-top: 0;
}

.machine-description > :last-child,
.machine-quote > :last-child {
    margin-bottom: 0;
}

.machine-quote {
    background: #fff;
}

.machine-quote__introduction {
    max-width: 670px;
    margin: 0 0 24px;
    color: var(--otrac-muted);
}

.machine-quote .form-field textarea {
    width: 100%;
    min-height: 142px;
    resize: vertical;
    border: 1px solid #aeb6be;
    border-radius: 0;
    padding: 12px;
    color: var(--otrac-ink);
    font: inherit;
}

.machine-quote .form-field--wide {
    grid-column: 1 / -1;
}

.machine-lightbox {
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100vh;
    max-height: none;
    margin: 0;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, .94);
    color: #fff;
}

.machine-lightbox[open] {
    display: grid;
    place-items: center;
    animation: machine-lightbox-fade-in 180ms ease-out;
}

.machine-lightbox::backdrop {
    background: rgba(0, 0, 0, .94);
}

body[data-machine-lightbox-open] {
    overflow: hidden;
}

.machine-lightbox__stage {
    position: relative;
    width: min(1200px, calc(100vw - 40px));
    height: min(900px, calc(100vh - 48px));
    padding: 0 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y pinch-zoom;
}

.machine-lightbox__stage img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    min-height: 0;
    display: block;
    object-fit: contain;
    animation: machine-lightbox-image-in 200ms ease-out;
}

.machine-lightbox__caption {
    position: absolute;
    right: 84px;
    bottom: 0;
    left: 84px;
    margin: 0;
    padding: 8px 12px;
    background: rgba(0, 0, 0, .52);
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.machine-lightbox__close,
.machine-lightbox__previous,
.machine-lightbox__next {
    position: fixed;
    z-index: 2;
    border: 0;
    border-radius: 6px;
    background: #efeced;
    color: var(--otrac-ink);
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
}

.machine-lightbox__close:hover,
.machine-lightbox__previous:hover,
.machine-lightbox__next:hover {
    background: #fff;
    color: #111;
}

.machine-lightbox__close {
    top: max(20px, calc(50vh - 450px));
    right: max(20px, calc(50vw - 600px));
    width: 92px;
    height: 50px;
    font-size: 20px;
    line-height: 1;
}

.machine-lightbox__previous,
.machine-lightbox__next {
    top: 50%;
    width: 92px;
    height: 50px;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 1;
}

.machine-lightbox__previous {
    left: max(20px, calc(50vw - 600px));
}

.machine-lightbox__next {
    right: max(20px, calc(50vw - 600px));
}

@keyframes machine-lightbox-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes machine-lightbox-image-in {
    from {
        opacity: 0;
        transform: scale(.985);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.machine-gallery__hero:focus-visible,
.machine-lightbox button:focus-visible,
.machine-quote textarea:focus-visible {
    outline: 3px solid var(--otrac-focus);
    outline-offset: 3px;
}

@media (max-width: 1169px) {
    .machine-product-hero {
        padding: 50px 20px;
    }

    .machine-product-hero__inner {
        grid-template-columns: 1fr;
    }

    .machine-product-hero__shape {
        width: 223%;
        height: 65px;
    }

    .machine-product-hero .machine-gallery {
        padding: 10px;
    }

    .machine-gallery__hero {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .machine-gallery__hero img {
        min-height: 0;
        max-height: none;
    }

    .machine-summary {
        padding: 5%;
    }

    .machine-lightbox__stage {
        width: min(calc(100vw - 32px), 1000px);
        height: min(calc(100vh - 40px), 780px);
        padding: 0 64px;
    }

    .machine-lightbox__caption {
        right: 64px;
        left: 64px;
    }

    .machine-lightbox__close {
        top: max(20px, calc(50vh - 390px));
        right: max(16px, calc(50vw - 500px));
    }

    .machine-lightbox__previous {
        left: max(16px, calc(50vw - 500px));
    }

    .machine-lightbox__next {
        right: max(16px, calc(50vw - 500px));
    }
}

@media (max-width: 900px) {
    .machine-product-body--shared-specifications {
        width: calc(100% - 62px);
        grid-template-columns: 1fr;
    }

    .machine-product-body--shared-specifications .machine-categories {
        display: none;
    }
}

@media (max-width: 620px) {
    .machine-product-body--shared-specifications {
        width: calc(100% - 54px);
    }
}

@media (max-width: 767px) {
    .machine-product-hero {
        padding: 0;
    }

    .machine-product-hero .machine-gallery {
        padding: 0;
    }

    .machine-summary {
        padding: 10% 5% 26%;
    }

    .machine-summary h1 {
        font-size: 34px;
        line-height: 1.35;
    }

    .machine-product-body {
        margin: 0 auto;
        padding: 50px 0 70px;
        grid-template-columns: 1fr;
    }

    .machine-categories {
        display: none;
    }

    .machine-accordion__panel {
        padding: 18px;
    }
}

@media (max-width: 540px) {
    .machine-lightbox__stage {
        width: 100vw;
        height: calc(100vh - 24px);
        padding: 60px 44px 36px;
    }

    .machine-lightbox__caption {
        right: 44px;
        bottom: 36px;
        left: 44px;
    }

    .machine-lightbox__close {
        top: 12px;
        right: 12px;
        width: 52px;
        height: 44px;
    }

    .machine-lightbox__previous,
    .machine-lightbox__next {
        width: 46px;
        height: 48px;
    }

    .machine-lightbox__previous {
        left: 4px;
    }

    .machine-lightbox__next {
        right: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .machine-lightbox[open],
    .machine-lightbox__stage img {
        animation: none;
    }
}
