#member_dashboard .profile-img {
    width: 120px;
    min-height: 120px;
    border-radius: 50%;
}
#member_dashboard .profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c384e;
    margin: 10px;
}
#member_dashboard .profile-button {
    font-weight: bold;
    width: 100%;
    border: 2px solid rgb(0, 68, 255) !important;
    box-shadow: 0px 0px 20px -10px black;
    animation: makeadonationbtn 1.3s infinite;
    padding: 6px;
    font-size: 1.2rem;
}

@keyframes makeadonationbtn {
    0% {
        background-color: rgb(0, 68, 255);
        color: rgb(255, 255, 255);
    }
    50% {
        color: rgb(0, 0, 0);
        background-color: rgb(255, 255, 255);
    }
    100% {
        background-color: rgb(0, 68, 255);
        color: rgb(255, 255, 255);
    }
}
#member_dashboard .donation-button {
    font-weight: bold;
    width: 100%;
    border: 2px solid rgb(0, 68, 255) !important;
    box-shadow: 0px 0px 20px -10px black;
    animation: makeadonationbtn2 1.3s infinite;
    padding: 6px;
    font-size: 1.2rem;
}

@keyframes makeadonationbtn2 {
    0% {
        background-color: rgb(255, 247, 0);
        color: rgb(0, 0, 0);
    }
    50% {
        color: rgb(255, 255, 255);
        background-color:rgb(255, 0, 0);
    }
    100% {
        background-color: rgb(255, 247, 0);
        color: rgb(0, 0, 0);
    }
}

.nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    color: #2c384e !important;
    border-bottom: 2px solid transparent;
}

.nav-tabs-bordered .nav-link.active {
    background-color: #fff;
    color: #4154f1 !important;
    border-bottom: 2px solid #4154f1;
}


#main {
    margin-top: 20px;
    padding: 20px 30px;
    transition: all 0.3s;
    background: #f6f9ff;
}

.pagetitle {
    margin-bottom: 10px;
}

.pagetitle h1 {
    font-size: 24px;
    margin-bottom: 0px;
    font-weight: 600;
    color: #012970;
}

.breadcrumb {
    font-size: 14px;
    font-family: "Nunito", sans-serif;
    color: #899bbd;
    font-weight: 600;
    background: transparent;
    padding: 0px;
}

.breadcrumb a {
    color: #899bbd;
    transition: 0.3s;
}

.breadcrumb .breadcrumb-item::before {
    color: #899bbd;
}

.breadcrumb .active {
    color: #51678f;
    font-weight: 600;
    background: transparent;
}
