header.ys_header_new {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 200;
    background-color: var(--white);
    border-bottom: 1px solid #c3c5c3;
}

.ys_header_new .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 33px;
    transition: var(--base-transition);
    position: relative;
    z-index: 200;
    background-color: var(--white);
    max-width: unset;
    margin: 0;
}

header.ys_header_new .container.header {
    max-width: 1360px;
    margin: 0 auto;
}

header.ys_header_new.move .container.header {
    height: unset;
}

.ys_header_new .header-group {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: flex-end;
}

.ys_header_new .header-group-nav {
    display: flex;
    gap: 30px;
}

.ys_header_new .header-group-nav a {
    position: relative;
}

.ys_header_new .header-group-nav a::after {
    content: "";
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    transition: var(--base-transition);
}

.ys_header_new .header-group-nav a:hover::after {
    width: 100%;
}

.ys_header_new .header-group-nav a:hover {
    color: var(--text);
    text-decoration: none;
}

.ys_header_new .header-group-icon {
    display: flex;
    gap: 24px;
}

.ys_header_new .header-group-contact {
    display: flex;
    flex-direction: column;
}

.ys_header_new .header-burger {
    display: none;
}

.ys_header_new .header-group-icon-heart {
    display: none;
}

html.no-scroll {
    overflow: hidden;
    padding-right: 17px;
}

html.no-scroll header {
    padding-right: 17px;
}

@media screen and (max-width: 1200px) {
    html.no-scroll {
        padding-right: 0;
    }

    html.no-scroll header {
        padding-right: 0;
    }
}

.ys_header_new .header-burger-group.active span {
    background-color: var(--light-gray);
}

.ys_header_new .header-burger-child {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: absolute;
    width: 100%;
    /* height: 470px; */
    background-color: var(--light-accent);
    top: 90px;
    left: 0;
    padding: 30px;
    transition: var(--base-transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    z-index: 50;
}
@media screen and (max-width: 1200px) {
    .ys_header_new .header.active {
        background-color: var(--accent);
    }
}

.ys_header_new .header-burger-child.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    box-shadow: 0 0 10px #00000060;
}

.ys_header_new .header-burger-child-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ys_header_new .header-burger-child-btn {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 20px;
    background-color: var(--accent);
    border-radius: 10px;
    color: var(--white);
    border: none;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    box-sizing: border-box;
}
.ys_header_new .header-burger-child-btn::after,
.ys_header_new .header-burger-child-btn::before {
    display: none;
}
.ys_header_new .header-burger-child-contacts {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.ys_header_new .header-burger-child-contacts-text {
    color: var(--white);
}

.ys_header_new .header-search-child {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    background-color: var(--light-accent);
    top: 90px;
    left: 0;
    transition: var(--base-transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    z-index: 50;
}

.ys_header_new .header-search-child.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    box-shadow: 0px 0px 10px #00000050;
}

.ys_header_new .header-search-svg path {
    transition: var(--base-transition);
}

.ys_header_new .header-search-svg.active path {
    fill: var(--light-gray);
}

.ys_header_new .header-search-child-bg {
    padding: 5px 30px;
    background-color: var(--accent);
}

.ys_header_new .header-search-child form {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.ys_header_new .header-search-child-group {
    padding: 30px;
}

.ys_header_new .header-search-child input {
    width: 100%;
    height: 30px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #dcdddc !important;
    padding: 6px 9px 6px 32px;
}

.ys_header_new .header-search-child input::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: var(--gray);
}

.ys_header_new .header-search-child input,
.ys_header_new .header-search-child-btn button {
    border: none;
    outline: none;
    border-radius: 10px;
}

.ys_header_new .header-search-child-btn {
    position: absolute;
    top: 7px;
    right: 9px;
    display: flex;
    gap: 16px;
}

.ys_header_new .header-search-child-btn button {
    all: unset;
    width: max-content;
    background: var(--white);
    cursor: pointer;
}

.ys_header_new .header-search-child-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ys_header_new .header-img img {
    width: 120px;
    height: 42px;
}

.header-group-search {
    width: 18%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.header-group-search form {
    width: 0%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.header-group-search button.header-group-search-btn {
    all: unset;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7px;
    padding: 5px;
    cursor: pointer;
    filter: brightness(0);
    transition: .5s;
}

.header-group-search._active button.header-group-search-btn {
    all: unset;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7px;
    padding: 5px;
    cursor: pointer;
    filter: brightness(1);
    transition: .5s;
}

.header-group-search button.header-group-search-btn::after,
.header-group-search button.header-group-search-btn::before {
    display: none;
}

.header-group-search input {
    width: 100%;
    height: 30px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #c3c5c3;
    padding: 6px 9px;
}

.header-group-search._active form {
    opacity: 1;
    pointer-events: all;
    width: 100%;
}

.header-group-search input::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #c3c5c3;
}

@media screen and (max-width: 1300px) {
    .header-group-search {
        width: 16%;
    }
    .ys_header_new .header-group {
        gap: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .ys_header_new .header-group-nav {
        display: none;
    }

    .ys_header_new .header-group {
        width: unset;
    }

    .header-group-search {
        display: none;
    }

    .ys_header_new .header {
        padding: 50px 30px 16px;
        height: unset;
    }

    .ys_header_new .header-group-contact {
        display: none;
    }

    .ys_header_new .header-burger {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .ys_header_new .header-burger-group {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .ys_header_new .header-burger-group span {
        width: 20px;
        height: 2px;
        background-color: var(--text);
        transition: var(--base-transition);
    }

    .ys_header_new .header-img img {
        width: 60px;
        height: 24px;
    }

    .ys_header_new .header-group-icon img {
        width: 20px;
        height: 20px;
    }

    .ys_header_new .header-group-icon-profile {
        display: none;
    }

    .ys_header_new .header-group-icon-heart {
        display: block;
    }
}
