.restaurants__info {
    position: absolute; 
    top: 130px;
    left: 50px;
    width: 568px;
    padding: 30px;
    background: rgba(255, 124, 0, 0.85);
    border-radius: 30px;
    height: 75vh;
}

.restaurants__info-title {
    color: #FFF;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.restaurants__list {
    overflow: scroll;
    height: 61vh;
    display: grid;
    gap: 15px;
    border-radius: 20px;
}

.restaurants__list::-webkit-scrollbar {
    width: 0;
}
.custom-icon img {
    display: block;
    width: 30px;
    height: 30px;
}

.restaurants__list_mobile {
    display: none;
}

@media screen and (max-width: 991px) {
    .restaurants__info {
        display: none;
    }

    .restaurants__list_mobile {
        display: grid;
        gap: 15px;
        padding: 0 20px 50px;
        max-height: 80vh;
        overflow-y: auto;
    }
}