
html, *{
    font-family: "Proxima", arial, sans-serif;
    box-sizing: border-box;
}

html, body{
    background: #ffffff;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
a, [class*="icon-"]{
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-transition-property: color, background, transform, opacity;
    -moz-transition-property: color, background, transform, opacity;
    -ms-transition-property: color, background, transform, opacity;
    -o-transition-property: color, background, transform, opacity;
    transition-property: color, background, transform, opacity;
}

*[data-lang]{
    display: none;
}
body.en [data-lang="en"]{
    display: block;
}
body.ru [data-lang="ru"]{
    display: block;
}
a:hover{
    color: #83b710 !important;
    text-decoration: underline;
}
a:visited{
    color: inherit;
}
button,input,select,textarea{
    -webkit-border-radius:0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    padding: 0;
}
::-moz-placeholder {
    opacity: 1;
}
#ht-search input::-ms-clear {
	display: none;
}
.row{
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    padding: 0 72px;
}
.flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.flex-column{
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.justify_center {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.justify_flex-end {
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.justify_flex-start {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.justify_space-between {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.grid {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}
.grid__grid-item {
    width: 33.3%;
    padding: 0 20px 30px;
}

/*HEADER*/
#ht-headerbar a:hover {
    color: #fff !important;
}

.header {
    background: #00833d;
    padding: 16px 0 16px;
}

.header__container {
    position: relative;
}

.header__container, .logo {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__container a.logo {
    z-index: 5;
    position: relative;
}

.logo__mobile {
    display: none;
}

.burger {
    display: none;
    cursor: pointer;
    height: 36px;
    width: 41px;
    padding: 10px;
    margin-left: -10px;
}
.burger__spins{
    position: relative;
    height: 16px;
    width: 21px;
}

.burger__top, .burger__mid, .burger__bot{
    background-color: #ffffff;
    width: 100%;
    position: absolute;
    height: 2px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.burger__top{
    top: 0;
}
.burger__mid{
    top: 7px;
}
.burger__bot{
    top: 14px
}
.main-nav {
    position: absolute;
    margin: 0 auto;
    left: 230px;
    right: 230px;
    font-size: 15px;
    line-height: 1.6;
    z-index: 4;
}
.main-nav__list{
    position: relative;
}

.main-nav__item{
    color: #ffffff;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    margin: 0 16px;
}
.main-nav__item a{
    color: inherit;
    position: relative;
}
.main-nav__item a:hover{
    color: #f3f3f3!important;
    text-decoration: none!important;
}
.main-nav__item a:before,.main-nav__item:after{
    content: "";
    display: block;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
.main-nav__item a:before{
    background: #f3f3f3;
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    height: 2px;
    width: 100%;
}
.main-nav__item:hover a:before{
    opacity: 1;
}
.main-nav__list--has-child .main-nav__item:after {
    border: 3px solid transparent;
    border-top: 5px solid #ffffff;
    margin-left: 8px;
    margin-top: 5px;
    height: 0;
    width: 0;
}
.main-nav__item.open:after{
    margin-top: -3px;
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    transform: scale(-1);
}
.main-nav__submenu{
    position: absolute;
    bottom: 1px;
    left: -8px;
    right: -21px;
    top: 100%;
    display: none;
}

.submenu__list{
    position: relative;
    background-color: #ffffff;
    max-width: 174px;
    width: 100%;
    min-width: 170px;
    z-index: 99;
    -webkit-box-shadow: 0 2px 6px 2px rgba(48,48,48,0.4);
    -moz-box-shadow: 0 2px 6px 2px rgba(48,48,48,0.4);
    box-shadow: 0 2px 6px 2px rgba(48,48,48,0.4);
}
.submenu__list li a {
    display: block;
    width: 100%;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.33;

}
.submenu__list li a:hover {
    background-color: #77bc1f;
    color: #ffffff;
    text-decoration: none!important;
}

.header-actions{
    color: #ffffff;
    font-size: 14px;
    position: relative;
    z-index: 5;
}

.header-actions, .header-actions__profile, .header-actions__logout {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-actions__profile {
    height: 22px;
    margin-left: 15px;
    max-width: 110px;
    width: auto;
}

.profile__image {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-right: 7px;
}

.profile__name {
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 7px;
}

.header-actions__logout {
    font-size: 32px;
    height: 32px;
    margin-left: 15px;
    color: #ffffff;
}

.header-actions__logout a{
    opacity: 0.5;
}
.header-actions__login{
    margin-left: 15px;
}
.header-actions__login a{
    opacity: 0.7;
}

.header-actions__logout a:hover,
.header-actions__login a:hover{
    text-decoration: none!important;
    color: #ffffff!important;
    opacity: 1;
}

#ht-headerbar .change-languages-headerbar {
    cursor: pointer;
    width: 38px;
    margin-right: 5px;
}

#ht-headerbar .change-languages-headerbar .ht-scroll-versions-select {
    text-align: left;
    text-transform: uppercase;
}
#ht-headerbar .change-languages-headerbar .ht-scroll-versions-select .ht-select-container {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
#ht-headerbar .change-languages-headerbar .ht-select-button.active + .icon-Arrow-left {
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    transform: scale(-1);
}
#ht-headerbar .change-languages-headerbar .ht-scroll-versions-select .ht-select-button,
#ht-headerbar .change-languages-headerbar .ht-scroll-versions-select .ht-select-button:hover {
    text-decoration: none !important;
}
#ht-headerbar .change-languages-headerbar .ht-scroll-versions-select #ht-select-language,
#ht-headerbar .change-languages-headerbar .ht-scroll-versions-select .ht-select-button svg {
    display: none;
}
#ht-headerbar .change-languages-headerbar .ht-dropdown-select,
#ht-headerbar .change-languages-headerbar .ht-dropdown-select ul{
    overflow: hidden;
}

#ht-headerbar .change-languages-headerbar .ht-dropdown{
    position: absolute;
    top: 100%;
    left: -10px;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
    display: none;
}
#ht-headerbar .change-languages-headerbar .ht-dropdown a,
#ht-headerbar .change-languages-headerbar .ht-dropdown span{
    background: #ffffff;
    color: #303030;
    /*font-size: 12px;*/
    padding: 7px 10px;
    display: block;
}

#ht-headerbar .change-languages-headerbar .ht-dropdown span.hover,
#ht-headerbar .change-languages-headerbar .ht-dropdown span:hover,
#ht-headerbar .change-languages-headerbar .ht-dropdown a.hover,
#ht-headerbar .change-languages-headerbar .ht-dropdown a:hover{
    background-color: #77bc1f;
    color: #ffffff;
    text-decoration: none!important;
}
@media (pointer:coarse){
    #ht-headerbar .change-languages-headerbar .ht-dropdown-select{
        display: none!important;
    }
    #ht-headerbar .change-languages-headerbar .ht-scroll-versions-select select#ht-select-language{
        position: absolute;
        height: 40px;
        width: 100%;
        display: block;
        opacity: 0;
        z-index: 33;
    }
    #ht-headerbar .change-languages-headerbar .ht-scroll-versions-select select#ht-select-language{
        top: -70%;
        left: -10%;
    }
    #ht-headerbar .change-languages-headerbar .ht-scroll-versions-select select#ht-select-language:focus + .ht-select-button + .icon-Arrow-left{
        -moz-transform: scale(-1);
        -o-transform: scale(-1);
        -ms-transform: scale(-1);
        -webkit-transform: scale(-1);
        transform: scale(-1);
    }
}
/*SEARCH DOC*/
.show-sidebar .ht-headerbar-search {
    display: none;
}

.btn-confluence {
margin-right: 25px;
}
.icon-confluence {
height:15px;
width: 15px;
background: url(../img/confluence.svg);
} 

.search-block{
    margin-top: 50px;
    margin-bottom: 20px;
}
.search-block__title{
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    color: white;
    margin-bottom: 27px;
}
.search-block__form-container{
    position: relative;
}
.search-block__form-container, .search-block__form{
    max-width: 700px;
    width: 100%;
}

.search-form {
    width: 100%;
    max-width: calc(100vw - 32px);
    -webkit-transition: max-width 0.15s ease-in;
    -moz-transition: max-width 0.15s ease-in;
    -ms-transition: max-width 0.15s ease-in;
    -o-transition: max-width 0.15s ease-in;
    transition: max-width 0.15s ease-in;
}
.search-form__input {
    color: #303030;
    font-size: 16px;
    line-height: 1.4;
    padding: 11px 40px 11px 16px;
    width: 90%;
    height: 48px;
}
.search-form__button {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    height: 48px;
    min-width: 55px;
    width: 10%;
}
.button_search-icon{
    color: #ffffff;
    display: block;
    font-size: 34px;
    margin: 0 auto;
}
.search-form__input, .search-form__button{
    background: rgba(255,255,255,0.2);
    -webkit-transition: background 0.1s;
    -moz-transition: background 0.1s;
    -ms-transition: background 0.1s;
    -o-transition: background 0.1s;
    transition: background 0.1s;
}
.search-form:hover .search-form__input,
.search-form:hover .search-form__button{
    background: rgba(255,255,255,0.4);
}
.search-block.open .search-form__input,
.search-form__input:focus,
.search-form__input:focus + .search-form__button,
.search-form__input:not(:placeholder-shown),
.search-form__input:not(:placeholder-shown) + .search-form__button,
.search-form__input:not(:placeholder-shown) .ht-search-clear.show {
    background-color: #ffffff !important;
    outline: none;
}

.search-form__button:focus .button_search-icon,
.search-form__input:focus + .search-form__button .button_search-icon,
.search-form__input:not(:placeholder-shown) + .search-form__button .button_search-icon{
    color: #00833d;
}
.search-form__input::-webkit-input-placeholder{ color: #ffffff;}
.search-form__input:-ms-input-placeholder{ color: #ffffff;}
.search-form__input:-moz-placeholder,
.search-form__input::-moz-placeholder{ color: #ffffff;}
.search-form__input::placeholder{ color: #ffffff;}

.search-form__input:focus::-webkit-input-placeholder{ color: #999999;}
.search-form__input:focus:-ms-input-placeholder{ color: #999999;}
.search-form__input:focus:-moz-placeholder,
.search-form__input:focus::-moz-placeholder{ color: #999999;}
.search-form__input:focus::placeholder{ color: #999999;}


/*==== ICON SEARCH ==== */
#main-search-icon {
    display: none;
}
.search-block__form a.ht-search-clear {
    min-width: 55px;
    width: 10%;
    height: 48px;
    padding: 16px;
    top: 0;
    right: 0;
    z-index: 99;
    line-height: 0;
}
.search-block__form #main-search-icon.show{
    background-color: #ffffff;
    opacity: 1;
    display: block;
}
.search-block__form a.ht-search-clear:hover:after{
    opacity: 0.5;
}
.search-block__form a.ht-search-clear:after{
    content: "";
    display: block;
    background: url(../img/close.svg);
    height: 16px;
    width: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-indent: 0;
    speak: none;
}

/*==== SEARCH DROPDOWN ==== */
#ht-search{
    position: relative;
}
#ht-headerbar .ht-dropdown,
#ht-sidebar .ht-dropdown {
    background-color: #ffffff;
}
#ht-headerbar #ht-search .ht-dropdown {
    font-size: 14px;
    line-height: 1.4;
    position: absolute;
    min-width: 40px;
    width: auto;
    left: 0;
    right: 0;
    z-index: 2;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 0;
    opacity: 0;
    -webkit-transition: max-height 0.25s ease-in-out;
    -moz-transition: max-height 0.25s ease-in-out;
    -o-transition: max-height 0.25s ease-in-out;
    transition: max-height 0.25s ease-in-out;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
}
#ht-headerbar #ht-search .ht-dropdown li a{
    height: auto;
    min-height: 40px;
    width: 100%;
    background: #ffffff;
    padding: 12px 16px;
    font-size: 15px;
    display: block;
}
#ht-headerbar #ht-search .ht-dropdown li a:hover{
    background: #77bc1f;
    color: #ffffff!important;
    text-decoration: none!important;
}
#ht-headerbar #ht-search.open {
    pointer-events: auto;
    opacity: 1;
}

#ht-headerbar #ht-search .ht-dropdown.open {
    max-height: 300px;
    opacity: 1;
}

/*SideBar*/
#ht-sidebar{
    backface-visibility: hidden;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    position: fixed;
    max-height: calc(100vh - 68px);
    height: 100%;
    z-index: 1;
    background-color: #00833d;
}
#ht-sidebar .ht-sidebar-content {
    background-color: #00833d;
    padding: 16px 0;
    height: 100%;
    overflow: auto;
}
#ht-sidebar .ht-sidebar-content .ht-pages-nav .ht-nav-page-link{
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    display: block;
    font-size: 14px;
    line-height: 1.33;
    padding: 12px 30px;
    height: 40px;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}
@media (pointer:coarse) {
    #ht-sidebar .ht-sidebar-content{
        padding-bottom: 80px;
    }
}

#ht-sidebar .ht-sidebar-content .ht-pages-nav li.open > a.ht-nav-page-link{
    pointer-events: none;
    cursor: none!important;
}
#ht-sidebar .ht-sidebar-content .ht-pages-nav ul li.open .ht-pages-nav-sub li .ht-nav-page-link{
    font-weight: 200!important;
}
#ht-sidebar .ht-sidebar-content .ht-pages-nav .ht-pages-nav-sub .ht-nav-page-link{
    padding-left: 45px;
}
#ht-sidebar .ht-sidebar-content .ht-pages-nav .ht-pages-nav-top li.open .ht-nav-page-link:hover{
    color: #ffffff!important;
    text-decoration: none!important;
}
#ht-sidebar .ht-sidebar-content .ht-pages-nav .ht-pages-nav-top li:not(.open) .ht-nav-page-link:hover{
    background: #77bc1f;
    color: #ffffff!important;
    text-decoration: underline!important;
}

html.show-sidebar, .show-sidebar body, .show-sidebar .main-content{
    overflow: hidden !important;
}
.show-sidebar #ht-headerbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
.show-sidebar #ht-headerbar, .ht-sidebar-bg {
    background-color: #007135;
}
.show-sidebar #ht-sidebar{
    backface-visibility: visible;
    visibility: visible;
    top: 68px;
}
@media screen and (max-width: 1013px){
    .main-nav{
        display: none;
    }
    .burger{
        display: block;
    }
    .burger.open .burger__mid{
        opacity: 0;
    }
    .burger.open .burger__top{
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 7px;
    }
    .burger.open .burger__bot {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 7px;
    }
    .header__container a.logo {
        z-index: 5;
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        margin: auto;
        position: absolute;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
@media screen and (min-width: 1013px) {
    #ht-sidebar {
        backface-visibility: hidden;
        visibility: hidden;
        overflow: hidden;
        display: none;
    }
}

/*MAIN*/
.title{
    color: #303030;
    width: 100%;
    font-weight: normal;
}
p, [class*='_paragraph']{
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

.main-content__row{
    margin-bottom: 10px;
}
.section-header{
    flex-direction: column;
    justify-content: center;
    margin: 50px 0 40px;
    position: relative;
}
.section-header__title{
    font-size: 32px;
    line-height: 1.25;
}

.article__icon{
    height: 50px;
    margin-bottom: 12px;
}
.article__title{
    font-size: 24px;
    line-height: 1.4;
}
.article__paragraph{
    margin: 8px 0;
}

.article__paragraph--version-list{
    flex-flow: row wrap;
    line-height: 1.4 !important;
}
.version-list__item{
    width: 100%;
/*    max-width: 300px;*/
}
.version-list__item:nth-child(2n){
    padding-left: 0px;
}
.article__paragraph .version-link{
    display: inline-block;
    font-size: 15px;
    margin-bottom: 9px;
    text-decoration: underline;
}
.article__read-more{
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}
.article__read-more, .article__read-more:visited{
    color: #00833d;
}
.article__read-more::after{
    font-family: 'icomoon' !important;
    content: '\e904';
    position: absolute;
    top: 50%;
    right: -20px;
    display: block;
    font-size: 20px;
    transform: translateY(-50%);
}

.article__full {
    background: #f3f3f3;
    margin-left: -15px;
    padding: 20px 35px;
    max-width: 748px;
    width: 100%;
}
.article__full .article__icon{
    margin: 9px 20px 13px 0;
}

.footer{
    background: #ffffff;
    border-top: 1px solid #f3f3f3;
    color: #303030;
    padding: 14px 0 18px;
    margin-top: 10px;
    font-size: 14px;
}
.footer__copyright a{
    color: #00833d;
}

@media screen and (max-width: 700px) {
    .row{
        padding: 0 16px;
    }
    .grid{
        margin-right: 0;
        margin-left: 0;
    }
    .grid__grid-item{
        width: 100%;
        padding: 0 0 30px;
    }

    .header__container a.logo .logo__desktop,
    .header .main-nav,
    .header-actions__profile{
        display: none;
    }
    .header__container a.logo .logo__mobile{
        display: block;
    }
    .header-actions__logout a{
        opacity: 0.8;
    }
    .search-block {
        margin-top: 32px;
        margin-bottom: 8px;
    }
    .search-block__title{
        font-size: 18px;
        line-height: 1.44;
        margin-bottom: 9px;
    }
    .section-header{
        margin: 29px 0 27px;
    }
    .section-header__title{
        font-size: 24px;
    }
    .article__title{
        font-size: 18px;
    }
    .article__full{
        display: block;
        min-width: 200px;
        margin: 0 -16px;
        padding: 20px 16px;
        width: calc(100% + 40px);
    }
    .article__full .article__paragraph{
        display: block;
    }
    .article__paragraph--version-list{
        max-height: 100%;
    }
    .version-list__item{
        width: 100%;
        max-width: 95%;
    }
    .version-list__item:nth-child(2n){
        padding-left: 0;
    }
}
@media screen and (min-width: 701px) and (max-width: 1013px){
    .row{
        padding: 0 40px;
    }
    .grid__grid-item{
        width: 50%;
        padding: 0 50px 30px 20px;
    }
    .search-block{
        margin-top: 40px;
        margin-bottom: 8px;
    }
    .search-block__title{
        font-size: 32px;
        margin-bottom: 9px;
    }
    .section-header{
        margin: 29px 0 27px;
    }
    .section-header__title{
        font-size: 24px;
    }
    .article__title{
        font-size: 20px;
    }
    .article__full{
        margin-left: 0;
        padding: 20px 20px;
    }

}
@media screen and (min-width: 1014px) and (max-width: 1270px){
    .row{
        padding: 0 40px;
    }
    .search-block__title{
        font-size: 48px;
        line-height: 1;
        margin-bottom: 27px;
    }
    .article__full{
        margin-left: -5px;
        padding: 20px 25px;
    }

}
@media screen and (min-width: 1910px) {
    .row{
        padding: 0;
    }
    .grid__grid-item {
        width: 33.3%;
    }
    .search-block{
        margin-bottom: 32px;
    }
    .search-block__title{
        font-size: 48px;
        line-height: 1;
        margin-bottom: 27px;
    }
    .article__full{
        margin: -29px -20px 0 0;
        padding: 20px 24px 25px;
        min-width: 305px;
        width: auto;
        flex-direction: column;
    }
    .article__paragraph--version-list{
        display: block;
        max-height: 100%;
    }
    .version-list__item{
        width: auto;
    }
    .version-list__item:nth-child(2n){
        padding-left: 0;
    }
    .footer{
        padding: 22px 0 25px;
    }
}
.sp-license-info{
    position: static !important;
    display: none !important;
}


/* CENTER ALIGN FOR SEARCH BUT NOT SERACH RESULTS */
.ht-headerbar-search {
  display: flex;
  justify-content: center; /* центрируем блок внутри .row */
}

#ht-search {
  display: flex;
  flex-direction: column;
  align-items: center;      /* центрируем содержимое по горизонтали */
  text-align: center;       /* заголовки и текст по центру */
  width: 100%;
}

.search-block__form-container {
  display: flex;
  justify-content: center;  /* центрируем форму поиска */
  width: 100%;
}

.search-block__form {
  justify-content: center;  /* поля и кнопка внутри формы по центру */
}

/* вернуть левое выравнивание для выпадающего списка */
.ht-search-dropdown,
.ht-search-dropdown ul,
.ht-search-dropdown li,
.ht-search-dropdown li a {
  text-align: left;
}

.search-block__form-container {
  position: relative; /* нужно для правильного позиционирования dropdown */
}

.ht-search-dropdown {
  position: absolute; /* не ломает поток, всплывает поверх */
  top: 100%;          /* сразу под формой */
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  max-height: 300px;
  overflow-y: auto;
  text-align: left;   /* левое выравнивание */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
