﻿.ut-contactCardContainer{
    display: flex;
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    border-radius: 12px;
    border: 1px solid rgba(32, 39, 45, 0.10);
    background: var(--white, #FFF);
}

.ut-cardBody{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.ut-cardTitleAndIcon{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.ut-cardTitle{
    color: var(--description, #40484F);
    font-family: Dubai;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
}

.ut-cardIcon{
    width: 24px;
    height: 24px;
}

.ut-cardDescription{
    align-self: stretch;
    color: var(--description, #40484F);
    font-family: Dubai;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}

.ut-cardAction{
    display: flex;
    height: 32px;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: var(--4px, 4px);
    flex-shrink: 0;
    align-self: flex-end;
}

.ut-actionButton{
    border-radius: 8px;
    border: 1px solid var(--primary, #C0392B);
    background: var(--primary, #C0392B);
    color: var(--white, #FFF);
    cursor: pointer;

    /* Caption */
    font-family: var(--font-family, Dubai);
    font-size: var(--font-size-caption, 13px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 15.6px */
}

.ut-card-button {
    display: flex;
    height: 32px;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: var(--4px, 4px);
    flex-shrink: 0;
    align-self: flex-end;
    border: none;
    border-radius: 8px;
    background: var(--primary, #C0392B);
    cursor: pointer;
    color: white !important;
}

.ut-unified-button{
    align-self: end;
}

.ut-unified-button a{
    color: white !important;
    font-family: var(--font-family, Dubai) !important;
    font-size: var(--font-size-caption, 13px) !important;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 15.6px */
    text-decoration: none !important;
}



