.doctor-services {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.doctor-services__item {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
}

.doctor-services__name {
    font-size: 17px;
    line-height: 1.41;
    color: #000;
    margin-right: 48px;
    margin-bottom: 0;
}

.doctor-services__button {
    width: 32px;
    height: 32px;
    background-color: #C7AC23;
    padding: 0;
    border: 0;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity ease .5s;
}

.doctor-services__button:hover {
    opacity: .8;
}

.doctor-services__button::before {
    content: '';
    background: url(/images/doctor-detail-list-arrow.svg) no-repeat center center;
    display: block;
    width: 100%;
    height: 100%;
}

.doctor-services__button-text {
    display: none;
}


@media screen and (min-width: 1280px) {

    .doctor-services__button {
        border-radius: 24px;
        width: auto;
        height: auto;
        padding: 12px 24px;
        font-weight: 500;
        font-size: 15px;
        line-height: 1.6;
        text-transform: uppercase;
        color: #fff;
    }

    .doctor-services__button::before {
        display: none;
    }

    .doctor-services__button-text {
        display: inline;
    }
}