.popular-searches {
    font-family: 'Univers LT Std';
    color: #212121;
    background-color: #FCF8F5;
    padding: 0px 30px 21px;
}

.popular-searches__body {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.popular-searches__title {
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 25px;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.popular-searches__items {
    position: relative;
    height: 47px;
    padding: 0 50px;
}

.popular-searches__items::after {
    content: '';
    display: block;
    height: 100%;
    width: 150px;
    background: linear-gradient(270deg, #FCF8F5 35.12%, rgba(252, 248, 245, 0) 93.61%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.popular-item {
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
}

.popular-item__body {
    padding: 9px 10px;
}

.popular-item__name {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
}


.popular-searches__items .popular-item.first .popular-item__body,
.popular-searches__items .popular-item.second .popular-item__body,
.popular-searches__items .popular-item.third .popular-item__body {
    position: relative;
    padding-left: 40px;
}

.popular-searches__items .popular-item.first .popular-item__body::before,
.popular-searches__items .popular-item.second .popular-item__body::before,
.popular-searches__items .popular-item.third .popular-item__body::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.popular-searches__items .popular-item.first .popular-item__body::before {
    background: conic-gradient(from 180deg at 50% 50%, #FFFFFF 0deg, #E9CF8F 360deg);
}
.popular-searches__items .popular-item.second .popular-item__body::before {
    background: conic-gradient(from 180deg at 50% 50%, #FFFFFF 0deg, #9E9E9E 360deg);
}
.popular-searches__items .popular-item.third .popular-item__body::before {
    background: conic-gradient(from 180deg at 50% 50%, #FFFFFF 0deg, #E7E7E7 360deg);
}

.popular-searches__items .slick-slide {
    margin: 0 5px;
}

.popular-searches__items .slick-prev ,
.popular-searches__items .slick-next {
    position: absolute;
    top: 0;
    z-index: 10;
    display: block;
    width: 40px;
    height: 40px;
    background: #000000;
}

.popular-searches__items .slick-prev {
    left: 0;
}

.popular-searches__items .slick-next {
    right: 0;
}

.popular-searches__items .slick-prev::after,
.popular-searches__items .slick-next::after {
    content: "";
    display: block;
    width: 5px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popular-searches__items .slick-prev::after {
    background: url('../../../../../assets/images/arrow-left-white.svg') no-repeat 0 0 / cover;
}

.popular-searches__items .slick-next::after {
    background: url('../../../../../assets/images/arrow-right-white.svg') no-repeat 0 0 / cover;
}

.popular-searches__items .slick-arrow {
    padding: 0;
}