.assistant-card {
    scroll-margin-top: 16px;
    /* Bootstrap .card */
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    margin: 2rem 0;
    min-height: 700px;
    /* .card-wizard */
    width: 610px;
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .assistant-card {
        width: 100%;
        min-height: 600px;
    }
}

@media (max-width: 480px) {
    .assistant-card {
        width: 100%;
    }
    .assistant__body-content {
        padding: 1rem !important;
    }
}

.assistant__header {
    background-color: #16597b;
    border-radius: 0.5rem 0.5rem 0 0;
    color: white;
    height: 108px;
    text-align: center;
}

.assistant__close-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.assistant__close-btn {
    background-color: #2379a4;
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    align-content: center;
}

.assistant__close-btn:hover {
    background-color: #dd6660;
    transition: 0.6s;
    text-decoration: none;
    color: white !important;
}

.assistant__nav {
    margin: 0;
    padding: 0;
}

.assistant__nav > li {
    background-color: #4e7990;
    border-radius: 40px;
    display: inline-block;
    line-height: 40px;
    margin-left: 25px;
    text-align: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
}

.assistant__nav > li.active {
    background-color: #22acd6;
    transition: 1200ms;
}

.assistant__nav > :first-child {
    margin-left: 0;
}

.assistant__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.assistant__body .tab-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.assistant__body .tab-pane.active {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.assistant__step-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.assistant-field {
    text-align: left;
    margin-bottom: 3rem;
}

.assistant-field__title {
    color: #666;
    font-size: clamp(1rem, calc(1.786vw + 10px), 1.5rem);
    font-weight: 400;
    margin: 0;
    margin-bottom: 0.75rem;
}

.assistant-field__subtitle {
    color: #666;
    display: block;
    margin: 0;
    height: 0;
    position: relative;
}

.assistant-field__input {
    border-radius: 10px;
    font-size: clamp(1.25rem, calc(2.679vw + 11px), 1.75rem);
    margin-bottom: 0.5rem;
    font-weight: 300;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
}

.assistant-field__input--overlay {
    margin-top: -1.75rem;
}

.assistant-field__error {
    color: #dc3545;
    text-align: left;
    font-weight: 500;
    margin: 0;
    height: 0;
    position: relative;
}

/* Assistant Tab Container */
.assistant-tab-container {
    flex: 1;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Assistant Footer Navigation */
.assistant-footer-navigation {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Header Content Wrapper */
.assistant__header-content {
    display: flex;
    flex-flow: column;
    padding: 1rem 2rem;
}

/* Header Subtitle */
.assistant__subtitle {
    margin: 0;
    color: #c7c7c7;
    text-align: start;
    font-size: 1rem;
    margin-top: 0.25rem;
}

/* Body Content Wrapper */
.assistant__body-content {
    width: 100%;
    padding: 1rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Footer Navigation Modifier */
.assistant-footer-navigation--end {
    justify-content: end;
}

.assistant-footer-navigation > .btn {
    width: 8.75rem;
}

/* Terms and Conditions Step */
.assistant__terms-container {
    text-align: start;
}

.assistant__terms-textarea {
    resize: none;
    text-align: justify;
    margin: 1.5rem 0;
}

.assistant__terms-accept {
    font-size: 1.25rem;
    text-align: center;
    align-content: center;
}

.assistant__terms-accept input[type="checkbox"] {
    scale: 1.25;
}

/* Detail Cards (Tab-4) */
.detail-card {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.detail-card__label {
    color: #666;
    font-size: 18px;
}

.detail-card__value {
    color: #333;
    font-size: 23px;
    font-weight: 300;
    margin: 0;
}

.detail-card__value--large {
    font-size: 38px;
    font-weight: 500;
}

.detail-card__value--small {
    font-size: 18px;
    font-weight: 400;
}
