body {
    background: #000;
}
.new-search {
    max-width: 445px;
    width: 100%;
    /*flex-grow: 1;*/
}
.new-search * {
    box-sizing: border-box;
}
.new-search__btn {

}
.new-search__btn-inner {

}
.new-search__wrapper {
    position: relative;
}
.new-search__form {
    display: flex;
    justify-content: start;
}
.new-search__field {
    display: block;
    width: 100%;
    bottom: 0;
    padding: 11px 16px;
    border: none;
    outline: none;

    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 14px */
    border-radius: 2px 0 0 2px; 
    background: #999; 
}
.new-search__submit {
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: none;
    outline: none;
    border-radius: 0px 2px 2px 0px;
    background: #C1A051;
    cursor: pointer;
}
.new-search__close {
    display: none;
    width: 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-left: 38px;
}


.new-search__list-wrap {
    position: absolute;
    top: 45px;
    left: 50% !important;
    transform: translateX(-50%);
    width: 100%;
    margin-top: 4px;
    /*display: none;*/
    min-width: 440px;
    /* min-width: 470px; */
}
.new-search__list-wrap.--active {
    display: block;
}
.new-search__list {
    border-radius: 3px;
    background: #999;
    list-style-type: none;
    padding: 10px;
    max-height: 94vh;
    overflow-y: auto;
    margin: 0;
    border: none;

}
.new-search__item {
    border-radius: 5px;
    background: #FFF;
    padding: 4px 9px 4px 4px;
}
.new-search__item:not(:last-child) {
    margin-bottom: 8px;
}
.new-search__item{
    display: flex;
    justify-content: start;
    align-items: center;
    text-decoration: none !important;
    font-family: Verdana,Arial,sans-serif;
}
.new-search__img {
    width: 92px;
    height: 92px;
    flex-shrink: 0;
    margin-right: 10px;
}
.new-search__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.new-search__desc {
    
}
.new-search__name {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    display: block;
    margin-bottom: 6px;
}
.new-search__name .red {
    color: #F61E33;
}
.new-search__mini {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%; /* 14px */
    display: block;
    margin-bottom: 6px;
}
.new-search__bottom {
    display: flex;
    justify-content: start;
    align-items: center;
}
.new-search__price {
    margin-right: 16px;
}
.new-search__price-val {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    display: block;
}
.new-search__price-val span {
    font-size: 14px;
}
.new-search__price-action {
    display: flex;
    justify-content: start;
    align-items: center;
}
.new-search__price-old {
    color: #999;
    font-size: 11px;
    font-weight: 400;
    line-height: 100%;
    text-decoration-line: line-through;
    display: block;
    margin-right: 7px;
}
.new-search__price-percent {
    color: #FFF;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 3px;
    border-radius: 3px;
    background: #F61E33;    
}
.new-search-tags {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}
.new-search-tag {
    border-radius: 3px;
    background: #F61E33;
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    /* height: 22px; */
    padding: 4px 8px;
    margin: 0;
    white-space: nowrap;
    margin-bottom: 4px;
}
.new-search-tag.--new {
    background: #634A9B; 
}
.new-search-tag.--preorder {
    background: #FE96EB; 
}
.new-search-tag:not(:last-child) {
    margin-right: 4px;
}
div[data-search-toggle] {
    display: none;
}
.tt-highlight {
    color: #F61E33;
}
.twitter-typeahead {
    position: static !important;
}

@media screen and (max-width: 1600px) {
    .new-search {
        width: initial;
    }
}
@media screen and (max-width: 950px) {
    .new-search {
        max-width: 180px;
    }    
}
@media screen and (max-width: 768px) {
    .new-search__list {
        /* max-height: 45vh; */
    }
    .new-search__item:last-child {
        margin-bottom: 50vh;
    }
    .new-search__list-wrap {
        min-width: initial;
    }
    .new-search {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        background: #999;
        height: 100vh;
        display: none;
        z-index: 999;
    }
    .new-search.--active {
        display: block;
    }
    .new-search__field {
        background: #707070; 
    }
    .new-search__wrapper {
        padding: 20px 14px;
    }
    .new-search__close {
        display: flex;
        cursor: pointer;
    }
    .new-search__name {
        font-size: 13px;
    }
    .new-search__mini {
        font-size: 12px;
    }
    .new-search__price-val {
        font-size: 14px;
    }
    .new-search__img {
        /* width: 68px;
        height: 68px; */
        width: 48px;
        height: 48px;
        margin-right: 8px;
    }
    .new-search-tag {
        font-size: 10px;
    }
    .new-search__list-wrap {
        top: 60px;
        width: 100%;
    }

    div[data-search-toggle] {
        display: block;
    }
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: none;
    background: none;
    margin: 0;
}
.grecaptcha-badge { visibility: hidden; }