label.screen-reader-text {
    display: none;
}
input.search-field {
    outline: none;
    border: 1px solid var(--green);
    border-radius: 16px;
    padding: 14px 16px;
    width: 100%;
}
form.searchform>div {
    display: flex;
    position: relative;
    align-items: center;
}
label.searchsubmit-label {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 60px;
    width: 24px;
    height: 24px;
    background: url(../images/icons/search.svg) no-repeat right;
    cursor: pointer;
    padding: 25px;
}
.close-search-form {
    width: 50px;
    height: 50px;
    cursor: pointer;
    align-content: center;
    text-align: center;
}
form.searchform {
    position: absolute;
    width: 100%;
    background: transparent;
    height: 100%;
    align-content: center;
    transition: .4s;
    transform: translateY(-100%);
}
form.searchform.active {
    transform: translateY(0px);
}
.header-container.search-form-open > div,
.header-container.search-form-open > nav {
    opacity: 0;
}
.mobile-header-menu {
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(100.03deg, #F1EFF5 0.99%, #FFFFFF 46.04%, #F1EFF5 99.99%);
    z-index: 5;
    height: 100%;
    max-width: 500px;
    width: 100%;
    transition: .4s;
    transform: translateX(-100%);
}
.mobile-header-menu.active {
    transform: translateX(0);
}
.mobile-navigation-menu {
    border-bottom: 1px solid var(--grey);
    padding: 0;
    padding-bottom: 24px;
}
.mobile-header-menu form.searchform {
    background: transparent;
    position: relative;
    transform: translateY(0);
    margin-top: 24px;
}
.mobile-header-menu input#s {
    border-color: var(--grey);
    color: var(--dark);
    font-size: 20px;
}
.mobile-header-menu input#s::placeholder {
    color: var(--grey);
}
.close-mobile-menu {
    text-align: end;
    width: 100%;
}
.mobile-header-menu .fs-20 {
    font-size: 20px;
}
.mobile-header-menu li.menu-item {
    font-weight: 600;
    list-style: none;
    padding-top: 8px;
}
.mobile-header-menu .close-search-form {
    display: none;
}
.mobile-header-menu label.searchsubmit-label {
    right: 24px;
}
.open-mobile-header-menu span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 50px;
    background: var(--dark);
}
.open-mobile-header-menu {
    flex-direction: column;
    align-self: center;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
    gap: 5px;
}
.open-mobile-header-menu span:last-child {
    width: 16px;
}
.navigation-menu li {
    list-style: none;
}
@media (min-width:1200px) {
    .navigation-menu li a {
        padding-bottom: 8px;
    }
    .navigation-menu li.current-menu-item a {
        border-bottom: 2px solid #19C83C;
    }
}
@media (max-width:1420px) {
    .navigation-menu {
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media (max-width:1200px) {
    .open-mobile-header-menu {
        display: flex;
    }
}