.marks .mark-link:nth-child(n + 11) {
    display: none;
}

.marks.show-all .mark-link {
    display: flex; /* или inline-block — зависит от верстки */
}

.show-marks-btn{
    display: none;
    transition: all 0.2s ease-in-out;
}
.show-marks-btn.active::after{
    transform: rotate(180deg);
}

.show-marks-btn:after {
    content: "";
    background: url( 'data: image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="%23176888" stroke-linecap="round" stroke-linejoin="round"/></svg>'); background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="%23176888" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 24px;
    height: 24px;
}

@media (max-width: 750px) {
    .show-marks-btn{
        transition: all 0.2s ease-in-out;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: center;
        padding: 12px 20px;
        gap: 12px;
        background: #fff;
        border-radius: 4px;
        cursor: pointer;
        border: none;
        color: var(--primary);
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        height: 64px;
    }

    .marks {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 20px 1fr 20px;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 12px;
    }
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pagination__links-item {
    cursor: pointer;
}

.home__header__content {
    gap: 10px;
}
.side-badge-modal.modal-offer-banner {
    width: 525px;
}

.logo__img {
    max-height: 34px;
}

.model-content__heading-404 {
    font-size: 40px;
}

.wide-container {
    width: 800px;
    display: flex;
}

.wide-container .hero-container {
    width: 100%;
    margin: auto;
    padding-left: 120px;
}

.popup-preset__form span.error {
    color: red;
}

.wide-container .hero-container div {
    font-size: 2rem;
}

.wide-container .hero-container span {
    font-size: 1rem;
}

.buttons-404 {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.section-404 {
    padding: 160px 0;
}

.section-finance-form .form-terms br {
    display: none;
}

.del-card-price {
    font-size: 13px;
    color: #9E9E9E !important;
    text-decoration: line-through;
}

.model-content__heading-404 {
    margin-bottom: 40px;
}

.hero-banner {
    position: relative;
}

@media (max-width: 750px) {
    .home__header .section-heading {
        font-size: 18px;
    }
    .irs-grid-text ~ .irs-grid-text{
        display: none;
    }  
    .irs-grid-text:last-of-type {
        display: inline-block;
    }    
    .logo__img {
        max-height: 30px;
    }
    .logo__img-mobile {
        max-height: 20px;
    }
    .container.offer-banner__container {
        padding-right: 16px;
        padding-left: 16px;
    }
    .offer-banner__close {
        right: 16px;
    }
}

.hidden{
    display: none;
}

#app-modal-terms {
    width: 500px;
    max-width: 100%;
}

#app-modal-terms .app-modal__heading {
    margin-bottom: 20px;
}

#app-modal-terms .main-heading {
    margin-bottom: 20px;
}

.app-popup-telephone  {
    background: #181818;
}

.app-popup-telephone  .popup__content {
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding-bottom: 0px;
    min-width: 250px;
    background: #181818;
    color: white;
    margin-bottom: 0px;
    flex-wrap: wrap;
}

.app-popup-telephone .popup__numbers a{
    text-decoration: none;
    font-size: 25px;
}

.nowrap{
    text-wrap: nowrap;
}

.init-modal{
    cursor: pointer;
}

.pagination__links-item.--active:last-child {
    border-color: #b9bdc6;
    color: var(--color-dark);
}

.header-geo span {
    max-width: 210px;
}

.footer-geo span {
    max-width: 280px;
}

/*phone btn*/
.callback-button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    background-color: #f24942;
    color: #fff;
    cursor: pointer;
    display: block;
    position: fixed;
    font-size: inherit;
    right: 2em;
    bottom: 2em;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
    text-align: center;
    transition: all .2s;
    border: none;
    z-index: 100;
}

.callback-button:hover {
    width: 2.7em;
    height: 2.7em;
    line-height: 2.7em;
    right: 2em;
    bottom: 2em;
}

.callback-button i {
    color: inherit;
    position: relative;
    z-index: 1;
    animation: callback-button-phone 2s infinite;
    animation-timing-function: ease-out;
}

.callback-button:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    border: solid #f24942 1px;
    width: 5em;
    height: 5em;
    animation: callback-button-border 2s infinite
}

.callback-button:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    background-color: #f24942;
    opacity: .1;
    width: 4em;
    height: 4em;
    animation: callback-button-border1 2s infinite;
    animation-delay: 1s
}

@keyframes callback-button-phone {
    0% {
        transform: rotate(0)
    }

    3% {
        transform: rotate(10deg)
    }

    6% {
        transform: rotate(0)
    }

    9% {
        transform: rotate(-10deg)
    }

    12% {
        transform: rotate(0)
    }

    15% {
        transform: rotate(10deg)
    }

    18% {
        transform: rotate(0)
    }

    21% {
        transform: rotate(-10deg)
    }

    24% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(0)
    }
}

@keyframes callback-button-border {
    0% {
        width: 2.5em;
        height: 2.5em;
        opacity: 1
    }

    100% {
        width: 5em;
        height: 5em;
        opacity: 0
    }
}

@keyframes callback-button-border1 {
    0% {
        width: 2.5em;
        height: 2.5em;
        opacity: .3
    }

    100% {
        width: 5em;
        height: 5em;
        opacity: 0
    }
}

.callback-button__icon {
    background: url('data:image/svg+xml,<%3Fxml version="1.0" %3F><svg height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h48v48h-48z" fill="none"/><path fill="white" d="M13.25 21.59c2.88 5.66 7.51 10.29 13.18 13.17l4.4-4.41c.55-.55 1.34-.71 2.03-.49 1.24.74 4.65 1.14 7.14 1.14 1.11 0 2 .89 2 2v7c0 1.11-.89 2-2 2-18.78 0-34-15.22-34-34 0-1.11.9-2 2-2h7c1.11 0 2 .89 2 2 0 2.49.4 4.9 1.14 7.14.22.69.06 1.48-.49 2.03l-4.4 4.42z"/></svg>') center no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    background-size: 27px;
}

.cookies__wrapper {
    position: fixed;
    align-items: center;
    z-index: 4;
    bottom: 24px;
    max-width: 440px;
    left: 24px;
    width: fit-content;
    padding: 24px 32px;
    background: #fff;
    border-radius: 13px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.35); 
}

.cookies__btn {
    background: #005F7F;
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    color: #fff;
    border: none;
    width: 100%;
    align-items: center;
}

.cookies__text {
    max-width: 440px;
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.cookies__link {
    display: inline;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .cookies__text {
        max-width: unset;
    }

    .cookies__wrapper {
        width: 100%;
        max-width: unset;
        left: 0;
        bottom: 0;
        gap: 24px;
        padding: 24px 16px;
        flex-direction: column;
        box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.05);
    } 
}

.section-policy a {
    display: inline;
    text-decoration: underline;
}
.section-policy h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.section-policy h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
}
.section-policy p {
    margin-bottom: 15px;
    text-align: justify;
}
.section-policy ul {
    margin-bottom: 15px;
    padding-left: 20px;
}
.section-policy li {
    margin-bottom: 8px;
}
.section-policy .section {
    margin-bottom: 30px;
}

.footer_cb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}


@media (max-width: 1100px) {
    .footer_cb .btn {
        width: 100%;
    }
    .footer_cb {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
}

.side-badge {
    z-index: 10000;
    cursor: pointer;
    border-radius: 8px 0 0 8px;
    background: radial-gradient(318.21% 102.14% at 79.17% 92.5%, #C21B1D 0%, #FE4E33 100%);
    padding: 10px;
    position: fixed;
    right: 0;
    bottom: 20%;
    height: 320px;
    width: 60px;
}

.side-badge img {
    width: 114.21px;
    height: 123.708px;
    position: absolute;
    bottom: -18px;
    right: -16px;
}

.side-badge__text {
    transform: rotate(90deg);
    color: var(--white, #FFF);
    font-size: 16px;
    font-weight: 600;
    top: 120px;
    line-height: 140%;
    text-transform: uppercase;
    width: max-content;
    left: -105%;
    position: absolute;
    text-align: left;
}
.side-badge-image-modal {
    width: 560px;
    background-position: -16px;
}

.side-badge-desc {
    color: #5C5C5C;
    text-align: left;
}

.modal-offer-banner .stock-item__asset.side-badge-img {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    transform: none;
    top: 0 !important;
}

.side-badge__close svg {
    fill: #fff;
    width: 16px;
    height: 16px;
}

.side-badge__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -8px;
    top: -8px;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background: #000;
}

@media (max-width: 1100px) {
    .prize-draw__image.side-badge-image-modal {
        background-image: url("../img/side-badge-gift.png") !important;
        background-position: top;
        height: 240px;
        width: auto;
    }

    .side-badge img {
        width: 74.21px;
        height: 73.708px;
    }

    .side-badge {
        height: 200px;
        width: 32px;
    }

    .side-badge__text {
        font-size: 12px;
        top: 70px;
        left: -155%;
    }
}