.cart-chip {
    display: flex;
    gap: 10px;
    overflow-x: scroll;
}

.cart-chip::-webkit-scrollbar {
    display: none;
}

.cart-chip a {
    color: var(--Black-4, #9F9F9F);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.cart-chip a::after {
    content: '/';
    color: var(--Black-4, #9F9F9F) !important;
}

.cart-chip a:last-child::after {
    display: none;
}

.cart-chip_active {
    color: var(--Black-1, #000) !important;
}

.cart-row {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.cart-cont {
    max-width: 810px;
    width: 100%;
}

.cart-list-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cart-list-top label {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-list-top label input {
    display: none;
}

.cart-list-top label input[type="checkbox"]~span {
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #D9DFD6;
    background: var(--Background-Background, #F9FAF9);
    box-sizing: border-box;
    transition: 0.3s;
    position: relative;
    margin-top: -3px;
    display: flex;
}

.cart-list-top label input[type="checkbox"]~span::after {
    content: '';
    width: 11px;
    height: 11px;
    background-image: url(../img/catalog/gal.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s;
}

.cart-list-top label input[type="checkbox"]:checked~span {
    border-color: #37751B;
    background-color: #EDF3EA;
}

.cart-list-top label input[type="checkbox"]:checked~span::after {
    opacity: 1;
}

.cart-list-top-add {
    display: flex;
    gap: 12px;
}

.cart-list-top-add a {
    width: 20px;
    height: 20px;
}

.cart-list-top-add a img {
    width: 100%;
    height: 100%;
}

.cart-list-item {
    display: flex;
    padding: 16px;
    box-sizing: border-box;
    border-bottom: 1px solid #C9CAD3;
}

.cart-list-item label {
    margin-right: 10px;
}

.cart-list-item label input {
    display: none;
}

.cart-list-item label input[type="checkbox"]~span {
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #D9DFD6;
    background: var(--Background-Background, #F9FAF9);
    box-sizing: border-box;
    transition: 0.3s;
    position: relative;
    margin-top: -3px;
    display: flex;
}

.cart-list-item label input[type="checkbox"]~span::after {
    content: '';
    width: 11px;
    height: 11px;
    background-image: url(../img/catalog/gal.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s;
}

.cart-list-item label input[type="checkbox"]:checked~span {
    border-color: #37751B;
    background-color: #EDF3EA;
}

.cart-list-item label input[type="checkbox"]:checked~span::after {
    opacity: 1;
}

.cart-list-item-pic {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.03);
    margin-right: 24px;
}

.cart-list-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.cart-list-item-cont {
    display: flex;
    width: 100%;
}

.cart-list-item-main {
    display: flex;
    flex-direction: column;
    max-width: 320px;
}

.cart-list-item-main-code {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.06px;
    margin-bottom: 2px;
}

.cart-list-item-main-name {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.08px;
}

.cart-list-item-main-add {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.cart-list-item-main-add a {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: #F9FAF9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-list-item-main-add a img {
    width: 20px;
    height: 20px;
}

.cart-list-item-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.cart-list-item-price span {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: line-through;
}

.cart-list-item .card-side-count {
    margin-left: auto;
    height: 42px;
}

.cart-list-item .card-side-count-less, .cart-list-item .card-side-count-more {
    min-width: 38px;
    max-width: 38px;
    padding: 12px 6px;
}

.cart-list-item .card-side-count-num {
    width: 74px;
    height: 100%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 333px;
    width: 100%;
    height: fit-content;
    padding: 24px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 105px;
    box-sizing: border-box;
}

.cart-side-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
}

.cart-side-total span {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.cart-side-info {
    display: flex;
    flex-direction: column;
    gap: 8.5px;
    padding-bottom: 16px;
    border-bottom: 1px solid #C9CAD3;
}

.cart-side-info-good {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.07px;
}

.cart-side-info-good span {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
}

.cart-side-info-dis {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
}

.cart-side-info-dis span {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
}

.cart-side-info-btn {
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.09px;
    border-radius: 10px;
    background: var(--Brand-Green1, #37751B);
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-side-info-add {
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
    border-radius: 8px;
    background: var(--Brand-Green7, #EDF3EA);
    padding: 12px 20px;
    box-sizing: border-box;
}

.cart-side .card-info-block_review-form-check {
    font-size: 12px;
}

.cart-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.cart-form-block {
    border-radius: 16px;
    background: var(--Background-Background, #F9FAF9);
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.cart-form-title {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    letter-spacing: 0.08px;
}

.cart-form-del-row {
    margin-top: 16px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cart-form-del-item {
    width: calc(100% / 3 - 10.7px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: var(--White-1, #FFF);
    box-sizing: border-box;
    color: var(--Black-2, #6E6E6E);
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: auto;
    transition: 0.3s;
    cursor: pointer;
}

.cart-form-del-item:hover {
    border: 1px solid var(--Brand-Green1, #37751B);
    background: var(--Brand-Green7, #EDF3EA);
    color: var(--Black-1, #000);
}

.cart-form-del-item_active {
    border: 1px solid var(--Brand-Green1, #37751B);
    background: var(--Brand-Green7, #EDF3EA);
    color: var(--Black-1, #000);
}

.cart-form-del-title {
    color: inherit;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.07px;
}

.cart-form-del-text {
    color: inherit;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.cart-form-cont-type {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cart-form-cont-type label input {
    display: none;
}

.cart-form-cont-type-item {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    border-radius: 8px;
    background: var(--White-1, #FFF);
    box-sizing: border-box;
    border: 1px solid transparent;
    padding: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.cart-form-cont-type-item:hover {
    color: var(--Black-1, #000);
    border-radius: 8px;
    border: 1px solid var(--Brand-Green1, #37751B);
    background: var(--Brand-Green7, #EDF3EA);
}

.cart-form-cont-type label input:checked~.cart-form-cont-type-item {
    color: var(--Black-1, #000);
    border-radius: 8px;
    border: 1px solid var(--Brand-Green1, #37751B);
    background: var(--Brand-Green7, #EDF3EA);
}

.cart-form-cont-row {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cart-form-cont-row label {
    width: calc(100% / 3 - 8px);
    height: 60px;
    position: relative;
}

.cart-form-cont-row label span {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    position: absolute;
    top: -11.941px;
    left: 7px;
    border-radius: 4px;
    background: var(--Background-Background, #F9FAF9);
    padding: 2px 4px;
    box-sizing: border-box;
}

.cart-form-cont-row label input {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: var(--White-1, #FFF);
    box-sizing: border-box;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    padding: 17px 16px;
    box-sizing: border-box;
    transition: 0.3s;
}

.cart-form-cont-row label:hover input {
    border: 1px solid var(--Brand-Green1, #37751B);
}

.cart-form-cont-row label input:focus {
    border: 1px solid var(--Brand-Green1, #37751B);
}

.cart-form-cont-row label button {
    width: 20px;
    height: 20px;
    background-image: url(../img/cart/close.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 16px;
    opacity: 0.5;
}

.cart-form-cont-row label:hover button {
    opacity: 1;
}

.cart-form-cont-row label input:focus~button {
    opacity: 1;
}

.cart-form-pay-info {
    margin-top: 10px;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-form-pay-info::before {
    content: '';
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    background-image: url(../img/cart/alert.svg);
    background-size: 100% 100%;
    display: flex;
}

.cart-form-pay .cart-form-cont-type {
    margin-top: 16px;
    margin-bottom: 0;
}

.cart-form-pay .cart-form-cont-type-item {
    padding: 0 16px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-form-com label {
    width: 100%;
    height: 109px;
    position: relative;
    margin-top: 16px;
}

.cart-form-com label textarea {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: var(--White-1, #FFF);
    box-sizing: border-box;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    padding: 17px 16px;
    box-sizing: border-box;
    transition: 0.3s;
    resize: none;
    outline: 0;
}

.cart-form-com label span {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    position: absolute;
    top: -11.941px;
    left: 7px;
    border-radius: 4px;
    background: var(--Background-Background, #F9FAF9);
    padding: 2px 4px;
    box-sizing: border-box;
}

.cart-form-com label:hover textarea {
    border: 1px solid var(--Brand-Green1, #37751B);
}

.cart-form-com label textarea:focus {
    border: 1px solid var(--Brand-Green1, #37751B);
}

.cart-form-com label button {
    width: 20px;
    height: 20px;
    background-image: url(../img/cart/close.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 16px;
    margin: auto;
    right: 16px;
    opacity: 0.5;
}

.cart-form-com label:hover button {
    opacity: 1;
}

.cart-form-com label textarea:focus~button {
    opacity: 1;
}

.cart-form-adr .cart-form-cont-row label {
    max-width: 110px;
}

.cart-form-adr .cart-form-cont-row label:first-child {
    max-width: 428px;
    width: 100%;
}

.cart-list-item-num {
    display: none;
}

.cart-row_final .cart-list-item {
    padding-left: 0;
}

.cart-row_final .cart-list-item-num {
    display: flex;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.cart-row_final .card-side-count {
    display: none;
}

.cart-row_final .cart-list-item-price {
    margin-left: auto;
}

.cart-row_final label {
    display: none;
}

.cart-row_final .cart-list-item-main-add {
    display: none;
}

.cart-side_final {
    max-width: 449px;
}

.cart-side-block {
    padding-bottom: 24px;
    border-bottom: 1px solid #C9CAD3;
}

.cart-side-block-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cart-side-block-title {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.059px;
}

.cart-side-block-dow {
    width: 24px;
    height: 24px;
    background-image: url(../img/cart/download.svg);
    background-size: 100% 100%;
    display: flex;
}

.cart-side-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-side-block ul li {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    display: flex;
    align-items: center;
    gap: 48px;
}

.cart-side-block ul li span:first-child {
    max-width: 141px;
    width: 100%;
} 

.cart-side-block ul li span:last-child {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.cart-side-block_bold {
    color: #000;
    font-family: Montserrat;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 600 !important;
    line-height: normal;
}

.cart-side-block_grn {
    color: var(--Brand-Green1, #37751B) !important;
}

.cart-side-add {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-side-add div {
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
    padding: 12px 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

.cart-side-add-gr {
    background: var(--Brand-Green7, #EDF3EA);
}

.cart-side-add-or {
    background: var(--Brand-Orange7, #FAECDE);
}

.adr-main-row {
    display: flex;
    gap: 20px;
}

.adr-main-side {
    max-width: 392px;
    width: 100%;
    padding: 20px;
    padding-left: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.adr-main-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.adr-main-title {
    margin-bottom: 4px;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: 0.059px;
}

.adr-main-block span {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */   
}

.adr-main-block a {
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.adr-main-map {
    width: 100%;
    height: auto;
	min-height: 538px
}

.adr-main-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.adr-add {
    margin-top: 90px;
}

.adr-add-row {
    margin-top: 32px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    height: 600px;
}

.adr-add-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(75% / 2 - 13.4px);
    height: 100%;
}

.adr-add-col:first-child {
    width: calc(25% - 13.4px);
}

.adr-add-block {
    border-radius: 20px;
    background: var(--Background-Background, #F9FAF9);
    padding: 30px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: auto;
}

.adr-add-title {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.adr-add-block a {
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.adr-add-block span {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.adr-add-sd {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.adr-add-col:last-child .adr-add-sd {
    margin-bottom: 12px;
}

.adr-add-sd-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-top h1 {
    color: #000;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 30px;
}

.blog-top-pic {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 27px;
}

.blog-top-pic img {
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.blog-top-pic-source {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    width: 100%;
}

.blog-top-plash {
    color: #000;
    font-family: Montserrat;
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    line-height: 150%;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 16px;
    background: var(--Brand-Green7, #EDF3EA);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.blog-top-text {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.blog-step {
    margin-top: 60px;
}

.blog-step-title {
    align-self: stretch;
    color: #000;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 30px;
}

.blog-step-title_sub {
    color: #000;
    font-family: Montserrat;
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    line-height: 150%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.blog-step-title_sub::before {
    content: '';
    width: 4px;
    height: 33px;
    background-color: #37751B;
    display: flex;
    border-radius: 4px;
}

.blog-step-pic {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.blog-step-pic img {
    width: calc(100% / 2 - 10px);
    border-radius: 20px;
    object-fit: contain;
}

.blog-step-pic_side img:first-child {
    width: calc(60% - 10px);
}

.blog-step-pic_side img:nth-child(2) {
    width: calc(40% - 10px);
}

.blog-step-pic_three img {
    width: calc(100% / 3 - 13.4px);
}

.blog-step-pic_solo img {
    width: 100%;
}

.blog-top-text ul {
    padding-left: 30px;
    margin-top: 10px;
}

.main-new .main-advice-item {
    width: 500px;
    height: 450px;
    display: flex !important;
    margin: 0 15px;
}

.pay-row {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.pay-title {
    color: #000;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pay-title img {
    width: 28px;
    height: 28px;
}

.pay-text {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.pay-search {
    max-width: 665px;
    width: 100%;
    height: 50px;
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.pay-search input[type="text"] {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1.5px solid var(--Black-5, #C9CAD3);
    background: #FFF;
    padding: 16px;
    box-sizing: border-box;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pay-search input[type="submit"] {
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.09px;
    padding: 14px 28px;
    box-sizing: border-box;
    border-radius: 10px;
    background: var(--Brand-Green1, #37751B);
}

.pay-se {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 13px;
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.pay-se::after {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url(../img/pay/arrow.svg);
    background-size: 100% 100%;
    display: flex;
}

.pay-adr {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 13px;
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.pay-adr::after {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url(../img/pay/arrow.svg);
    background-size: 100% 100%;
    display: flex;
    transform: rotate(-90deg);
}

.pay-info-row {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.pay-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pay-info-col:first-child {
    width: calc(40% - 10px);
}

.pay-info-col:last-child {
    width: calc(60% - 10px);
}

.pay-info-block {
    padding: 30px 40px;
    box-sizing: border-box;
    border-radius: 20px;
    background: var(--Background-Background, #F9FAF9);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: -webkit-fill-available;
}

.pay-info-title {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
}

.pay-info-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pay-info-text p {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.pay-info-block a {
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.pay-info-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pay-info-block ul li {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    display: flex;
}

.pay-info-block ul li span:first-child {
    color: var(--Black-2, #6E6E6E);
    max-width: 150px;
    width: 100%;
    display: flex;
}

.pay-info-block ul li a {
    width: 16px;
    height: 16px;
    background-image: url(../img/card/copy.svg);
    background-size: 100% 100%;
    margin-left: auto;
}

.pay-add {
    margin-top: 90px;
}

.pay-add-row {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.pay-add-item {
    border-radius: 20px;
    background: var(--Background-Background, #F9FAF9);
    padding: 30px 40px;
    box-sizing: border-box;
    width: calc(100% / 2 - 10px);
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.about-banner {
    width: 100%;
    height: 500px;
    position: relative;
}

.about-banner .slick-list, .about-banner .slick-track {
    height: 100%;
}

.about-banner .slick-dots {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    list-style: none;
}

.about-banner .slick-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.3;
    font-size: 0;
    transition: 0.3s;
}

.about-banner .slick-dots .slick-active button {
    opacity: 1;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-block {
    margin-top: 60px;
}

.about-title {
    color: #000;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 20px;
}

.about-text {
    align-self: stretch;
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 20px;
}

.about-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-row-item {
    padding: 30px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 20px;
    background: var(--Background-Background, #F9FAF9);
    width: calc(100% / 2 - 10px);
}

.about-row-item-title {
    align-self: stretch;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.059px;
}

.about-row-item-text {
    align-self: stretch;
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-row-item a {
    align-self: stretch;
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    display: contents;
}

.about-row-link {
    padding: 24px;
    box-sizing: border-box;
    border-radius: 14px;
    background: var(--Background-Background, #F9FAF9);
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.08px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.about-row-link span {
    color: var(--Brand-Green1, #37751B);
}

.about-row-link::after {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url(../img/pay/arrow.svg);
    background-size: 100% 100%;
    display: flex;
    margin-left: 2px;
    transform: rotate(-90deg);
}

.about-row_serv .about-row-item {
    width: calc(40% - 10px);
}

.about-row_serv .about-row-item_long {
    width: calc(60% - 10px);
}

.about-row_three .about-row-item {
    width: calc(100% / 3 - 13.4px);
}

.about-block-add {
    margin-top: 90px;
}

.about-row_pay {
    gap: 10px;
}

.ofor-block .about-row_pay {
    margin-bottom: 20px;
}

.about-row_pay a {
    width: calc(100% / 4 - 7.5px);
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid var(--Black-5, #C9CAD3);
    padding: 12px;
    box-sizing: border-box;
}

.about-row_pay a img {
    width: 16px;
    height: 16px;
}

.catalog-cont-select_ofor {
    max-width: 850px;
    width: 100%;
    margin-bottom: 60px;
}

.catalog-cont-select_ofor .select-trigger {
    border-radius: 10px;
    border: 1.5px solid var(--Black-5, #C9CAD3);
    background: #FFF;
}

.catalog-cont-select_ofor .select-trigger::after {
    background-image: url(../img/about/arrow.svg);
    width: 18px;
    height: 18px;
}

.ofor-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-row_num .about-row-item {
    width: calc(100% / 3 - 13.4px);
    padding-left: 57px;
    position: relative;
}

.about-row_num .about-row-item span {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: 0.059px;
    position: absolute;
    top: 30px;
    left: 40px;
}

.about-row-item_hglt {
    background: var(--Brand-Green7, #EDF3EA) !important;
}

.ofor-text {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 20px;
}

.ofor-text a {
    color: var(--Brand-Green1, #37751B);
}

.ofor-rule {
    margin-top: 90px;
}

.about-row-col {
    width: calc(100% / 2 - 10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-row-col .about-row-item {
    width: 100%;
    height: 100%;
}

.about-row-item-list {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.about-row_a .about-row-item {
    width: calc(30% - 10px);
}

.about-row_a .about-row-item:first-child {
    width: 100%;
}

.about-row_a .about-row-item:last-child {
    width: calc(70% - 10px);
}

.about-row_del-price .about-row-item {
    /* width: calc(60% - 10px); */
}

.about-row_del-price .about-row-item:nth-child(1) {
    width: calc(60% - 10px);
}

.about-row_del-price .about-row-item:nth-child(2) {
    width: calc(40% - 10px);
}

.about-row_del-price .about-row-item:nth-child(3) {
    width: calc(25% - 13.4px);
}

.about-row_del-price .about-row-item:nth-child(4) {
    width: calc(50% - 13.4px);
}

.about-row_del-price .about-row-item:nth-child(5) {
    width: calc(25% - 13.4px);
}

.about-row_del-asd .about-row-item {
    width: calc(30% - 10px);
    padding-left: 40px;
}

.about-row_del-asd .about-row-item:nth-child(2n + 1) {
    width: calc(70% - 10px);
    padding-left: 57px;
}

.credit-pic {
    width: 100%;
}

.credit-pic img {
    width: 100%;
    object-fit: contain;
}

.credit-row {
    display: flex;
    gap: 20px;
}

.credit-row-s {
    padding: 24px;
    box-sizing: border-box;
    border-radius: 12px;
    background: var(--Background-Background, #F9FAF9);
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.credit-row-s:last-child {
    white-space: wrap;
}

.serv-row {
    display: flex;
    gap: 20px;
}

.serv-row-item {
    max-width: 250px;
    width: auto;
    border-radius: 20px;
    background: var(--Background-Background, #F9FAF9);
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.about-row_change {

}

.about-row_change .about-row-item:nth-child(1) {
    width: calc(40% - 10px);
    justify-content: space-between;
}

.about-row_change .about-row-item:nth-child(2) {
    width: calc(60% - 10px);
}

.about-row_change .about-row-item:nth-child(3) {
    width: 100%;
}

.about-arm {
    align-self: stretch;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 30px 40px;
    border-radius: 20px;
    background: var(--Brand-Orange7, #FAECDE);
    box-sizing: border-box;
}

.about-row_adv .about-row-item-text {
    font-weight: 500;
}

.about-row_adv .about-row-item:nth-child(1) {
    width: calc(25% - 13.4px);
}

.about-row_adv .about-row-item:nth-child(2) {
    width: calc(45% - 13.4px);
}

.about-row_adv .about-row-item:nth-child(3) {
    width: calc(30% - 13.4px);
}

.about-row_adv .about-row-item:nth-child(4) {
    width: calc(27% - 13.4px);
}

.about-row_adv .about-row-item:nth-child(5) {
    width: calc(33% - 13.4px);
}

.about-row_adv .about-row-item:nth-child(6) {
    width: calc(40% - 13.4px);
    background: var(--Brand-Green7, #EDF3EA);
}

.about-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-form-block {
    padding: 24px;
    box-sizing: border-box;
    border-radius: 16px;
    background: var(--Background-Background, #F9FAF9);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-form-title {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.08px;
    margin-bottom: 24px;
}

.about-form-block_text label {
    width: 100%;
    height: 109px;
}

.about-form label textarea {
    width: 100% !important;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: var(--White-1, #FFF);
    box-sizing: border-box;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    padding: 17px 16px;
    box-sizing: border-box;
    transition: 0.3s;
    resize: none;
    outline: 0;
}

.about-form label span {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    position: absolute;
    top: -11.941px;
    left: 7px;
    border-radius: 4px;
    background: var(--Background-Background, #F9FAF9);
    padding: 2px 4px;
    box-sizing: border-box;
}

.about-form label:hover textarea {
    border: 1px solid var(--Brand-Green1, #37751B);
}

.about-form label textarea:focus {
    border: 1px solid var(--Brand-Green1, #37751B);
}

.about-form-file {
    padding: 0 !important;
    border: 0 !important;
    background-color: transparent !important;
    width: auto !important;
    height: auto !important;
    margin-top: 16px;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.about-form-file span {
    width: 20px !important;
    height: 20px !important;
    background-image: url(../img/about/link.svg) !important;
    background-size: 100% 100% !important;
    display: flex !important;
    position: unset !important;
}

.about-form-file input {
    padding: 0 !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    display: none !important;
}

.about-form input[type="submit"] {
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.09px;
    max-width: 318px;
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: var(--Brand-Green1, #37751B);
    cursor: pointer;
}

@media (max-width: 1279px) {
    .cart-list-item-main {
        max-width: 220px;
    }

    .cart-list-item-price {
        margin-left: auto;
        margin-right: auto;
    }

    .cart-side {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 2;
        margin-top: auto;
        max-width: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 6px 21px;
    }

    .cart-side-total {
        display: none;
    }

    .cart-side-info {
        padding: 0;
        border: 0;
        gap: 8px;
    }

    .cart-side-info-good {
        font-size: 0;
        justify-content: flex-start;
    }

    .cart-side-info-good span {
        font-family: Montserrat;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .cart-side-info-dis {
        font-size: 0;
        justify-content: flex-start;
    }

    .cart-side-info-dis span {
        color: var(--Black-2, #6E6E6E);
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-decoration-line: line-through;
    }

    .cart-side-info-btn {
        max-width: 320px;
    }

    .cart-side .card-info-block_review-form-check {
        /* display: none; */
    }

	.cart-side-info-add {
		display: none;
	}

    .cart-side-info {
        order: 0;
    }

    .cart-side-info-add {
        order: 1;
        font-size: 0;
        padding: 0;
        width: 24px;
        height: 24px;
        background-image: url(../img/cart/alert-circle.svg);
        background-size: 100% 100%;
        margin-left: auto;
        margin-right: 0;
        background-color: transparent;
    }

    .cart-side-info-btn {
        order: 2;
    }

    .cart-row_final {
        flex-direction: column;
        gap: 95px;
    }

    .cart-side_final {
        position: unset;
        flex-direction: column;
        background-color: transparent;
        box-shadow: none;
    }

    .cart-side-block {
        width: 100%;
    }

    .cart-row_final .cart-list-item-num {
        display: none;
    }

    .cart-row_final .cart-list-item-price {
        margin-left: 0;
    }

    .adr-main-side {
        padding-right: 0;
        max-width: 298px;
    }

    .adr-add-row {
        height: auto;
    }

    .adr-add-col:first-child {
        width: calc(40% - 10px);
    }

    .adr-add-col:nth-child(2) {
        width: calc(60% - 10px);
    }

    .adr-add-col:last-child {
        width: 100%;
    }

    .pay-info-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .pay-info-col {
        width: 100% !important;
        flex-direction: row;
    }

    .pay-info-block {
        height: auto;
    }

    .pay-info-col:last-child .pay-info-block {
        width: 100% !important;
    }

    .about-row-item {
        padding: 24px;
    }

    .about-row_three .about-row-item {
        width: calc(100% / 2 - 10px);
    }

    .about-row_three .about-row-item:last-child {
        width: 100%;
    }

    .about-block-add .about-row_three .about-row-item:last-child {
        text-align: center;
    }

    .about-row_num .about-row-item {
        width: calc(50% - 10px);
        padding: 24px;
        padding-left: 45px;
    }

    .about-row_num .about-row-item:last-child {
        width: 100%;
    }

    .about-row_num .about-row-item span {
        left: 24px;
        top: 24px;
    }

    .about-row_a .about-row-item, .about-row_a .about-row-item:last-child {
        width: calc(50% - 10px);
        height: fit-content;
    }

    .about-row_del-price .about-row-item:nth-child(3) {
        width: calc(40% - 10px);
    }

    .about-row_del-price .about-row-item:nth-child(4) {
        width: calc(60% - 10px);
    }

    .about-row_del-price .about-row-item:nth-child(5) {
        width: 100%;
    }

    .about-row_del-asd .about-row-item {
        width: calc(40% - 10px) !important;
        padding-left: 24px !important;
    }
    
    .about-row_del-asd .about-row-item:nth-child(2n + 1) {
        width: calc(60% - 10px) !important;
        padding-left: 41px !important;
    }

    .credit-row {
        flex-wrap: wrap;
    }

    .credit-row-s {
        white-space: wrap;
    }

    .serv-row {
        flex-wrap: wrap;
    }

    .about-row_online .about-row-item {
        width: 100%;
    }

    .about-row_change .about-row-item {
        width: 100% !important;
    }

    .about-arm {
        padding: 24px;
    }

    .about-row_adv .about-row-item:nth-child(2n + 1) {
        width: calc(40% - 10px);
    }

    .about-row_adv .about-row-item:nth-child(2n + 2) {
        width: calc(60% - 10px);
    }

    .about-row_adv .about-row-item:nth-child(5), .about-row_adv .about-row-item:nth-child(6) {
        width: 100%;
    }

    .about-form .cart-form-cont-row label {
        width: calc(50% - 10px);
    }

    .about-form .cart-form-cont-row label:last-child {
        width: 100%;
    }

    .about-form-block_text label {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .cart-chip a {
        font-size: 14px;
    }

    .cart-list-item {
        /* flex-wrap: wrap; */
        padding: 16px 0;
        position: relative;
    }

    .cart-list-item-pic {
        min-width: 70px;
        max-width: 70px;
        margin-right: 10px;
    }

    .cart-list-item label {
        margin-right: 6px;
    }

    .cart-list-item-cont {
        flex-direction: column;
    }

    .cart-list-item-main-add {
        position: absolute;
        bottom: 16px;
        left: 0;
    }

    .cart-list-item-price {
        margin: 0;
        order: 0;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }

    .cart-list-item-main {
        order: 1;
    }

    .cart-list-item .card-side-count {
        margin: 0;
        order: 2;
        margin-top: 21px;
        margin-left: auto;
        height: 30px;
    }

    .cart-list-item-main-code {
        margin-bottom: 6px;
    }

    .cart-list-item-main-name {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 18px */
    }

    .cart-list-item .card-side-count-less, .cart-list-item .card-side-count-more {
        height: 30px;
        padding: 12px 6px;
    }

    .cart-list-item .card-side-count-num {
        height: 30px;
    }

    .cart-side {
        bottom: 55px;
        padding: 8px 20px;
        gap: 20px;
    }

    .cart-side-info-btn {
        /*max-width: 211px;*/
         max-width: 220px;
        width: fit-content;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%; /* 21px */
        height: 41px;
        padding: 10px 14px;
        box-sizing: border-box;
    }

    .cart-side-info-good span {
        font-size: 18px;
    }

    .cart-side-info-dis span {
        font-size: 12px;
    }

    .cart-form {
        margin-top: 56px;
        gap: 16px;
    }

    .cart-form-block {
        padding: 24px 20px;
    }

    .cart-form-del-item {
        width: 100%;
    }

    .cart-form-cont-row label {
        width: 100%;
    }

    .cart-form-cont-type label {
        width: 100%;
    }

    .cart-form-pay .cart-form-cont-type-item {
        justify-content: flex-start;
    }

    .cart-row_final {
        gap: 56px;
    }

    .cart-side_final {
        padding: 0;
    }

    .cart-side-block ul li {
        font-size: 16px;
    }

    .cart-side-block ul li span:last-child {
        font-size: 16px !important;
    }

    .cart-side-block_bold {
        font-size: 20px !important;
    }

    .adr-main-row {
        flex-direction: column-reverse;
        gap: 26px;
    }

    .adr-main-map {
        height: 450px;
		min-height: 0;
    }

    .adr-main-side {
        max-width: 100%;
    }

    .adr-add {
        margin-top: 56px;
    }

    .adr-add .container {
        padding: 0;
    }

    .adr-add-row {
        margin-top: 18px;
    }

    .adr-add-col {
        width: 100% !important;
    }

    .adr-add-block {
        padding: 24px 20px;
    }

    .blog-top h1 {
        font-size: 22px;
        text-align: left;
        margin-bottom: 18px;
    }

    .blog-top-pic {
        gap: 8px;
        margin-bottom: 24px;
    }

    .blog-top-pic img {
        height: 450px;
        object-fit: cover;
    }

    .blog-top-pic-source {
        font-size: 12px;
        order: 3;
    }

    .blog-top-plash {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .blog-top-text {
        font-size: 16px;
    }

    .blog-step {
        margin-top: 40px;
    }

    .blog-step-title {
        margin-bottom: 18px;
    }

    .blog-step-title_sub {
        font-size: 18px;
    }

    .blog-step-title_sub::before {
        height: 27px;
    }

    .blog-step-pic {
        gap: 12px;
        margin-bottom: 18px;
    }

    .blog-step-pic img {
        width: 100%;
        height: 300px !important;
    }
    
    .blog-step-pic_side img {
        width: 100% !important;
        object-fit: contain !important;
    }

    .blog-step-pic_side img:nth-child(1) {
        order: 1;
    }

    .blog-step-pic_side img:nth-child(2) {
        order: 0;
    }

    .main-new .main-advice-item {
        height: 350px;
        width: 269px;
        margin: 0 6px;
    }

    .pay-row {
        gap: 40px;
    }

    .pay-title {
        font-size: 18px;
        gap: 8px;
        margin-bottom: 12px;
    }

    .pay-title img {
        width: 22px;
        height: 22px;
    }

    .pay-search {
        flex-direction: column;
        height: auto;
    }

    .pay-search input[type="submit"] {
        font-size: 14px;
    }

    .pay-se {
        font-size: 14px;
    }

    .pay-info-row {
        gap: 12px;
    }

    .pay-info-col {
        flex-direction: column;
        gap: 12px;
    }

    .pay-info-block {
        padding: 24px 20px;
    }

    .pay-info-title {
        font-size: 16px;
    }

    .pay-info-block a {
        font-size: 16px;
    }

    .pay-info-block ul li {
        font-size: 14px;
    }

    .pay-info-block ul li span:first-child {
        max-width: 90px;
        width: 100%;
    }

    .pay-add {
        margin-top: 40px;
    }

    .pay-add-row {
        flex-direction: column;
        gap: 12px;
    }

    .pay-add-item {
        width: 100%;
        padding: 24px 20px;
        font-size: 16px;
        font-weight: 400;
    }

    .about-banner {
        height: 240px;
    }

    .about-block {
        margin-top: 40px;
    }

    .about-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .about-row-item {
        width: 100%;
        padding: 24px 20px;
        gap: 16px;
    }

    .about-row-item-title {
        font-size: 16px;
    }

    .pay-adr {
        font-size: 14px;
    }

    .about-row-link {
        width: 100%;
        padding: 24px;
        font-size: 16px;
        position: relative;
        display: block;
    }

    .about-row-link::after {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 24px;
        margin: auto;
    }

    .about-row {
        gap: 12px;
    }

    .about-row_serv .about-row-item {
        width: 100%;
    }

    .about-row_three .about-row-item {
        width: 100%;
    }

    .about-row-item a {
        font-size: 16px;
    }

    .about-block-add .about-row_three .about-row-item:last-child {
        text-align: left;
    }

    .about-row_pay {
        gap: 10px;
    }

    .about-row_pay a {
        width: calc(100% / 2 - 5px);
        font-size: 14px;
        gap: 6px;
    }

    .about-block-add {
        margin-top: 56px;
    }

    .catalog-cont-select_ofor {
        margin-bottom: 40px;
    }

    .catalog-cont-select_ofor .select-trigger {
        color: var(--Black-1, #000);
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
        width: 100%;
        height: auto;
        padding: 16px;
        align-items: center;
    }

    .catalog-cont-select_ofor .select-trigger::after {
        display: flex;
        min-width: 14px;
        max-width: 14px;
        height: 14px;
    }

    .about-row_num .about-row-item {
        width: 100%;
        padding: 24px 20px;
        padding-left: 37px;
    }

    .about-row_num .about-row-item span {
        font-size: 16px;
    }

    .ofor-rule {
        margin-top: 56px;
    }

    .ofor-text {
        font-size: 16px;
    }

    .about-row-col {
        width: 100%;
    }

    .about-row_a .about-row-item, .about-row_a .about-row-item:last-child {
        width: 100%;
    }

    .about-row_del-price .about-row-item {
        width: 100% !important;
    }

    .about-row_del-asd .about-row-item {
        width: 100% !important;
    }

    .about-row_del-asd .about-row-item:nth-child(2n + 1) {
        width: 100% !important;
    }

    .credit-row {
        gap: 13px;
    }

    .credit-row-s {
        max-width: none;
        width: 100%;
        justify-content: flex-start;
    }

    .serv-row {
        grid-area: 13px;
    }

    .serv-row-item {
        max-width: none;
        width: 100%;
        padding: 24px;
    }

    .about-row_adv .about-row-item {
        width: 100% !important;
    }

    .about-form .cart-form-cont-row label {
        width: 100%;
    }

    .about-form input[type="submit"] {
        width: 100%;
        font-size: 16px;
        max-width: none;
    }
}

@media (max-width: 1279px) {
	.cart-side {
		flex-wrap: wrap;
	}
	
	.cart-side-info {
		order: 1;
	}
	
	.cart-side-info-btn {
		order: 2;
		margin-right: 70px;
	}
	
	.card-info-block_review-form-check {
		order: 0;
		width: 100%;
	}

	.card-info-block_review-form-check-text {
		// font-size: 10px;
	}
	
	.card-info-block_review-form-check a {
		font-size: 12px;
	}
}