/* ROOT [START] */
:root {
    --bg-dark:             #191919;
    --bg-light:            #FAFAFA;
    --color:               #313131;
    --color-primary:       #E85146;
    --color-primary-hover: #D6362A;
    --color-secondary:     #313131;

    --font-family: 'Open Sans', sans-serif;
    --font-size: 16px;

    --swiper-theme-color:      #E85146;
    --swiper-pagination-color: #E85146;

    --fancybox-content-bg: #FFFFFF;
    --fancybox-content-color: #313131;
}
/* ROOT [END] */



/* SELECTION [START] */
::-moz-selection {
    background: var(--color-primary);
    color: #FFFFFF;
    text-shadow: none;
}

::selection {
    background: var(--color-primary);
    color: #FFFFFF;
    text-shadow: none;
}
/* SELECTION [END] */



/* SCROLLBAR [START] */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border: 3px solid #FFFFFF;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}
/* SCROLLBAR [END] */



html, body {
    background-color: var(--bg-light);
    color: var(--color);

    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: normal;

    min-width: 320px;
    height: 100%;

    line-height: 1.5;

    margin: 0;
    padding: 0;

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;

    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.body--dark  { background-color: var(--bg-dark); }
.body--light { background-color: var(--bg-light); }
.body--red-light { background-image: radial-gradient(circle, rgba(232, 81, 70, 0) 0%, rgba(232, 81, 70, 0.05) 100%); }

.body--scrollable {
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.body--locked {
    overflow: hidden;
}

a {
    text-decoration: none;
    outline: none;
    -webkit-transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
    -moz-transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
    transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
}

*, ::before, ::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

input, textarea {
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
    -moz-transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
    transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
}

button, select {
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    user-select: none;
    appearance: none;
    -webkit-transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
    -moz-transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
    transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
}



/* FANCYBOX [START] */
.f-button:focus-visible {
    box-shadow: none;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 40px;
    padding-bottom: 40px;
}
/* FANCYBOX [END] */



/* BUTTON [START] */
.btn {
    background-color: var(--color-primary);
    border: 1px solid transparent;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    height: 64px;
    padding: 0px 24px;
    position: relative;
    white-space: nowrap;
    border-radius: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.btn:hover {
    background-color: var(--color-primary-hover);
}

.btn:disabled {
    background-color: #D5D5D5 !important;
    cursor: not-allowed;
}

.btn svg {
    display: block;
    width: 32px;
    min-width: 32px;
    height: 32px;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    height: 64px;
    padding: 0px 24px;
    position: relative;
    white-space: nowrap;
    border-radius: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.btn-outline.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
}

.btn-outline:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #FFFFFF;
}

.btn-outline:disabled {
    background-color: transparent !important;
    border-color: #D5D5D5 !important;
    color: #D5D5D5 !important;
    cursor: not-allowed;
}

.btn-outline.btn-secondary {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.2);
    color: #666666;
}

.btn-outline.btn-secondary:hover {
    background-color: #666666;
    border-color: #666666;
    color: #FFFFFF;
}

.btn-outline svg {
    display: block;
    width: 32px;
    min-width: 32px;
    height: 32px;
}

.btn-player {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.btn-player svg {
    display: block;
    width: 32px;
    min-width: 32px;
    height: 32px;
}

.btn-player-play,
.btn-player-pause {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.btn-player .btn-player-play { display: flex; }
.btn-player.playing .btn-player-play { display: none; }

.btn-player .btn-player-pause { display: none; }
.btn-player.playing .btn-player-pause { display: flex; }

.btn-player-time {
    color: rgba(49, 49, 49, 0.7);
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    transition: color 0.5s;
}

.btn-player:hover .btn-player-time { color: #FFFFFF; }

.btn-sm {
    font-size: 14px;
    height: 40px;
    padding-left: 16px;
    padding-right: 16px;
}

.btn-sm svg {
    display: block;
    width: 24px;
    min-width: 24px;
    height: 24px;
}

.btn-md {
    font-size: 16px;
    width: 100%;
    max-width: 240px;
    height: 56px;
}

.btn-md svg {
    display: block;
    width: 32px;
    min-width: 32px;
    height: 32px;
}

.btn-fluid {
    width: 100%;
    max-width: 100%;
}

.btn-link {
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    position: relative;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.btn-link:hover {
    color: var(--color-primary-hover);
}

.btn-link span {
    position: relative;
}

.btn-link span::after {
    background-color: var(--color-primary);
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    transition: background-color 0.5s;
}

.btn-link:hover span::after {
    background-color: var(--color-primary-hover);
}

.btn-link:disabled {
    color: rgba(49, 49, 49, 0.7);
    cursor: not-allowed;
}

.btn-link:disabled span::after {
    background-color: rgba(49, 49, 49, 0.7);
}

.btn-link svg {
    display: block;
    width: 32px;
    min-width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .btn-link {
        font-size: 16px;
    }
}
/* BUTTON [END] */



/* TEXT STYLES [START] */
.text-styles {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.text-styles h1,
.text-styles h2,
.text-styles h3,
.text-styles h4,
.text-styles h5,
.text-styles h6 {
    font-weight: 600;
    line-height: 1.3;
    margin: 1.5em 0em 0.8em;
}

.text-styles h1 { font-size: 2rem; }
.text-styles h2 { font-size: 1.75rem; }
.text-styles h3 { font-size: 1.5rem; }
.text-styles h4 { font-size: 1.25rem; }
.text-styles h5 { font-size: 1.1rem; }
.text-styles h6 { font-size: 1rem; }

.text-styles p {
    margin: 0em 0em 1.2em;
}

.text-styles ul,
.text-styles ol {
    margin: 0em 0em 1.2em 1.5em;
    padding: 0;
}

.text-styles li {
    margin-bottom: 0.5em;
}

.text-styles a {
    color: var(--color-primary);
    text-decoration: underline;
}

.text-styles a:hover {
    color: var(--color-primary-hover);
}

.text-styles blockquote {
    margin: 1.5em 0em;
    padding: 1em 1.5em;
    background: #F8F8F8;
    border-left: 4px solid var(--color-primary);
    font-style: italic;
}

.text-styles img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
}

.text-styles table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0em;
}

.text-styles th,
.text-styles td {
    border: 1px solid #DDDDDD;
    padding: 8px 12px;
    text-align: left;
}

.text-styles th {
    background: #F3F3F3;
    font-weight: 600;
}
/* TEXT STYLES [END] */



/* MAIN SLIDER [START] */
.main-slider {
    display: block;
    width: 100%;
    height: 100%;
}

.main-slider__slide {
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
    border-radius: 0;
}

.main-slider.swiper-creative .main-slider__slide.swiper-slide {
    transition-property: transform, opacity, height, border-radius;
}

.main-slider__slide.swiper-slide-active.swiper-slide-visible:not(.swiper-slide-fully-visible),
.main-slider__slide.swiper-slide-visible:not(.swiper-slide-active),
.main-slider__slide.swiper-slide-active:not(.swiper-slide-visible),
.main-slider__slide.swiper-slide-prev,
.main-slider__slide.swiper-slide-next {
    border-radius: 16px;
}

.main-slider__slide.swiper-slide-active.swiper-slide-visible.swiper-slide-fully-visible {
    border-radius: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
    background: transparent;
    width: 100%;
    height: 4px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    display: block;
    width: 0%;
    height: 100%;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    transition: width 0.5s;
}
/* MAIN SLIDER [END] */



/* CONTAINER [START] */
.container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}
/* CONTAINER [END] */



/* SLIDE CONTAINER [START] */
.slide-container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
/* SLIDE CONTAINER [END] */



/* ATTEMPTS [START] */
.attempts {
    background-color: var(--color-primary);
    color: #FFFFFF;
    cursor: default;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: auto;
    height: 32px;
    padding: 0px 16px;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1005;
    border-radius: 50rem;
}

.attempts-alert {
    background-color: var(--color-primary);
    color: #FFFFFF;
    cursor: default;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: auto;
    height: 32px;
    padding: 0px 16px;
    position: absolute;
    top: 58px;
    right: 16px;
    z-index: 1005;
    border-radius: 50rem;
}

.attempts-timer {
    background-color: var(--color-primary);
    color: #FFFFFF;
    cursor: default;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: auto;
    height: 32px;
    padding: 0px 16px;
    position: absolute;
    top: 100px;
    right: 16px;
    z-index: 1005;
    border-radius: 50rem;
}
/* ATTEMPTS [END] */



/* BLOCK [START] */
.block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.block__heading {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.block__body {
    width: 100%;
    max-width: 360px;
    margin-top: 24px;
}
/* BLOCK [END] */



/* FORM [START] */
.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form__input {
    background-color: #FFFFFF;
    border: 1px solid #C8C8C8;
    width: 100%;
    height: 56px;
    padding: 0px 24px;
    border-radius: 8px;
}

.form__input:hover,
.form__input:focus {
    border-color: #9D9D9D;
}

.form__input.error {
    border-color: rgba(232, 81, 70, 0.7);
}
/* FORM [END] */



/* NOT FOUND [START] */
.not-found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.not-found__status {
    color: var(--color-primary);
    font-size: 136px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.not-found__title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 16px;
}

.not-found__text {
    color: rgba(49, 49, 49, 0.7);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    margin-top: 16px;
}

.not-found__btn {
    margin-top: 24px;
}
/* NOT FOUND [END] */



/* HEADER [START] */
.header {
    display: block;
}

.header__logos {
    background-image: url('../images/logos-new.png');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 48px;
    width: 100%;
    max-width: 400px;
    height: 56px;
    margin-left: auto;
    margin-right: auto;
}
/* HEADER [END] */



/* MAIN [START] */
.main {
    border-top: 2px solid var(--color-primary);
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin-top: 64px;
    margin-left: auto;
    margin-right: auto;
}

.main-title {
    color: var(--color);
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-title span {
    color: var(--color-primary);
    font-size: 34px;
    display: block;
}

.main-subtitle {
    color: var(--color-primary);
    color: rgba(49, 49, 49, 0.7);
    color: rgba(232, 81, 70, 0.7);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.main-text {
    color: rgba(49, 49, 49, 0.7);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    width: 100%;
    max-width: 610px;
    margin-top: 24px;
}

.main-button {
    margin-top: 32px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 48px;
    }

    .main-title span {
        font-size: 26px;
        margin-top: 6px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 40px;
    }

    .main-title span {
        font-size: 22px;
    }

    .main-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 30px;
    }

    .main-title span {
        font-size: 16px;
    }

    .main-subtitle {
        font-size: 16px;
    }

    .main-text {
        font-size: 16px;
    }
}
/* MAIN [END] */



/* ORDER [START] */
.order {
    border-top: 2px solid var(--color-primary);
    padding-top: 40px;
    padding-bottom: 40px;
}

.order-container {
    margin-top: 64px;
}

.order-wrapper {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: auto 1fr;
    grid-gap: 0px 56px;
    gap: 0px 56px;
}

.order-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.order-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.order-image img {
    display: block;
}

.order-noimage {
    background-color: #F9F1F1;
    color: var(--color-primary);
    padding: 50% 0%;
    border-radius: 16px;
}

.order-noimage svg {
    display: block;
    width: 30%;
    height: 30%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.order-panel {
    display: block;
}

.order-panel__desktop {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-panel__mobile {
    display: none;
}

.order-panel__line {
    background-color: rgba(0, 0, 0, 0.1);
    width: 1px;
    height: 40px;
}

.order-player__play::after,
.order-player__pause::after {
    content: none !important;
    display: none !important;
}

.order-player__toggle .order-player__play { display: block; }
.order-player__toggle.playing .order-player__play { display: none; }

.order-player__toggle .order-player__pause { display: none; }
.order-player__toggle.playing .order-player__pause { display: block; }

.order-content {
    display: flex;
    flex-direction: column;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.order-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.order-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    margin-top: 8px;
    padding: 0;
}

.order-title span {
    color: rgba(49, 49, 49, 0.7);
}

.order-subtitle {
    color: rgba(49, 49, 49, 0.7);
    font-size: 16px;
    font-weight: 500;
}

.order-text {
    background-color: rgba(255, 224, 178, 0.4);
    color: rgba(49, 49, 49, 0.7);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 24px;
    border-radius: 16px;
}

.order-audio {
    margin-top: 24px;
}

.order-audio audio {
    display: block;
}

.order-share {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
}

.order-share__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.order-share__title span {
    color: rgba(49, 49, 49, 0.7);
}

.order-share__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.order-share__item {
    background-color: var(--color-primary);
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    width: fit-content;
    height: 48px;
    padding: 0px 24px 0px 16px;
    border-radius: 50rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.order-share__item:hover {
    background-color: var(--color-primary-hover);
}

.order-share__item--facebook {
    background-color: #0866FF;
}

.order-share__item--facebook:hover {
    background-color: #055DEB;
}

.order-share__item--instagram {
    background-color: #E1306C;
    background-image: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-transition: filter 0.5s;
    -moz-transition: filter 0.5s;
    transition: filter 0.5s;
}

.order-share__item--instagram:hover {
    -webkit-filter: contrast(1.3);
    filter: contrast(1.3);
}

.order-share__item-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.order-share__item-icon svg {
    display: block;
    width: 30px;
    height: 30px;
}

.order-share__item-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.popup-instagram {
    background: #8F0A01;
    background: linear-gradient(0deg, #010101 0%, #8F0A01 100%);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 480px;
    height: auto;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}

.popup-instagram img {
    display: block;
}

.popup-instagram__footer {
    width: 100%;
    padding: 16px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
}

.popup-instagram .f-button.is-close-btn {
    --f-button-width: 34px;
    --f-button-height: 34px;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 1;
    position: absolute;
    top: 16px;
    right: 16px;
    -webkit-transition: background-color 0.5s, color 0.5s;
    -moz-transition: background-color 0.5s, color 0.5s;
    transition: background-color 0.5s, color 0.5s;
    border-radius: 50%;
}

.popup-instagram .f-button.is-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 1);
}

.popup-instagram .f-button.is-close-btn svg {
    --f-button-svg-width: 16px;
    --f-button-svg-height: 16px;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

@media (max-width: 768px) {
    .order {
        padding-top: 32px;
        padding-bottom: 104px;
    }

    .order > .container {
        display: flex;
        flex-direction: column;
    }

    .order .header {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        order: 2;
        margin-top: 40px;
        padding-top: 40px;
    }

    .order .header__logos {
        height: 32px;
    }

    .order .order-container {
        order: 1;
        margin-top: 0;
    }

    .order-panel {
        background-color: #FFFFFF;
        box-shadow: 0px 0px 16px 0px rgba(2, 0, 34, 0.1);
        width: 100%;
        height: 64px;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 100;
    }

    .order-panel__desktop {
        display: none;
    }

    .order-panel__mobile {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 24px;
        height: 100%;
    }

    .order-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .order-header,
    .order-sidebar,
    .order-content {
        grid-column: auto;
        grid-row: auto;
    }

    .order-header {
        border-bottom: none;
        text-align: center;
        padding-bottom: 0;
    }

    .order-content {
        margin-top: 24px;
    }

    .order-image img {
        max-width: 60%;
    }

    .order-title {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .order-title span {
        color: rgba(49, 49, 49, 0.7);
        font-size: 20px;
        font-weight: 600;
    }

    .order-text {
        background-color: transparent;
        color: rgba(49, 49, 49, 1);
        font-size: 16px;
        text-align: center;
        line-height: 1.6;
        padding: 0;
    }

    .order-audio {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .order-share {
        border-top: none;
        align-items: center;
        padding-top: 0;
    }

    .order-share__list {
        flex-direction: column;
    }

    .order-share__item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .order-panel__mobile {
        gap: 16px;
    }
}
/* ORDER [END] */