.show-more-btn{
    margin: 0 auto;
    max-width: 290px;
}

.attention-block {
    width: 100%;
    position: relative;
    padding: 40px 20px;
    margin: 40px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.attention-block:before,
.attention-block:after {
    content: '';
    width: Calc(100% + 80px);
    height: 17px;
    display: block;
    background: url('/local/templates/public/images/other/attention-bg.png');
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    left: -40px;
}

.attention-block.green-block:before,
.attention-block.green-block:after {
    background: url('/local/templates/public/images/other/attention-bg-green.png');
    background-repeat: repeat-x;
    background-size: contain;
}

.attention-block:before {
    top: 0;
}

.attention-block:after {
    bottom: 0;
}

.attention-block-title {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 14px;
}

.attention-block-title i {
    width: 44px;
    background: linear-gradient(180deg, #F28B01 0%, #E15601 100%);
    background-clip: text;
    -webkit-background-clip: text;
    margin-right: 20px;
}

.attention-block-title i:before {
    font-size: 44px;
    color: transparent;
}

.attention-block-title span {
    width: Calc(100% - 64px);
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    background: linear-gradient(180deg, #F28B01 0%, #E15601 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.green-block .attention-block-title i,
.green-block .attention-block-title span {
    background: linear-gradient(180deg, #9CCC2F 0%, #067526 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.attention-block-text{
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    color: #583723;
}

.attention-block-text span {
    font-weight: 700;
    text-transform: uppercase;
}

.attention-block-text a {
    color: #583723;
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.attention-block-text a:hover {
    color: #FF5A00;
}
.content-wrapper{

}
.content-wrapper h4{
    font-size: 1.2em;
    margin-bottom: 15px;
}
.content-wrapper.no-float,
.content-wrapper.no-float .section-description .content-wrapper{
    float: none;
}

.content-wrapper p {
    margin-bottom: 15px;
    line-height: 1.4;
}

.content-wrapper ul, .content-wrapper ol {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #583723;
}

.content-wrapper ul li, .content-wrapper ol li {
    margin: 0px 0px 15px 25px;
    line-height: 120%;
}

.content-wrapper h2 {
    padding-bottom: 10px;
    font-size: 18px;
    color: #5e4836;
    border-bottom: 2px #e4e4e2 solid;
    text-transform: uppercase;
    margin: 15px 0px 15px;
}

.content-wrapper .blog_title h2 {
    margin: 0px;
    padding: 0px;
    font-size: inherit;
    border: none
}

.content-wrapper h3 {
    color: #5e4836;
    font-weight: bold;
}

.white-block {
    position: relative;
    margin-bottom: 15px;
    min-height: 150px;
}

.white-block:after {
    display: block;
    content: "";
    width: 107px;
    height: 150px;
    position: absolute;
    top: 0px;
    right: -107px;
}

.white-block:before {
    display: block;
    content: "";
    width: 107px;
    height: 150px;
    position: absolute;
    top: 0px;
    left: -107px;
}

.with-paddings {
    padding: 15px 15px 0px;
}

.with-shadow {
    -webkit-box-shadow: 0 2px 5px 0 rgb(50 50 50 / 30%);
    -moz-box-shadow: 0 2px 5px 0 rgba(50, 50, 50, 0.3);
    box-shadow: 0 2px 5px 0 rgb(50 50 50 / 30%)
}

.content-wrapper .green-numbers li::marker {
    color: #00a632;
    font-weight: bold;
}

.block-important, .block-attention {
    position: relative;
    padding: 15px 15px 15px 88px;
    border-radius: 10px;
    border: 4px solid red;
    margin: 0px 0px 15px;
    background: transparent none no-repeat 20px center;
}

.block-important {
    background-image: url('/local/templates/public/images/other/warning_icon.svg');
    border-color: #ff5a00;
}

.block-attention {
    background-image: url('/local/templates/public/images/other/thumbs-up.svg');
    border-color: #00a632;
}

.block-important p:last-child, .block-attention p:last-child {
    margin-bottom: 0px;
}

.block-important h3, .block-attention h3 {
    margin-bottom: 15px;
}

.block-beg {
    background: transparent url('/local/templates/public/images/other/icon-beg.svg') no-repeat left center;
    width: 50px;
    height: 40px;
    float: left;
}

.block-attention.simple, .block-important.simple {
    background: none;
    padding: 10px;
}

/* -- List styles ----------------------------------------------------------- */
.content-wrapper ul.list-arrows {
    list-style: none;
}

.content-wrapper .list-arrows > li {
    position: relative;
    padding-left: 25px;
    margin-left: 0px;
    list-style: none;
}

.list-arrows > li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border: 3px solid red;
    border-top: none;
    border-left: none;
    transform: rotate(-45deg);
    position: absolute;
    top: 9px;
    left: 0px;
}

.content-wrapper .list-arrows > li ul {
    margin-top: 7px;
}

ol.li-counter {
    counter-reset: li;
}

ol.li-counter > li {
    list-style-type: none;
}

.li-counter-1 > li::before {
    counter-increment: li;
    content: "1." counter(li) ". ";
}

.li-counter-2 > li::before {
    counter-increment: li;
    content: "2." counter(li) ". ";
}

.li-counter-3 > li::before {
    counter-increment: li;
    content: "3." counter(li) ". ";
}

.li-counter-4 > li::before {
    counter-increment: li;
    content: "4." counter(li) ". ";
}

.li-counter-5 > li::before {
    counter-increment: li;
    content: "5." counter(li) ". ";
}

.li-counter-6 > li::before {
    counter-increment: li;
    content: "6." counter(li) ". ";
}

.li-counter-6-1 > li::before {
    counter-increment: li;
    content: "6.1." counter(li) ". ";
}

.li-counter-6-2 > li::before {
    counter-increment: li;
    content: "6.2." counter(li) ". ";
}

.li-counter-6-3 > li::before {
    counter-increment: li;
    content: "6.3." counter(li) ". ";
}

.li-counter-6-4 > li::before {
    counter-increment: li;
    content: "6.4." counter(li) ". ";
}

.li-counter-7 > li::before {
    counter-increment: li;
    content: "7." counter(li) ". ";
}

.li-counter-8 > li::before {
    counter-increment: li;
    content: "8." counter(li) ". ";
}

.li-counter-9 > li::before {
    counter-increment: li;
    content: "9." counter(li) ". ";
}

.li-counter-10 > li::before {
    counter-increment: li;
    content: "10." counter(li) ". ";
}

.li-counter-11 > li::before {
    counter-increment: li;
    content: "11." counter(li) ". ";
}

.li-counter-12 > li::before {
    counter-increment: li;
    content: "12." counter(li) ". ";
}

.simple-list {
    list-style: none;
    margin: 15px 0px 20px;
}

.simple-list li {
    position: relative;
    padding-left: 11px;
    margin-left: 0px;
    list-style: none;
    margin-bottom: 10px;
}

.simple-list li::before {
    content: "-";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 0px;
    left: 0px;
}

/* -- \List styles ---------------------------------------------------------- */

.block-image, .block-image-with-text {
    width: 100%;
    position: relative;
    margin: 15px 0px;
    clear: both;
}

.block-image {
    background-color: #fff;
    text-align: center;
    padding: 15px;
}

.justify-images {
    display: flex;
    justify-content: space-between;
}

.block-image-with-text {
    display: flex;
    justify-content: space-between;
}

.block-image-with-text img {
    max-width: 30%;
}

.block-image-with-text .block-text {
    width: 65%;
}

.block-image img {
    max-width: 100%;
}


.no-bg {
    background: transparent none no-repeat 0 0 !important;
}

.no-bg.form-block input[type='text'] {
    border: 1px solid #a4c400;
}

@media screen and (max-width: 775px) {
    .justify-images {
        flex-direction: column;
    }

    .justify-images img, .block-image-with-text img {
        max-width: auto !important;
        margin-bottom: 15px;
        width: auto !important;
    }

    .block-image-with-text {
        flex-direction: column;
    }

    .block-image-with-text .block-text {
        width: 100%;
    }
}














/**FAQ - начало*/
.faq-slider {
    margin: -10px -10px 40px -10px;
}
.faq-slider-item {
    width: Calc(100% - 20px);
    gap: 20px;
    margin: 10px;
}
.faq-block-mini {
    width: Calc(50% - 10px);
    border-radius: 10px;
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.25);
    background: linear-gradient(0deg, #9CCC2F 0%, #067526 100%);
}
.faq-block-mini-wrap {
    width: Calc(100% - 4px);
    height: Calc(100% - 4px);
    min-height: 114px;
    display: block;
    margin: 2px;
    background: #FBFBF7;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    text-decoration: none;
    color: #fff;
    position: relative;
}
.faq-block-mini-wrap.bg {
    background: transparent;
}
.faq-block-mini-row {
    width: 100%;
    padding-bottom: 33px;
    justify-content: space-between;
    overflow: hidden;
}
.faq-block-mini-row:last-child {
    margin-bottom: 0;
}
.faq-block-mini-row.fix {
    width: Calc(100% - 40px);
    padding-bottom: 0;
    position: absolute;
    bottom: 16px;
}
.faq-block-mini-title {
    width: Calc(100% - 56px);
    max-width: 360px;
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    color: #FFFFFF;
}
.faq-block-mini-img {
    width: 46px;
    height: 60px;
    margin-left: 10px;
}
.faq-block-mini-img i {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.faq-block-mini-img i:before {
    font-size: 60px;
}
.faq-block-mini-btn {
    width: 158px;
    justify-content: flex-start;
}
.faq-block-mini-btn span {
    width: 132px;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.015em;
    text-decoration-line: underline;
    margin-right: 10px;
}
.faq-block-mini-btn i {
    width: 16px;
    height: 16px;
}
.faq-block-mini-btn i:before {
    fonte-size: 16px;
}
.faq-block-mini-info {
    width: auto;
    max-width: Calc(100% - 168px) !important;
}
.faq-info-wrap {
    margin-right: 24px;
}
.faq-info-wrap:last-child {
    margin-right: 0;
}
.faq-info-wrap span {
    width: auto;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-right: 10px;
}
.faq-info-wrap i:before {
    font-size: 20px;
}
.faq .show-more-wrapper {
    margin-top: 50px;
}
.faq .show-more-wrapper a,
.faq .show-more-wrapper span {
    width: 100%;
    max-width: 250px !important;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    padding: 0 11px;
    box-sizing: border-box;
    cursor: pointer;
}
.faq-page .search-block {
    margin-bottom: 50px;
}
.faq-page .search-form{
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(180deg, #9CCC2F 0%, #067526 100%);
}
.faq-page .search-form-wrap{
    width: Calc(100% - 4px);
    height: Calc(100% - 4px);
    position: absolute;
    top: 2px;
    left: 2px;
    background: #FFFFFF;
    border-radius: 8px;
    z-index: 2;
}

.faq-page .search-form input,
.cart-page  .search-form input,
.smart-search-popup .search-form input{
    border: none;
    background: none;
    line-height: 20px;
    padding-right: 48px;
}
.faq-page .search-form button,
.cart-page .search-form button {
    width: 24px;
    height: 24px;
    font-family: "rostok-icons";
    position: absolute;
    top: 6px;
    right: 12px;
    z-index: 3;
    background: none;
}
.faq-page .search-form button:before,
.cart-page .search-form button:before {
    font-size: 20px;
    background: linear-gradient(180deg, #9CCC2F 0%, #067526 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.faq-sections {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
    margin-bottom: 60px;
}
.faq-section {
    width: 100%;
    height: 100%;
    display: block;
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background: #FFFFFF;
    position: relative;
}
.faq-section-title {
    width: 100%;
    background: linear-gradient(180deg, #9CCC2F 0%, #067526 100%);
    border-radius: 10px 10px 0 0;
    padding: 15px 20px;
    box-sizing: border-box;
    position: relative;
}
.faq-section-title span {
    width: Calc(100% - 42px);
    display: block;
    font-weight: 700;
    font-size: 26px;
    line-height: 28px;
    color: #FFFFFF;
}
.faq-section-title img {
    width: 32px;
    height: 28px;
    position: absolute;
    top: 15px;
    right: 20px;
}
.faq-section-wrap {
    padding: 27px 20px 60px;
}
.faq-section-link {
    width: 100%;
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #583723;
    margin-bottom: 18px;
}
.faq-show-row:nth-child(n + 4) {
    display: none;
}
.faq-sections .faq-block-mini-btn {
    display: flex;
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: linear-gradient(180deg, #7A604B 0%, #412E1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
}
.faq-sections .faq-block-mini-btn span {
    width: auto;
    max-width: Calc(100% - 26px) !important;
    border-bottom: 1px solid #412E1F;
}
.faq-subtitle {
    width: 100%;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    color: #583723;
    margin-bottom: 30px;
}
.faq-list-wrap {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, Calc(50% - 10px));
    gap: 20px;
}
.faq-list-wrap .faq-block-mini {
    width: 100%;
    height: 100%;
}
.bg-light .faq-block-mini-wrap,
.bg-light .faq-block-mini-title,
.bg-light .faq-block-mini-btn i:before {
    color: #583723;
}
.bg-light .faq-block-mini-img i:before,
.bg-light .faq-info-wrap i:before {
    background: linear-gradient(180deg, #9CCC2F 0%, #067526 100%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.bg-light .faq-block-mini-title {
    width: Calc(100% - 47px);
    font-size: 24px;
}
.bg-light .faq-block-mini-img {
    width: 37px;
    height: 49px;
}
.bg-light .faq-block-mini-img i:before {
    font-size: 49px;
}
.bg-light .faq-block-mini-btn {
    width: 80px;
}
.bg-light .faq-block-mini-btn span {
    width: 54px;
}
.bg-light .faq-block-mini-info {
    max-width: Calc(100% - 90px) !important;
}
.faq-other .faq-list-wrap .faq-block-mini:nth-child(n + 9) {
    display: none;
}
/**FAQ - конец*/



/** FAQ-аккордион блоки - начало */
.faq-accordion-blocks > div:not(.faq-accordion-blocks-show):nth-child(n + 5){
    display: none;
}
.faq-accordion-block{
    margin-bottom: 46px;
}
.faq-accordion-block:last-child{
    margin-bottom: 0;
}
.faq-accordion-row{
    border-bottom: 1px solid #583723;
    padding-bottom: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}
.faq-accordion-rows .faq-block-mini-btn,
.faq-accordion-rows .faq-block-mini-btn span{
    width: auto;
    cursor: pointer;
}
.faq-accordion-rows .faq-block-mini-btn span,
.faq-accordion-rows .faq-block-mini-btn i:before{
    color: #583723;
}
.faq-accordion-title{
    width: 100%;
    max-width: calc(100% - 35px) !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: -0.015em;
    position: relative;
    padding-right: 35px;
}
.faq-accordion-title span{
    color: #583723;
    line-height: 25px;
}
.faq-accordion-content{
    display: none;
    color: #583723;
}
.faq-accordion-content > span{
    display: block;
    padding: 20px 0;
}
.faq-accordion-btn{
    width: 25px;
    height: 25px;
    box-shadow: 0 0 4px 4px #00000040;
    border-radius: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
}
.faq-accordion-btn:before,
.faq-accordion-btn:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #9CCC2F 0%, #067526 100%);
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.faq-accordion-btn:before{
    width: 15px;
    height: 3px;
}
.faq-accordion-btn:after{
    width: 3px;
    height: 15px;
}
.faq-accordion-row.active .faq-accordion-btn:after{
    opacity: 0;
}
.faq-accordion-blocks-show.show-more-btn{
    display: none;
}
/** FAQ-аккордион блоки - конец */



/**страница "рекомендации агронома" - начало*/
.agro-page-content .agro-search input{
    background: linear-gradient(#ffffff, #ffffff) padding-box, var(--bgGreen) border-box;
    border: 2px solid transparent;
    padding: 7px 15px;
    border-radius: 10px;
}
.agro-page .blog_title h2{
    font-size: 26px;
    padding-bottom: 0;
    border-bottom: none;
}
.agro-page .aside-search{
    width: 100%;
    max-width: unset;
    margin-bottom: 0;
}
.agro-search{
    margin-bottom: 50px;
}
.agro-page .aside-search form{
    width: 100%;
    height: 40px;
    position: relative;
    background: linear-gradient(180deg, #F28B01 0%, #E15601 100%);
    border-radius: 10px;
}
.agro-page .aside-search form:after{
    content: '\e914';
    display: block;
    font-family: 'rostok-icons';
    width: 23px;
    height: 23px;
    font-size: 23px;
    position: absolute;
    top: 8.5px;
    right: 10px;
    color: transparent;
    background: linear-gradient(180deg, #F28B01 0%, #E15601 100%);
    background-clip: text;
    -webkit-background-clip: text;
}
.agro-page .aside-search form input{
    width: Calc(100% - 4px);
    height: Calc(100% - 4px);
    font-size: 16px;
    line-height: 1;
    position: absolute;
    top: 2px;
    left: 2px;
    border: unset;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.agro-page .aside-search input[type=submit]{
    display: none;
}
.agro-page .aside-search form input:-internal-autofill-selected,
.agro-page .aside-search form input:-webkit-autofill,
.agro-page .aside-search form input:-webkit-autofill:hover,
.agro-page .aside-search form input:-webkit-autofill:active,
.agro-page .aside-search form input:-webkit-autofill:focus {
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}
.agro-sections-block{
    margin-bottom: 70px;
}
.agro-page-title{
    width: 100%;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: #583723;
}
.agro-sections,
.article-items{
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, Calc(50% - 10px));
    gap: 20px;
    margin-bottom: 50px;
}
.agro-section{
    width: 100%;
    min-height: 170px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 4px 4px #00000040;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.agro-section:hover{
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -o-transform: scale(1.01);
    transform: scale(1.01);
}
.agro-section:nth-child(n+7)
{
    display: none;
}
.agro-sections-block.active .agro-section:nth-child(n+7){
    display: flex;
}
.agro-section-wrap{
    width: 100%;
}
.agro-section-title{
    width: 100%;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(180deg, #9CCC2F 0%, #067526 100%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    color: #fff;
}
.agro-section-subtitle{
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    background: #167e27;
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    color: #fff;
}
.article-item{
    width: 100%;
    display: block;
    background: #fff;
    box-shadow: 0 0 4px 4px #00000040;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
}
.article-item-bg{
    width: 100%;
    height: auto;
    max-height: 250px;
    aspect-ratio: 1 / 0.43;
}
.article-item-info{
    width: 100%;
    padding: 14px 20px 47px;
    gap: 9px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #583723;
    justify-content: flex-start;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.article-item-info .date{
    width: 90px;
    text-align: left;
}
.article-item-info .others{
    width: Calc(100% - 99px);
    justify-content: flex-end;
    gap: 4px 20px;
}
.article-item-info .name{
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-align: left;
    margin: 10px 0;
}
.article-item-info .views-count,
.article-item-info .likes-count{
    gap: 10px;
}
.article-item-info .views-count i:before,
.article-item-info .likes-count i:before{
    font-size: 24px;
    color: transparent;
    background: linear-gradient(180deg, #F28B01 0%, #E15601 100%);
    background-clip: text;
    -webkit-background-clip: text;
}
.article-item-info .likes-count i:before{
    font-size: 20px;
}
.article-item-info .article-btn{
    width: Calc(100% - 40px);
    justify-content: flex-start;
    margin-top: 4px;
    position: absolute;
    bottom: 14px;
    left: 20px;
}
.article-item-info .article-btn span{
    width: auto;
    max-width: Calc(100% - 30px);
    font-size: 18px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: -0.015em;
    text-align: left;
    border-bottom: 1px solid #583723;
    margin-right: 6px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.article-item:hover .article-btn span{
    margin-right: 10px;
}
.article-item-info .article-btn i:before{
    font-size: 15px;
    color: #583723;
}
.agro-page-content .article-content *{
    font-family: 'Roboto Regular';
    font-size: var(--fontSizeTextMain);
    line-height: 120%;
}
.agro-page-content .article-content .toc-title,
.agro-page-content .article-content h2,
.agro-page-content .article-content h3{
    color: var(--colorMain);
    font-weight: 500;
    font-family: 'Roboto Medium';
}
.agro-page-content .article-content h2,
.agro-page-content .article-content h2 b{
    font-size: var(--fontSizeH2);
}
.agro-page-content .article-content h3,
.agro-page-content .article-content h3 b{
    font-size: var(--fontSizeH3);
}
.agro-page-content .article-content ol,
.agro-page-content .article-content ul{
    margin: 20px 0 20px 0px;
    display: block;
    clear: both;
}
.agro-page-content .article-content li{
    margin-bottom: 5px;
    color: var(--colorMain);
    font-size: var(--fontSizeTextMain);
}
.agro-page-content .article-content .qa p{
    line-height: 24px;
    display: block;
    margin-bottom: 15px;
}
.agro-page-content .article-content ul > p{
    margin-bottom: 5px;
    color: var(--colorMain);
    display: block;
    width: 100%;
}
.agro-page-content .article-content ul > p:after{
    content: ' ';
    display: block;
    width: 100%;
    clear: both;
}
.agro-page-content .article-content li a{
    color: var(--colorMain);
}
.agro-page-content .article-content img[align=right]{
    margin: 15px 0 15px 15px;
}
.agro-page-content .article-content img[align=left]{
    margin: 15px 15px 15px 0;
}
.agro-page-content .article-content .table-wrap{
     clear: both;
}
.agro-page-content .article-content .catalog-link{
    font-size: var(--fontSizeTextMain);
    display: block;
    margin: 20px 0 20px 0;
}
/**страница "рекомендации агронома" - конец*/


/**страница "контакты" - начало*/
.page-contacts *{
    font-family: 'Roboto Regular';
    font-size: var(--fontSizeTextMain);
    line-height: 120%;
}
.page-contacts h2{
    font-size: var(--fontSizeH2);
    font-weight: 700;
    margin: 35px 0 25px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #ccc;
}
.page-contacts h2.blog_title_page{
    margin: 0 0 25px 0;
}
.page-contacts .contacts-bottom{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 15px 0px;
}
.page-contacts .contacts-bottom a{
    display: flex;
    margin-left: 0px !important;
    min-height: 45px;
    text-align: center;
    align-items: center;
    text-decoration: none;
    min-width: 33%;
    justify-content: center;
    color: #fff !important;
    font-size: 17px !important;
    padding: 15px 0px;
    border-radius: 5px;
}
.page-contacts .contacts-bottom a.phone-btn{
    background-color: #ff5a00;
}
.page-contacts .contacts-bottom a.telegram-btn{
    background-color: var(--colorMain);
}
.page-contacts .more-text-link{
    display: none;
}
.page-contacts iframe{
    margin: 20px 0 20px 0;
}
/**страница "контакты" - конец*/

/**страница "доставка и оплата" - начало*/
.page-delivery{
    margin-bottom: 40px;
}
.page-delivery .rp-delivery{
    --icon-delivery: url("data:image/svg+xml,%3Csvg width='40' height='25' viewBox='0 0 40 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 11.5519C0.0889805 11.3247 0.249965 11.1327 0.458435 11.0058C0.666905 10.8789 0.911248 10.8242 1.15398 10.8496C4.73702 10.8496 8.32193 10.8496 11.9087 10.8496C12.3547 10.8496 12.7673 10.9273 12.9402 11.3733C13.0405 11.5981 13.0847 11.8442 13.0692 12.0898C13.0537 12.3355 12.9788 12.5736 12.851 12.784C12.7396 12.9271 12.5919 13.038 12.4232 13.1047C12.2546 13.1714 12.0711 13.1912 11.8919 13.163H6.62893C4.82254 13.163 3.01618 13.163 1.21537 13.163C0.965696 13.197 0.711791 13.1485 0.492327 13.0247C0.272864 12.9008 0.0999429 12.7088 0 12.4775V11.5519Z' fill='url(%23paint0_linear_24_87)'/%3E%3Cpath d='M35.4314 20.9628C35.2879 20.2488 35.0922 19.5465 34.8459 18.8612C34.4355 17.9381 33.7238 17.1814 32.8275 16.7155C31.9311 16.2495 30.9031 16.1017 29.9118 16.2962C28.9156 16.4843 28.0119 17.0026 27.3463 17.7673C26.6807 18.5321 26.292 19.4988 26.2432 20.5114C26.2432 20.885 26.0871 20.9852 25.7303 20.9797C22.9817 20.9797 20.2331 20.9797 17.4845 20.9797C16.927 20.9797 16.927 20.9797 16.927 20.4221C16.8495 19.3094 16.3641 18.2643 15.5636 17.4875C14.7631 16.7107 13.7039 16.2569 12.5894 16.2129C11.5093 16.1735 10.4507 16.5195 9.60275 17.1897C8.75484 17.8598 8.17322 18.8101 7.96202 19.87C7.91645 20.111 7.89028 20.3556 7.88389 20.6007C7.89016 20.6523 7.88418 20.7044 7.86633 20.7532C7.84848 20.802 7.81933 20.8458 7.78126 20.8811C7.74318 20.9165 7.69717 20.9426 7.64719 20.9568C7.5972 20.971 7.54462 20.9728 7.49365 20.9628C7.15913 20.9628 6.82459 20.9628 6.49007 20.9628C6.22037 20.9659 5.95284 20.9145 5.7036 20.8114C5.45437 20.7083 5.22867 20.5556 5.04004 20.3628C4.85141 20.17 4.70376 19.9413 4.60611 19.6898C4.50846 19.4384 4.46284 19.1694 4.4719 18.8998C4.43845 17.5172 4.4719 16.1124 4.4719 14.7576C4.4719 14.2669 4.72276 14.0551 5.28028 14.0383C5.83781 14.0216 6.26147 14.0383 6.75209 14.0383C8.55848 14.0383 10.3648 14.0383 12.1712 14.0383C12.6083 14.0465 13.0327 13.8911 13.3607 13.6022C13.6888 13.3133 13.897 12.912 13.9443 12.4774C14.1115 11.2508 13.6599 10.3475 12.7066 10.0687C12.4318 9.99779 12.1484 9.96593 11.8647 9.97395C9.74053 9.97395 7.61067 9.97395 5.48092 9.97395C5.31384 9.98505 5.14627 9.98505 4.9792 9.97395C4.90864 9.97264 4.83903 9.95681 4.77475 9.92767C4.71048 9.89854 4.65292 9.85682 4.60543 9.80463C4.55793 9.75243 4.52154 9.69114 4.49858 9.62441C4.47562 9.55768 4.46657 9.4868 4.4719 9.41643C4.4719 9.31607 4.4719 9.21025 4.4719 9.1099C4.4719 8.55237 4.60014 8.40754 5.17997 8.40754H15.1652C15.6323 8.43886 16.0966 8.31548 16.4865 8.05637C17.2447 7.49884 17.373 6.56193 17.1221 5.55839C17.0111 5.17512 16.77 4.84241 16.4403 4.61756C16.1107 4.39271 15.7131 4.28978 15.3158 4.32627C11.9706 4.32627 8.65881 4.32627 5.33596 4.32627C4.58887 4.32627 4.4719 4.20371 4.4719 3.43989C4.4719 3.02733 4.4719 2.61491 4.4719 2.20234C4.43807 1.71945 4.58647 1.24123 4.88787 0.862424C5.18926 0.48362 5.62169 0.231803 6.09983 0.15626C6.55227 0.0569681 7.01373 0.00450246 7.47691 0H25.7415C27.2189 0 27.9046 0.674389 27.9158 2.14626C27.9158 2.9714 27.9158 3.81908 27.9158 4.62192C27.9158 5.08466 27.9994 5.17944 28.4733 5.17944C29.0922 5.17944 29.7111 5.17944 30.3299 5.17944C31.0054 5.16123 31.6713 5.34152 32.2452 5.69831C32.819 6.05511 33.2755 6.57248 33.558 7.18632C34.0319 8.11739 34.5169 9.04288 34.9407 9.97395C35.1138 10.3846 35.3829 10.7477 35.7254 11.0329C36.0678 11.3181 36.4736 11.5173 36.9087 11.6133C37.2823 11.7137 37.6503 11.8362 38.0238 11.9199C38.4261 11.9891 38.7934 12.1919 39.0664 12.4953C39.3395 12.7988 39.5025 13.1851 39.5291 13.5924C39.6102 14.1466 39.6586 14.7051 39.6741 15.265C39.6741 16.4637 39.6741 17.6625 39.6741 18.8612C39.693 19.1264 39.6578 19.3924 39.5705 19.6436C39.4831 19.8947 39.3454 20.1252 39.1659 20.3214C38.9865 20.5176 38.7689 20.6754 38.5265 20.7847C38.2841 20.894 38.022 20.9527 37.7562 20.9573C36.9366 21.0075 36.1506 20.9628 35.4314 20.9628ZM34.0932 11.5295C33.5357 10.4144 32.9782 9.29943 32.4597 8.25128C32.2145 7.72815 31.8263 7.2852 31.3399 6.97344C30.8535 6.66167 30.2888 6.49374 29.7111 6.48941C29.2595 6.48941 28.8078 6.48941 28.3562 6.48941C28.0217 6.48941 27.8769 6.58424 27.8824 6.9522C27.8824 8.33487 27.8824 9.73966 27.8824 11.0944C27.8824 11.5405 27.9437 11.6019 28.4009 11.6019H33.5859C33.7564 11.5889 33.9259 11.5647 34.0932 11.5295Z' fill='url(%23paint1_linear_24_87)'/%3E%3Cpath d='M9.29461 7.45958C7.33769 7.45958 5.3919 7.45958 3.41826 7.45958C2.99454 7.45958 2.58751 7.39818 2.4091 6.97446C2.30646 6.75065 2.25813 6.50563 2.26782 6.25959C2.2775 6.01355 2.34498 5.77338 2.46491 5.55833C2.56773 5.40868 2.71066 5.29113 2.87734 5.21913C3.04402 5.14713 3.22766 5.12389 3.4071 5.15161H15.0427C16.1243 5.15161 16.6038 5.84844 16.2469 6.87428C16.1659 7.05616 16.0297 7.2076 15.8575 7.30767C15.6854 7.40775 15.4862 7.45138 15.288 7.43181H9.29461V7.45958Z' fill='url(%23paint2_linear_24_87)'/%3E%3Cpath d='M34.2548 20.7788C34.2431 21.6972 33.8715 22.5749 33.2199 23.2223C32.5683 23.8697 31.6888 24.2352 30.7703 24.241C29.8521 24.228 28.9753 23.8574 28.3266 23.2076C27.6778 22.5578 27.3084 21.6806 27.2969 20.7624C27.3057 19.8376 27.6789 18.9533 28.3354 18.302C28.992 17.6507 29.8789 17.2848 30.8037 17.2833C31.7236 17.2936 32.6021 17.6664 33.2484 18.3211C33.8946 18.9757 34.2563 19.8589 34.2548 20.7788ZM30.7368 22.2619C30.9363 22.2685 31.1352 22.2353 31.3218 22.1644C31.5084 22.0935 31.6792 21.9867 31.8239 21.8492C31.9687 21.7117 32.0846 21.5462 32.165 21.3635C32.2454 21.1808 32.2887 20.9844 32.2923 20.7847C32.2955 20.3886 32.1441 20.0066 31.8703 19.7203C31.5965 19.434 31.2219 19.266 30.8261 19.2515C30.6298 19.2448 30.4341 19.2768 30.2503 19.3457C30.0664 19.4147 29.898 19.5192 29.7546 19.6534C29.6111 19.7875 29.4956 19.9482 29.4144 20.127C29.3333 20.3058 29.2882 20.4992 29.2817 20.6955C29.2704 20.8925 29.2986 21.0898 29.3646 21.2758C29.4306 21.4619 29.533 21.6325 29.666 21.7784C29.7989 21.9243 29.9596 22.0422 30.1387 22.1252C30.3178 22.2082 30.5116 22.2548 30.7089 22.2619H30.7368Z' fill='url(%23paint3_linear_24_87)'/%3E%3Cpath d='M15.8561 20.7679C15.8459 21.6869 15.476 22.5653 14.8256 23.2147C14.1752 23.864 13.2962 24.2323 12.3772 24.241C11.4528 24.2307 10.5697 23.8573 9.91865 23.2011C9.26763 22.5448 8.90107 21.6585 8.89819 20.7341C8.91136 19.8152 9.28521 18.9384 9.9392 18.2928C10.5932 17.6471 11.4749 17.2847 12.3939 17.2833C13.3133 17.2921 14.1921 17.6629 14.8402 18.3151C15.4882 18.9673 15.8532 19.8485 15.8561 20.7679ZM12.3827 22.2619C12.5799 22.2626 12.7753 22.2243 12.9575 22.1492C13.1398 22.0741 13.3054 21.9635 13.4448 21.8241C13.5842 21.6847 13.6946 21.5191 13.7697 21.3368C13.8449 21.1545 13.8832 20.9596 13.8824 20.7624C13.884 20.3646 13.7286 19.9819 13.4499 19.698C13.1712 19.4141 12.7917 19.2514 12.3939 19.2456C12.1933 19.2448 11.9946 19.2839 11.8093 19.3604C11.6239 19.437 11.4555 19.5499 11.314 19.692C11.1724 19.8341 11.0605 20.0024 10.9846 20.188C10.9087 20.3737 10.8704 20.5728 10.8719 20.7733C10.8726 20.9714 10.9126 21.1674 10.9897 21.3499C11.0669 21.5324 11.1797 21.6976 11.3213 21.8361C11.4629 21.9746 11.6307 22.0837 11.8149 22.1568C11.999 22.2299 12.1958 22.2656 12.3939 22.2619H12.3827Z' fill='url(%23paint4_linear_24_87)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_24_87' x1='6.53612' y1='10.8435' x2='6.53612' y2='13.1754' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_24_87' x1='22.068' y1='0' x2='22.068' y2='20.9811' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_24_87' x1='9.31506' y1='5.14026' x2='9.31506' y2='7.45958' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_24_87' x1='30.7758' y1='17.2833' x2='30.7758' y2='24.241' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear_24_87' x1='12.3772' y1='17.2833' x2='12.3772' y2='24.241' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    --icon-box-track: url("data:image/svg+xml,%3Csvg width='35' height='28' viewBox='0 0 35 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_24_72)'%3E%3Cpath d='M31.9341 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM34.623 5.94732L31.615 0.878794C31.456 0.6101 31.232 0.387933 30.9645 0.233699C30.6971 0.0794646 30.3953 -0.00162806 30.0884 -0.00170898H4.91554C4.60857 -0.0017056 4.30677 0.0793399 4.03934 0.233582C3.7719 0.387823 3.54787 0.610047 3.38887 0.878794L0.380894 5.94732C0.131724 6.36713 -3.68272e-05 6.8489 7.72103e-09 7.3401V25.9347C7.72103e-09 26.2059 0.0521896 26.4745 0.153595 26.725C0.255001 26.9756 0.403636 27.2033 0.591009 27.395C0.778382 27.5868 1.00083 27.7389 1.24564 27.8427C1.49045 27.9465 1.75287 27.9999 2.01785 27.9999H32.9822C33.2471 27.9999 33.5096 27.9465 33.7544 27.8427C33.9992 27.7389 34.2216 27.5868 34.409 27.395C34.5964 27.2033 34.745 26.9756 34.8464 26.725C34.9478 26.4745 35 26.2059 35 25.9347V7.3401C35.0001 6.8489 34.8683 6.36713 34.6191 5.94732H34.623ZM16.3218 5.46704H1.94667L2.90632 3.8501H16.5103L16.3218 5.46704ZM16.6393 2.73587H3.56717L4.32507 1.45514C4.38706 1.35175 4.47384 1.26627 4.57719 1.20687C4.68054 1.14747 4.79701 1.11613 4.91554 1.11577H16.8231L16.6393 2.73587ZM18.1769 1.11893H30.0868C30.2053 1.1193 30.3218 1.15068 30.4252 1.21008C30.5285 1.26948 30.6153 1.35495 30.6773 1.45834L31.4352 2.73908H18.3631L18.1769 1.11893ZM18.4945 3.8501H32.096L33.0557 5.46704H18.6806L18.4945 3.8501ZM33.1644 24.8613C33.164 25.1944 33.0345 25.5138 32.8042 25.7492C32.574 25.9847 32.262 26.117 31.9365 26.1172H22.2603C21.935 26.1168 21.6231 25.9843 21.393 25.7489C21.163 25.5135 21.0336 25.1943 21.0332 24.8613V19.6679C21.0336 19.335 21.163 19.0158 21.393 18.7804C21.6231 18.5449 21.935 18.4124 22.2603 18.412H31.9341C32.2596 18.4122 32.5717 18.5446 32.8019 18.7801C33.0321 19.0155 33.1617 19.3348 33.1621 19.6679L33.1644 24.8613ZM31.9365 19.1148H22.2603C22.117 19.115 21.9795 19.1733 21.8781 19.277C21.7767 19.3807 21.7195 19.5212 21.7191 19.6679V24.8613C21.7195 25.008 21.7767 25.1486 21.8781 25.2523C21.9795 25.3559 22.117 25.4142 22.2603 25.4144H31.9341C32.0776 25.4144 32.2151 25.3562 32.3166 25.2525C32.418 25.1488 32.4752 25.0081 32.4754 24.8613V19.6679C32.4747 19.5214 32.4175 19.3812 32.316 19.2778C32.2146 19.1745 32.0773 19.1164 31.9341 19.1164L31.9365 19.1148ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245ZM31.9373 19.1164H22.2603C22.117 19.1167 21.9795 19.1749 21.8781 19.2786C21.7767 19.3823 21.7195 19.5228 21.7191 19.6695V24.8629C21.7195 25.0096 21.7767 25.1502 21.8781 25.2539C21.9795 25.3575 22.117 25.4158 22.2603 25.416H31.9341C32.0776 25.416 32.2151 25.3578 32.3166 25.2541C32.418 25.1504 32.4752 25.0097 32.4754 24.8629V19.6695C32.4752 19.5228 32.418 19.3821 32.3166 19.2784C32.2151 19.1747 32.0776 19.1164 31.9341 19.1164H31.9373ZM23.1581 24.8245C23.1581 24.9177 23.122 25.0071 23.0576 25.073C22.9932 25.1389 22.9059 25.1759 22.8148 25.1759C22.7237 25.1759 22.6364 25.1389 22.572 25.073C22.5076 25.0071 22.4715 24.9177 22.4715 24.8245V19.7072C22.4715 19.614 22.5076 19.5246 22.572 19.4587C22.6364 19.3928 22.7237 19.3558 22.8148 19.3558C22.9059 19.3558 22.9932 19.3928 23.0576 19.4587C23.122 19.5246 23.1581 19.614 23.1581 19.7072V24.8245ZM24.3821 24.8245C24.3779 24.9147 24.34 24.9998 24.2761 25.0621C24.2123 25.1244 24.1274 25.1591 24.0392 25.1591C23.951 25.1591 23.8661 25.1244 23.8023 25.0621C23.7384 24.9998 23.7004 24.9147 23.6962 24.8245V19.7072C23.7004 19.617 23.7384 19.5319 23.8023 19.4696C23.8661 19.4073 23.951 19.3725 24.0392 19.3725C24.1274 19.3725 24.2123 19.4073 24.2761 19.4696C24.34 19.5319 24.3779 19.617 24.3821 19.7072V24.8245ZM25.6069 24.8245C25.6069 24.9177 25.5708 25.0071 25.5064 25.073C25.442 25.1389 25.3546 25.1759 25.2636 25.1759C25.1725 25.1759 25.0852 25.1389 25.0208 25.073C24.9564 25.0071 24.9202 24.9177 24.9202 24.8245V19.7072C24.9202 19.614 24.9564 19.5246 25.0208 19.4587C25.0852 19.3928 25.1725 19.3558 25.2636 19.3558C25.3546 19.3558 25.442 19.3928 25.5064 19.4587C25.5708 19.5246 25.6069 19.614 25.6069 19.7072V24.8245ZM26.8317 24.8245C26.8317 24.9177 26.7955 25.0071 26.7311 25.073C26.6667 25.1389 26.5794 25.1759 26.4884 25.1759C26.3973 25.1759 26.3099 25.1389 26.2456 25.073C26.1812 25.0071 26.145 24.9177 26.145 24.8245V19.7072C26.145 19.614 26.1812 19.5246 26.2456 19.4587C26.3099 19.3928 26.3973 19.3558 26.4884 19.3558C26.5794 19.3558 26.6667 19.3928 26.7311 19.4587C26.7955 19.5246 26.8317 19.614 26.8317 19.7072V24.8245ZM28.0557 24.8245C28.0515 24.9147 28.0135 24.9998 27.9496 25.0621C27.8858 25.1244 27.801 25.1591 27.7127 25.1591C27.6245 25.1591 27.5397 25.1244 27.4758 25.0621C27.4119 24.9998 27.374 24.9147 27.3698 24.8245V19.7072C27.374 19.617 27.4119 19.5319 27.4758 19.4696C27.5397 19.4073 27.6245 19.3725 27.7127 19.3725C27.801 19.3725 27.8858 19.4073 27.9496 19.4696C28.0135 19.5319 28.0515 19.617 28.0557 19.7072V24.8245ZM29.2805 24.8245C29.2805 24.9177 29.2443 25.0071 29.1799 25.073C29.1155 25.1389 29.0282 25.1759 28.9371 25.1759C28.8461 25.1759 28.7587 25.1389 28.6943 25.073C28.6299 25.0071 28.5938 24.9177 28.5938 24.8245V19.7072C28.5938 19.614 28.6299 19.5246 28.6943 19.4587C28.7587 19.3928 28.8461 19.3558 28.9371 19.3558C29.0282 19.3558 29.1155 19.3928 29.1799 19.4587C29.2443 19.5246 29.2805 19.614 29.2805 19.7072V24.8245ZM30.5052 24.8245C30.5052 24.9177 30.4691 25.0071 30.4047 25.073C30.3403 25.1389 30.2529 25.1759 30.1619 25.1759C30.0708 25.1759 29.9835 25.1389 29.9191 25.073C29.8547 25.0071 29.8186 24.9177 29.8186 24.8245V19.7072C29.8186 19.614 29.8547 19.5246 29.9191 19.4587C29.9835 19.3928 30.0708 19.3558 30.1619 19.3558C30.2529 19.3558 30.3403 19.3928 30.4047 19.4587C30.4691 19.5246 30.5052 19.614 30.5052 19.7072V24.8245ZM31.7292 24.8245C31.725 24.9147 31.6871 24.9998 31.6232 25.0621C31.5594 25.1244 31.4745 25.1591 31.3863 25.1591C31.2981 25.1591 31.2132 25.1244 31.1494 25.0621C31.0855 24.9998 31.0475 24.9147 31.0433 24.8245V19.7072C31.0475 19.617 31.0855 19.5319 31.1494 19.4696C31.2132 19.4073 31.2981 19.3725 31.3863 19.3725C31.4745 19.3725 31.5594 19.4073 31.6232 19.4696C31.6871 19.5319 31.725 19.617 31.7292 19.7072V24.8245Z' fill='url(%23paint0_linear_24_72)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_24_72' x1='17.5' y1='-0.00170898' x2='17.5' y2='27.9999' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_24_72'%3E%3Crect width='35' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    --icon-pay-card: url("data:image/svg+xml,%3Csvg width='41' height='30' viewBox='0 0 41 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.70834 12.4587C8.38838 12.459 8.06866 12.4763 7.75054 12.5106C6.13233 12.6897 4.59671 13.3188 3.318 14.3266C2.03929 15.3343 1.06871 16.6804 0.516398 18.2119C-0.0359139 19.7435 -0.147815 21.3992 0.19338 22.9911C0.534576 24.5831 1.3152 26.0475 2.44667 27.2181C3.57814 28.3888 5.01513 29.2188 6.59453 29.614C8.17393 30.0092 9.83249 29.9537 11.382 29.4539C12.9314 28.954 14.3097 28.0298 15.3604 26.7862C16.4111 25.5425 17.0922 24.0292 17.3262 22.418C17.5044 21.1819 17.4149 19.9219 17.0637 18.7233C16.7125 17.5248 16.1077 16.4158 15.2905 15.4713C14.4733 14.5269 13.4626 13.7691 12.327 13.2494C11.1913 12.7296 9.95727 12.46 8.70834 12.4587ZM10.4852 22.418L7.83135 25.0719L6.53216 26.3711L2.0773 21.9162L3.68048 20.313L5.09666 21.7292L6.53216 23.1659L7.75054 21.9476L13.7363 15.9619L15.3394 17.5638L10.4852 22.418Z' fill='url(%23paint0_linear_24_67)'/%3E%3Cpath d='M37.522 0H7.58627C6.92593 0 6.29263 0.262316 5.8257 0.729248C5.35877 1.19618 5.09644 1.82947 5.09644 2.48982V10.3936C5.47314 10.2652 5.8565 10.1573 6.24484 10.0703H37.358V22.418H19.9968C19.8981 23.3246 19.6895 24.2158 19.3755 25.0719H37.5196C37.8465 25.0719 38.1704 25.0075 38.4724 24.8824C38.7745 24.7573 39.049 24.5739 39.2802 24.3427C39.5114 24.1115 39.6948 23.837 39.8199 23.5349C39.9451 23.2328 40.0094 22.9091 40.0094 22.5821V2.48982C40.0094 1.82989 39.7474 1.19697 39.281 0.730103C38.8146 0.26324 38.1819 0.000639461 37.522 0ZM7.75032 4.86384V2.65388H37.358V4.86384H7.75032Z' fill='url(%23paint1_linear_24_67)'/%3E%3Cpath d='M28.6523 18.823C29.3215 18.2333 29.7626 17.4274 29.8988 16.5459C30.035 15.6644 29.8577 14.763 29.3977 13.9988C28.9377 13.2346 28.2242 12.656 27.3815 12.3637C26.5387 12.0714 25.6202 12.084 24.7858 12.3993C23.9514 12.7146 23.254 13.3126 22.8151 14.0892C22.3763 14.8657 22.2238 15.7716 22.3841 16.6491C22.5444 17.5265 23.0075 18.3199 23.6927 18.8911C24.3778 19.4622 25.2416 19.775 26.1336 19.7748C27.0613 19.776 27.9573 19.4375 28.6523 18.823Z' fill='url(%23paint2_linear_24_67)'/%3E%3Cpath d='M33.675 18.823C34.3442 18.2333 34.7853 17.4274 34.9215 16.5459C35.0577 15.6644 34.8804 14.763 34.4204 13.9988C33.9604 13.2346 33.2469 12.656 32.4042 12.3637C31.5614 12.0714 30.6429 12.084 29.8085 12.3993C28.9741 12.7146 28.2767 13.3126 27.8379 14.0892C27.399 14.8657 27.2465 15.7716 27.4068 16.6491C27.5672 17.5265 28.0302 18.3199 28.7154 18.8911C29.4005 19.4622 30.2643 19.775 31.1563 19.7748C32.084 19.776 32.98 19.4375 33.675 18.823Z' fill='url(%23paint3_linear_24_67)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_24_67' x1='8.7077' y1='12.4587' x2='8.7077' y2='29.8745' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_24_67' x1='22.5529' y1='0' x2='22.5529' y2='25.0719' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_24_67' x1='26.1328' y1='12.1533' x2='26.1328' y2='19.7748' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_24_67' x1='31.1555' y1='12.1533' x2='31.1555' y2='19.7748' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    --icon-cart: url("data:image/svg+xml,%3Csvg width='42' height='36' viewBox='0 0 42 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4493 25.657H34.888C35.1472 25.6605 35.4008 25.5826 35.6127 25.4355C35.8247 25.2885 35.9841 25.0797 36.0681 24.8381L41.9354 7.5095C41.9986 7.32496 42.0158 7.12773 41.9854 6.93529C41.955 6.74284 41.878 6.56117 41.7609 6.40427C41.6462 6.24709 41.4952 6.11908 41.3203 6.03079C41.1455 5.9425 40.9518 5.89639 40.7553 5.89643H8.19427L6.74822 0.892503C6.673 0.636505 6.51588 0.411167 6.30023 0.250317C6.08458 0.0894661 5.8219 0.00183985 5.55144 0H1.24659C0.915977 0 0.598893 0.129512 0.365112 0.35988C0.13133 0.590248 0 0.902601 0 1.22839C0 1.55418 0.13133 1.86653 0.365112 2.0969C0.598893 2.32727 0.915977 2.45678 1.24659 2.45678H4.57084L6.0252 7.45991L11.3772 23.2898C10.2703 23.53 9.27943 24.1351 8.5679 25.0045C7.85636 25.8738 7.46665 26.9562 7.46293 28.073C7.46886 29.2856 7.92956 30.4531 8.75649 31.3512C9.58342 32.2492 10.7182 32.8138 11.9424 32.937C12.2295 33.8251 12.7955 34.6002 13.5588 35.1507C14.3221 35.7012 15.2432 35.9988 16.1891 36C17.1316 35.9993 18.0498 35.7051 18.8124 35.1595C19.5751 34.6138 20.1432 33.8447 20.4358 32.9618H26.5857C26.8767 33.844 27.4433 34.613 28.2046 35.1587C28.9659 35.7044 29.8827 35.9988 30.8241 36C31.7666 35.9993 32.6848 35.7051 33.4474 35.1595C34.2101 34.6138 34.7782 33.8447 35.0708 32.9618H36.9158C37.2465 32.9618 37.5634 32.8323 37.7972 32.6019C38.031 32.3716 38.1624 32.0592 38.1624 31.7334C38.1603 31.4083 38.0282 31.0972 37.7949 30.8673C37.5616 30.6374 37.2458 30.5072 36.9158 30.505H35.1457C34.8927 29.5659 34.3318 28.7351 33.5502 28.1426C32.7686 27.5502 31.8102 27.2293 30.8241 27.2293C29.8387 27.2283 28.8809 27.5491 28.1004 28.1418C27.3199 28.7346 26.7609 29.5658 26.5109 30.505H20.5106C20.2589 29.5652 19.6984 28.7337 18.9165 28.141C18.1346 27.5484 17.1755 27.2279 16.1891 27.2293C15.2066 27.232 14.2524 27.5542 13.4753 28.1466C12.6983 28.7391 12.1417 29.5685 11.8925 30.505C11.3456 30.3816 10.857 30.0803 10.5057 29.6493C10.1543 29.2184 9.96065 28.6826 9.95611 28.1298C9.95392 27.8058 10.0168 27.4845 10.1412 27.1845C10.2655 26.8846 10.4487 26.6123 10.6805 26.3824C10.9122 26.1525 11.1878 25.9703 11.4913 25.8458C11.7949 25.7213 12.1205 25.657 12.4493 25.657ZM27.9486 14.1017V17.427H20.0452V14.1017H27.9486ZM20.0452 11.6449V8.32043H27.9486V11.6449H20.0452ZM30.4418 14.1017H37.0903L35.9601 17.427H30.4418V14.1017ZM27.9486 19.875V23.2003H20.0452V19.875H27.9486ZM17.552 17.4182H12.0338L10.9035 14.0937H17.552V17.4182ZM17.552 19.875V23.2003H14.0117L12.8898 19.875H17.552ZM34.0071 23.2003H30.4418V19.875H35.129L34.0071 23.2003ZM37.9131 11.6449H30.4335V8.32043H39.035L37.9131 11.6449ZM17.552 8.32043V11.6449H10.0725L8.94224 8.32043H17.552ZM30.849 29.6941C31.1733 29.6838 31.4951 29.7535 31.7853 29.8964C32.0755 30.0394 32.325 30.2512 32.5112 30.513C32.7388 30.835 32.8607 31.2179 32.8602 31.6103C32.8614 31.8623 32.812 32.1127 32.7151 32.346C32.6181 32.5793 32.4754 32.791 32.2951 32.9698C32.1122 33.1541 31.8937 33.3002 31.6525 33.4001C31.4113 33.4999 31.1523 33.5515 30.8906 33.5512C30.6302 33.5518 30.3722 33.5008 30.1323 33.4009C29.8924 33.301 29.6755 33.1543 29.4944 32.9698C29.3141 32.791 29.1714 32.5793 29.0744 32.346C28.9774 32.1127 28.9281 31.8623 28.9292 31.6103C28.93 31.2193 29.0486 30.8375 29.27 30.513C29.4484 30.2648 29.6835 30.0611 29.9563 29.9188C30.2291 29.7766 30.5321 29.6998 30.8407 29.6941H30.849ZM16.214 29.6941C16.5314 29.6906 16.8447 29.7633 17.1271 29.906C17.4094 30.0487 17.6523 30.2571 17.8346 30.513C18.0622 30.835 18.1841 31.2179 18.1837 31.6103C18.1848 31.8623 18.1355 32.1127 18.0385 32.346C17.9415 32.5793 17.7988 32.791 17.6185 32.9698C17.4356 33.1541 17.2171 33.3002 16.9759 33.4001C16.7347 33.4999 16.4757 33.5515 16.214 33.5512C15.9536 33.5518 15.6957 33.5008 15.4558 33.4009C15.2159 33.301 14.9989 33.1543 14.8178 32.9698C14.6375 32.791 14.4948 32.5793 14.3978 32.346C14.3008 32.1127 14.2516 31.8623 14.2527 31.6103C14.2535 31.2193 14.372 30.8375 14.5934 30.513C14.7759 30.2592 15.0177 30.0526 15.2983 29.91C15.5789 29.7675 15.8901 29.6933 16.2057 29.6941H16.214Z' fill='url(%23paint0_linear_24_93)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_24_93' x1='21' y1='0' x2='21' y2='36' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239CCC2F'/%3E%3Cstop offset='1' stop-color='%23067526'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.page-delivery .rp-delivery-section{
    --min: 25ch;
    --gap: 40px;
    display: grid;
    grid-gap: var(--gap);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min)), max-content));
    align-items: start;
    justify-items: center;
    margin-bottom: 40px;
}
.page-delivery .rp-delivery-section__image{
    display: inline-flex;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.page-delivery .rp-delivery-picture--bd-shadow{
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 40px;
}
.page-delivery .rp-delivery-item__title--icon-delivery{
    background-image: var(--icon-delivery);
}
.page-delivery .rp-delivery-item__title--icon-box-track{
    background-image: var(--icon-box-track);
}
.page-delivery .rp-delivery-item__title--icon-pay-card{
    background-image: var(--icon-pay-card);
}
.page-delivery .rp-delivery-item__title--icon-cart{
    background-image: var(--icon-cart);
}
.page-delivery .rp-delivery-item__title--icon{
    min-height: 42px;
    background-size: unset;
    padding-left: 60px;
    background-repeat: no-repeat;
    background-position: left center;
}
.page-delivery .rp-delivery-item__title{
    font-size: 22px;
    line-height: 41px;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 8px;
}
.page-delivery .rp-delivery-item:not(:last-child){
    margin-bottom: 30px;
}
/**страница "доставка и оплата" - конец*/

/**страница "саженцы оптом" - начало*/
.page-opt{
    margin-bottom: 40px;
}
.page-opt *{
    font-family: 'Roboto Regular';
    font-size: var(--fontSizeTextMain);
    line-height: 120%;
}
.page-opt h2{
    font-size: var(--fontSizeH2);
    font-weight: 700;
    margin: 35px 0 15px 0;
}
.page-opt > img{
    width: 100% !important;
}
.page-opt .more-text-link{
    display: none;
}
.page-opt div.center{
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 10px 0 15px 0;
}
.page-opt div a.btn{
    background: var(--bgOrange);
    color: #ffffff;
    max-width: max-content;
    padding: 15px 20px;
    margin: 20px 0;
}
.page-opt p{
    margin-bottom: 7px;
}
.page-opt ol{
    margin: 15px 0 20px 40px;
}
.page-opt table{
    width: 100%;
    display: block;
    clear: both;
    margin: 15px 0 20px 0;
}
.page-opt tbody{
    width: 100%;
    display: block;
}
.page-opt tr{
    width: 100%;
    display: flex;
}
.page-opt tr:nth-child(2n+1){
    background: #e2e2e2;
}
.page-opt tr td{
    width: 100%;
    display: flex;
    padding: 10px 15px;
}
.page-opt .row.mb-15{
    display: flex;
    align-content: center;
    justify-content: flex-start;
    width: 100%;
}
.page-opt .row.mb-15 > div{
    width: Calc(100% - 80px);
}
.page-opt .row.mb-15 > div:first-child{
    width: 80px;
}
/** страница "саженцы оптом" - конец */



/** раздел "Акции" - начало */
.stock-item-detail{
    width: 100%;
    margin-bottom: 54px;
}
.stock-item-detail-wrap{
    width: 100%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 267px 1fr;
    background: #FFFFFF;
    box-shadow: var(--shadowMain);
    border-radius: 25px;
    margin-bottom: 28px;
    overflow: hidden;
}
.stock-item-detail-img,
.stock-item-detail-info{
    width: 100%;
    height: 100%;
}
.stock-item-detail-info{
    padding: 25px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.stock-item-detail .stock-item-slide-img{
    height: 100%;
    margin-bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.stock-item-slide-row{
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
}
.stock-item-detail .stock-item-slide-row{
    margin-bottom: 18px;
}

.stock-item-detail .stock-item-slide-row > div{
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 18px;
}

.stock-item-detail .stock-item-slide-row > div:last-child{
    margin-bottom: 0;
}

.stock-item-detail .stock-item-slide-row > div > i{
    width: 20px;
    height: 20px;
}

.stock-item-detail .stock-item-slide-row > div > i:before{
    color: transparent;
    background: var(--bgGreen);
    background-clip: text;
    padding: 1px;
}

.stock-item-detail .stock-item-slide-row > div > span{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}


.stock-item-detail-desc ul,
.content-wrapper .stock-item-detail-desc ul{
    padding-bottom: 0;
    padding-left: 22px;
}

.stock-item-detail-desc ul{
    padding: 0;
}

.stock-item-detail-desc ul li,
.content-wrapper .stock-item-detail-desc ul li{
    margin: 0;
    list-style: none;
}

.stock-item-detail-desc .title{
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 7px;
}

.stock-item-detail-desc .text li{
    font-size: 18px;
}

.stock-item-detail-text{
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--colorMain);
}
.stock-item-detail-subtitle{
    color: var(--colorMain);
    font-size: 22px;
    margin-bottom: 34px;
    font-weight: 700;
}
/** раздел "Акции" - конец */



/** раздел "Подборки" - начало */
.selection-page .search-block{
    width: 100%;
    margin-bottom: 32px;
}
.selection-page .search-form{
    position: relative;
    gap: 20px;
}
.selection-page .search-form input{
    border-radius: 30px;
    box-shadow: var(--shadowMain);
    height: 50px;
    padding: 0 20px;
}
.selection-page .search-form button{
    font-style: normal;
    max-width: 200px;
}

.selection-block{
    border-radius: 25px;
    box-shadow: var(--shadowMain);
    overflow: hidden;
}

.selection-block-img{
    width: 100%;
    aspect-ratio: 1 / 0.9;
    max-height: 240px;
    display: block;
}

.selection-block-wrap{
    padding: 20px;
}

.selection-block-wrap .title a{
    width: 100%;
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    height: calc(1.1em * 3);
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 16px;
}


/** раздел "Подборки" - конец */


/** детальная страница подборки - начало */

.selection-detail .section-content h2{
    margin-bottom: 30px;
}

.selection-detail .section-text{
    margin-bottom: 40px;
}

.selection-detail .section-image{
    width: 100%;
    aspect-ratio: 1 / 0.35;
    max-height: 300px;
    border-radius: 35px;
    overflow: hidden;
    margin-bottom: 40px;
}

/** детальная страница подборки - конец */


/** раздел "Отзывы" - начало */
.reviews-page .review-item{
    position: relative;
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    padding: 10px;
    margin-bottom: 30px;
    color: var(--colorMain);
    background-color: #fff;
    min-width: 260px;
    white-space: normal;
}
.reviews-page .review-item-cover:before{
    content: "\e904";
    font-family: 'rostok-public-icons';
    font-size: 50px;
    line-height: 38px;
    color: transparent;
    background: var(--bgGreen);
    background-clip: text;
    position: absolute;
    right: 10px;
    top: 10px;
}
.reviews-page .review-item-cover{
    padding: 20px;
    position: relative;
}
.reviews-page .review-item-title{
    min-height: 44px;
    width: 100%;
    padding-right: 30px;
    padding-bottom: 15px;
}
.reviews-page .review-item-title h3{
    font-size: 26px;
    font-weight: 700;
    font-family: 'Roboto Medium';
    margin-bottom: 10px;
}
.reviews-page .review-info{
    font-width: 400;
    font-size: 16px;
    font-family: 'Roboto Regular';
    margin-bottom: 6px;
}
.reviews-page .review-item-content{
    font-width: 400;
    font-size: 16px;
    font-family: 'Roboto Regular';
    overflow: hidden;
    transition: .6s max-height ease-out;
    padding-bottom: 8px;
}
.reviews-page .review-photos{
    margin: 15px 0px;
}
.reviews-page .review-photos a{
    margin-right: 10px;
}
.reviews-page .review-photos a img{
    border-radius: 25px;
}
.reviews-page .review-show-more{
    font-size: 16px;
    font-family: 'Roboto Regular';
    text-decoration: underline;
    color: var(--colorMain);
}
/** раздел "Отзывы" - конец */





@media (max-width: 991px){

    /** раздел "Подборки" - начало */

    .selection-page .search-form input{
        height: 45px;
    }

    .selection-page-list.grid-col-3{
        grid-template-columns: repeat(3, 1fr);
    }

    /** раздел "Подборки" - конец */

}

@media (max-width: 960px)
{
    /*страница "рекомендации агронома" - начало*/
    .agro-page-subscribe.aside-block .agro-form{
        display: none !important;
    }
    .agro-search{
        margin-bottom: 45px;
    }
    /*страница "рекомендации агронома" - конец*/
}



@media (max-width: 768px)
{
    /*страница "рекомендации агронома" - начало*/
    .agro-sections,
    .article-items{
        gap: 10px;
        margin-bottom: 40px;
        grid-template-columns: repeat(2, Calc(50% - 5px));
    }
    .agro-sections-block{
        margin-bottom: 55px;
    }
    /*страница "рекомендации агронома" - конец*/


    /*детальная страница акции - начало*/

    .stock-item-detail-wrap{
        border-radius: 15px;
    }

    .stock-item-detail-info{
        padding: 20px;
    }

    .stock-item-detail .stock-item-slide-row > div > span{
        font-size: clamp(18px, calc(18px + (22 - 18) * ((100vw - 420px) / (767 - 420))), 22px);
    }

    .stock-item-detail-desc .title{
        font-size: clamp(16px, calc(16px + (24 - 16) * ((100vw - 420px) / (767 - 420))), 24px);
    }

    .stock-item-detail-desc .text li{
        font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 420px) / (767 - 420))), 18px);
    }

    /*детальная страница акции - конец*/

    /** раздел "Подборки" - начало */

    .selection-page .search-block{
        margin-bottom: 40px;
    }

    .selection-block{
        border-radius: 15px;
    }

    .selection-block-img{
        max-height: 200px;
    }

    /** раздел "Подборки" - конец */

    /** детальная страница подборки - начало */

    .selection-detail .section-content h2{
        margin-bottom: 10px;
    }

    .selection-detail .section-text{
        margin-bottom: 30px;
    }

    .selection-detail .section-image{
        max-height: 256px;
        border-radius: 15px;
        margin-bottom: 30px;
    }

    /** детальная страница подборки - конец */

}

@media (max-width: 680px){

    /*страница "Акции" - начало*/

    .stocks-page .grid-accent-layout > div:nth-child(n + 4){
        display: block;
    }

    /*страница "Акции" - конец*/

    /** раздел "Подборки" - начало */

    .selection-page-list.grid-col-3{
        grid-template-columns: repeat(2, 1fr);
    }

    /** раздел "Подборки" - конец */

}


@media (max-width: 667px)
{
    /*страница "рекомендации агронома" - начало*/
    .agro-sections,
    .article-items{
        grid-template-columns: auto;
    }
    .agro-section{
        min-height: 130px;
    }
    .agro-page-title{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .agro-search{
        margin-bottom: 30px;
    }
    .agro-section-title{
        font-size: 22px;
    }
    .agro-sections,
    .article-items{
        margin-bottom: 30px;
    }
    .agro-sections-block{
        margin-bottom: 65px;
    }
    .article-item-bg{
        max-height: 132px;
    }
    .article-item-info{
        padding: 10px;
        font-size: 16px;
        line-height: 1;
    }
    .article-item-info .date{
        width: 80px;
    }
    .article-item-info .others{
        width: Calc(100% - 89px);
        gap: 4px 10px;
    }
    .article-item-info .likes-count i:before{
        font-size: 18px;
    }
    .article-item-info .views-count i:before,
    .article-item-info .name{
        font-size: 22px;
    }
    .article-item-info .article-btn{
        width: 100%;
        position: unset;
        margin-top: 0;
    }
    .article-item-info .article-btn span{
        font-size: 16px;
        line-height: 17px;
    }
    /*страница "рекомендации агронома" - конец*/

    /*детальная страница акции - начало*/

    .stock-item-detail-wrap{
        grid-template-columns: auto;
    }

    .stock-item-detail-img{
        display: none;
    }

    /*детальная страница акции - конец*/
}



@media (max-width: 640px)
{
    /*страница "рекомендации агронома" - начало*/
    .agro-section{
        padding: 10px;
    }
    /*страница "рекомендации агронома" - конец*/
}



@media (max-width: 640px)
{
    /*страница "рекомендации агронома" - начало*/
    .article-item-info{
        font-size: 14px;
    }
    .article-item-info .date{
        width: 70px;
    }
    .article-item-info .others{
        width: Calc(100% - 79px);
    }
    .article-item-info .name{
        font-size: 16px;
    }
    .article-item-info .article-btn span{
        font-size: 14px;
        line-height: 1;
    }
    .article-item-info .views-count i:before{
        font-size: 20px;
    }
    .article-item-info .likes-count i:before{
        font-size: 16px;
    }
    .article-item-info .views-count,
    .article-item-info .likes-count{
        gap: 5px;
    }
    /*страница "рекомендации агронома" - конец*/
}

@media (max-width: 568px){

    /** раздел "Подборки" - начало */

    .selection-page-list.grid-col-3{
        grid-template-columns: auto;
    }

    .selection-page .search-form button{
        max-width: 100px;
    }

    .selection-block-wrap .title a{
        text-align: left;
    }

    .selection-block-wrap .btn{
        max-width: 190px;
    }

    /** раздел "Подборки" - конец */

    /** детальная страница подборки - начало */

    .selection-detail .section-text,
    .selection-detail .section-image{
        margin-bottom: 20px;
    }


    /** детальная страница подборки - конец */
}