.card {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border: var(--border-light);
    box-shadow: var(--shadow-card);
}

.card-header {
    padding: 0.75rem 1.5rem;
    background: var(--bg-radial-circle);
    color: var(--black-blue);
    font-family: var(--font-title);
    text-align: left;
}

.card-body {
    padding: 1.5rem 2rem;
}

.card-ruban {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 240px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
}

.card-ruban:before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #000;
    border-radius: 10px;
}

.card-ruban-title {
    position: relative;
    margin: 0 -35px 15px;
    padding: 0.7rem 0.5rem 0.5rem;
    background: var(--bg-radial-ellipse);
    color: #000;
    font-family: var(--font-title);
    font-size: 2.25rem;
    font-weight: 600;
    border: 3px solid #000;
}

.card-ruban-title:before,
.card-ruban-title:after {
    content: "";
    position: absolute;
    bottom: -30px;
    border-top: 15px solid #000;
    border-bottom: 15px solid transparent;
}

.card-ruban-title:before {
    left: 0;
    border-left: 15px solid transparent;
}

.card-ruban-title:after {
    right: 0;
    border-right: 15px solid transparent;
}

.band {
    display: flex;
    background-color: #FFF;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    border: var(--border-light);
    position: relative;
    overflow: hidden;
}

.band .status-marker {
    position: absolute;
    top: 0;
    height: 100%;
    width: 0.5rem;
}

.quote {
    position: relative;
    padding: 0.2rem 2rem 1.5rem;
    background: #FFF;
    border-radius: 2rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}
.quote .quote-icon {
    position: absolute;
    top: -3rem;
    left: 3rem;
    color: var(--blue-light);
    font-size: 3.5rem;
}

.number{
    margin-right: 1rem;
    padding-left: 0.1rem;
    width: 4.2rem;
    background-color: var(--yellow);
    text-align: center;
    line-height: 1.2;
    font-family: monospace;
    font-size: 3rem;
    font-weight: 600;
    border: 0.25rem solid #000;
    border-radius: 100%;
}

.strong-red{
    color: #ff0000;
    font-weight: 600;
}

.line-1{
    width: 100%;
    height: 1px;
}
.line-2{
    width: 100%;
    height: 2px;
}

.subtitle-line-txt{
    white-space: nowrap;
    margin-left: 1rem;
    margin-right: 1rem;
    color: #000;
    font-family: var(--font-title);
    font-size: 2.25rem;
    font-weight: 600;
}

.progress-bar {
    background: var(--grey-lavender);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    transition: width 0.3s ease;
}

#item-user .progress-bar {
    height: 1.5rem;
    border-radius: 10px;
    position: relative;
}

#item-user .progress-fill {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 10px;
}

.box-dashed-green {
    padding: 1.5rem;
    background-color: var(--white-green);
    color: #000;
    border: 2px dashed var(--green);
    border-radius: 15px;
}

.box-contact-img, .box-contact-txt {
    background-color: #FFFFFF;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    border-radius: 2rem;
}

.box-contact-img {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.2rem;
    border-left: 3px solid #000;
}

.box-contact-txt {
    width: 100%;
    max-width: 300px;
    /*min-width: 200px;*/
    padding: 0.8rem 2rem;
    text-align: center;
    border-right: 3px solid #000;
}
