.services__icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 64px;
    transition: 0.3s;
}
.services__icon.is-hidden {
    opacity: 0;
    z-index: -9999;
}
.services-step {
    min-height: 200px;
}
.b-popup .services-wrapper,
.popup .services-wrapper {
    background-color: #ffffff;
}
@media (max-width: 768px) {
    .b-popup .services-wrapper,
    .popup .services-wrapper {
        height: 100vh; 
        overflow-y: auto;
    }
}
@media (max-width: 576px) {
    .services-step {
        min-height: 48px;
    }
    .services__icon {
        left: auto;
        transform: translate(0, -50%);
        width: 32px;
        right: 16px;
    }
}