.header .header__row {
    align-items: center;
}
.header__col--search {
    width: 48px;
    margin-right: 3.5vw;
}

.header__search {
    position: relative;
    width: 48px;
}
.header__search-btn {
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.header__search-panel{
    background-color: #fff;
    min-width: 320px;
    width: 100vw;
    position: absolute;
    right: 0;
    top: -150px;
    transition: top .5s ease;
}

.header__search-panel.__active{
    top: 0;
}

.header__search-form{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 11%;
}
.header__search-input{
    background-color: #fff;
    border: 1px solid #DBDBDB;
    width: 100%;
    height: 52px;
    font-size: 14px;
    padding: 5px 50px 5px 25px;
}
.header__search-input::placeholder{
    color: #969696;
    position: relative;
    top: 0;
    font-size: 12px;
}
.header__search-input:focus::placeholder{
    opacity: 0;
}

.header__search-btn{
    width: 48px;
    height: 48px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}
@media screen and (min-width: 1601px) {
    .header__col--search{
        margin-left: 5.814815%;
        flex: 0 0 auto;
    }
}
@media screen and (max-width: 1280px) {
    .header__rightbar .header__search {
        display: none;
    }
    .header__col--search {
        order: 2;
        margin-right: 0;
    }

    .header__col--menu {
        order: 1;
        margin-right: 1.5vw;
    }

    .header__row {
        justify-content: flex-end;
    }
    .header__search-input{
        height: 40px;
        padding-right: 70px;
    }

    .header__search-btn {
        width: 40px;
        height: 40px;
        right: 15px;
    }
}

@media screen and (max-width: 640px) {
    .header__search-form {
        padding-left: 16%;
    }
}

@media screen and (max-width: 430px) {
    .header__search-form {
        padding-left: 25%;
    }

    .header__search-panel.__active{
        top: -10px;
    }

}