@media(max-width: 1024px) {
    .submain__products {
        width: calc(100% + 40px);
        overflow: hidden;
        padding-left: 20px;
        margin-left: -20px;
        padding-right: 20px;
    }
}

@media(min-width: 1024px) {
    .submain__products {
        overflow: hidden;
        width: calc(100% + 20px);
        padding-left: 20px;
        padding-right: 20px;
        overflow: hidden;
    }
}

.products__cards {
    padding-right: 10px;
}


.product__board {
    display: grid;
    grid-template-columns: auto 200px;
    column-gap: 12px;
    background: var(--white);
    box-shadow: 0px 0px 10px rgba(42, 42, 42, 0.1);
    border-radius: 10px;
    padding: 35px 24px 24px 24px;
    transition: transform 0.25s ease;
}

.product__board + .product__board {
    margin-top: 22px;
}

.product__board:hover {
    transform: translateY(-4px);
}

.product__board:last-child {
    margin-bottom: 30px;
}

@media (min-width: 700px) and (max-width: 900px), (min-width: 1024px) and (max-width: 1250px) {
    .product__board {
        grid-template-columns: auto 175px;
        padding: 35px 20px 24px;
    }
}

@media (min-width: 900px) and (max-width: 1024px) {
    .product__board {
        grid-template-columns: auto 185px;
        column-gap: 10px;
        padding: 35px 24px 24px 24px;
    }
}

@media (max-width: 700px) {
    .product__board {
        grid-template-columns: auto;
        padding: 30px 70px 40px 30px;
        row-gap: 30px;
    }
}

@media (max-width: 450px) {
    .product__board {
        column-gap: 10px;
        padding: 30px 12px 40px;
    }
}

.product__board--advantage {
    position: relative;
    padding: 63px 24px 24px 24px;
    /*box-shadow: 0px 21px 30px var(--black-opacity-0-01);*/
    border-radius: 10px;
}

@media (min-width: 700px) and (max-width: 900px), (min-width: 1024px) and (max-width: 1250px) {
    .product__board--advantage {
        grid-template-columns: auto 175px;
        padding: 63px 20px 24px;
    }
}

@media (max-width: 450px) {
    .product__board--advantage {
        column-gap: 10px;
        padding: 63px 20px 40px;
    }
}

.product__board--advantage-profitable {
    border: 3px solid var(--orange);
}
.product__board--advantage-mindocuments {
    border: 3px solid var(--blue);
}
.product__board--advantage-fast {
    border: 3px solid var(--muted-green);
}

.product-advantages {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.product-board__advantage + .product-board__advantage {
    margin-left: 10px;
}
.product-board__advantage:first-child {
    margin-left: 10px;
}
.product-board__advantage {
    padding: 9px 32px 7px 24px;
    border-radius: 0px 0px 20px 20px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    top: -1px;
    line-height: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    max-width: fit-content;
    white-space: nowrap;
}

@media (max-width: 450px) {
    .product-board__advantage {
        padding: 8px 16px 6px 16px;
    }
}

@media (max-width: 720px) {
    .product-board__advantage span {
        display: none !important;
    }
}

.product-board__advantage--profitable {
    background: var(--orange);
}

.product-board__advantage--mindocumets {
    background: var(--blue);
}

.product-board__advantage--fast {
    background: var(--muted-green);
}

.product-board__icon {
    margin-right: 8px;
    transform: translateY(-2px);
}

.product-board__content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-board__info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
}

@media (max-width: 700px) {
    .product-board__info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 'logo logo'
                             'price period';
        column-gap: 24px;
        align-items: start;
    }
}

@media (max-width: 450px) {
    .product-board__info {
        column-gap: 16px;
    }
}

.product-board__logo {
    max-width: 160px;
}

@media (max-width: 700px) {
    .product-board__link-logo {
        grid-area: logo;
    }
}

@media (min-width: 700px) and (max-width: 900px), (min-width: 1024px) and (max-width: 1250px) {
    .product-board__logo {
        max-width: 125px;
        align-self: flex-start;
    }
}

@media (max-width: 450px) {
    .product-board__logo {
        max-width: 135px;
    }
}

.product-board__price {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: start;
}
@media (max-width: 700px) {
    .product-board__price {
        grid-area: price;
        margin-top: 30px;
    }
}

.product-board__price-value {
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
    color: var(--deep-grey);
    white-space: nowrap;
    margin-top: 11px;
}

@media (max-width: 1250px) {
    .product-board__price-value {
        font-size: 15px;
    }
}

@media (max-width: 450px) {
    .product-board__price-value {
        font-size: 14px;
    }
}

.product-board__price-name {
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    color: var(--deep-grey);
    text-decoration: none;
    transition: color 0.25s ease;
}

.product-board__price-name:hover {
    color: var(--light-orange)
}

@media (max-width: 700px) {
    .product-board__price-name {
        font-size: 16px;
    }
}

.product-board__period {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: start;
}

@media (max-width: 700px) {
    .product-board__period {
        grid-area: period;
        margin-top: 30px;
    }
}

.product-board__rate {
    font-size: 16px;
    line-height: 20px;
    color: var(--deep-grey);
}
@media (max-width: 450px) {
    .product-board__rate {
        font-size: 14px;
    }
}
.product-board__rate--bold {
    font-weight: 600;
}

.product-board__term {
    margin-top: 15px;
}
@media (max-width: 450px) {
    .product-board__term {
        font-size: 14px;
    }
}
.product-board__term--bold {
    font-weight: 600;
}

.product-board__content-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    justify-items: center;
    gap: 8px;
}

@media (min-width: 700px) and (max-width: 900px), (min-width: 1024px) and (max-width: 1250px) {
    .product-board__content-tags {
        max-width: fit-content;
        margin-top: 20px;
        justify-items: start;
    }
}

@media (max-width: 700px) {
    .product-board__content-tags {
        display: flex;
        margin-top: 12px;
        flex-wrap: wrap;
    }
    .product-board__content-tag {
        margin-top: 8px;
    }
}


.product-board__content-tag {
    background: var(--white);
    border-radius: 5px;
    font-size: 12px;
    line-height: 15px;
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 8px 10px;
    white-space: nowrap;
    opacity: 0.8;
    transition: color 0.25s ease, border 0.25s ease, background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.product-board__content-tag:hover {
    border: 1px solid var(--orange);
    background: var(--light-orange);
    color: var(--white);
    opacity: 1;
    transform: translateY(-3px);
}

.product-board__getmoney-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.product-board-getmoney__button {
    background: var(--orange);
    border: 1px solid var(--orange);
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    padding: 12px 20px;
    margin-bottom: 10px;
    transition: background 0.25s ease, color 0.25s ease;
    text-align: center;
}
@media (min-width: 700px) and (max-width: 900px), (min-width: 1024px) and (max-width: 1250px) {
    .product-board-getmoney__button {
        padding: 10px 15px;
    }
}
.product-board-getmoney__button:hover {
    background: var(--white);
    color: var(--orange);
}

.product-board-getmoney__title {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: var(--deep-grey);
    margin: 0;
    margin-top: 15px;
}

.product-board__getmoney-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.product-board__getmoney-way {
    font-size: 14px;
    margin-top: 6px;
    margin-right: 12px;
}

.submain-products__header {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.submain-products__links-slider {
    margin-top: 25px;
    margin-bottom: 25px;
}

.submain-products__h1 {
    font-size: 32px;
    padding: 0;
}

@media (max-width: 1024px) {
    .submain-products__h1 {
        order: -1;
        font-size: 28px;
    }
}
@media (max-width: 460px) {
    .submain-products__h1 {
        font-size: 22px;
    }
}
@media (max-width: 1024px) {
    .submain-products__links-slider {
        margin-bottom: 17px;
    }
}

/*buttons*/


.sort__buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.sort__button,
.sort__block {
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #000000;
    opacity: 0.65;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin: 5px 4px;
    background: var(--white);
}

.sort__block {
    width: fit-content;
    cursor: default;
}

@media (max-width: 720px) {
    .sort__block {
        margin-top: 20px;
    }
}

@media (max-width: 420px) {
    .sort__button {
        font-size: 14px;
        padding: 10px 8px;
    }
}

.sort__button:hover,
.sort__button--active {
    border-color: #FFA800;
}

.sort__button::after {
    content: url(/mfo/assets/icons/sort.svg);
    margin-left: 5px;
    transition: filter 0.25s ease, transform 0.15s ease;
}

.sort__button--asc::after {
    /*content: url(/mfo/assets/icons/sort.svg);*/
    /*margin-left: 8px;*/
    display: inline-block;
    transform: rotate(180deg) translateY(3px);
}

.sort__button--active::after {
    filter: invert(61%) sepia(91%) saturate(1547%) hue-rotate(
        1deg) brightness(104%) contrast(106%);
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 33px;
}

button.button--width-standart {
    width: fit-content;
}

@media (max-width: 460px) {
    button.button--width-standart {
        width: 100%;
        padding: 10px 25px;
    }
}

.products__last-update {
    font-size: 16px;
    font-weight: 600;
    grid-column: 1/2;
}

.products__counter {
    font-size: 16px;
    font-weight: 600;
    grid-column: 3/4;
}

@media (max-width: 768px) {
    .products__last-update,
    .products__counter{
        display: none;
    }
}

.button-container__inner {
    display: flex;
    justify-content: center;
    align-items: center;
}


/*reviews*/

.submain-products__product-reviews {
    margin-top: 90px;
}

.product-reviews__title {
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    color: var(--deep-grey);
    text-align: center;
    margin: 0 0 30px;
    text-align: center;
}

@media (max-width: 576px) {
    .product-reviews__title {
        font-size: 22px;
    }
}

.fast-offers {
    margin-bottom: 100px;
}

.fast-offers__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .fast-offers__title {
        font-size: 24px;
        font-weight: 700;
    }
}

.fast-offers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .fast-offers__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 460px) {
    .fast-offers__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

@media (max-width: 375px) {
    .fast-offers__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.fast-offer__link {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 40px;
    text-decoration: none;
    color: #000;
    box-shadow: 0px 0px 16px rgb(40 40 40 / 12%);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.25s ease;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 768px) {
    .fast-offer__link:last-child {
        position: relative;
        left: 50%;
    }
}

@media (max-width: 460px) {
    .fast-offer__link {
        padding: 15px 7px;
        font-size: 16px;
    }
    .fast-offer__link:last-child {
        grid-column: 1/-1;
        left: 0%;
    }
}

.fast-offer__link:hover {
    transform: translateY(-4px);
}

.best-products + .sidebar-inner {
    margin-top: 20px;
}


.best-products {
    background: #fff;
    width: 100%;
    padding: 30px 0;
    box-shadow: 0px 0px 12px rgb(40 40 40 / 8%);
    border-radius: 12px;
    margin-top: 20px;
    padding-bottom: 10px;
}

.best-products__title {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 0 20px;
}

.best-products__slider {
    padding: 10px 9px 45px 9px;
}

@media (min-width: 768px) {
    .best-products__slider .swiper-pagination {
        transform: translateX(-132px) !important;
    }
}

@media (max-width: 768px) {
    .best-products__title {
        font-size: 20px;
    }
}

@media (max-width: 460px) {
    .best-products__title {
        font-size: 18px;
    }
}

.best-product {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    text-decoration: none;
    color: #000;
    box-shadow: 0px 0px 5px rgb(40 40 40 / 15%);
    border-radius: 12px;
    transition: transform 0.25s ease;
    cursor: pointer;
}

.best-product:hover {
    transform: translateY(-4px);
}

.best-product--mobile, .best-product--desktop {
    display: none;
}
@media (max-width: 768px) {
    .best-product--mobile {
        display: block;
    }
}
@media (min-width: 768px) {
    .best-product--desktop {
        display: block;
        height: 70px;
        padding-top: 10px;
        padding-left: 9px;
    }
}
.best-products__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.best-product__img {
    max-width: 100px;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.best-product:hover .best-product__img {
    transform: scale(1.1);
}


/*Organization table*/

.compare-mfo {
    margin-top: 100px;
    margin-bottom: 50px;
}

.comparemfo__title {
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    color: var(--deep-grey);
    text-align: center;
}

.compareinfo__search-wrapper {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.compareinfo__search-label {
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    margin-right: 16px;
    display: inline-block;
    width: min-content;
}

.compareinfo__search {
    max-width: 200px;
    font-size: 16px;
    padding: 6px 4px;
}

@media (max-width: 768px) {
    .compareinfo__search {
        max-width: 100%;
        display: block;
        width: 100%;
        margin-right: 0;
    }
}

.comparemfo__table {
    width: 100%;
    margin-top: 15px;
    border-collapse: separate;
    border-spacing: 0 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.comparemfo__thead {
    display: block;
    max-width: 100%;
    width: 100%;
}

.comparemfo__th {
    padding: 11px 0px;
    max-width: 100%;
    margin-right: 5px;
}
.comparemfo__th--inner {
    display: flex;
    align-items: center;
    background: var(--white);
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.comparemfo__th-text {
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    white-space: nowrap;
    transform: translateY(-2px);
}

.comparemfo__th-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.comparemfo__sort-btn {
    background: inherit;
    border: none;
    opacity: 0.65;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.comparemfo__sort-btn--active {
    opacity: 1;
    transform: scale(1.4);
}

.comparemfo__tbody {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.comparemfo__tr {
    background: #FFFFFF;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 15%);
    border-radius: 20px;
    transition: transform 0.25s ease;
    display: grid;
    grid-template-columns: repeat(5, 20%);
}
@media (max-width: 768px) {
    .comparemfo__tr {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: 'comparemfo__td-1 comparemfo__td-1 comparemfo__td-1'
                             'comparemfo__td-2 comparemfo__td-2 comparemfo__td-2'
                             'comparemfo__td-3 comparemfo__td-4 comparemfo__td-5';
    }
    .compare-kredity .comparemfo__tr,
    .compare-ipoteki .comparemfo__tr{
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-areas: 'comparemfo__td-1 comparemfo__td-1 comparemfo__td-1 comparemfo__td-1'
                             'comparemfo__td-2 comparemfo__td-2 comparemfo__td-2 comparemfo__td-2'
                             'comparemfo__td-4 comparemfo__td-4 comparemfo__td-4 comparemfo__td-4'
                             'comparemfo__td-3 comparemfo__td-3 comparemfo__td-5 comparemfo__td-5';
    }
}

.comparemfo__tr:hover {
    transform: translateY(-4px);
}

.comparemfo__td {
    color: var(--black);
    align-self: center;
    text-align: center;
    padding: 15px 3px;
    font-weight: bold;
    font-size: 15px;
    line-height: 22px;
}

.comparemfo__td:first-child {
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.comparemfo__td:last-child {
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

.comparemfo__td-1 {
    padding: 15px 0px 15px 30px;
}

.comparemfo__td--mobile {
    display: none;
}

.comparemfo__td-name {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: var(--black);
    opacity: 0.35;
}
.comparemfo__td-value {

}

@media (max-width: 768px) {
    .comparemfo__td--desktop {
        display: none;
    }
    .comparemfo__td--mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .comparemfo__td {
        padding: 0px 20px;
        text-align: left;
        font-weight: bold;
        font-size: 20px;
        line-height: 20px;
        color: var(--black);
    }
    .comparemfo__td-1 {
        grid-area: comparemfo__td-1;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .comparemfo__td-2 {
        grid-area: comparemfo__td-2;
        padding-bottom: 20px;
    }
    .comparemfo__td-3 {
        grid-area: comparemfo__td-3;
        padding-bottom: 20px;
    }
    .comparemfo__td-4 {
        grid-area: comparemfo__td-4;
        padding-bottom: 20px;
    }
    .comparemfo__td-5 {
        grid-area: comparemfo__td-5;
        padding-bottom: 20px;
    }
}

@media (max-width: 568px) {
    .comparemfo__td {
        padding: 0px 5px 10px;
        font-size: 15px;
    }
    .comparemfo__td-3,
    .comparemfo__td-4,
    .comparemfo__td-5 {
        padding-bottom: 10px;
    }
    .comparemfo__td-1 {
        padding-top: 12px;
    }
    .compare-kredity .comparemfo__td-4,
    .compare-ipoteki .comparemfo__td-4,
    .comparemfo__td-3,
    .comparemfo__td-2,
    .comparemfo__td-1 {
        padding-left: 20px;
    }
    .comparemfo__td-2,
    .comparemfo__td-5 {
        padding-right: 20px;
    }
}

@media (max-width: 420px) {
    .comparemfo__td {
        font-size: 14px;
    }
    .comparemfo__tr {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-areas: 'comparemfo__td-1 comparemfo__td-1 comparemfo__td-1 comparemfo__td-1'
                             'comparemfo__td-2 comparemfo__td-2 comparemfo__td-5 comparemfo__td-5'
                             'comparemfo__td-3 comparemfo__td-3 comparemfo__td-4 comparemfo__td-4';
    }
    .compare-kredity .comparemfo__tr,
    .compare-ipoteki .comparemfo__tr{
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-areas: 'comparemfo__td-1 comparemfo__td-1 comparemfo__td-1 comparemfo__td-1'
                             'comparemfo__td-2 comparemfo__td-2 comparemfo__td-2 comparemfo__td-2'
                             'comparemfo__td-4 comparemfo__td-4 comparemfo__td-4 comparemfo__td-4'
                             'comparemfo__td-3 comparemfo__td-3 comparemfo__td-5 comparemfo__td-5';
    }
}

.comparemfo__td:nth-of-type(1) {
    text-align: start;
}

.comparemfo__pagination-wrapper {
    display: flex;
    margin-top: 30px;
}

.comparemfo__counter {
    font-size: 16px;
    line-height: 20px;
    color: var(--dark-grey);
    margin: 0;
}

.comparemfo__pagination {
    display: block;
    margin: 0 auto;
    position: relative;
    left: -100px;
}

@media (max-width: 1200px) {
    .comparemfo__counter {
        display: none;
    }
    .comparemfo__pagination {
        left: 0;
    }
}

.comparemfo-pagination__btn {
    border-radius: 50%;
    border: none;
    width: 26px;
    height: 26px;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    color: var(--dark-grey);
    background: inherit;
    margin-right: 24px;
    transition: background 0.25s ease, color 0.25s ease;
}
@media (max-width: 576px) {
    .comparemfo-pagination__btn {
        font-size: 14px;
        width: 20px;
        height: 20px;
        margin-right: 16px;
    }
}

.comparemfo-pagination__btn:hover
{
    background: rgba(255, 168, 0, 0.65);
    color: rgba(255, 255, 255, 0.76);
}

.comparemfo-pagination__btn:last-child {
    margin-right: 0;
}

.comparemfo-pagination__btn--active {
    background: var(--orange);
    color: var(--white);
}

.comparemfo-pagination__prev {
    width: fit-content;
    border-radius: 0%;
    text-decoration: underline;
}

.comparemfo-pagination__next {
    width: fit-content;
    border-radius: 0%;
    text-decoration: underline;
}

.comparemfo__link {
    text-decoration: none;
    color: var(--black);
}

.pagination-table__table-row {
    display: grid;
}

pagination__nav {
    display: flex;
    align-items: center;
    justify-content: center;
}








.product__feedback {
    /*background-image: url(/mfo/assets/images/atol-feedback.jpg);*/
    background: var(--orange);
    background-size: cover;
    background-position: center;
    min-height: 215px;
    width: 100%;
    margin: 22px 0;
    position: relative;
}

.product-feedback__image {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 90%;
    z-index: 1;
}

@media (min-width: 700px) and (max-width: 900px), (min-width: 1024px) and (max-width: 1250px) {
    .product-feedback__image {
        height: 70%;
    }
}

@media (min-width: 460px) and (max-width: 700px) {
    .product-feedback__image {
        height: 55%;
    }
}

@media (max-width: 700px) {
    .product__feedback {
        min-height: 257px;
    }
}

@media (max-width: 460px) {
    .product__feedback {
        height: 420px;
    }
    .product-feedback__image {
        height: 40%;
    }
}

.product-feedback__content {
    padding: 30px;
    max-width: 75%;
    position: relative;
    z-index: 2;
}

@media (min-width: 700px) and (max-width: 900px), (min-width: 1024px) and (max-width: 1250px) {
    .product-feedback__content {
        max-width: 65%;
    }
}

@media (max-width: 700px) {
    .product-feedback__content {
        max-width: 80%;
    }
}

@media (max-width: 460px) {
    .product-feedback__content {
        padding: 30px 15px;
        max-width: 100%;
    }
}

.product-feedback__title {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    margin: 0;
    color: var(--white);
}

@media (max-width: 460px) {
    .product-feedback__title {
        font-size: 20px;
        line-height: 25px;
    }
}

.product-feedback__text {
    font-size: 16px;
    line-height: 20px;
    color: var(--white);
    margin: 0;
    margin-top: 10px;
}

@media (max-width: 460px) {
    .product-feedback__form {
        min-width: 120px;
        width: 55%;
    }
}


.product-feedback__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 8px;
    row-gap: 10px;
    margin-top: 10px;
}

@media (max-width: 700px) {
    .product-feedback__wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 460px) {
    .product-feedback__wrapper {
        grid-template-columns: 1fr;
    }
}

.product-feedback__input {
    background: var(--white);
    border-radius: 4px;
    padding: 7px 8px;
    font-size: 14px;
    line-height: 18px;
    color: var(--faded-grey);
    border: none;
    outline: none;
}

.product-feedback__button {
    background: var(--sapphire);
    border-radius: 4px;
    padding: 7px 44px;
    font-size: 14px;
    line-height: 18px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sapphire);
    cursor: pointer;
    transition: background 0.25s linear, color 0.25s linear;
}

.product-feedback__button:hover {
    background: var(--white);
    color: var(--sapphire);
}

.product__agreement-wrapper {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.product-agreement__link {
    color: var(--white);
}

.product-agreement__label a {
    text-decoration: underline;
}

.product-agreement__label a:hover {
    color: var(--white);
}

.product__agreement+label {
    display: inline-flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 18px;
    color: var(--white);
}
.product__agreement+label::before {
    content: '';
    display: inline-block;
    min-width: 14px;
    min-height: 14px;
    border: 1px solid #ddd;
    border-radius: 2px;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.product__agreement:checked+label::before {
    border-color: var(--muted-green);
    background-color: var(--muted-green);
    background-image: url(/mfo/assets/icons/done.svg);
}

.product__banner {
    background-image: url(/mfo/assets/images/atol-banner.svg);
    background-size: cover;
    background-position: center;
    min-height: 191px;
    width: 100%;
    margin: 22px 0;
}

@media (max-width: 450px) {
    .product__banner {
        background-image: url(/mfo/assets/images/atol-banner--mob.svg);
        height: 352px;
    }
}

.product-banner__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 40px 30px;
}

@media (max-width: 450px) {
    .product-banner__content {
        padding: 27px 29px;
    }
}

.product-banner__title {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: var(--black);
    margin: 0;
}

@media (max-width: 450px) {
    .product-banner__title {
        font-size: 20px;
        line-height: 25px;
    }
}

.product-banner__text {
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    margin: 6px 0 33px;
}

@media (max-width: 450px) {
    .product-banner__text {
        font-size: 16px;
        line-height: 20px;
    }
}

.product-banner__button {
    margin-top: 33px;
    max-width: 200px;
}

.product__agreement {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

a.button--width-fit {
    width: fit-content;
}
button.button--width-fit {
    width: fit-content;
}

.comparemfo__img {
    max-width: 100px;
}

.products__card-calc {
    padding: 24px 20px 15px;
    background: var(--white);
    box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 31px;
}

@media (min-width: 1024px) {
    .products__card-calc .credit-calculator-info {
        display: none;
    }
    .products__card-calc .credit-calculator__field {
        margin-top: 20px;
    }
}

.credit-calculator__atol-form {
    width: 100%;
    margin: 15px 0;
}

.credit-calculator__atol-input#calculator-input-sum {
    width: 6.75em;
}

.credit-calculator__atol-result {
    max-width: 250px;
}

.atol__text-info {
    margin-top: 55px;
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
}

.atol__info-block + .atol__info-block {
    margin-top: 38px;
}

.atol-info__title {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 19px;
}

.atol-info__paragraph + .atol-info__paragraph {
    margin-top: 10px;
}

.atol-info__list +.atol-info__paragraph {
    margin-top: 5px;
}

.atol-info__list {
    margin: 0;
}

.atol-info-list__item {
    list-style-position: inside;
}

.atol-info-list__item {
    margin-bottom: 0px;
}

.background-zaymi {
    background: #f4f5f8;
}

.zaymi__fast-info {
    margin-top: 90px;
}

.zaymi-fast-info__inner {
    padding: 20px 30px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 21px 100px rgb(0 0 0 / 13%);
}

@media (max-width: 420px) {
    .zaymi-fast-info__title {
        font-size: 18px;
    }
}


.zaymi-fast-info__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: start;
    column-gap: 10px;
    margin: 30px 0;
}

@media (max-width: 1024px) {
    .zaymi-fast-info__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .zaymi-fast-info__links {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

.zaymi-fast-info__article-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.zaymi-fast-info__article-link:hover p {
    color: var(--orange);
}

.zaymi-fast-info__article-link p {
    margin-left: 8px;
    color: var(--black);
    transition: color 0.25s ease;
}

.zaymi-fast-info__article-img {
    max-width: 64px;
}

@media (max-width: 420px) {
    .zaymi-fast-info__article-img {
        max-width: 48px;
    }
    .zaymi-fast-info__link {
        font-size: 14px;
    }
}

.zaymi-fast-info__link-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 10px;
}

.rating-offers {
    margin-top: 90px;
}

.rating-offers__inner {
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 21px 100px rgb(0 0 0 / 13%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .rating-offers__inner {
        display: grid;
        grid-template-columns: 7fr 3fr;
        padding: 25px 12px;
        gap: 20px;
    }
}

.rating-offers__info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-offers__description {
    margin-left: 8px;
}

.rating-offers__title {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .rating-offers__title {
        font-size: 18px;
    }

    .rating-offers__text {
        font-size: 14px;
    }
}


.rating-offers__likes {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
    transform: scale(1.25);
}

.rating-offers__likes--secondary {
    display: flex;
}

.rating-offers__like-wrapper {
    display: flex;
    align-items: center;
}

.rating-offers__like {
    outline: none;
    background: inherit;
    border: none;
    cursor: pointer;
}

.rating-offers__like svg path {
    transition: fill 0.25s ease;
}

.rating-offers__like--active svg path {
    fill: var(--light-orange);
}

.rating-offers__like-digital {
    margin-left: 4px;
}

.rating-offers__like:hover svg path {
    fill: var(--light-orange);
}

.rating-offers__like-separator {
    height: 24px;
    width: 2px;
    background: var(--grey);
    margin: 0 8px;
}

@media (max-width: 576px) {
    .rating-offers__likes {
        transform: scale(1.0);
    }
    .rubl-in-hand {
        display: none;
    }
    .rating-offers__likes {
        margin-right: 0;
        margin-left: 12px;
    }
}

.rubl-in-hand {
    transform: scaleY(1.2);
}

