.icon-white {
    filter: brightness(0) invert(1);
    height: 100px;
}

.custom-logo {
    height: 68px;
    width: auto;
    max-width: 145px;
}

@media (min-width: 768px) {
    .custom-logo {
        height: 110px;
        max-width: 200px;
    }
}

.pricing-list-custom {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list-custom li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 6px 0;
}

.pricing-list-custom li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    border-bottom: 1px dotted #999;
    z-index: 0;
}

.service-name-custom,
.service-price-custom {
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 0 6px;
}

.service-price-custom {
    font-weight: 600;
}