/* Vcard page style */
.vcard-page {
    background: #eee linear-gradient(to right, rgba(var(--qvc-primary-rgb), 1), rgba(var(--qvc-primary-rgb), 0.5));
}

.vcard {
    background-color: rgb(255, 255, 255);
    border-radius: 0.625rem;
    max-width: 576px;
    min-width: 320px;
    width: 100%;
    overflow: hidden;
    box-shadow: 1px 1px 25px 0 rgb(88 88 88 / 35%);
}

.vcard-classic-theme .vcard-banner:before {
    content: '';
    background: linear-gradient(to top, rgba(49, 49, 49, 0.33), rgba(189, 189, 189, 0));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 30%;
}

.vcard-classic-theme .vcard-profile-head {
    transform: translateY(5rem);
}

.vcard-classic-theme .vcard-description {
    background: rgba(30, 30, 30, 0.05);
}

.vcard-business-theme .vcard{
    max-width: 450px;
}

.vcard-business-theme .line-divider {
    width: 50%;
    background-color: var(--qvc-primary);
    height: 2px;
}

.vcard-list {
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 400;
    letter-spacing: .009375em;
    text-decoration: inherit;
    text-transform: inherit;
    list-style-type: none;
    margin: 1.375rem 0px;
    padding: 0px;
}

.vcard-list-item {
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    position: relative;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
    cursor: pointer;
    overflow: hidden;
    height: auto;
    padding: 0.5rem 1.375rem;
}

.vcard-list-item:hover {
    background-color: rgba(30, 30, 30, 0.04);
}

.vcard-business-theme .vcard-list-item:hover {
    background-color: rgba(215, 215, 215, 0.04);
}

.vcard-list-item-icon {
    font-size: 20px;
    padding: 0 10px;
    border-radius: 100%;
    height: 45px;
    width: 45px;
    min-width: 45px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: var(--qvc-primary);
    color: #fff;
    margin-right: 1rem !important;
}

.vcard-list-item-icon svg {
    fill: currentcolor;
    height: 1em;
    overflow: visible;
    width: 1em;
}

.vcard-list-item h6 {
    font-weight: 500;
}

.vcard-business-theme .vcard-list-item h6 {
    color: #fff;
}

.vcard-list-item .label {
    font-size: .875rem;
    color: #757589;
}

.vcard-business-theme .vcard-list-item .label {
    color: #aaa;
}

.vcard-list-item-detail {
    line-height: 1.2;
}

.vcard-type-text .vcard-list-item {
    -webkit-align-items: flex-start;
    -moz-box-align: flex-start;
    align-items: flex-start;
}