/*Utils*/
.h-100 {
    height: 100%;
}

.btn {
    line-height: 1.42;
    border-radius: 4px;
}

.btn[disabled] {
    opacity: .3;
    pointer-events: none;
}

.text-box {
    color: #525559;
}

.text-box h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #525559;
    margin: 0 0 16px;
}

.text-box ul {
    list-style-type: none;
    padding-left: 28px;
    margin-bottom: 16px;
}

.text-box ul li {
    margin-bottom: 10px;
    position: relative;
}

.text-box ul li:last-child {
    margin-bottom: 0;
}

.text-box ul li::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url('/static/projects/mylocal.md/dist/images/check-round-fill.svg') center center /contain no-repeat;
    position: absolute;
    top: 2px;
    left: -28px;
}

.breadcrumbs-container {
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.breadcrumbs {
    overflow-y: hidden;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.social-responsibility__pagination-link.active {
    background-color: #42AE47;
    color: #fff;
}

@media(min-width:1200px) {
    .text-box h1 {
        font-size: 56px;
        margin-bottom: 20px;
    }
}

/*Modal*/
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 19, 19, 0.65);
    z-index: 1040;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-dialog {
    max-width: 768px;
    width: 90%;
    max-height: 80vh;
}

.modal-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 80vh;
}

.modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.modal-header,
.modal-body {
    padding: 1rem;
}

.modal-body {
    overflow-y: auto;
    flex-grow: 1;
    min-height: 0;
}

.modal-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #525559;
    text-align: center;
    margin: 0;
}

.btn-close {
    display: flex;
    width: 45px;
    height: 45px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 100%;
}


.offcanvas-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(83, 81, 81, 0.61);
    z-index: 1060;
}

.offcanvas {
    display: flex;
    flex-direction: column;
    width: 700px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1070;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: visibility .3s, opacity .3s ease-in-out, transform .3s ease-in-out;
}

.offcanvas.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.offcanvas_header {
    border-bottom: 1px solid #CACACA;
    padding: 12px;
}

.offcanvas_header .btn-close {
    width: 42px;
    height: 42px;
    position: static;
}

.offcanvas_body {
    flex-grow: 1;
    min-height: 0;
    padding: 20px;
    overflow-y: auto;
}

.offcanvas_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #525559;
    text-align: center;
    margin: 0 0 10px
}

.offcanvas_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    color: #525559;
}

.offcanvas_body .login-container_form {
    border: none;
    background: transparent;
    max-width: 472px;
    padding: 0;
    margin: 0 auto;
}

.offcanvas_footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #EDF2EE;
    padding: 16px;
}

.offcanvas_footer>* {
    max-width: 472px;
}

.offcanvas_footer p {
    line-height: 1.2;
    color: #525559;
    text-align: center;
}

.offcanvas_footer p strong {
    font-weight: 400;
    color: #42AE47;
}

@media(min-width:1200px) {

    .modal-header,
    .modal-body {
        padding: 1.25rem;
    }

    .modal-title {
        font-size: 36px;
    }

    .offcanvas_header {
        padding: 20px;
    }

    .offcanvas_title {
        font-size: 32px;
    }

    .offcanvas_footer {
        padding: 30px;
    }

    .offcanvas_footer p {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/*Header*/
.search_form {
    border-radius: 4px;
}

.search-btn {
    border: none;
    outline: none;
    background: transparent;
    width: 100px;
    height: 100%;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.header-actions_link span {
    padding-left: 6px;
}

.header-actions_link .cart-count {
    z-index: 1;
}

.header-actions_icon {
    background: #525559 !important;
    -webkit-mask: var(--svg) center center / contain no-repeat;
    mask: var(--svg) center center / contain no-repeat;
    margin-bottom: 0;
    position: relative;
}

.header-actions_icon.user {
    --svg: url("/static/projects/mylocal.md/dist/images/ui/user-4.svg");
}

.header-actions_icon.wishlist {
    --svg: url("/static/projects/mylocal.md/dist/images/ui/map-pin.svg");
}

.header-actions_icon.cart {
    --svg: url("/static/projects/mylocal.md/dist/images/ui/cart-outline.svg");
}

.header-actions_icon.shops {
    --svg: url("/static/projects/mylocal.md/dist/images/ui/shops.svg");
}

.header-actions_icon.local_card {
    --svg: url("/static/projects/mylocal.md/dist/images/ui/local-card.svg");
}

.header-actions_icon.booklets {
    --svg: url("/static/projects/mylocal.md/dist/images/ui/booklets.svg");
}

.local_card+span {
    color: inherit !important;
}

.header-actions_link.active {
    color: #42ae47;
    text-decoration: none;
}

.header-actions_link.active .header-actions_icon {
    background: #42ae47 !important;
}

@media (min-width: 1500px) {
    .logo {
        width: 260px;
    }
}

/**Home*/
.hero {
    padding: 0;
    margin-bottom: 30px;
}

.hero-swiper_item img {
    border-radius: 0;
    max-height: 624px;
}

@media (max-width: 768px) {
    .hero-swiper_item-bonmark-mobile {
        object-position: center;
    }
}

@media (max-width: 480px) {
    .hero-swiper_item-bonmark-mobile {
        object-position: right;
    }
}

.hero-swiper {
    border-radius: 0;
}

.icon-wrapper.icon-card {
    background: #EDF2EE;
}

.icon-card:before {
    background-image: url('/static/projects/mylocal.md/dist/images/ui/my-local-card_green.svg');
}

.brands-section .swiper-slide a {
    pointer-events: none;
}

.blog__slide {
    height: auto;
}

.marks__link,
.marks__img,
.brand-link {
    border-radius: 4px;
}

.features-front .icon-wrapper {
    width: 36px;
    height: 36px;
}

.features-front .icon-wrapper::before {
    width: 50%;
    height: 50%;
}

.features-front .text-block {
    color: #525559;
}

.features-front .text-block h4 {
    font-size: 16px;
    line-height: 1.5;
}

@media(min-width:1200px) {
    .features-front .icon-wrapper {
        width: 72px;
        height: 72px;
    }

    .features-front .text-block h4 {
        font-size: 20px;
    }

    .features-front p.small {
        font-size: 14px !important;
    }
}

/*Stores*/
.page-search_input,
.map-store_box {
    border-radius: 4px;
}

.map-store_box.active {
    background-color: #EDF2EE;
}

.map-store_btn {
    margin-top: auto;
    border-radius: 4px;
    background-color: #42ae47;
    display: inline-block;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    font-size: 16px;
    font-family: 'C-Grotesk-Bold';
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.map-wrapper {
    height: 100%;
    min-height: 400px;
}

.stores-single iframe {
    width: 100%;
    height: 360px;
}

.stores-single_sidebar {
    background-color: #EDF2EE;
    border-radius: 4px;
    overflow: hidden;
}

.stores-single_sidebar img {
    border-radius: 4px;
}

.stores-single_sidebar h4,
.stores-single_sidebar h5 {
    font-weight: 700;
    font-size: 18px;
    color: #525559;
    margin: 0;
}

.stores-single_sidebar h5 {
    font-size: 16px;
}

.stores-single_sidebar ul li {
    color: #525559;
    border-top: 1px solid #D0CDCD;
}

.stores-single_sidebar-contact {
    color: #525559;
}

@media(min-width:1200px) {
    .stores-single iframe {
        height: 677px;
    }

    .stores-single_sidebar {
        max-width: 420px;
    }

    .stores-single_sidebar h4 {
        font-size: 24px;
    }

    .stores-single_sidebar h5 {
        font-size: 18px;
    }
}

/**Magazine*/
.magazine-main a {
    display: flex;
    max-height: 512px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.magazine-main a img {
    -o-object-fit: contain;
    object-fit: contain;
}

.magazine-main .hero-swiper {
    max-width: 360px;
    border-radius: 0;
    padding-bottom: 52px;
    margin-left: 0;
    margin-right: 0;
}

@media(max-width:575.98px) {
    .magazine-main .hero-swiper {
        margin-left: auto;
    }
}

.magazine-main .hero-swiper .swiper-pagination {
    --swiper-pagination-bullet-horizontal-gap: 8px;
    --swiper-pagination-bullet-width: 12px;
    --swiper-pagination-bullet-height: 12px;
    --swiper-pagination-bullet-border-radius: 12px;
    --swiper-pagination-bottom: 16px;
    z-index: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    --swiper-pagination-bullet-width: 12px;
}

.magazine-main .hero-swiper .swiper-button-next,
.magazine-main .hero-swiper .swiper-button-prev {
    display: flex;
    --swiper-navigation-top-offset: 100%;
    margin-top: -45px;
    z-index: 2;
}

.revista__inner {
    justify-content: center;
}

.revista__inner .magazine-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*Local card*/
.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-heading {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: #525559;
    margin: 0 0 20px;
}

.card-hero p {
    color: #525559;
    margin-bottom: 20px;
}

.users-stat {
    font-size: 12px;
    line-height: 1.33;
    color: #525559;
}

.users-stat strong {
    font-size: 16px;
}

.app-store-btn {
    background-color: #363434;
    border-radius: 4px;
    padding: 8px 16px;
}

.app-store-btn--small {
    min-width: 156px;
    border-radius: 0;
    padding: 10px;
}

.app-store-btn--wh {
    background-color: #fff;
}

.app-store-btn i {
    font-size: 24px;
    width: 24px;
}

.app-store-btn--wh i {
    color: #1A1A1A;
}

.app-store-btn_text {
    text-align: left;
    color: #fff;
}

.app-store-btn_text small {
    font-size: 12px;
    line-height: 1.3;
}

.app-store-btn--wh .app-store-btn_text small {
    color: #4D4D4D;
}

.app-store-btn_text strong {
    font-weight: 600;
    font-size: 16px;
}

.app-store-btn--wh .app-store-btn_text strong {
    color: #1A1A1A;
}

.card-hero img {
    border-radius: 15px;
}

.instr-section {
    /* background: url('/static/projects/mylocal.md/dist/images/instr-section-bg.webp') top center /100% no-repeat, #EDF2EE; */
    background-color: #EDF2EE;
    position: relative;
    z-index: 1;
}

.instr-section::before {
    content: "";
    display: block;
    background: url('/static/projects/mylocal.md/dist/images/local-card-bg_patt.webp') top left /600px repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .15;
}

.instr-section .section-heading {
    color: #525559;
}

.instr-section p {
    font-weight: 600;
    color: #525559 !important;
}

.instr-section .icon-box {
    margin-bottom: 40px;
}

.icon-box {
    font-size: 12px;
    line-height: 1.2;
    color: #525559;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 332px;
}

.icon-box_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    position: relative;
}

.icon-box_icon::before {
    content: "";
    display: block;
    background-color: rgba(70, 171, 73, 0.15);
    background-color: rgba(117, 120, 123, 0.25);
    border: 1px solid rgba(70, 171, 73, 0.16);
    border-color: rgba(117, 120, 123, 0.25);
    border-radius: 10px;
    transform: rotate(30deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.icon-box_icon img {
    width: 50%;
    height: 50%;
    -o-object-fit: contain;
    object-fit: contain;
}

.icon-box strong {
    /* font-weight: 400; */
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.benefits-section {
    color: #525559
}

.benefits-section .section-heading {
    font-size: 24px;
}

.benefits-section .section-heading,
.benefits-section p,
.benefits-list {
    max-width: 680px;
}

.benefits-list {
    list-style-type: none;
    padding-left: 28px;
    margin-bottom: 16px;
}

.benefits-list li {
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    position: relative;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list li::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url('/static/projects/mylocal.md/dist/images/check-round-fill.svg') center center /contain no-repeat;
    position: absolute;
    top: 2px;
    left: -28px;
}

.benefits-iframe iframe {
    width: 100%;
    height: 50vw;
    border-radius: 5px;
}

.section-title-desc {
    color: #525559;
}

/**Contacts*/
.contact-form {
    background-color: #F2F2F2;
    border-radius: 4px;
    padding: 1rem;
}

.control-row_label {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    color: #525559;
    background-color: transparent;
    padding: 0;
    margin: 0 0 8px;
    position: static;
}

.control-row_input,
.control-row_select,
.control-row_textarea,
.control-row--file label {
    font-size: 16px;
    color: #525559;
    font-weight: 400;
    line-height: 1.25;
    background-color: #fff;
    height: 50px;
    border-color: #BBBBBB;
    border-radius: 4px;
    padding: 0 18px;
}

.control-row_input[type="file"] {
    opacity: 0;
}

.control-row_input::placeholder,
.control-row_textarea::placeholder {
    color: rgba(82, 85, 89, 0.5);
}

.control-row_textarea {
    height: 144px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.control-row_btn {
    height: 50px;
}

.control-row_btn.password-btn:before,
.control-row_btn.password-btn:after {
    background-color: #525559;
}

.control-row_btn.password-btn:before {
    -webkit-mask: url('/static/projects/mylocal.md/dist/images/ui/eye-slash_svgrepo.com.svg') center center /24px no-repeat;
    mask: url('/static/projects/mylocal.md/dist/images/ui/eye-slash_svgrepo.com.svg') center center /24px no-repeat;
}

.control-row_btn.password-btn:after {
    -webkit-mask: url('/static/projects/mylocal.md/dist/images/ui/eye_svgrepo.com.svg') center center /24px no-repeat;
    mask: url('/static/projects/mylocal.md/dist/images/ui/eye_svgrepo.com.svg') center center /24px no-repeat;
}

.password-forgot {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
}

.custom-card {
    color: #525559;
    line-height: 1.2;
    background-color: #fff;
    border: 1px solid #BFBFBF;
    border-radius: 4px;
    padding: 1rem;
}

.custom-card a {
    color: #42AE47;
}

.custom-card-title {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.1;
    color: #525559;
    margin: 0;
}

.custom-card_label {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.1;
    color: #fff;
    text-align: center;
    display: inline-block;
    min-width: 108px;
    background-color: #87898D;
    border-radius: 4px;
    padding: 4px;
}

.icon-list li {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #525559;
    display: flex;
    align-items: center;
}

.icon-list li img {
    flex: 0 0 auto;
    margin: 2px 8px 0 0;
}

.show-more-link {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #42AE47;
    display: inline-flex;
}

.job-list-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1;
    color: #525559;
}

.job-list-title strong {
    color: #000;
}

.job-info {
    background-color: #EDF2EE;
    padding: 1rem;
}

ul.job-info {
    list-style: none;
    margin: 0;
}

.job-info li {
    font-size: 14px;
    color: #525559;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.job-info li:last-child {
    margin-bottom: 0;
}

.job-info li strong {
    font-size: 16px;
    margin-bottom: 4px;
}

.job-info_ico {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #42AE47;
    border-radius: 100%;
    margin-right: 10px;
}

@media(min-width: 1200px) {
    .password-forgot {
        margin-bottom: 32px;
    }
}

/**Account*/
.login-container_tabs,
.login-container_tab,
.login-container_form,
.login-container_form .btn {
    border-radius: 4px;
}

.login-container_form {
    background-color: #F2F2F2;
    border: none;
    padding: 1rem;
}

@media (min-width: 992px) {
    .login-container_form {
        padding: 1.5rem;
    }
}

.login-container_form.contact-form {
    border: none;
}

.account-page .section-heading {
    text-align: left;
    font-size: 24px;
}

.account-page .faq-nav {
    border: 1px solid #E9E9E9;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
}

.account-page .faq-nav_title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: #525559;
}

.account-page .faq-nav_item {
    border: none;
    margin-bottom: 10px;
}

.account-page .faq-nav_item:last-child {
    margin-bottom: 0;
}

.account-page .faq-nav_link {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    color: #525559;
    width: 100%;
    background-color: #EDF2EE;
    border-left: 2px solid transparent;
    padding: 1rem;
}

.account-page .faq-nav_item.active .faq-nav_link {
    border-color: #00B207;
}

.account-page .faq-nav_item:not(.active) .created-lists {
    display: none !important;
}

.created-list-link {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #525559;
}

.created-list-link[data-qty] {
    display: flex;
    align-items: center;
}

.created-list-link[data-qty]::after {
    content: attr(data-qty);
    font-weight: 400;
    font-size: 10px;
    line-height: 20px;
    color: #525559;
    text-align: center;
    flex: 0 0 auto;
    min-width: 20px;
    background-color: #EDF2EE;
    border-radius: 20px;
    padding: 0 4px;
    margin-left: auto;
}

.created-list-link.active,
.created-list-link.active[data-qty]::after {
    color: #42AE47;
}

.check-list {
    border: 1px solid #E9E9E9;
    border-radius: 4px;
    overflow: hidden;
}

.check-list_heading {
    line-height: 1.2;
    color: #525559;
}

.check-list_row {
    background-color: #fff;
    border-top: 1px solid #E9E9E9
}

.check-list_row.ui-sortable-helper {
    box-shadow: 0px 12px 48px 0px rgba(0, 0, 0, 0.12);
}

.check-list_check {
    display: block;
    position: relative;
    cursor: pointer;
}

.check-list_check input {
    position: absolute;
    visibility: hidden;
}

.check-list_check i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid #42AE47;
    border-radius: 100%;
}

.check-list_check input:checked~i {
    background-color: #42AE47;
}

.check-list_row img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
}

.check-list_row p {
    line-height: 1.2;
    color: #525559;
}

.product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #2C742F;
}

.product-price s {
    font-size: 14px;
    color: #525559;
    margin-right: 12px;
}

.remove-btn {
    display: block;
    width: 22px;
    height: 22px;
    border: 1px solid #525559;
    background: none;
    outline: 0;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    transition: border-color .3s;
    cursor: pointer;
}

.remove-btn::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #525559;
    --svg: url('/static/projects/mylocal.md/dist/images/ui/close-outline.svg');
    -webkit-mask: var(--svg) center center /contain no-repeat;
    mask: var(--svg) center center /contain no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    transition: background-color .3s;
}

@media(min-width:992px) {
    .check-list_heading {
        font-size: 18px;
    }
}

/**Product single*/
.top .product-list-head>.row {
    margin-top: calc(-1 * var(--bs-gutter-y));
    padding-top: 20px;
}

.product-detail-brand {
    font-size: 14px;
    margin-bottom: 4px;
}

.prod-detail-page h1.section-heading {
    font-size: 28px;
}

.prod-detail-page h2.section-heading {
    font-size: 24px;
}

/**Filter*/
.filters-box_name {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.375;
    letter-spacing: 0;
}

.category-link {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.category-link:last-child {
    margin-bottom: 0;
}

.category-link_img {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #F5F7FA;
    width: 42px;
    height: 42px;
}

.category-link_img img {
    width: 80%;
    height: 80%;
    -o-object-fit: contain;
    object-fit: contain;
}

/**Articles*/
.article-preview {
    display: flex;
    flex-direction: column;
    background-color: #EDF2EE;
    border-radius: 4px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.article-preview_img {
    height: 254px;
    overflow: hidden;
}

.article-preview_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.article-preview_body {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    padding: 14px;
}

.article-preview_meta {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.article-preview_meta li {
    font-size: 14px;
    line-height: 1.5;
    color: #525559;
    display: flex;
    align-items: center;
}

.article-preview_meta li::before {
    content: "";
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.article-preview_meta-author::before {
    background-image: url('/static/projects/mylocal.md/dist/images/ui/meta-ico-author.svg');
}

.article-preview_meta-date::before {
    background-image: url('/static/projects/mylocal.md/dist/images/ui/meta-ico-date.svg');
}

.article-preview_meta-tag::before {
    background-image: url('/static/projects/mylocal.md/dist/images/ui/meta-ico-tag.svg');
}

.article-preview_title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: #525559;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipe-single h2.section-heading {
    font-size: 24px;
}

.articles-carousel .swiper-slide {
    height: auto;
}

.articles-filter {
    background-color: #EDF2EE;
    border-radius: 4px;
    padding: 24px 0;
    margin-top: 50px;
    margin-bottom: 25px;
}

.articles-filter img {
    width: auto;
    height: 406px;
    margin-bottom: -24px;
}

.articles-filter_body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
}

.articles-filter_title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #42AE47;
    margin: 0 0 10px;
}

.articles-filter_desc {
    font-size: 16px;
    line-height: 1.2;
    color: #3F3E3E;
    margin-bottom: 16px;
}

.articles-filter .control-row {
    margin-bottom: 0;
}

.articles-filter .btn {
    padding-right: 18px;
    padding-left: 18px;
}

.articles-filter .btn svg {
    margin-top: 4px;
}

@media(max-width:991.98px) {
    .articles-filter .btn {
        justify-content: center;
        width: 100%;
    }
}

/* Цвет текста по умолчанию */
.datepicker {
    color: #525559 !important;
    font-family: inherit !important;
}

/* Цвет текста ячеек */
.datepicker table tr td,
.datepicker table tr th {
    color: #525559 !important;
}

/* Наведение на день */
.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
    background: #A2D083 !important;
    color: #fff !important;
}

/* Сегодняшний день */
.datepicker table tr td.today {
    background: #A2D083 !important;
    color: #fff !important;
}

/* Выбранный день */
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:focus {
    background: #42AE47 !important;
    border-color: #42AE47 !important;
    color: #fff !important;
}

/* Навигационные стрелки */
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next {
    color: #42AE47 !important;
}

/* Навигация при наведении */
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker .datepicker-switch:hover {
    background: #ADD590 !important;
    color: #fff !important;
}

/* Подсветка месяцев, лет, десятилетий при наведении */
.datepicker-months .month:hover,
.datepicker-years .year:hover,
.datepicker-decades .decade:hover,
.datepicker-centuries .century:hover {
    background: #6EBD48 !important;
    color: #fff !important;
}

/* Активный месяц, год и т.д. */
.datepicker-months .month.active,
.datepicker-years .year.active,
.datepicker-decades .decade.active,
.datepicker-centuries .century.active {
    background: #42AE47 !important;
    color: #fff !important;
}

/* Выходные дни */
.datepicker table tr td.weekend {
    color: #6EBD48 !important;
}

.datepicker table tr td.disabled {
    opacity: .3;
}

.recipe-single-hero {
    padding-bottom: 25px;
}

.recipe-single-hero img {
    border-radius: 4px;
}

.article-date {
    font-size: 14px;
    line-height: 1.5;
    color: #525559;
}

.info-icons {
    border-bottom: 1px solid #CDCDCD;
    padding-bottom: 20px;
}

.info-icons_item {
    font-size: 14px;
    color: #525559;
    line-height: 1.1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
    border-right: 1px solid #CDCDCD
}

.info-icons_item:last-child {
    border-right: none
}

.info-icons_item strong {
    font-size: 16px;
}

.recipe-sidebar_list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #525559;
    border-bottom: 1px solid #D4E3D4;
    padding: 10px 0;
}

.recipe-sidebar_title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #525559;
    margin: 0 0 16px;
}

.project__main-img {
    border-radius: 4px;
    margin-bottom: 20px;
    height: auto;
    max-height: 517px;
    width: 100%;
    object-fit: cover;
}

.project__main-title {
    font-size: 28px;
    line-height: 1.2;
}

@media(max-width:575.98px) {
    .project__main-img {
        max-height: 320px;
    }

    .info-icons {
        border: none;
        padding-bottom: 0;
    }

    .info-icons_item {
        border: none;
        border-bottom: 1px solid #CDCDCD;
        padding: 12px 0;
    }
}

/**Social responsibility single*/
.project__sidebar-project {
    margin-bottom: 12px;
}

.project__inner {
    gap: 0;
    overflow: hidden;
}

.project__inner>.row {
    flex: 1 0 0;
}

.project__info {
    max-width: calc(1004px + var(--bs-gutter-x));
}

.project__sidebar {
    width: 394px;
}

.project__sidebar-project-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project__sidebar-list {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    gap: 0;
}

.project__sidebar-list-item {
    display: flex;
    box-sizing: border-box;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: 10px;
}

.project__sidebar-btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:991.98px) {

    .project__info,
    .project__sidebar {
        width: 100%;
        max-width: 100%;
    }
}

@media(min-width:992px) {
    .instr-section .icon-box:last-child {
        margin-bottom: 0;
    }

    .job-info {
        width: 372px;
    }

    .project__inner>.row {
        --bs-gutter-x: 25px;
    }
}

@media(min-width:1200px) {
    .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .app-store-btn {
        min-width: 192px;
        padding: 12px 20px;
    }

    .app-store-btn--small {
        min-width: 156px;
        padding: 10px;
    }

    .app-store-btn i {
        font-size: 36px;
        width: 36px;
    }

    .app-store-btn--small i {
        font-size: 28px;
        width: 28px;
    }

    .app-store-btn_text small {
        font-size: 14px;
    }

    .app-store-btn--small .app-store-btn_text small {
        font-size: 12px;
    }

    .app-store-btn_text strong {
        font-size: 20px;
    }

    .app-store-btn--small .app-store-btn_text strong {
        font-size: 16px;
    }

    .section-heading {
        font-size: 60px;
    }

    .instr-section .icon-box {
        margin-bottom: 80px;
    }

    .icon-box {
        font-size: 14px;
    }

    .icon-box_icon {
        width: 84px;
        height: 84px;
        margin-bottom: 24px;
    }

    .icon-box strong {
        font-size: 20px;
    }

    .benefits-section .section-heading {
        font-size: 48px;
    }

    .benefits-list {
        margin-bottom: 30px;
    }

    .benefits-iframe iframe {
        height: 492px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .control-row_label {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .cards-row {
        --bs-gutter-x: 30px;
    }

    .custom-card {
        padding: 1.25rem;
    }

    .custom-card-title {
        font-size: 1.5rem
    }

    .icon-list li {
        font-size: 16px;
    }

    .job-list-title {
        font-size: 18px;
    }

    .job-info {
        padding: 1.25rem;
    }

    .job-info li {
        margin-bottom: 1.25rem;
    }

    .account-page .section-heading {
        font-size: 32px;
    }

    .account-page .faq-nav_title {
        font-size: 20px;
    }

    /**Product single*/
    .product-detail-brand {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .prod-detail-page h1.section-heading {
        font-size: 36px;
    }

    .prod-detail-page h2.section-heading {
        font-size: 32px
    }

    /**Filter*/
    .category-link_img {
        width: 56px;
        height: 56px;
    }

    /**Articles*/
    .article-preview_body {
        padding: 18px;
    }

    .article-preview_title {
        font-size: 20px;
    }

    .recipe-single h2.section-heading {
        font-size: 32px;
    }

    .articles-filter {
        margin-top: 100px;
        margin-bottom: 50px;
    }

    .articles-filter_body {
        padding-left: 60px;
        padding-right: 60px;
    }

    .articles-filter_title {
        font-size: 40px;
    }

    .articles-filter_desc {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .recipe-single-hero {
        padding-bottom: 50px;
    }

    .recipe-sidebar_title {
        font-size: 24px;
    }

    .project__main-title {
        font-size: 42px;
    }

    /**Social responsibility single*/
    .project__inner>.row {
        --bs-gutter-x: 50px;
    }
}

@media(min-width:1350px) {
    .instr-section>.container {
        min-height: 712px;
    }
}



@media (min-width:1200px) {

    .header-actions_link,
    .footer a {
        transition: color .3s;
    }

    .header-actions_link:hover,
    .footer a:hover,
    .newsletter a {
        color: #42ae47;
        text-decoration: none;
    }

    .header-actions_icon {
        transition: background .3s;
    }

    .header-actions_link:hover .header-actions_icon {
        background: #42ae47 !important;
    }

    .map-store_btn i,
    .btn-orange i,
    .show-more-link i {
        transition: transform 0.5s ease;
    }

    .map-store_btn:hover i,
    .btn-orange:hover i,
    .show-more-link:hover i {
        transform: translateX(5px);
    }

    .custom-card a:hover {
        text-decoration: underline;
    }

    .article-preview_img img {
        transition: transform 1s ease-in-out;
    }

    .article-preview:hover img {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    .remove-btn:hover {
        border-color: #EA4B48;
    }

    .remove-btn:hover::after {
        background-color: #EA4B48;
    }

    .blog-social__link {
        border-radius: 100%;
        transition: background-color .3s;
    }

    .blog-social__link::before {
        transition: filter .3s;
        transition: filter .3s, -webkit-filter .3s;
    }

    .blog-social__link:hover {
        background-color: #42AE47;
    }

    .blog-social__link:hover::before {
        -webkit-filter: brightness(10);
        filter: brightness(10);
    }

    .check-list_row .drag-handle {
        opacity: 0;
        transition: opacity .3s
    }

    .check-list_row:hover .drag-handle {
        opacity: 1;
    }
}