.account-info-shortcode {
    font-family: "DM Sans", sans-serif;
}

/* =========================
   BREADCRUMB
========================= */
.account-info-shortcode .ai-breadcrumb {
    font-size: 15px;
    margin-bottom: 15px;
}

.account-info-shortcode .ai-breadcrumb a {
    color: #1D1E20;
    text-decoration: none;
    transition-duration: 350ms
}

.account-info-shortcode .ai-breadcrumb a:hover {
    color: #673DE6;
}

/* =========================
   TITLES
========================= */
.account-info-shortcode .ai-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.account-info-shortcode .ai-text {
    font-size: 15px;
    margin-bottom: 15px;
}

/* =========================
   TABLE (DESKTOP)
========================= */
.account-info-shortcode .ai-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #d5dfff;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.account-info-shortcode .ai-table thead {
    background: #fafbff;
}

.account-info-shortcode .ai-table th,
.account-info-shortcode .ai-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #d5dfff;
    font-size: 15px;
    text-align: left;
}

.account-info-shortcode .ai-table thead th:first-child {
    border-top-left-radius: 8px;
}

.account-info-shortcode .ai-table thead th:last-child {
    border-top-right-radius: 8px;
}

.account-info-shortcode .ai-row td {
    color: #333;
}

/* sista raden desktop */
@media (min-width: 769px) {
    .account-info-shortcode .ai-table tbody tr:last-child td {
        border-bottom: none;
    }
}

/* =========================
   BUTTON
========================= */
.account-info-shortcode .ai-btn-edit-group {
    background: #673DE6;
    color: #fff;
    border: 1px solid #673DE6;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
	transition: 350ms ease;;
}

.account-info-shortcode .ai-btn-edit-group:hover {
    background: #5025D1;
}

/* =========================
   ALIGN RIGHT COLUMN
========================= */
.account-info-shortcode .ai-manage-button {
    text-align: right;
}

/* =========================
   TOGGLE
========================= */
.account-info-shortcode .ai-toggle-switch {
    position: relative;
    width: 40px;
    height: 22px;
    display: inline-block;
}

.account-info-shortcode .ai-toggle-switch input {
    display: none;
}

.account-info-shortcode .ai-slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 20px;
}

.account-info-shortcode .ai-slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 2px;
    top: 2px;
    background: white;
    border-radius: 50%;
    transition: 0.2s;
}

.account-info-shortcode .ai-toggle-switch input:checked + .ai-slider {
    background: #673DE6;
}

.account-info-shortcode .ai-toggle-switch input:checked + .ai-slider::before {
    transform: translateX(18px);
}

/* =========================
   MOBILE (CARD LAYOUT)
========================= */
@media (max-width: 768px) {

    .account-info-shortcode .ai-table {
        border: none;
        background: none;
    }

    .account-info-shortcode .ai-table thead {
        display: none;
    }

    .account-info-shortcode .ai-table tbody {
        display: block;
    }

    .account-info-shortcode .ai-row {
        display: block;
        border: 1px solid #d5dfff;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 12px;
        background: #fff;
    }

    /* IMPORTANT: no td borders in mobile */
    .account-info-shortcode .ai-table td {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
	.account-info-shortcode .ai-table td:last-child {
		border-bottom: none !important;
	}

    .account-info-shortcode .ai-manage-button {
        text-align: left;
        padding-top: 10px;
    }

    .account-info-shortcode .ai-title,
    .account-info-shortcode .ai-text {
        text-align: left;
    }

    .account-info-shortcode .ai-row:last-child {
        margin-bottom: 0;
    }
	.account-info-shortcode .ai-table::before {
        content: attr(data-mobile-title);
        display: block;
        font-size: 16px;
        font-weight: 600;
        background: #fafbff;
        border: 1px solid #d5dfff;
        border-bottom: none;
        padding: 14px 16px;
        border-radius: 8px 8px 0 0;
        margin-bottom: -8px;
    }
}