.search-bar {
    position: relative;
    margin-top: 10px
}

.search-bar::before {
    content: '';
    position: absolute;
    top: 0;
    height: 1px;
    width: 8rem;
    border-bottom: 1px solid #fff;
    opacity: .3
}

.search-bar.mobile-search::before {
    content: none
}

.search-bar.mobile-search {
    margin: 0
}

.search-bar .search-box {
    display: flex;
    align-items: center;
    height: 24px;
    background: #1b3139;
    border-radius: 25px;
    margin: 20px auto;
    padding: 15px;
    max-width: 110px;
    width: 100%;
    cursor: pointer
}

.search-bar .search-box input {
    background: 0 0;
    border: none;
    font-size: 13px;
    line-height: 15px;
    padding-left: 4px;
    cursor: pointer;
    caret-color: transparent;
    outline: none;
    width: inherit
}

.search-bar .search-box input::placeholder {
    color: #90a5b1
}

.search-popup {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 50;
    height: 100%;
    top: 0
}

.search-popup img.closebtn {
    width: 27px;
    height: 27px;
    position: absolute;
    right: 0;
    cursor: pointer;
    margin-top: -51px
}

.search-pop-inner {
    position: fixed;
    top: 30%;
    left: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    min-height: 75px;
    background: #fff;
    box-shadow: 0 20px 30px rgb(27 49 57/15%);
    width: 83.333%
}

.search-box-inner {
    display: flex;
    width: 100%
}

.search-box-inner img {
    width: 35px;
    margin-top: 8px;
    height: 25px
}

.search-box-inner input[type=text] {
    display: block;
    align-items: center;
    padding: 8px 12px 8px 8px;
    height: 41px;
    background: #fff;
    flex: none;
    border: none;
    max-width: 1030px;
    font-size: 12px;
    line-height: 25px;
    outline: none;
    width: 70%
}

@media(min-width:992px) {
    .search-pop-inner {
        margin-left: 80px;
        top: 50%;
        padding: 23px;
        min-height: 89px
    }
    .search-box-inner input[type=text] {
        width: 99%;
        font-size: 16px
    }
    .search-bar .search-box {
        max-width: 130px
    }
}

@media(max-width:991px) {
    .search-bar .search-box {
        margin: 15px auto
    }
}

.search-box-inner a.btn--orange {
    max-width: 90px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0;
    position: absolute;
    right: 0
}

.search-box-inner a.btn--orange:hover {
    background-color: #bd2b26;
    border-color: #bd2b26
}

.suggestions {
    background: #fff
}

.suggestions ul {
    list-style: none;
    margin: 0;
    padding: 15px 0 0
}

.suggestions ul li {
    padding: 7px 0
}

.suggestions ul a {
    color: #333
}