:root {
    --sak-modal-blue: #0055cc;
    --sak-modal-blue-dark: #0047aa;
    --sak-modal-blue-soft: #eef5ff;
    --sak-modal-ink: #15385f;
    --sak-modal-muted: #64748b;
    --sak-modal-border: #e1eaf5;
    --sak-modal-border-strong: #cfdced;
    --sak-modal-panel: #ffffff;
    --sak-modal-body: #f7faff;
    --sak-modal-shadow: 0 30px 80px rgba(15, 23, 42, 0.26);
}

body.modal-open {
    padding-right: 0 !important;
}

body.modal-open .modal-backdrop {
    background: #081b33;
    opacity: .58 !important;
    backdrop-filter: blur(4px);
    z-index: 2050 !important;
}

.modal:not(#filterModal) {
    z-index: 2060 !important;
    padding: 18px !important;
}

.modal:not(#filterModal) .modal-dialog {
    margin: 54px auto;
}

.modal:not(#filterModal) .modal-content {
    overflow: hidden;
    border: 1px solid rgba(207, 220, 237, .92);
    border-radius: 24px;
    background: var(--sak-modal-panel);
    box-shadow: var(--sak-modal-shadow);
    color: var(--sak-modal-ink);
}

.modal:not(#filterModal) .modal-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 76px;
    padding: 22px 28px 18px;
    border-bottom: 1px solid var(--sak-modal-border);
    background:
        linear-gradient(135deg, rgba(0, 85, 204, .10), rgba(255, 255, 255, 0) 56%),
        #ffffff;
}

.modal:not(#filterModal) .modal-header::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sak-modal-blue), rgba(0, 85, 204, 0));
}

.modal:not(#filterModal) .modal-header.p-0 {
    display: block;
    min-height: 0;
    padding: 0 !important;
    background: #0f172a;
    border-bottom: 0;
}

.modal:not(#filterModal) .modal-header.p-0::before {
    display: none;
}

.modal:not(#filterModal) .modal-title {
    margin: 0;
    color: var(--sak-modal-ink);
    font-size: 22px;
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: 0;
}

.modal:not(#filterModal) h2.modal-title {
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.02em;
}

.modal:not(#filterModal) .close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    margin: 0 0 0 auto;
    padding: 0;
    border: 1px solid var(--sak-modal-border);
    border-radius: 999px;
    background: #f4f8fd;
    color: var(--sak-modal-ink);
    font-size: 26px;
    line-height: 1;
    opacity: 1;
    text-shadow: none;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.modal:not(#filterModal) .close:hover,
.modal:not(#filterModal) .close:focus {
    background: var(--sak-modal-blue-soft);
    border-color: #bed3f2;
    color: var(--sak-modal-blue);
    outline: none;
    transform: translateY(-1px);
}

.modal:not(#filterModal) .close span {
    display: block;
    transform: translateY(-1px);
}

.modal:not(#filterModal) .modal-body {
    padding: 26px 28px;
    background: var(--sak-modal-body);
}

.modal:not(#filterModal) .modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px 28px 24px;
    border-top: 1px solid var(--sak-modal-border);
    background: #ffffff;
}

.modal:not(#filterModal) .product-info {
    margin: 0 0 20px;
    padding: 16px 18px;
    border: 1px solid var(--sak-modal-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}

.modal:not(#filterModal) .product-info:empty {
    display: none;
}

@supports selector(:has(*)) {
    .modal:not(#filterModal) .product-info:not(:has(#modalProductTitle:not(:empty), #modalProductBrand:not(:empty))) {
        display: none;
    }
}

.modal:not(#filterModal) .product-info h5,
.modal:not(#filterModal) #modalProductTitle {
    margin: 0;
    color: var(--sak-modal-ink);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 850;
}

.modal:not(#filterModal) .product-info p,
.modal:not(#filterModal) #modalProductBrand {
    margin: 5px 0 0;
    color: var(--sak-modal-muted) !important;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 650;
}

.modal:not(#filterModal) .form-group {
    margin-bottom: 16px;
}

.modal:not(#filterModal) label {
    display: block;
    margin-bottom: 7px;
    color: var(--sak-modal-ink);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.modal:not(#filterModal) .form-control {
    min-height: 46px;
    border: 1px solid var(--sak-modal-border-strong);
    border-radius: 14px;
    background: #ffffff;
    color: var(--sak-modal-ink);
    box-shadow: none;
    font-size: 15px;
    font-weight: 650;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.modal:not(#filterModal) input.form-control,
.modal:not(#filterModal) select.form-control {
    padding: 10px 14px;
}

.modal:not(#filterModal) textarea.form-control {
    min-height: 116px;
    padding: 12px 14px;
    resize: vertical;
}

.modal:not(#filterModal) .form-control:focus {
    border-color: #9fc0f5;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 85, 204, .09);
    color: var(--sak-modal-ink);
}

.modal:not(#filterModal) .response-message {
    min-height: 22px;
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}

.modal:not(#filterModal) .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: none;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.modal:not(#filterModal) .btn-primary {
    border-color: var(--sak-modal-blue);
    background: var(--sak-modal-blue);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 85, 204, .24);
}

.modal:not(#filterModal) .btn-primary:hover,
.modal:not(#filterModal) .btn-primary:focus {
    border-color: var(--sak-modal-blue-dark);
    background: var(--sak-modal-blue-dark);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(0, 85, 204, .30);
    transform: translateY(-1px);
}

.modal:not(#filterModal) .btn-secondary {
    border-color: var(--sak-modal-border-strong);
    background: #ffffff;
    color: var(--sak-modal-ink);
}

.modal:not(#filterModal) .btn-secondary:hover,
.modal:not(#filterModal) .btn-secondary:focus {
    border-color: #bed3f2;
    background: var(--sak-modal-blue-soft);
    color: var(--sak-modal-blue);
    transform: translateY(-1px);
}

.modal:not(#filterModal) .list-group-flush {
    margin: 0 !important;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--sak-modal-border);
    background: #ffffff;
}

.modal:not(#filterModal) .text-muted {
    color: var(--sak-modal-muted) !important;
}

.modal:not(#filterModal) img.img-fluid.w-100 {
    max-height: 420px;
    object-fit: cover;
}

.modal:not(#filterModal).modal-news,
.modal:not(#filterModal).modal-productHelper {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    padding: 0 !important;
    overflow: hidden !important;
}

.modal:not(#filterModal).modal-news .modal-dialog {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    width: min(100vw, 760px) !important;
    max-width: 760px !important;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100svh;
    max-height: 100dvh;
    margin: 0 0 0 auto !important;
    z-index: 2061 !important;
}

.modal:not(#filterModal).modal-news .modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0 !important;
}

.modal:not(#filterModal).modal-news .modal-header,
.modal:not(#filterModal).modal-news .modal-footer {
    flex: 0 0 auto;
}

.modal:not(#filterModal).modal-news .modal-header,
.modal:not(#filterModal).modal-productHelper .modal-header {
    padding-top: calc(22px + env(safe-area-inset-top));
}

.modal:not(#filterModal).modal-news .modal-footer,
.modal:not(#filterModal).modal-productHelper .modal-footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.modal:not(#filterModal).modal-news .modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

.modal-news .sak-news-modal .modal-header {
    align-items: center;
}

.sak-news-modal__headerIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid #dbe8fb;
    border-radius: 14px;
    background: var(--sak-modal-blue-soft);
    color: var(--sak-modal-blue);
    font-size: 18px;
}

.sak-news-modal__list.list-group-flush {
    display: grid;
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.sak-news-modal__item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    min-height: 132px;
    padding: 12px;
    border: 1px solid var(--sak-modal-border);
    border-radius: 18px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.sak-news-modal__item:hover {
    border-color: #c8daf4;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
    transform: translateY(-1px);
}

.sak-news-modal__media {
    min-width: 0;
}

.sak-news-modal__image {
    display: block;
    width: 132px;
    height: 108px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--sak-modal-border);
    background: #edf3fb;
}

.sak-news-modal__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sak-news-modal__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.sak-news-modal__badge,
.sak-news-modal__date {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 11px;
    line-height: 1;
    font-weight: 850;
}

.sak-news-modal__badge {
    background: var(--sak-modal-blue-soft);
    color: var(--sak-modal-blue);
}

.sak-news-modal__date {
    border: 1px solid var(--sak-modal-border);
    background: #ffffff;
    color: var(--sak-modal-muted);
}

.sak-news-modal__title {
    margin: 0;
    color: var(--sak-modal-ink);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: 0;
}

.sak-news-modal__description {
    margin: 7px 0 0;
    color: #40546d;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
}

.sak-news-modal__detail {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 10px;
    color: var(--sak-modal-blue);
    font-size: 13px;
    font-weight: 900;
}

.sak-news-modal__state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 150px;
    padding: 28px;
    border: 1px dashed var(--sak-modal-border-strong);
    border-radius: 18px;
    background: #ffffff;
    color: var(--sak-modal-muted);
    font-size: 14px;
    font-weight: 750;
    text-align: center;
}

.sak-news-modal__state .fe-loader {
    animation: sakNewsSpin 1s linear infinite;
}

.modal:not(#filterModal).modal-productHelper .modal-dialog {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    width: min(100vw, 1120px) !important;
    max-width: 1120px !important;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100svh;
    max-height: 100dvh;
    margin: 0 0 0 auto !important;
    z-index: 2061 !important;
}

.modal:not(#filterModal).modal-productHelper .modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0 !important;
}

.modal:not(#filterModal).modal-productHelper .modal-header,
.modal:not(#filterModal).modal-productHelper .modal-footer {
    flex: 0 0 auto;
}

.modal:not(#filterModal).modal-productHelper .modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 0 !important;
}

.modal:not(#filterModal).modal-productHelper .modal-footer {
    justify-content: flex-end;
}

.sak-helper-modal__headerIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid #dbe8fb;
    border-radius: 14px;
    background: var(--sak-modal-blue-soft);
    color: var(--sak-modal-blue);
    font-size: 18px;
}

.sak-helper-modal__titleWrap {
    min-width: 0;
}

.sak-helper-modal__subtitle {
    margin: 4px 0 0;
    color: var(--sak-modal-muted);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 650;
}

.sak-helper-modal__tools {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 18px 22px 16px;
    border-bottom: 1px solid var(--sak-modal-border);
    background:
        linear-gradient(180deg, rgba(247, 250, 255, .98), rgba(247, 250, 255, .94)),
        var(--sak-modal-body);
    backdrop-filter: blur(10px);
}

.sak-helper-modal__searchLabel {
    display: block;
    margin: 0 0 8px;
    color: var(--sak-modal-ink);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.sak-helper-modal__search {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 6px;
    min-height: 54px;
    padding: 6px;
    border: 1px solid var(--sak-modal-border-strong);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
}

.sak-helper-modal__searchIcon,
.sak-helper-modal__searchClear {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.sak-helper-modal__searchIcon {
    color: var(--sak-modal-blue);
    background: var(--sak-modal-blue-soft);
}

.sak-helper-modal__searchInput {
    width: 100%;
    min-width: 0;
    height: 40px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--sak-modal-ink);
    font-size: 15px;
    font-weight: 750;
}

.sak-helper-modal__searchInput::placeholder {
    color: #8aa0bb;
    font-weight: 650;
}

.sak-helper-modal__searchClear {
    border: 0;
    background: #f4f8fd;
    color: var(--sak-modal-muted);
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.sak-helper-modal__searchClear:hover,
.sak-helper-modal__searchClear:focus {
    background: var(--sak-modal-blue-soft);
    color: var(--sak-modal-blue);
    outline: none;
}

.sak-helper-modal__metaText {
    min-height: 18px;
    margin-top: 8px;
    color: var(--sak-modal-muted);
    font-size: 12px;
    font-weight: 750;
}

.sak-helper-modal__list.list-group-flush {
    padding: 18px 22px 24px;
    border: 0;
    border-radius: 0;
    background: var(--sak-modal-body);
    overflow: visible;
}

.sak-helper-modal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(158px, 100%), 1fr));
    gap: 14px;
}

.sak-helper-modal__item {
    display: flex;
    min-width: 0;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
    overflow: hidden;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.sak-helper-modal__item:hover {
    border-color: #d8e4f2;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
    transform: translateY(-2px);
}

.sak-helper-modal__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 178px;
    padding: 14px 14px 12px;
    color: #0f172a;
    text-decoration: none !important;
}

.sak-helper-modal__media {
    position: relative;
    order: 2;
    flex: 0 0 110px;
    min-width: 0;
    height: 110px;
    margin-top: auto;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
}

.sak-helper-modal__media--fallback::before {
    content: "\e9e8";
    font-family: "feather";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sak-modal-blue);
    font-size: 28px;
}

.sak-helper-modal__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: #ffffff;
}

.sak-helper-modal__content {
    order: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.sak-helper-modal__itemTitle {
    order: 2;
    display: -webkit-box;
    min-height: 30px;
    margin: 0 0 10px;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sak-helper-modal__shortcutLine {
    order: 1;
    display: block;
    width: 100%;
    margin: 0 0 7px;
}

.sak-helper-modal__shortcutLabel {
    display: none;
}

.sak-helper-modal__shortcut {
    display: block;
    min-height: 0;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #0f2947;
    font-family: inherit;
    font-size: 19px;
    line-height: 1.1;
    font-weight: 950;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
}

.sak-helper-modal__rules {
    display: none;
}

.sak-helper-modal__state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 180px;
    padding: 28px;
    border: 1px dashed var(--sak-modal-border-strong);
    border-radius: 18px;
    background: #ffffff;
    color: var(--sak-modal-muted);
    font-size: 14px;
    font-weight: 750;
    text-align: center;
}

.sak-helper-modal__state .fe-loader {
    animation: sakNewsSpin 1s linear infinite;
}

@keyframes sakNewsSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767.98px) {
    .modal:not(#filterModal) {
        padding: 10px !important;
    }

    .modal:not(#filterModal) .modal-dialog {
        width: auto !important;
        max-width: none !important;
        margin: 18px auto;
    }

    .modal:not(#filterModal) .modal-content {
        border-radius: 20px;
    }

    .modal:not(#filterModal) .modal-header {
        min-height: 68px;
        padding: 18px 18px 15px;
    }

    .modal:not(#filterModal) .modal-header::before {
        left: 18px;
        right: 18px;
    }

    .modal:not(#filterModal) .modal-title {
        font-size: 19px;
    }

    .modal:not(#filterModal) .modal-body {
        padding: 20px 18px;
    }

    .modal:not(#filterModal) .modal-footer {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 18px 20px;
    }

    .modal:not(#filterModal) .modal-footer .btn {
        width: 100%;
    }

    .modal:not(#filterModal).modal-news .modal-dialog {
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh;
        height: 100svh;
        height: 100dvh;
        margin: 0 !important;
    }

    .modal:not(#filterModal).modal-news .modal-content {
        border-radius: 0 !important;
        border-left: 0;
        border-right: 0;
    }

    .modal:not(#filterModal).modal-productHelper .modal-dialog {
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh;
        height: 100svh;
        height: 100dvh;
        margin: 0 !important;
    }

    .modal:not(#filterModal).modal-productHelper .modal-content {
        border-radius: 0 !important;
        border-left: 0;
        border-right: 0;
    }

    .sak-helper-modal__headerIcon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 13px;
    }

    .sak-helper-modal__subtitle {
        font-size: 12px;
    }

    .sak-helper-modal__tools {
        padding: 16px 14px 14px;
    }

    .sak-helper-modal__search {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        min-height: 50px;
    }

    .sak-helper-modal__searchIcon,
    .sak-helper-modal__searchClear {
        width: 36px;
        height: 36px;
    }

    .sak-helper-modal__list.list-group-flush {
        padding: 14px;
    }

    .sak-helper-modal__grid {
        grid-template-columns: repeat(auto-fill, minmax(min(142px, 100%), 1fr));
        gap: 12px;
    }

    .sak-helper-modal__link {
        min-height: 164px;
        padding: 12px;
    }

    .sak-helper-modal__media {
        flex-basis: 92px;
        height: 92px;
    }

    .sak-helper-modal__itemTitle {
        font-size: 13px;
    }

    .sak-helper-modal__shortcut {
        font-size: 17px;
    }

    .sak-news-modal__headerIcon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 13px;
    }

    .sak-news-modal__item {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: 0;
    }

    .sak-news-modal__image {
        width: 100%;
        height: 176px;
    }
}

@media (max-width: 420px) {
    .modal:not(#filterModal).modal-news .modal-header,
    .modal:not(#filterModal).modal-productHelper .modal-header {
        gap: 10px;
        padding: calc(16px + env(safe-area-inset-top)) 14px 14px;
    }

    .modal:not(#filterModal).modal-news .modal-body {
        padding: 16px 12px;
    }

    .modal:not(#filterModal).modal-news .modal-footer,
    .modal:not(#filterModal).modal-productHelper .modal-footer {
        padding: 14px 14px calc(18px + env(safe-area-inset-bottom));
    }

    .sak-helper-modal__tools {
        padding: 14px 12px 12px;
    }

    .sak-helper-modal__list.list-group-flush {
        padding: 12px;
    }

    .sak-helper-modal__link {
        min-height: 156px;
    }

    .sak-helper-modal__media {
        flex-basis: 88px;
        height: 88px;
    }

    .sak-news-modal__item {
        padding: 10px;
    }

    .sak-news-modal__image {
        height: 150px;
    }
}
