@media (max-width: 600px) {
    .services {
        margin: 12px 0;
    }

    .services .container {
        padding: 0 16px;
    }

    .services .header .title {
        font-size: 14px;
    }

    .services h1 {
        font-size: 18px;
        color: #333333;
    }

    .services .wrapper {
        display: block;
        margin-top: 24px;
    }

    .services.sub .wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .services.sub.code .wrapper {
        display: block;
        grid-template-columns: unset;
        gap: unset;
    }

    .services .wrapper .spinner {
        width: 20%;
    }

    .services .service {
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        padding: 16px 0;
        border-radius: unset;
        text-decoration: none;
        transition: transform 0.3s ease-in, box-shadow 0.3s ease-in, opacity 0.05s ease;
    }

    .services .service:first-child {
        padding-top: 0;
    }

    .services .service:not(:last-child) {
        border-bottom: 1px solid #EFEFF4;
    }

    .services .service:active {
        opacity: 0.7;
        transition: opacity 0.05s ease;
    }

    .services .service img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    .services .service .content {
        flex: 1 1 0;
        margin-left: 12px;
    }

    .services .service .content .title {
        text-align: left;
        font-size: 16px;
        font-weight: 700;
        line-height: 125%;
        justify-content: space-between;
    }

    .services .service .content .text {
        margin-top: 2px;
        text-align: left;
        font-size: 12px;
        font-weight: 400;
        line-height: 125%;
    }

    .services.sub .subService {
        height: 100px;
        padding: 16px;
        border-radius: 12px;
        transition: transform 0.3s ease-in, box-shadow 0.3s ease-in, opacity 0.05s ease;
    }

    .services.sub .subService p {
        font-size: 14px;
        font-weight: 800;
        color: #FFFFFF;
    }

    .services.sub .subService img {
        width: 16px;
        height: 16px;
    }

    .services.sub + .partners .options {
        grid-template-columns: 1fr 1fr;
    }

    .filters-popup .regionsList {
        min-width: unset;
    }

    .cashierRegions label {
        justify-content: space-between;
    }

    .cashierRegions label p {
        margin-right: 4px;
        font-size: 16px;
    }

    .cashierRegions label select {
        font-size: 14px;
    }

    .cashierRegions label select option {
        font-size: 14px;
    }
    .services.cards + .partners .options {
        gap: 0;
    }
}