.friendcard .friendcard-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 32px;
    width: 245px;
    padding: 16px;
    height: 240px;
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px #dff4ff;
    -webkit-transition: background-color 0.4s;
    /* Safari */
    transition: background-color 0.4s;
}

.friendcard .entity-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 16px;
    background-size: cover;
    background-repeat: no-repeat;
}

.friendcard.friend .entity-icon {
    cursor: pointer;
}

.friendcard .entity-name {
    width: 100%;
    margin: 0 auto;
    font-family: "Metropolis Semi Bold";
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.24px;
    color: #0d4962;
    word-break: break-word;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.friendcard .entity-friend {
    display: flex;
    justify-content: center;
    font-family: "Metropolis Regular";
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.24px;
    text-align: center;
    color: #333333;
    text-transform: none;
}

.friendcard .entity-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    cursor: pointer;
}

.friendcard .is-friend-icon {
    background-image: url("https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/navigation/check-circle-green@3x.png");
    width: 24px;
    height: 24px;
    background-size: cover;
    margin-right: 8px;
}

.friendcard .requestedText {
    color: #4b4a4a;
    text-align: center;
    font-family: "Metropolis Regular";
    font-size: 17px;
    line-height: 21px; /* 123.529% */
    letter-spacing: 0.17px;
    padding-bottom: 5px;
}

.friendcard .responseContainer {
    display: flex;
    width: 100%;
    column-gap: 16px;
}

.friendcard .responseContainer .rejectButton,
.friendcard .responseContainer .acceptButton,
.friendcard .entity-field .requestFriendship,
.friendcard .entity-field .requestedLabel {
    width: 94px;
    height: 44px;
    border-radius: 4px;
    padding: 10px;
    border: 1px solid #1471db;
    background-color: #fafbfc;
    color: #1471db;
    font-family: "Metropolis Regular";
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.221px;
    text-transform: uppercase;
}

.friendcard .responseContainer .acceptButton,
.friendcard .entity-field .requestFriendship {
    background-color: #1471db;
    color: #fff;
}
.friendcard .entity-field .requestFriendship,
.friendcard .entity-field .requestedLabel {
    width: fit-content;
}

.friendcard .entity-field .requestedLabel {
    background-color: transparent;
    border: none;
}

@media only screen and (max-width: 500px) {
    .friendcard .friendcard-card {
        width: 155px;
        height: 155px;
    }

    .friendcard .entity-name {
        font-size: 17px;
        line-height: 16px;
        letter-spacing: 0.17px;
    }

    .friendcard .entity-field .requestedText,
    .friendcard .entity-field .requestedLabel,
    .friendcard .entity-field .rejectButton,
    .friendcard .entity-field .acceptButton {
        font-size: 15px;
        letter-spacing: 0.2px;
        padding: 3px;
        height: 36px;
        width: fit-content;
    }

    .friendcard .entity-icon {
        width: 40px;
        height: 40px;
    }
}

/* DARK MODE */
.dark .friendcard .friendcard-card {
    background-color: #1F2120;
    box-shadow: none;
}

.dark .friendcard .responseContainer .rejectButton {
    background-color: transparent;
}
.dark .friendcard .entity-name,
.dark .friendcard .entity-friend,
.dark .friendcard .friendcard-head .entity-options .options-container .option-label,
.dark .friendcard .buttonText,
.dark .friendcard .requestedText,
.dark .friendcard .entity-field .requestFriendship,
.dark .friendcard .entity-field .requestedLabel {
    color: rgba(255, 255, 255, 0.87);
}
