.top-funds {
    padding: 40px 15px;
}

.top-funds__wrapper {
    max-width: 1260px;
    margin: auto;
}

@media only screen and (max-width: 1280px) {
    .top-funds__wrapper {
        max-width: 1160px;
    }
}

.mf-listing {
    display: block;
    padding: 0;
    margin: 0;
}

.mf-listing li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #D8D8D8;
}

@media only screen and (max-width: 767px) {
    .mf-listing li {
        display: block;
        padding: 15px 0;
    }
}

.mf-listing li:last-child {
    border-bottom: none;
}

.mf-listing__head {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

@media only screen and (max-width: 767px) {
    .mf-listing__head {
        margin-bottom: 10px;
    }

    .mf-listing__head img {
        width: 50px;
        height: auto;
    }

    .mf-listing__head .title {
        flex: 1;
    }
}

.mf-listing__head .title a {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #153A5B;
    margin-bottom: 8px;
}

.mf-listing__head .title a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .mf-listing__head .title a {
        font-size: 14px;
        line-height: 20px;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        margin-bottom: 5px;
    }
}

.mf-listing__head .title .props {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 0;
}

.mf-listing__head .title .props li {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    position: relative;
    padding: 0;
    border: none;
}

@media only screen and (max-width: 767px) {
    .mf-listing__head .title .props li {
        font-size: 12px;
        line-height: 16px;
    }
}

.mf-listing__head .title .props li:after {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    width: 1px;
    height: 100%;
    background-color: #D8D8D8;
}

.mf-listing__head .title .props li:last-child:after {
    content: none;
}

.mf-listing__head .title .props li .rating {
    position: relative;
    top: -3px;
}

@media only screen and (max-width: 767px) {
    .mf-listing__head .title .props li .rating {
        width: 10px;
        top: -1px;
    }
}

.mf-listing__info {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

@media only screen and (max-width: 767px) {
    .mf-listing__info {
        display: block;
    }
}

.mf-listing__table {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width: 767px) {
    .mf-listing__table {
        margin-bottom: 10px;
    }
}

.mf-listing__table ul {
    flex: 1;
    padding: 0;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .mf-listing__table ul:after {
        content: "";
        position: absolute;
        top: 0;
        right: -6px;
        width: 1px;
        height: 100%;
        background-color: #D8D8D8;
    }

    .mf-listing__table ul:last-child:after {
        content: none;
    }
}

.mf-listing__table ul li {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-align: center;
    padding: 0;
    border: none;
}

@media only screen and (max-width: 767px) {
    .mf-listing__table ul li {
        font-size: 14px;
        line-height: 20px;
    }
}

.mf-listing__table ul li span {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

@media only screen and (max-width: 767px) {
    .mf-listing__table ul li span {
        font-size: 12px;
        line-height: 16px;
    }
}

.mf-listing__table ul li span.positive {
    color: #27c779;
}

.mf-listing__table ul li span.negative {
    color: #e5455d;
}

.mf-listing__btn a {
    background: #153a5b;
    display: block;
    width: 100px;
    height: 42px;
    margin: 0 auto;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    -webkit-box-shadow: 0 5px 15px rgb(35 103 154 / 68%);
    box-shadow: 0 5px 15px rgb(35 103 154 / 68%);
    text-decoration: none;
    padding: 12px;
}

@media only screen and (max-width: 767px) {
    .mf-listing__btn a {
        width: 100%;
        height: 28px;
        font-size: 12px;
        line-height: 14px;
        padding: 6px;
        border-radius: 4px;
        -webkit-box-shadow: 0 1px 5px rgb(35 103 154 / 68%);
        box-shadow: 0 1px 5px rgb(35 103 154 / 68%);
    }
}