.yt-services-list {
    --yt-service-active: #0577b5;
    --yt-service-text: #00598f;
    width: 100%;
    max-width: 370px;
    font-family: inherit;
}

.yt-service-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 104px;
    padding: 18px 18px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.85);
    color: var(--yt-service-text);
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 180ms ease;
}

.yt-service-item:hover,
.yt-service-item:focus,
.yt-service-item.is-active {
    color: var(--yt-service-text);
    outline: none;
}

.yt-service-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    line-height: 0;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible;
    transition: transform 180ms ease;
}

.yt-service-icon-img,
.yt-service-icon img,
.yt-service-icon svg {
    display: block;
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
    object-fit: contain;
}

.yt-service-icon-active {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.yt-service-icon-normal {
    opacity: 1;
    visibility: visible;
}

.yt-service-item:hover .yt-service-icon-active,
.yt-service-item:focus .yt-service-icon-active,
.yt-service-item.is-active .yt-service-icon-active,
.yt-service-item[aria-current="page"] .yt-service-icon-active,
body.single-yt_service .yt-service-item.is-active .yt-service-icon-active {
    opacity: 1;
    visibility: visible;
}

.yt-service-item:hover .yt-service-icon-normal,
.yt-service-item:focus .yt-service-icon-normal,
.yt-service-item.is-active .yt-service-icon-normal,
.yt-service-item[aria-current="page"] .yt-service-icon-normal,
body.single-yt_service .yt-service-item.is-active .yt-service-icon-normal {
    opacity: 0;
    visibility: hidden;
}

.yt-service-item:hover .yt-service-icon,
.yt-service-item:focus .yt-service-icon,
.yt-service-item.is-active .yt-service-icon {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    transform: translateY(-1px);
}

.yt-service-title {
    display: block;
    max-width: 230px;
    color: #fff;
    font-size: 15px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0.1px;
}

.yt-service-icon-fallback {
    font-size: 22px;
    font-weight: 800;
}

@media (max-width: 480px) {
    .yt-services-list {
        max-width: 100%;
    }

    .yt-service-item {
        min-height: 88px;
        gap: 16px;
        padding: 14px;
    }

    .yt-service-icon,
    .yt-service-icon-img,
    .yt-service-icon img,
    .yt-service-icon svg {
        flex-basis: 56px;
        width: 56px;
        height: 56px;
        max-width: 56px;
        max-height: 56px;
    }

    .yt-service-title {
        font-size: 14px;
    }
}
