:root {
    --tc-accent: #1ca084;
    /* change if your theme uses another accent color */
    --row-sep: rgba(255, 255, 255, 0.06);
    /* subtle divider for dark theme */
}

.amc-service-process {
    padding: 60px 0;
}

.amc-table {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.6;
    margin-top: 20px;
}

.amc-table thead th {
    text-align: left;
    font-weight: 600;
    padding: 14px 12px;
    border-bottom: 1px solid var(--tc-accent);
}

.amc-table tbody tr {
    border-bottom: 1px solid var(--row-sep);
    transition: background .3s ease;
}

.amc-table td {
    padding: 16px 12px;
    vertical-align: top;
}

.amc-table .stage {
    width: 30%;
}

.amc-table tbody tr:hover td:first-child {
    box-shadow: inset 2px 0 0 0 var(--tc-accent);
}

/* Responsive layout for mobile */
@media (max-width: 768px) {

    .amc-table,
    .amc-table thead,
    .amc-table tbody,
    .amc-table th,
    .amc-table td,
    .amc-table tr {
        display: block;
        width: 100%;
    }

    .amc-table thead {
        position: absolute;
        left: -9999px;
        top: -9999px;
        /* hide header */
    }

    .amc-table tbody tr {
        border: 1px solid var(--row-sep);
        border-radius: 8px;
        padding: 14px 14px;
        margin-bottom: 12px;
    }

    .amc-table td {
        padding: 6px 0;
    }

    .amc-table .stage {
        width: auto;
        margin-bottom: 6px;
    }

    .amc-table td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        letter-spacing: .02em;
        opacity: .7;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .amc-table .stage strong {
        position: relative;
        padding-left: 10px;
    }

    .amc-table .stage strong::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 4px;
        height: 4px;
        border-radius: 2px;
        background: var(--tc-accent);
        transform: translateY(-50%);
    }
}



#google_translate_element {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.translate {
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background-color: #000;
    overflow: hidden;
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-content: center;
    cursor: pointer;
    -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 8%);
    box-shadow: 0 0 12px rgb(255 255 255 / 8%);
    z-index: 1000;
}

.translate i {
    color: #fff;
    font-size: 24px;
}

.goog-te-combo {
    height: 40px;
}