/* =========================
   Wrapper
========================= */
.cdt-wrapper {
    width: 100%;
}

/* =========================
   Breadcrumb (isolerad)
========================= */

.cdt-breadcrumb  {
	font-size: 15px;
}

.cdt-breadcrumb {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    margin-bottom: 15px;
}

.cdt-breadcrumb a {
    color: #1D1E20;
    text-decoration: none;
	transition: 350ms;
}

.cdt-breadcrumb a:hover {
    color: #673DE6;
}

.cdt-breadcrumb .separator {
    margin: 0 6px;
}

/* =========================
   Title
========================= */
.cdt-title {
    font-family: "DM Sans", sans-serif;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* =========================
   Tabs Navigation
========================= */
.cdt-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #d5dfff;
}

.cdt-btn {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: #1D1E20;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.cdt-btn:hover {
    color: #673DE6;
}

.cdt-btn.active {
    color: #673DE6;
    font-weight: 600;
}

.cdt-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background-color: #673DE6;
}

/* =========================
   Content
========================= */
.cdt-content-wrapper {
    margin-top: 40px;
    width: 100%;
}

.cdt-content {
    display: none;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.2s ease;
}

.cdt-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {

    .cdt-nav {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }

    .cdt-btn {
        text-align: left;
        padding: 14px 0;
        border-bottom: 1px solid #d5dfff;
        width: 100%;
    }

    .cdt-btn:last-child {
        border-bottom: none;
    }

    .cdt-btn.active {
        border-bottom: 2px solid #673DE6;
    }

    .cdt-btn.active::after {
        display: none;
    }
}