nfc-dashboard-card-user > .content {
    background-color: #ffffff;
    margin-bottom: 1.5rem;
    border-radius: 0.35rem;
    box-shadow: 0px 6px 4px -5px #d9ddde;
    border: solid 0.1rem #d9ddde;
    border-top: solid 0.3rem #c0c4c5;
    display: flex;
    flex-direction: column;
}

nfc-dashboard-card-user > .content:not(.hidden) {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 100;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

nfc-dashboard-card-user > .content > .header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem 2rem 1rem 2rem;
    border-bottom: solid 1px #d9ddde;
}

nfc-dashboard-card-user > .content > .header > span.title {
    padding-right: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    flex-grow: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

nfc-dashboard-card-user > .content > .header > span.label {
    font-size: 1.2rem !important;
}

nfc-dashboard-card-user > .content > .body {
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem 1rem 2rem;
}

nfc-dashboard-card-user > .content > .body > .main-list {
    display: flex;
    flex-direction: row;
    align-items: center;
}

nfc-dashboard-card-user > .content > .body > .main-list > ul {
    font-size: 2rem;
    flex-grow: 2;
}

nfc-dashboard-card-user > .content > .body > .main-list > i {
    font-size: 2rem;
}

nfc-dashboard-card-user > .content > .body > .main-list > a > i {
    font-size: 2rem;
    color: #18a689;
}

nfc-dashboard-card-user > .content > .body > .secondary-line {
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    justify-content: start;
}

nfc-dashboard-card-user > .content > .body > .secondary-line > span {
    border: solid 0.15rem #d9ddde;
    background-color: #f3f2f2;
    padding: 0.4rem;
    margin: 0.2rem;
    border-radius: 0.3rem;
}

nfc-dashboard-card-user > .content > .body > .secondary-line > span:first-child {
    margin-left: 0;
}

nfc-dashboard-card-user > .content > .body > .secondary-line > span:last-child {
    margin-right: 0;
}

nfc-dashboard-card-user > .content > .loading {
    height: 100%;
    width: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    background-color: rgba(213, 212, 212, 0.19);
    justify-content: center;
    backdrop-filter: blur(2px);
}

nfc-dashboard-card-user > .content > .loading:not(.hidden) {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.3s;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

nfc-dashboard-card-user > .content > .loading > img {
    height: 3rem;
    width: 3rem;
}

@media (max-width: 767px) {

    nfc-dashboard-card-user > .content {
        margin-bottom: 0;
    }

}

@media (max-width: 576px) {

    nfc-dashboard-card-user > .content {
        margin-bottom: 0;
    }

}