.User-profile-card-wrap {
    position: relative;
    background: var(--a-pure-white);
    border: 1px solid var(--a-gray-tint-2);
    border-radius: 15px;
    width: 345px;
}

.User-profile-content-wrap {
    /* padding: 40px 0; */
    width: calc(100% - 345px);
    margin-left: 20px;
    background: var(--a-pure-white);
    border: 1px solid var(--a-gray-tint-2);
    border-radius: 15px;
}

.User-profile-card-wrap .gardient-card img {
    object-fit: cover;
    width: 100%;
    max-height: 200px;
    border-radius: 15px 15px 0px 0px;
}

.User-profile-card-wrap .profile-img img {
    margin-top: -75px;
    width: 148px;
    height: 148px;
    border-radius: 100%;
    outline: 3px solid var(--a-pure-white);
}

.User-profile-card-wrap .header-title {
    margin: 20px 0 56px 0;
}

.profile-label {
    position: absolute;
    right: 15px;
    top: 15px;
    background: var(--a-pure-white);
    border-radius: 8px;
    color: var(--a-title);
    padding: 8px 9px;
}

/* custom tabs design */

.profile-custom-tabs {
    position: relative;
    border-color: var(--a-border);
}

.profile-custom-tabs .nav-link {
    position: relative;
    font-size: 14px;
    color: var(--a-gray);
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: unset;
    border: unset;
    padding: 21px 30px;
    line-height: 16px;
    border-radius: unset;
}

.profile-custom-tabs .nav-link:not(:last-child) {
    border-right: 1px solid var(--a-border);
}

.profile-custom-tabs .nav-item.show .nav-link,
.profile-custom-tabs .nav-link.active {
    color: var(--a-title);
    background-color: transparent;
}

.profile-custom-tabs .nav-link::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--a-title);
    border-radius: 80px 80px 0px 0px;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    transition: all .3s;
    opacity: 0;
}

.profile-custom-tabs .nav-link.active::after {
    opacity: 1;
}

.User-profile-content-wrap .tab-content {
    padding: 50px 30px;
}

.password-form-wrapper {
    max-width: 400px;
    width: 100%;
}

.password-form-wrapper>*:not(:last-child) {
    margin-bottom: 10px;
}

.button-wrap {
    margin-top: 30px;
}

.title-spacing {
    margin-bottom: 44px;
}

.notifications-wrap:not(:last-child) {
    margin-bottom: 10px;
}

.notifications-icons-wrap {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    padding: 12px;
    margin-right: 20px;
}

.notifications-content-wrap {
    padding: 21px 30px 21px 20px;
    background: var(--a-gray-tint-3);
    border: 1px solid var(--a-border);
    border-radius: 13px;
    width: 100%;
}

.notifications-content-wrap p {
    max-width: 680px;
}

.custom-dropdown .btn {
    background: var(--a-gray-tint-3);
    border: 1px solid var(--a-gray-tint-6);
    color: var(--a-title);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 13px 8px 10px;
}

.custom-dropdown .dropdown-menu {
    width: 100%;
    min-width: 100%;
    padding: 0;
}

.custom-dropdown .dropdown-item {
    color: var(--a-title);
    font-size: 12px;
}

/* media query */
@media screen and (max-width:1799px) {
    .notifications-content-wrap p {
        max-width: 430px;
    }

    .title-spacing {
        margin-bottom: 30px;
    }
}

@media screen and (max-width:1599px) {
    .User-profile-card-wrap .profile-img img {
        width: 128px;
        height: 128px;
        margin-top: -70px;
    }

    .User-profile-card-wrap .gardient-card img {
        max-height: 180px;
    }

    .header-title {
        margin: 35px 0 20px 0;
    }

    .profile-info {
        padding: 22px 20px;
    }

    .User-profile-card-wrap .header-title {
        margin: 20px 0 40px 0;
    }

    .User-profile-content-wrap .tab-content {
        padding: 30px;
    }

    .notifications-content-wrap {
        padding: 15px 21px 15px 15px;
    }
}

@media screen and (max-width:1365px) {
    .User-profile-card-wrap .gardient-card img {
        max-height: 150px;
    }
}

@media screen and (max-width:1199px) {
    .User-profile-card-wrap .profile-img img {
        width: 110px;
        height: 110px;
        margin-top: -60px;
    }
}

@media screen and (max-width:1023px) {}

@media screen and (max-width:991px) {
    .User-profile-card-wrap {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .User-profile-content-wrap {
        width: 100%;
        border-radius: 10px;
        margin-left: 0;
    }

    .User-profile-card-wrap .gardient-card img {
        border-radius: 10px 10px 0px 0px;
    }

    .notifications-icons-wrap {
        margin-right: 12px;
    }

    .notifications-content-wrap {
        padding: 10px 12px 10px 15px;
    }

    .title-spacing {
        margin-bottom: 20px;
    }

    .password-form-wrapper {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width:575px) {
    .profile-info {
        padding: 15px 20px;
    }

    .User-profile-card-wrap .profile-img img {
        width: 80px;
        height: 80px;
        margin-top: -50px;
    }

    .User-profile-content-wrap .tab-content {
        padding: 20px;
    }

    .profile-custom-tabs .nav-link {
        padding: 15px 22px;
        white-space: nowrap;
    }

    .profile-custom-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }
}