﻿.referral-content-wrapper {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 0;
    display: grid;
    gap: 15px;
}

.referral-content-item {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
}

.referral-content-item-header {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 10px;
    border: 1px solid #d5d5d5;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.referral-content-item-header-h3 {
    margin-bottom: 0;
}
.referral-content-item-header-icon {
    width: 25px;
    justify-self: center;
    align-self: center;
    fill: #555;
}
.referral-content-item-header-lastcolumn {
    display: flex;
    gap: 15px;
    justify-content: end;
    padding-right: 15px;
}
.referral-content-item-header-lastcolumn p {
    font-size: 17px;
    align-self: center;
    font-weight: 600
}
.referral-content-item-header-lastcolumn svg {
    width: 25px;
    justify-self: center;
    align-self: center;
    fill: #555;
    transition: all .5s ease;
}
.referral-content-item-body {
    display: grid;
    gap: 10px;
    height: 0;
    overflow:hidden;
}
.referral-body-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #d5d5d5;
    border-radius: 10px;
    padding: 10px 15px;
}

.referral-body-item .date-added {
    font-size: 12px;
    color: #333;
}

.referral-body-item .main-info {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.referral-info-name {
    display: flex;
    flex-direction: column;
}

.referral-info-name span {
    font-size: 14px;
    color: #333;
}

.referral-info-name p {
    font-weight: 600;
    color: #000;
    font-size: 18px;
}

.referral-content-item-header.open ~ .referral-content-item-body {
    padding: 15px;
    height: auto;
}

.referral-content-item-header.open .referral-angle-down-icon {
    transform: rotate(90deg);
}

.referral-info-name.first-col {
    align-items: start;
}
.referral-info-name.second-col {
    align-items: end;
}
.copy-invite-link {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #d5d5d5;
    background: #d5d5d5;
    border-radius: 10px;
    justify-self: end;
    width: fit-content;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.copy-notif {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d5d5d5;
    border-radius: 10px;
}


@media screen and (max-width: 767px) {
    .referral-content-item {
        padding: 15px;
        padding-top: 0;
    }

    .referral-content-wrapper {
        gap: 0;
    }
}