.site-header__search-form {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
    width: 100%;
}

.site-header__search-form .search-form {
    height: 100%;
    width: 175px;
}

.site-header__search-form form {
    height: 100%;
}

.search-row {
    display: flex;
    align-items: center;
    height: 100%;
}

.search-row .form-item {
    margin-bottom: 0;
    height: 100%;
    width: 100%;
}

.search-row button {
    flex-shrink: 0;
}

.search-form__title.h3 {
    margin-bottom: 24px;
}

.search-form input {
    font-size: 14px;
    color: var(--header-search-color, rgba(51, 51, 51, 0.8));
    background-color: transparent;
    height: 100%;
    width: 100%;
    padding-inline-start: 1.5em;
    padding-block: 0.7em;
    border: none;
    transition: color .2s ease-in-out;
}

.search-page .form-item__input[type="text"] {
    width: 100%;
    background-color: rgba(51, 51, 51, 0.06);
    color: var(--color-black);
    font-size: 16px;
    line-height: 1;
    caret-color: var(--color-red);
    position: relative;
    padding: 16px 24px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    transition: 0.3s ease-in-out;
}

.search-page .pzpo-btn--submit {
    padding: 18px 50px;
    max-height: 51px;
}

.search-form input::placeholder {
    opacity: 1;
    transition: opacity .2s ease-in-out;
}

.search-form button {
    height: 100%;
    padding:0 10px;
    cursor: pointer;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-form .icon-search {
    background-color: var(--header-search-icon-color, rgba(51, 51, 51, 0.5));
    transition: background-color .2s ease-in-out;
}

.site-header.sticky .site-header__search-form {
    position: absolute;
    justify-content: start;
    left: -183px;
    height: 65px;
}

@media (max-width: 767px) {
    .search-form input {
        font-size: 13px;
    }
}

@media (max-width: 550px) {
    .search-form .search-row {
        justify-content: center;
    }
    .search-form input {
        font-size: 13px;
    }
}