.rossa-chevron-down::after {
    content: url(../img/chevron-down.svg);
    width: 20px;
    height: 20px;
    right: 0;
    position: absolute;
    color: var(--rossa-color-black);
    fill: var(--rossa-color-black);
    margin: 0 auto;
}


.rossa-chevron-up::after {
    content: url(../img/chevron-up.svg);
    width: 20px;
    height: 20px;
    right: 0;
    position: absolute;
    color: var(--rossa-color-black);
    fill: var(--rossa-color-black);
    margin: 0 auto;
}



/***** FORM *****/
form.rossa-box-form {
    all: unset;
    display: flex;
    flex-direction: column;
    gap: 1em;
    box-sizing: border-box;
    align-items: flex-start;
}

/***** NOTIFY *****/
.sn-notifications-container.sn-is-x-center {
    font-size: 16px;
    box-sizing: border-box;
    padding: 1em;
    padding-top: 3.5em;
}

.sn-notifications-container.sn-is-right.sn-is-top .rossa-notify{
    margin-right: 60px;
}

.rossa-notify {
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f9fafb;
    color: #111827;
    box-shadow: 0 0 #000, 0 0 #000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border: 1px solid #e5e7eb;
    border-radius: 0.5em;
    padding: 1em;
    width: 100%;
    max-width: 400px;
}

@media (min-width: 432px) {
    .rossa-notify {
        width: 400px;
        max-width: 400px;
    }
}

.rossa-notify .sn-notify-title,
.rossa-notify .sn-notify-text {
    color: inherit;
}

.rossa-notify .sn-notify-title {
    font-weight: 700;
    font-size: 1em;
}

.rossa-notify .sn-notify-text {
    font-size: 0.875em;
    margin-top: 0.5em;
}

.rossa-notify .sn-notify-close {
    color: inherit;
    opacity: 0.9;
}

@media (hover: hover) {
    .rossa-notify .sn-notify-close:hover {
        opacity: 1;
    }
}

.rossa-notify::before {
    background-color: #111827;
}

.rossa-notify.rossa-notify--autoclose-hide::before {
    display: none;
}

/* NOTIFY DEFAULT DARK */
.rossa-notify .rossa-notify--dark .sn-notify-close {
    color: #f3f4f6;
    opacity: 0.9;
}

@media (hover: hover) {
    .rossa-notify .rossa-notify--dark .sn-notify-close:hover {
        opacity: 1;
    }
}

.rossa-notify.rossa-notify--dark {
    background-color: #1f2937;
    border-color: #374151;
    color: #f3f4f6;
}

.rossa-notify.rossa-notify--dark .sn-notify-title,
.rossa-notify.rossa-notify--dark .sn-notify-text {
    color: inherit;
}

.rossa-notify.rossa-notify--dark::before {
    background-color: #f3f4f6;
}


/* NOTIFY SUCCESS */
.rossa-notify.rossa-notify--success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #14532d;
}

.rossa-notify.rossa-notify--success .sn-notify-title,
.rossa-notify.rossa-notify--success .sn-notify-text {
    color: inherit;
}

.rossa-notify.rossa-notify--success .sn-notify-close {
    color: inherit;
    opacity: 0.9;
}

@media (hover: hover) {
    .rossa-notify.rossa-notify--success .sn-notify-close:hover {
        opacity: 1;
    }
}

.rossa-notify.rossa-notify--success::before {
    background-color: #14532d;
}


/* NOTIFY SUCCESS DARK */
.rossa-notify.rossa-notify--success.rossa-notify--dark {
    background-color: #052e16;
    border-color: #14532d;
    color: #dcfce7;
}

.rossa-notify.rossa-notify--success.rossa-notify--dark .sn-notify-title,
.rossa-notify.rossa-notify--success.rossa-notify--dark .sn-notify-text {
    color: inherit;
}

.rossa-notify.rossa-notify--success.rossa-notify--dark::before {
    background-color: #dcfce7;
}

/* NOTIFY ERROR */
.rossa-notify.rossa-notify--error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #7f1d1d;
}

.rossa-notify.rossa-notify--error .sn-notify-title,
.rossa-notify.rossa-notify--error .sn-notify-text {
    color: inherit;
}

.rossa-notify.rossa-notify--error .sn-notify-close {
    color: inherit;
    opacity: 0.9;
}

@media (hover: hover) {
    .rossa-notify.rossa-notify--error .sn-notify-close:hover {
        opacity: 1;
    }
}

.rossa-notify.rossa-notify--error::before {
    background-color: #7f1d1d;
}

/* NOTIFY ERROR DARK */
.rossa-notify.rossa-notify--error.rossa-notify--dark {
    background-color: #450a0a;
    border-color: #7f1d1d;
    color: #eff6ff;
}

.rossa-notify.rossa-notify--error.rossa-notify--dark .sn-notify-title,
.rossa-notify.rossa-notify--error.rossa-notify--dark .sn-notify-text {
    color: inherit;
}

.rossa-notify.rossa-notify--error.rossa-notify--dark::before {
    background-color: #eff6ff;
}

/* NOTIFY WARNING */
.rossa-notify.rossa-notify--warning {
    background-color: #ffedd5;
    border-color: #fdba74;
    color: #7c2d12;
}

.rossa-notify.rossa-notify--warning .sn-notify-title,
.rossa-notify.rossa-notify--warning .sn-notify-text {
    color: inherit;
}

.rossa-notify.rossa-notify--warning .sn-notify-close {
    color: inherit;
    opacity: 0.9;
}

@media (hover: hover) {
    .rossa-notify.rossa-notify--warning .sn-notify-close:hover {
        opacity: 1;
    }
}

.rossa-notify.rossa-notify--warning::before {
    background-color: #7c2d12;
}

/* NOTIFY WARNING DARK */
.rossa-notify.rossa-notify--warning.rossa-notify--dark {
    background-color: #431407;
    border-color: #9a3412;
    color: #ffedd5;
}

.rossa-notify.rossa-notify--warning.rossa-notify--dark .sn-notify-title,
.rossa-notify.rossa-notify--warning.rossa-notify--dark .sn-notify-text {
    color: inherit;
}

.rossa-notify.rossa-notify--warning.rossa-notify--dark::before {
    background-color: #ffedd5;
}

/* NOTIFY INFO */
.rossa-notify.rossa-notify--info {
    background-color: #eff6ff;
    border-color: #bfdbfe;
    color: #1e3a8a;
}

.rossa-notify.rossa-notify--info .sn-notify-title,
.rossa-notify.rossa-notify--info .sn-notify-text {
    color: inherit;
}

.rossa-notify.rossa-notify--info .sn-notify-close {
    color: inherit;
    opacity: 0.9;
}

@media (hover: hover) {
    .rossa-notify.rossa-notify--info .sn-notify-close:hover {
        opacity: 1;
    }
}

.rossa-notify.rossa-notify--info::before {
    background-color: #1e3a8a;
}

/* NOTIFY INFO DARK */
.rossa-notify.rossa-notify--info.rossa-notify--dark {
    background-color: #172554;
    border-color: #1e3a8a;
    color: #dbeafe;
}

.rossa-notify.rossa-notify--info.rossa-notify--dark .sn-notify-title,
.rossa-notify.rossa-notify--info.rossa-notify--dark .sn-notify-text {
    color: inherit;
}

.rossa-notify.rossa-notify--info.rossa-notify--dark::before {
    background-color: #dbeafe;
}


/***** ANIMATION LOADING *****/
.rossa-button.rossa-button--loading {
    position: relative;
    overflow: hidden;
    background-color: var(--rossa-config-color-primary);
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.2) 100%);
    background-size: 200% 100%;
    animation: rossaMirrorPulse 1.5s linear infinite;
    color: var(--rossa-color-white);
    border-radius: .5em;
}

@keyframes rossaMirrorPulse {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

/***** TOOLTIP ******/
.rossa-tooltip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    cursor: pointer;
    color: inherit;
}

.rossa-tooltip svg {
    width: 16px;
    height: 16px;
}


/***** LINK BUTTON *****/
a.rossa-link {
    all: unset;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    cursor: pointer;
    color: #2563eb;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.1em;
    font-size: 1em;
    font-weight: 500;
    text-decoration: underline !important;
}

a.rossa-link svg {
    width: 1em;
    height: 1em;
}

a.rossa-link:focus,
a.rossa-link:focus-visible {
    color: #1e40af;
}

@media (hover: hover) {
    a.rossa-link:hover {
        color: #1e40af;
    }
}

/***** TAG *****/
.rossa-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    gap: 0.5em;
    background-color: var(--rossa-color-black);
    color: var(--rossa-color-white);
    padding: .25em .5em;
}

.rossa-tag svg {
    width: 1em;
    height: 1em;
    color: inherit;
}

.rossa-tag .rossa-tag__text {
    font-size: .75em;
    font-weight: 400;
    color: inherit;
}

.rossa-tag.rossa-tag--warning {
    background-color: var(--rossa-color-red-error);
}


/***** STEPS *****/
.rossa-steps {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

@media (min-width: 320px) {
    .rossa-steps {
        flex-direction: row;
    }
}

.rossa-step {
    display: flex;
    align-items: center;
    gap: 1em;
}

.rossa-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background-color: var(--rossa-color-bg-gray);
    color: var(--rossa-color-default-text);
    font-size: 1em;
    font-weight: 500;
    aspect-ratio: 1 / 1;
}

.rossa-step__title {
    font-size: 1em;
    font-weight: 500;
    color: var(--rossa-color-default-text);
    text-wrap: balance;
}

.rossa-step.rossa-step--active .rossa-step__number {
    background-color: var(--rossa-config-color-primary);
    color: var(--rossa-color-white);
}

.rossa-step.rossa-step--active .rossa-step__title {
    color: var(--rossa-config-color-primary);
}



.rossa-step__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 1px;
    background-color: var(--rossa-color-gray);
    max-width: 60px;
}

.rossa-step__separator-line {
    width: 100%;
    border-top: 1px dotted var(--rossa-color-gray);
    height: 1;
}

/***** CHIP *****/
.rossa-chip {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .25rem 1rem;
    background-color: var(--rossa-color-bg-gray);
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
    width: fit-content;
    height: fit-content;
}


/***** SWITCH *****/
/* Toggle switch styling */
.rossa-switch {
    --switch-increment: -4px;
    --switch-width: 4px;
    position: relative;
    display: inline-block;
    width: calc(var(--switch-width) + 51px);
    height: calc(var(--switch-increment) + 31px);
}

/* Hide the default HTML checkbox */
.rossa-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.rossa-switch__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e9e9eb;
    transition: .4s;
    border-radius: 34px;
}

.rossa-switch__slider:focus,
.rossa-switch__slider:focus-visible {
    outline: 0;
    box-shadow: 0 1px 1px rgba(24, 36, 51, 0.06), 0 0 0 .25rem rgba(6, 111, 209, .25);
}

/* The circle inside the slider */
.rossa-switch__slider:before {
    position: absolute;
    content: "";
    height: calc(var(--switch-increment) + 27px);
    width: calc(var(--switch-increment) + 27px);
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Styles for the checked state */
.rossa-switch input:checked+.rossa-switch__slider {
    background-color: var(--rossa-color-primary);
}

.rossa-switch input:checked+.rossa-switch__slider:before {
    transform: translateX(calc((-1) * var(--switch-increment) + calc(var(--switch-width) + 20px)));
}

/* Focus styles for accessibility */
.rossa-switch input:focus,
.rossa-switch input:focus-visible {
    outline: 0;
    box-shadow: 0 1px 1px rgba(24, 36, 51, 0.06), 0 0 0 .25rem rgba(6, 111, 209, .25);
}

.rossa-switch input:focus-visible+.rossa-switch__slider,
.rossa-switch input:focus+.rossa-switch__slider {
    outline: 0;
    box-shadow: 0 1px 1px rgba(24, 36, 51, 0.06), 0 0 0 .25rem rgba(6, 111, 209, .25);
}

/* Box discount */
.rossa-box-discount {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: .5em;
    background-color: var(--rossa-color-white);
    border: 1px solid var(--rossa-color-gray);
}

.rossa-box-discount__header {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.5em;
}

.rossa-box-discount__title {
    all: unset;
    display: block;
    font-size: 1.5em;
    font-weight: 600;
    color: var(--rossa-color-black);
    line-height: normal;
    padding: 0;
    margin: 0;
}

.rossa-box-discount__description {
    all: unset;
    display: block;
    font-size: .875em;
    font-weight: 400;
    color: var(--rossa-color-default-text);
    line-height: normal;
    padding: 0;
    margin: 0 0 1.5em 0;
}

.rossa-box-discount__body {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 1.5em 1.5em 1.5em;
}

.rossa-box-discount__field {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: .5em;
}

.rossa-box-discount__field .rossa-form__field {
    flex-direction: row;
    width: 100%;
    max-width: 400px;
    gap: 0;
}

.rossa-box-discount__info {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1.5em;
}

.rossa-box-discount__info.rossa-box-discount__info--success{
    padding: 1em;
    border: 1px solid #15803d;
    border-radius: .5em;
    background-color: #f0fdf4;
    color: #15803d;
}

.rossa-box-discount__info.rossa-box-discount__info--error{
    padding: 1em;
    border: 1px solid var(--rossa-color-primary);
    border-radius: .5em;
    background-color: var(--rossa-color-bg-primary);
    color: var(--rossa-color-primary);
}

.rossa-box-spinner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
    padding: 1em;
    border-radius: 50%;
    background-color: var(--rossa-config-color-primary);
}

/* Spinner */
.rossa-spinner {
    position: absolute;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    border: 2px solid;
    border-color: var(--rossa-color-bg-gray);
    border-right-color: var(--rossa-config-color-primary);
    border-bottom-color: var(--rossa-config-color-primary);
    border-left-color: var(--rossa-config-color-primary);
    animation: rossa-spinner-loading 1s infinite linear;
    z-index: 1;
}

.rossa-spinner.rossa-spinner--white{
    border-color: transparent;
    border-right-color: var(--rossa-color-white);
    border-bottom-color: var(--rossa-color-white);
    border-left-color: var(--rossa-color-white);
}

.rossa-spinner.rossa-spinner--big{
    width: 6em;
    height: 6em;
    border-width: 4px;
}

.rossa-spinner.rossa-spinner--relative{
    position: relative;
    width: 4em;
    height: 4em;
    border-width: 4px;
}

@keyframes rossa-spinner-loading {
    to {
        transform: rotate(1turn);
    }
}

/* Contact payment dates */
.rossa-contact-payment-dates{

}

.rossa-contact-payment-dates{
    display: flex;
    padding: 1em 2em;
    border-radius: .5em;
    background-color: var(--rossa-color-bg-gray);
    justify-content: center;
    gap: 1em;
    width: fit-content;
}

.rossa-contact-payment-dates__item{
    display: flex;
    flex-direction: column;
}

.rossa-contact-payment-dates__item__title{
    display: flex;
    align-items: center;
    font-size: 1em;
    color: var(--rossa-color-default-text);
    justify-content: center;
    gap: .5em;
}

.rossa-contact-payment-dates__item__title svg{
    width: 1em;
    height: 1em;
    color: inherit;
}

.rossa-contact-payment-dates__item__value{
    font-size: 1em;
    font-weight: 600;
    color: var(--rossa-black-color);
    text-align: center;
}

.rossa-contact-payment{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1em;
}

.rossa-contact-payment__box{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1em;
    padding: 1em;
    border: 1px solid var(--rossa-color-gray);
    border-radius: .5em;
    background-color: transparent;
}

.rossa-contact-payment__title{
    all: unset;
    display: block;
    font-size: 1em;
    font-weight: 600;
    color: var(--rossa-color-black);
    line-height: normal;
    padding: 0;
    margin: 0;
}

.rossa-contact-payment__description{
    all: unset;
    display: block;
    font-size: .875em;
    font-weight: 400;
    color: var(--rossa-color-default-text);
    line-height: 1.5em;
    padding: 0;
    margin: 0;
}


.rossa-contact-payment__box.rossa-contact-payment__box--info{
    border-color: #bfdbfe;
    background-color: #eff6ff;
}

.rossa-contact-payment__box.rossa-contact-payment__box--info .rossa-contact-payment__title,
.rossa-contact-payment__box.rossa-contact-payment__box--info .rossa-contact-payment__description{
    color: #1e40af;
}

.rossa-contact-payment__contact{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1em;
}

@media (min-width: 470px) {
    .rossa-contact-payment__contact{
        flex-direction: row;
    }
}

.rossa-contact-payment__item{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 1em;
    align-items: center;
}

.rossa-contact-payment__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    height: 1.5em;
    background-color: var(--rossa-color-bg-gray);
    border-radius: 50%;
    color: var(--rossa-color-black);
}

.rossa-contact-payment__icon svg{
    width: 1.25em;
    height: 1.25em;
    color: inherit;
}




.rossa-contact-payment__item__content{
    display: flex;
    flex-direction: column;
    width: 100%;
}


.rossa-contact-payment__item__content .rossa-contact-payment__title{
    font-size: .75em;
    font-weight: 400;
    color: var(--rossa-color-default-text);
    line-height: normal;
    padding: 0;
    margin: 0;
}

.rossa-contact-payment__value{
    font-size: 1em;
    font-weight: 600;
    color: var(--rossa-color-black);
    line-height: normal;
    padding: 0;
    margin: 0;
}



/* Rossa banner */
.rossa-banner{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: .5em;
    background-color: var(--rossa-color-white);
    border: 1px solid var(--rossa-color-gray);
    padding: 1.5em;
    gap: 1em;
    color: var(--rossa-color-default-text);
}

.rossa-banner__header{
    display: flex;
    justify-content: center;
    width: auto;
}

.rossa-banner__icon{
    display: none;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    background-color: var(--rossa-color-bg-gray);
    border-radius: 50%;
    color: var(--rossa-color-black);
}

.rossa-banner__icon svg{
    width: 2em;
    height: 2em;
    color: inherit;
}

.rossa-banner__content{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1em;
}

.rossa-banner__info{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rossa-banner__title{
    all: unset;
    display: block;
    font-size: 1.25em;
    font-weight: 600;
    color: var(--rossa-color-black);
    line-height: normal;
    padding: 0;
}

.rossa-banner__description{
    all: unset;
    display: block;
    font-size: 1em;
    font-weight: 400;
    
    line-height: normal;
    padding: 0;
}

.rossa-banner__actions{
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 1em;
}

.rossa-banner.rossa-banner--success{
    color: #15803d;
    background-color: #f0fdf4;
    border-color: #15803d;
}

.rossa-banner.rossa-banner--success .rossa-banner__icon,
.rossa-banner.rossa-banner--success .rossa-banner__title{
    color: #15803d;
}

.rossa-banner.rossa-banner--success .rossa-button{
    background-color: #15803d;
    color: var(--rossa-color-white);
    border-color: #15803d;
}

@media (hover: hover) {
    .rossa-banner.rossa-banner--success .rossa-button:hover{
        background-color: #14532d;
        color: var(--rossa-color-white);
        border-color: #14532d;
    }
}

.rossa-banner.rossa-banner--success .rossa-button:focus,
.rossa-banner.rossa-banner--success .rossa-button:focus-visible,
.rossa-banner.rossa-banner--success .rossa-button:active{
    background-color: #14532d;
    color: var(--rossa-color-white);
    border-color: #14532d;
}


@media (min-width: 350px) {
    .rossa-banner .rossa-button{
        max-width: 200px;
        width: 100%;
        align-self: center;
    }
}

@media (min-width: 600px) {
    .rossa-banner{
        flex-direction: row;
    }
    .rossa-banner__icon{
        display: flex;
    }


    .rossa-banner .rossa-button{
        min-width: 150px;
        max-width: 200px;
        width: 100%;
        align-self: flex-end;
    }
}

@media (min-width: 700px) {
    .rossa-banner__header{
        align-items: center;
    }
    .rossa-banner__content{
        flex-direction: row;
        gap: 2em;
        align-items: center;
    }
}

.rossa-notice{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1em;
}

.rossa-notice{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: .5em;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 1em;
    font-size: .875em;
    gap: 1em;
    color: #1e40af;;
}


/* COLOR PICKER COMPONENT */
.rossa-box-pickr{
    display: flex;
    flex-direction: row;
    gap: 1em;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--rossa-color-bg-gray);
    padding: 1em;
    border-radius: .5em;
}
.rossa-box-pickr__header{
    display: flex;
    flex-direction: column;
    gap: .25em;
}

.rossa-box-pickr__body{
    display: flex;
    align-items: center;
    justify-content: center;
}

.rossa-box-pickr__title{
    all: unset;
    display: flex;
    align-items: center;
    line-height: normal;
    font-size: 1em;
    font-weight: 500;
    color: var(--rossa-color-black);
    margin: 0;
    padding: 0;
    width: fit-content;
}

.rossa-box-pickr__description{
    all: unset;
    display: inline-block;
    line-height: normal;
    font-size: .875em;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.rossa-pickr-wrapper{
    width: fit-content;
}


/***** CARD *****/
.rossa-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
    padding: 1em;
    border-radius: .5em;
    border: 1px solid var(--rossa-color-gray);
}

.rossa-card__header,
.rossa-card__body{
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.rossa-card__footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rossa-card__title{
    all: unset;
    display: block;
    font-size: 1.25em;
    font-weight: bold;
    color: var(--rossa-color-black);
}

.rossa-card__description{
    all: unset;
    display: block;
    line-height: normal;
    font-size: .875em;
    color: var(--rossa-color-default-text);
    margin: 0;
    padding: 0;
}

