.submit_search {
    background: none;
    border: 0;
}

.search {
    display: flex;
    transition: width .2s;
    width: 100%;
    position: absolute;
    padding: 9px 0;
    z-index: 2;
    top: 50%;
    right: -23px;
    transform: translateY(-50%);
}

.search_wrapper {
    position: relative;
    height: 20px;
    width: 20px;
    margin-left: auto;
    margin-right: 40px;
}

.search--disable {
    width: 0 !important;
    overflow: hidden;
}

.search:after {
    content: '';
    width: 130%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0, #000 44%);
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 16%, rgba(0, 0, 0, 0.64) 100%, rgba(255, 255, 255, 0) 100%);
}

.search_trigger {
    cursor: pointer;
}

.search-input {
    padding: 12px 37px 12px 30px;
    letter-spacing: 0.025em;
    font-weight: 300;
    color: #ffffff;
    background: #2f2f35;
    border: 0;
    width: 100%;
    font-size: 15px;
    z-index: 2;
    border-radius: 21px;
}

.search-input::-webkit-input-placeholder {
    color: #727276;
}

.search-input::-moz-placeholder {
    color: #727276;
}

.search-input:-moz-placeholder {
    color: #727276;
}

.search-input:-ms-input-placeholder {
    color: #727276;
}

.submit_search {
    position: absolute;
    z-index: 2;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-search {
    position: relative;
    left: 0;
    transition: left .2s;
}

.title-search-result {
    background: #212125;
    display: none;
    margin: 0;
    top: 100% !important;
    right: 0 !important;
    left: unset !important;
    bottom: unset !important;
    list-style: none;
    z-index: 10000;
    border-radius: 0;
    border: 0 solid rgba(0, 0, 0, .2);
    padding: 19px
}

.title-search-result a {
    color: #fff;
    font-size: 14px;
    line-height: 14px
}

.title-search-result a b, body header nav ul li.active a {
    color: #dd1552
}

@media screen and (max-width: 1024px) {
    .title-search-result {
        top: unset !important;
        right: unset !important;
        left: 0 !important;
        bottom: 100% !important;
        margin-bottom: -1px;
    }

    .search {
        position: fixed;
        bottom: 0;
        top: unset;
        left: 0;
        padding: 10px 10px 10px 50px;
        margin-right: -10px;
        transform: unset;
    }

    .search--disable {
        padding: 0;
    }


    .mobile-search.active {
        left: 11%;
    }

    .search_wrapper {
        margin-left: unset;
        margin-right: unset;
    }
}


@media screen and (max-width: 426px) {
    .mobile-search.active {
        left: 11%;
    }
}