@font-face {
    font-family: "Manalia Catalogue";
    src: url("/fonts/iransansweb.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manalia Catalogue";
    src: url("/fonts/IRANSansWeb_Bold.woff") format("woff");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

:root {
    color-scheme: light;
    --mnl-navy-950: #061828;
    --mnl-navy-900: #071c32;
    --mnl-navy-800: #0c2e49;
    --mnl-cyan-600: #0897ad;
    --mnl-cyan-500: #06b6d4;
    --mnl-cyan-100: #cff7fb;
    --mnl-cyan-50: #e9fcff;
    --mnl-yellow: #ffcf00;
    --mnl-emerald: #10b981;
    --mnl-ink: #0f172a;
    --mnl-muted: #64748b;
    --mnl-line: #dbe5ec;
    --mnl-paper: #ffffff;
    --mnl-shell: #e8f2f5;
    --mnl-shadow: 0 24px 70px rgba(3, 24, 39, .22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    overflow-x: hidden;
    overflow-x: clip;
    background: var(--mnl-shell);
    scroll-behavior: smooth;
}

body.mnl-catalogue {
    min-width: 320px;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    overflow-x: hidden;
    color: var(--mnl-ink);
    background:
        radial-gradient(circle at 18% 18%, rgba(6, 182, 212, .16), transparent 27rem),
        radial-gradient(circle at 88% 92%, rgba(255, 207, 0, .12), transparent 24rem),
        linear-gradient(145deg, #f4fbfc 0%, #e7f0f3 50%, #dbe9ed 100%);
    font-family: "Manalia Catalogue", Tahoma, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
a,
output {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
dialog:focus-visible {
    outline: 3px solid var(--mnl-yellow);
    outline-offset: 3px;
}

.mnl-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.mnl-skip-link {
    position: fixed;
    z-index: 1000;
    inset: 8px auto auto 50%;
    padding: 10px 16px;
    border-radius: 12px;
    color: #fff;
    background: var(--mnl-navy-900);
    transform: translate(-50%, -160%);
    transition: transform .2s ease;
}

.mnl-skip-link:focus {
    transform: translate(-50%, 0);
}

.mnl-catalogue-toolbar {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    margin: 12px auto 0;
    padding: 9px 12px 9px 16px;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 20px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 35px rgba(15, 40, 55, .1);
    backdrop-filter: blur(18px);
}

.mnl-toolbar-brand,
.mnl-toolbar-actions,
.mnl-tool-button {
    display: flex;
    align-items: center;
}

.mnl-toolbar-brand {
    min-width: 0;
    gap: 10px;
    color: var(--mnl-ink);
    text-decoration: none;
}

.mnl-toolbar-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    padding: 5px;
    border-radius: 13px;
    background: var(--mnl-navy-900);
}

.mnl-toolbar-brand span {
    display: grid;
    line-height: 1.35;
}

.mnl-toolbar-brand strong {
    font-size: 15px;
}

.mnl-toolbar-brand small {
    color: var(--mnl-muted);
    font-size: 10px;
}

.mnl-toolbar-actions {
    gap: 6px;
}

.mnl-tool-button {
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #254053;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.mnl-tool-button:hover {
    color: var(--mnl-navy-900);
    background: var(--mnl-cyan-50);
    transform: translateY(-1px);
}

.mnl-tool-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    color: currentColor;
}

.mnl-tool-icon--toc {
    background:
        linear-gradient(currentColor, currentColor) 7px 2px / 10px 2px no-repeat,
        linear-gradient(currentColor, currentColor) 7px 7px / 10px 2px no-repeat,
        linear-gradient(currentColor, currentColor) 7px 12px / 10px 2px no-repeat;
}

.mnl-tool-icon--toc::before {
    content: "";
    position: absolute;
    inset: 2px auto auto 1px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 5px currentColor, 0 10px currentColor;
}

.mnl-tool-icon--print {
    inset-block-start: 2px;
    height: 12px;
    border: 1.6px solid currentColor;
    border-radius: 2px;
}

.mnl-tool-icon--print::before {
    content: "";
    position: absolute;
    inset: -5px 3px auto;
    height: 7px;
    border: 1.6px solid currentColor;
    background: inherit;
}

.mnl-tool-icon--print::after {
    content: "";
    position: absolute;
    inset: auto 3px 2px;
    height: 1.6px;
    background: currentColor;
    box-shadow: 0 -3px currentColor;
}

.mnl-tool-icon--fullscreen {
    background:
        linear-gradient(currentColor, currentColor) left top / 7px 2px no-repeat,
        linear-gradient(currentColor, currentColor) left top / 2px 7px no-repeat,
        linear-gradient(currentColor, currentColor) right top / 7px 2px no-repeat,
        linear-gradient(currentColor, currentColor) right top / 2px 7px no-repeat,
        linear-gradient(currentColor, currentColor) left bottom / 7px 2px no-repeat,
        linear-gradient(currentColor, currentColor) left bottom / 2px 7px no-repeat,
        linear-gradient(currentColor, currentColor) right bottom / 7px 2px no-repeat,
        linear-gradient(currentColor, currentColor) right bottom / 2px 7px no-repeat;
}

.mnl-tool-button--login {
    padding-inline: 18px;
    color: #fff;
    background: var(--mnl-navy-900);
}

.mnl-tool-button--login:hover {
    color: #fff;
    background: var(--mnl-cyan-600);
}

.mnl-contact-menu {
    position: relative;
}

.mnl-contact-menu summary {
    list-style: none;
}

.mnl-contact-menu summary::-webkit-details-marker {
    display: none;
}

.mnl-tool-button--contact {
    min-width: 166px;
    color: #fff;
    background: #0f766e;
    box-shadow: 0 8px 20px rgba(15, 118, 110, .2);
}

.mnl-tool-button--contact:hover,
.mnl-contact-menu[open] .mnl-tool-button--contact {
    color: #fff;
    background: #0d9488;
}

.mnl-call-icon,
.mnl-contact-option-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.mnl-contact-short-label {
    display: none;
}

.mnl-contact-popover {
    position: absolute;
    z-index: 100;
    top: calc(100% + 12px);
    left: 0;
    width: min(330px, calc(100vw - 24px));
    padding: 10px;
    border: 1px solid rgba(8, 46, 73, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 60px rgba(3, 24, 39, .24);
    animation: mnl-contact-popover-in .18s ease both;
}

.mnl-contact-popover::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 32px;
    width: 12px;
    height: 12px;
    border-block-start: 1px solid rgba(8, 46, 73, .12);
    border-inline-start: 1px solid rgba(8, 46, 73, .12);
    background: #fff;
    transform: translateY(6px) rotate(45deg);
}

.mnl-contact-head {
    position: relative;
    display: grid;
    gap: 3px;
    padding: 6px 7px 11px;
}

.mnl-contact-head strong {
    color: var(--mnl-navy-900);
    font-size: 14px;
}

.mnl-contact-head small {
    color: var(--mnl-muted);
    font-size: 10px;
    line-height: 1.7;
}

.mnl-contact-option {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    padding: 8px 10px;
    border: 1px solid var(--mnl-line);
    border-radius: 14px;
    color: var(--mnl-navy-900);
    background: #fff;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.mnl-contact-option + .mnl-contact-option {
    margin-top: 7px;
}

.mnl-contact-option:hover {
    border-color: rgba(8, 151, 173, .42);
    background: var(--mnl-cyan-50);
    transform: translateY(-1px);
}

.mnl-contact-option--primary {
    border-color: rgba(15, 118, 110, .22);
    background: #f0fdfa;
}

.mnl-contact-option-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: var(--mnl-cyan-600);
}

.mnl-contact-option--primary .mnl-contact-option-icon {
    background: #0f766e;
}

.mnl-contact-option-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.mnl-contact-option-copy small {
    color: var(--mnl-muted);
    font-size: 10px;
}

.mnl-contact-option-copy strong {
    width: max-content;
    color: inherit;
    font-size: 15px;
    letter-spacing: .035em;
    direction: ltr;
    unicode-bidi: isolate;
}

.mnl-contact-arrow {
    color: var(--mnl-cyan-600);
    font-size: 18px;
}

@keyframes mnl-contact-popover-in {
    from {
        opacity: 0;
        transform: translateY(-5px) scale(.98);
    }
}

.mnl-catalogue-main {
    position: relative;
    z-index: 1;
}

.mnl-catalogue-stage {
    display: grid;
    justify-items: center;
    align-content: start;
    width: 100%;
    min-height: calc(100svh - 80px);
    padding: 16px 20px 24px;
    perspective: 2200px;
}

.mnl-catalogue-book {
    position: relative;
    width: min(1180px, calc(100vw - 40px), calc((100svh - 176px) * 420 / 297));
    aspect-ratio: 420 / 297;
    overflow: visible;
    border-radius: 5px;
    filter: drop-shadow(0 26px 28px rgba(5, 25, 38, .18));
    isolation: isolate;
    transform-style: preserve-3d;
}

.mnl-catalogue-book::before {
    content: "";
    position: absolute;
    z-index: 8;
    inset: 0 50% 0 auto;
    width: 1px;
    background: linear-gradient(to bottom, transparent 2%, rgba(2, 27, 42, .2) 15%, rgba(2, 27, 42, .34) 50%, rgba(2, 27, 42, .2) 85%, transparent 98%);
    box-shadow: 0 0 16px rgba(4, 24, 38, .2);
    pointer-events: none;
}

.mnl-catalogue-sheet {
    position: relative;
    width: min(210mm, calc(100vw - 32px));
    aspect-ratio: 210 / 297;
    margin: 0 auto 24px;
    overflow: hidden;
    color: var(--mnl-ink);
    background: var(--mnl-paper);
    box-shadow: var(--mnl-shadow);
    container-type: size;
    break-after: page;
}

.mnl-catalogue-sheet::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    border: 1px solid rgba(8, 46, 73, .08);
    pointer-events: none;
}

.mnl-page-ornament {
    position: absolute;
    z-index: 0;
    inset: auto auto -8% -12%;
    width: 47%;
    aspect-ratio: 1;
    border: 1px solid rgba(6, 182, 212, .12);
    border-radius: 38% 62% 55% 45%;
    transform: rotate(24deg);
}

.mnl-page-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 7.5% 7.8% 5.2%;
    font-size: clamp(8px, 1.02vw, 14px);
    font-size: clamp(8px, 2cqh, 14px);
}

.mnl-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5%;
}

.mnl-page-header small,
.mnl-guide-dialog > small,
.mnl-closing-content > small,
.mnl-cover-copy > small {
    display: inline-block;
    margin-bottom: .6em;
    color: var(--mnl-cyan-600);
    font-size: .78em;
    font-weight: 800;
    letter-spacing: .02em;
}

.mnl-page-header h2 {
    max-width: 19ch;
    margin: 0;
    color: var(--mnl-navy-900);
    font-size: 2.25em;
    line-height: 1.36;
    letter-spacing: -.035em;
}

.mnl-page-index {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 3em;
    height: 3em;
    border: 1px solid var(--mnl-line);
    border-radius: 50%;
    color: var(--mnl-cyan-600);
    font-size: .82em;
    font-weight: 900;
    direction: ltr;
}

.mnl-page-summary {
    max-width: 48ch;
    margin: 1.05em 0 1.35em;
    color: #43586a;
    font-size: 1.02em;
    line-height: 2;
}

.mnl-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .72em;
    margin-top: auto;
}

.mnl-feature-cards--1 {
    grid-template-columns: 1fr;
}

.mnl-feature-cards--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mnl-feature-cards section {
    position: relative;
    min-width: 0;
    padding: 1.05em 1.05em .95em;
    overflow: hidden;
    border: 1px solid var(--mnl-line);
    border-radius: 1em;
    background: rgba(255, 255, 255, .88);
}

.mnl-feature-cards section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--mnl-cyan-500), var(--mnl-yellow));
}

.mnl-feature-cards small {
    color: var(--mnl-cyan-600);
    font-size: .68em;
    font-weight: 900;
}

.mnl-feature-cards h3 {
    margin: .48em 0 .38em;
    color: var(--mnl-navy-900);
    font-size: .95em;
    line-height: 1.6;
}

.mnl-feature-cards p {
    margin: 0;
    color: #536779;
    font-size: .73em;
    line-height: 1.85;
}

.mnl-ui-visual {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: 0;
    margin: .25em 0 1.15em;
    padding: .8em 1.2em;
}

.mnl-ui-visual::before,
.mnl-ui-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.mnl-ui-visual::before {
    inset: 7% auto auto 4%;
    width: 25%;
    aspect-ratio: 1;
    background: var(--mnl-cyan-100);
}

.mnl-ui-visual::after {
    inset: auto 2% 1% auto;
    width: 18%;
    aspect-ratio: 1;
    border: 1.2em solid rgba(255, 207, 0, .45);
}

.mnl-ui-window {
    position: relative;
    z-index: 1;
    width: 86%;
    padding: .72em;
    border: 1px solid #d7e3e9;
    border-radius: 1.2em;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1.4em 3em rgba(4, 45, 66, .14);
    transform: rotate(-1.1deg);
}

.mnl-ui-window-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    padding: .2em .2em .7em;
    border-bottom: 1px solid #e5edf1;
}

.mnl-ui-window-head > span {
    display: flex;
    gap: .3em;
}

.mnl-ui-window-head i {
    display: block;
    width: .52em;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--mnl-line);
}

.mnl-ui-window-head i:first-child {
    background: var(--mnl-yellow);
}

.mnl-ui-window-head i:nth-child(2) {
    background: var(--mnl-cyan-500);
}

.mnl-ui-window-head small {
    overflow: hidden;
    color: #718495;
    font-size: .56em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mnl-ui-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5em;
    margin: .72em 0;
}

.mnl-ui-stats > span {
    display: grid;
    padding: .68em .74em;
    border-radius: .72em;
    color: var(--mnl-navy-900);
    background: #effbfc;
}

.mnl-ui-stats strong {
    overflow: hidden;
    font-size: .9em;
    direction: rtl;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mnl-ui-stats small {
    margin-top: .2em;
    color: #6b7e8c;
    font-size: .52em;
}

.mnl-ui-list {
    display: grid;
    gap: .45em;
}

.mnl-ui-list > span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 23%;
    align-items: center;
    gap: .55em;
    min-height: 2.15em;
    padding: .36em .48em;
    border: 1px solid #e7eef2;
    border-radius: .6em;
}

.mnl-ui-list i {
    display: grid;
    place-items: center;
    width: 1.65em;
    aspect-ratio: 1;
    border-radius: .48em;
    color: var(--mnl-cyan-600);
    background: var(--mnl-cyan-50);
    font-size: .52em;
    font-style: normal;
    font-weight: 900;
}

.mnl-ui-list b {
    overflow: hidden;
    color: #334b5d;
    font-size: .62em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mnl-ui-list em {
    height: .45em;
    border-radius: 1em;
    background: linear-gradient(90deg, var(--mnl-cyan-500) 64%, #dfe9ed 64%);
}

.mnl-ui-visual--finance .mnl-ui-window,
.mnl-ui-visual--dashboard .mnl-ui-window {
    transform: rotate(1deg);
}

.mnl-ui-visual--inventory .mnl-ui-list em {
    background: linear-gradient(90deg, var(--mnl-emerald) 78%, #dfe9ed 78%);
}

.mnl-ui-visual--access .mnl-ui-list em {
    background: linear-gradient(90deg, var(--mnl-yellow) 52%, #dfe9ed 52%);
}

.mnl-workflow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .78em;
    flex: 1 1 auto;
    min-height: 0;
    margin: .6em 0 1em;
    padding: 0;
    list-style: none;
}

.mnl-workflow li {
    position: relative;
    display: flex;
    align-items: center;
    gap: .85em;
    padding: .9em 1em;
    border: 1px solid var(--mnl-line);
    border-radius: .95em;
    background: linear-gradient(135deg, #fff, #f4fbfc);
}

.mnl-workflow li > span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 2.6em;
    aspect-ratio: 1;
    border-radius: .75em;
    color: #fff;
    background: var(--mnl-navy-900);
    font-size: .7em;
    font-weight: 900;
}

.mnl-workflow strong,
.mnl-workflow small {
    display: block;
}

.mnl-workflow strong {
    color: var(--mnl-navy-900);
    font-size: .9em;
}

.mnl-workflow small {
    margin-top: .28em;
    color: var(--mnl-muted);
    font-size: .67em;
}

.mnl-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8em;
    flex: 1 1 auto;
    min-height: 0;
    margin: .45em 0 1em;
}

.mnl-role-grid section {
    position: relative;
    padding: 1.15em 1.1em;
    overflow: hidden;
    border-radius: 1em;
    color: #fff;
    background: var(--mnl-navy-900);
}

.mnl-role-grid section:nth-child(2),
.mnl-role-grid section:nth-child(3) {
    color: var(--mnl-navy-900);
    background: var(--mnl-cyan-100);
}

.mnl-role-grid section > span {
    position: absolute;
    inset: .55em auto auto .75em;
    color: rgba(255, 255, 255, .25);
    font-size: 1.7em;
    font-weight: 900;
}

.mnl-role-grid section:nth-child(2) > span,
.mnl-role-grid section:nth-child(3) > span {
    color: rgba(7, 28, 50, .12);
}

.mnl-role-grid h3 {
    margin: 0 0 .55em;
    font-size: .98em;
}

.mnl-role-grid p {
    max-width: 30ch;
    margin: 0;
    color: inherit;
    font-size: .72em;
    line-height: 1.9;
    opacity: .78;
}

.mnl-page-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1em;
    align-items: center;
    margin-top: 1.05em;
    padding-top: .8em;
    border-top: 1px solid var(--mnl-line);
    color: #7b8c98;
    font-size: .58em;
}

.mnl-page-footer span:last-child {
    color: var(--mnl-cyan-600);
    font-weight: 900;
}

.mnl-catalogue-sheet--cover,
.mnl-catalogue-sheet--closing {
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(6, 182, 212, .3), transparent 28%),
        linear-gradient(145deg, #092842 0%, var(--mnl-navy-950) 72%);
}

.mnl-catalogue-sheet--cover::after,
.mnl-catalogue-sheet--closing::after {
    border-color: rgba(255, 255, 255, .12);
}

.mnl-catalogue-sheet--cover .mnl-page-ornament,
.mnl-catalogue-sheet--closing .mnl-page-ornament {
    inset: -17% -18% auto auto;
    width: 68%;
    border: 1px solid rgba(6, 182, 212, .32);
    border-radius: 24%;
}

.mnl-cover-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 7.8%;
    font-size: clamp(8px, 1.03vw, 14px);
}

.mnl-cover-brand,
.mnl-closing-brand {
    display: flex;
    align-items: center;
    gap: .85em;
    font-size: .95em;
    font-weight: 900;
}

.mnl-cover-brand img,
.mnl-closing-brand img {
    width: 3.3em;
    height: 3.3em;
    object-fit: contain;
}

.mnl-cover-copy {
    position: relative;
    z-index: 2;
    max-width: 78%;
    margin-top: 15%;
}

.mnl-cover-copy > small {
    color: var(--mnl-yellow);
}

.mnl-cover-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 5.4em;
    line-height: 1.12;
    letter-spacing: -.055em;
}

.mnl-cover-subtitle {
    margin: .55em 0 .7em !important;
    color: var(--mnl-cyan-100) !important;
    font-size: 1.5em !important;
    font-weight: 700;
}

.mnl-cover-copy p:last-child {
    max-width: 35ch;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .92em;
    line-height: 2;
}

.mnl-cover-system {
    position: absolute;
    z-index: 1;
    inset: auto -15% 10% auto;
    width: 66%;
    aspect-ratio: 1;
}

.mnl-cover-orbit {
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(6, 182, 212, .5);
    border-radius: 50%;
}

.mnl-cover-orbit::before,
.mnl-cover-orbit::after {
    content: "";
    position: absolute;
    inset: 17%;
    border: 1px solid rgba(255, 207, 0, .34);
    border-radius: 38% 62%;
    transform: rotate(35deg);
}

.mnl-cover-orbit::after {
    inset: 34%;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mnl-cyan-500), #12839d);
    box-shadow: 0 0 0 1.4em rgba(6, 182, 212, .08);
}

.mnl-cover-node {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 5.7em;
    min-height: 2.6em;
    padding: .4em .8em;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: .8em;
    color: #fff;
    background: rgba(8, 46, 73, .78);
    box-shadow: 0 .7em 1.6em rgba(0, 0, 0, .18);
    font-size: .65em;
    backdrop-filter: blur(8px);
}

.mnl-cover-node--1 {
    inset: 8% auto auto 21%;
}

.mnl-cover-node--2 {
    inset: 36% 4% auto auto;
}

.mnl-cover-node--3 {
    inset: auto auto 20% 12%;
}

.mnl-cover-node--4 {
    inset: auto 17% 2% auto;
}

.mnl-cover-meta {
    display: flex;
    gap: 1.3em;
    margin-top: auto;
    padding-top: 1em;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .55);
    font-size: .58em;
}

.mnl-closing-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    padding: 9%;
    font-size: clamp(8px, 1.03vw, 14px);
}

.mnl-closing-brand {
    margin-bottom: auto;
}

.mnl-closing-content > small {
    margin-top: auto;
    color: var(--mnl-yellow);
}

.mnl-closing-content h2 {
    max-width: 10ch;
    margin: .15em 0 .4em;
    font-size: 3.6em;
    line-height: 1.35;
    letter-spacing: -.05em;
}

.mnl-closing-content > p {
    max-width: 34ch;
    margin: 0 0 1.5em;
    color: rgba(255, 255, 255, .68);
    font-size: .93em;
    line-height: 2;
}

.mnl-closing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    min-height: 3.7em;
    padding: 0 1.5em;
    border-radius: .85em;
    color: var(--mnl-navy-950);
    background: var(--mnl-yellow);
    font-size: .85em;
    font-weight: 900;
    text-decoration: none;
}

.mnl-company-link {
    margin-top: 1.2em;
    color: var(--mnl-cyan-100);
    font-size: .72em;
    direction: ltr;
    text-decoration: none;
}

.mnl-closing-grid {
    position: absolute;
    inset: 13% auto auto -12%;
    display: grid;
    grid-template-columns: repeat(2, 8em);
    gap: .7em;
    transform: rotate(-7deg);
}

.mnl-closing-grid span {
    display: grid;
    place-items: center;
    aspect-ratio: 1.15;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.1em;
    color: rgba(255, 255, 255, .63);
    background: rgba(6, 182, 212, .08);
    font-size: .68em;
}

.mnl-page-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.mnl-page-button,
.mnl-page-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 13px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 25px rgba(16, 46, 62, .09);
}

.mnl-page-button {
    gap: 8px;
    min-width: 95px;
    padding: 0 15px;
    color: var(--mnl-navy-900);
    cursor: pointer;
}

.mnl-page-button:hover:not(:disabled) {
    border-color: var(--mnl-cyan-500);
    background: var(--mnl-cyan-50);
}

.mnl-page-button:disabled {
    color: #9aa9b4;
    cursor: not-allowed;
    opacity: .55;
}

.mnl-page-button--next {
    color: #fff;
    border-color: var(--mnl-navy-900);
    background: var(--mnl-navy-900);
}

.mnl-page-button--next:hover:not(:disabled) {
    color: #fff;
    border-color: var(--mnl-cyan-600);
    background: var(--mnl-cyan-600);
}

.mnl-page-button--cover {
    min-width: 52px;
}

.mnl-page-counter {
    min-width: 142px;
    padding: 0 16px;
    color: #4f6575;
    font-size: 12px;
    direction: rtl;
}

.mnl-gesture-hint {
    margin: 8px 0 0;
    color: #617584;
    font-size: 10px;
    text-align: center;
}

.mnl-dialog {
    width: min(780px, calc(100% - 30px));
    max-height: min(82vh, 760px);
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    color: var(--mnl-ink);
    background: #fff;
    box-shadow: 0 30px 90px rgba(3, 24, 39, .32);
}

.mnl-dialog::backdrop {
    background: rgba(4, 20, 32, .68);
    backdrop-filter: blur(6px);
}

.mnl-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--mnl-line);
}

.mnl-dialog-head small,
.mnl-guide-dialog small {
    color: var(--mnl-cyan-600);
    font-size: 11px;
    font-weight: 800;
}

.mnl-dialog-head h2,
.mnl-guide-dialog h2 {
    margin: 3px 0 0;
    color: var(--mnl-navy-900);
    font-size: 21px;
}

.mnl-dialog-close {
    display: grid;
    place-items: center;
    width: 40px;
    aspect-ratio: 1;
    border: 1px solid var(--mnl-line);
    border-radius: 12px;
    color: var(--mnl-navy-900);
    background: #fff;
    font-size: 24px;
    cursor: pointer;
}

.mnl-toc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-height: min(65vh, 620px);
    padding: 18px 24px 24px;
    overflow: auto;
}

.mnl-toc-item {
    position: relative;
    display: grid;
    gap: 7px;
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--mnl-line);
    border-radius: 14px;
    color: var(--mnl-navy-900);
    background: #fff;
    text-align: right;
    cursor: pointer;
}

.mnl-toc-item:hover,
.mnl-toc-item.is-current {
    border-color: var(--mnl-cyan-500);
    background: var(--mnl-cyan-50);
}

.mnl-toc-number {
    position: absolute;
    z-index: 2;
    inset: 16px auto auto 16px;
    color: var(--mnl-cyan-600);
    font-size: 10px;
    font-weight: 900;
}

.mnl-toc-preview {
    display: grid;
    align-content: end;
    gap: 6px;
    aspect-ratio: 210 / 112;
    padding: 14px;
    border-radius: 9px;
    background: linear-gradient(145deg, var(--mnl-navy-900), #0d4662);
}

.mnl-toc-preview i {
    display: block;
    height: 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .38);
}

.mnl-toc-preview i:first-child {
    width: 52%;
    background: var(--mnl-yellow);
}

.mnl-toc-preview i:last-child {
    width: 74%;
}

.mnl-toc-item strong {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mnl-guide-dialog {
    width: min(390px, calc(100% - 32px));
    padding: 28px;
    overflow: visible;
    text-align: center;
}

.mnl-guide-icon {
    display: grid;
    place-items: center;
    width: 68px;
    aspect-ratio: 1;
    margin: -60px auto 18px;
    border: 7px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: var(--mnl-cyan-600);
    box-shadow: 0 15px 35px rgba(8, 151, 173, .3);
    font-size: 28px;
}

.mnl-guide-dialog p {
    margin: 14px 0 20px;
    color: #5c7181;
    font-size: 13px;
    line-height: 2;
}

.mnl-guide-accept {
    min-height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: var(--mnl-navy-900);
    cursor: pointer;
}

.mnl-noscript-notice {
    width: min(760px, calc(100% - 32px));
    margin: 0 auto 24px;
    padding: 14px 18px;
    border: 1px solid #f4c84a;
    border-radius: 14px;
    color: #614c00;
    background: #fff9dd;
    font-size: 13px;
    text-align: center;
}

.is-enhanced .mnl-catalogue-sheet {
    position: absolute;
    inset: 0 auto auto 0;
    display: none;
    width: 50%;
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
    box-shadow: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.is-enhanced .mnl-catalogue-sheet.is-active {
    display: block;
}

.is-enhanced .mnl-catalogue-sheet.is-right {
    right: 0;
    left: auto;
    border-radius: 0 4px 4px 0;
}

.is-enhanced .mnl-catalogue-sheet.is-left {
    right: auto;
    left: 0;
    border-radius: 4px 0 0 4px;
}

.is-enhanced .mnl-catalogue-sheet.is-single {
    right: 25%;
    left: auto;
    border-radius: 4px;
}

.mnl-flip-leaf {
    position: absolute;
    z-index: 20;
    top: 0;
    display: block !important;
    width: 50%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    box-shadow: 0 1px 18px rgba(3, 24, 39, .2);
    pointer-events: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

.mnl-flip-leaf--next {
    right: 0;
    left: auto;
    transform-origin: left center;
}

.mnl-flip-leaf--next.is-turning {
    animation: mnl-flip-next .7s cubic-bezier(.22, .7, .24, 1) forwards;
}

.mnl-flip-leaf--previous {
    right: auto;
    left: 0;
    transform-origin: right center;
}

.mnl-flip-leaf--previous.is-turning {
    animation: mnl-flip-previous .7s cubic-bezier(.22, .7, .24, 1) forwards;
}

@keyframes mnl-flip-next {
    0% {
        transform: rotateY(0deg);
        filter: brightness(1);
    }
    45% {
        filter: brightness(.87);
    }
    100% {
        transform: rotateY(-180deg);
        filter: brightness(.72);
    }
}

@keyframes mnl-flip-previous {
    0% {
        transform: rotateY(0deg);
        filter: brightness(1);
    }
    45% {
        filter: brightness(.87);
    }
    100% {
        transform: rotateY(180deg);
        filter: brightness(.72);
    }
}

.mnl-catalogue-stage:fullscreen {
    align-content: center;
    padding: 20px;
    overflow: auto;
    background:
        radial-gradient(circle at 15% 15%, rgba(6, 182, 212, .2), transparent 30rem),
        var(--mnl-shell);
}

.mnl-catalogue-stage:fullscreen .mnl-catalogue-book {
    width: min(calc(100vw - 42px), calc((100vh - 110px) * 420 / 297), 1320px);
}

.mnl-catalogue-stage:fullscreen .mnl-gesture-hint {
    display: none;
}

@media (max-width: 800px) {
    .mnl-catalogue-toolbar {
        width: calc(100% - 20px);
        min-height: 58px;
        margin-top: 8px;
        padding: 7px 8px 7px 11px;
        border-radius: 16px;
    }

    .mnl-toolbar-brand {
        gap: 7px;
    }

    .mnl-toolbar-brand img {
        width: 38px;
        height: 38px;
    }

    .mnl-toolbar-brand strong {
        font-size: 13px;
    }

    .mnl-toolbar-brand small,
    .mnl-tool-label {
        display: none;
    }

    .mnl-tool-button {
        width: 38px;
        min-height: 38px;
        padding: 0;
    }

    .mnl-tool-button--login {
        width: auto;
        padding: 0 13px;
    }

    .mnl-tool-button--contact {
        width: auto;
        min-width: 38px;
        padding-inline: 10px;
    }

    .mnl-contact-short-label {
        display: inline;
        font-size: 11px;
    }

    .mnl-contact-popover {
        position: fixed;
        top: 75px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: 420px;
        margin-inline: auto;
    }

    .mnl-contact-popover::before {
        display: none;
    }

    .mnl-catalogue-stage {
        min-height: calc(100svh - 66px);
        padding: 12px 12px 20px;
        touch-action: pan-y pinch-zoom;
    }

    .mnl-catalogue-book {
        width: min(calc(100vw - 24px), calc((100svh - 164px) * 210 / 297), 720px);
        aspect-ratio: 210 / 297;
    }

    .mnl-catalogue-book::before {
        display: none;
    }

    .is-enhanced .mnl-catalogue-sheet {
        right: 0 !important;
        left: 0 !important;
        width: 100%;
        border-radius: 4px !important;
    }

    .mnl-page-content,
    .mnl-cover-content,
    .mnl-closing-content {
        font-size: clamp(8px, 2.15vw, 13px);
    }

    .mnl-page-controls {
        width: 100%;
        gap: 6px;
        margin-top: 10px;
    }

    .mnl-page-button {
        min-width: 78px;
        min-height: 42px;
        padding: 0 11px;
        font-size: 12px;
    }

    .mnl-page-button--cover {
        min-width: 46px;
    }

    .mnl-page-counter {
        min-width: 108px;
        min-height: 42px;
        padding: 0 10px;
        font-size: 10px;
    }

    .mnl-flip-leaf {
        right: 0;
        left: 0;
        width: 100%;
        transform-origin: center;
    }

    .mnl-flip-leaf--next.is-turning {
        animation: mnl-slide-next .32s ease forwards;
    }

    .mnl-flip-leaf--previous.is-turning {
        animation: mnl-slide-previous .32s ease forwards;
    }

    .mnl-toc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-inline: 16px;
    }

    .mnl-dialog-head {
        padding-inline: 16px;
    }
}

@media (max-width: 380px) {
    .mnl-toolbar-brand > span {
        display: none;
    }

    .mnl-page-button--cover {
        display: none;
    }

    .mnl-page-button {
        min-width: 82px;
    }

    .mnl-page-counter {
        flex: 1 1 auto;
    }
}

@media (max-width: 480px) {
    .mnl-toolbar-actions [data-action="print"],
    .mnl-toolbar-actions [data-action="fullscreen"] {
        display: none;
    }
}

@keyframes mnl-slide-next {
    to {
        opacity: 0;
        transform: translateX(-13%);
    }
}

@keyframes mnl-slide-previous {
    to {
        opacity: 0;
        transform: translateX(13%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .mnl-flip-leaf {
        display: none !important;
    }
}

@page {
    size: A4 portrait;
    margin: 0;
}

@media print {
    html,
    body.mnl-catalogue {
        width: 210mm;
        min-width: 210mm;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        background: #fff !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .mnl-catalogue-toolbar,
    .mnl-page-controls,
    .mnl-gesture-hint,
    .mnl-dialog,
    .mnl-skip-link,
    .mnl-noscript-notice {
        display: none !important;
    }

    .mnl-catalogue-main,
    .mnl-catalogue-stage,
    .mnl-catalogue-book {
        display: block !important;
        width: 210mm !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        filter: none !important;
        perspective: none !important;
    }

    .mnl-catalogue-book::before {
        display: none !important;
    }

    .mnl-catalogue-sheet,
    .is-enhanced .mnl-catalogue-sheet {
        position: relative !important;
        inset: auto !important;
        display: block !important;
        width: 210mm !important;
        height: 297mm !important;
        margin: 0 !important;
        overflow: hidden !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        break-after: page;
        break-inside: avoid;
        page-break-after: always;
        page-break-inside: avoid;
    }

    .mnl-catalogue-sheet:last-child {
        break-after: auto;
        page-break-after: auto;
    }

    .mnl-page-content,
    .mnl-cover-content,
    .mnl-closing-content {
        font-size: 11pt !important;
    }

    .mnl-flip-leaf {
        display: none !important;
    }
}
