/* Profile Page Styles */

/* Profile Card */
.profile-card {
    width: 100%;
    background: #0a0a0a;
    border-radius: 14px;
    padding: 34px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Avatar */
.avatar {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    overflow: hidden;
}

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Profile Info */
.profile-info .name {
    color: #fff;
    font-size: 18px;
    margin: 0 0 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    gap: 2px;
}

    .profile-info .name span {
        color: #fff;
    }

.verified {
    color: #00a6ff;
}

/* Button */
.complete-btn {
    background: transparent;
    border: 1px solid #666;
    border-radius: 8px;
    padding: 12px 20px;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    margin-left: 12px;
}

    .complete-btn:hover {
        border-color: #fff;
    }

.avatar-wrapper {
    width: 108px;
    height: 108px;
}

.progress-circle {
    position: relative;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* avatar image */
.avatar-img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 3;
    padding: 6px 14px;
}

/* red circular progress using conic-gradient */
.progress-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 5px;
    background: conic-gradient(rgba(69, 74, 84, 1) var(--progress),rgba(255, 77, 77, 1) 0deg, rgba(255, 77, 77, 1) var(--progress));
    -webkit-mask: radial-gradient(farthest-side, transparent 78%, rgba(69, 74, 84, 1));
    mask: radial-gradient(farthest-side, transparent 92%, black 92%);
    z-index: 9;
}

/* percentage text */
.percent-text {
    position: absolute;
    bottom: -5px;
    background: rgba(255, 0, 0, 1);
    color: #fff;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 12px;
    z-index: 10;
}

.profile-second .container {
    position: relative;
    margin-top: 40px;
}

.online-dot {
    width: 16px;
    height: 16px;
    background: #00e676; /* Bright Green */
    border-radius: 50%;
    position: absolute;
    right: 23px;
    bottom: 15px;
    border: 3px solid #0a0a0a; /* black-ish card background for clean circle */
    z-index: 9;
}

.profile-page {
    display: flex;
    gap: 20px;
}

.right-content {
    flex: 1;
}

.profile-main-div .tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.profile-main-div .tab {
    padding: 10px 18px;
    background: #171717;
    border: none;
    border-radius: 6px;
    color: #bbb;
    cursor: pointer;
    padding: 12px 24px;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    border: solid 1px rgba(92, 98, 112, 1);
}

    .profile-main-div .tab.active {
        background: rgba(255, 0, 0, 1);
        color: white;
    }

.profile-main-div .tab-content {
    display: none;
}

    .profile-main-div .tab-content.active {
        display: block;
    }

.profile-main-div .tabs {
    margin-top: 48px;
}

/* POST CARD */
.post-card {
    background: #111;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid #1f1f1f;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.user-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
}

.blue-tick {
    color: #4aa8ff;
    font-size: 15px;
}

.post-card .post-text {
    margin: 24px 0 24px 0;
    color: #ddd;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
}

.post-image img {
    width: 100%;
    border-radius: 10px;
}

.post-footer {
    margin-top: 12px;
    display: flex;
    gap: 20px;
    color: #c5c5c5;
}

.user-info h4 {
    display: flex;
    gap: 6px;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    align-items: center;
}

.user-info p {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: rgba(199, 202, 209, 1);
}

.p-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-footer span {
    align-items: center;
    display: flex;
    gap: 6px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    color: rgba(143, 149, 163, 1)x;
}

button.more-btn {
    width: 40px;
    height: 40px;
    background: rgba(143, 149, 163, 0.1);
    border: none; /* remove default border */
    outline: none; /* remove outline */
    box-shadow: none !important; /* remove default & focus shadow */
    appearance: none; /* remove browser default styles */
    -webkit-appearance: none;
    border-radius: 8px;
}

    button.more-btn:focus {
        outline: none;
        box-shadow: none;
    }

.recent-post-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

    .recent-post-title h3 {
        font-weight: 500;
        font-style: Medium;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0px;
    }

.button-text a {
    background: rgba(255, 255, 255, 0.04);
    border: solid 1px rgba(92, 98, 112, 0.4);
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flex-post-div {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
}

.posts-no {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}

.post-text {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0%;
    color: rgba(143, 149, 163, 1);
    padding: 0;
    margin-top: 10px;
}

.paddfift {
    padding: 12px 36px;
}

.profile-left .avatar-wrapper img {
    width: 108px;
    height: 108px;
    padding: 0;
}

.profile-left .online-dot {
    right: 7px;
    border: none;
}

/* Add Post Popup */
.addpost-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.addpost-content {
    width: 80%;
    max-width: 1100px;
    background: #1E1E1E;
    border-radius: 14px;
    color: #fff;
    max-height: 90vh;
    overflow-y: auto;
    /* SCROLLBAR DESIGN */
    scrollbar-width: thin;
    scrollbar-color: #444 #1E1E1E;
}

    .addpost-content::-webkit-scrollbar {
        width: 8px; /* slim */
    }

    .addpost-content::-webkit-scrollbar-track {
        background: #1A1A1A;
        border-radius: 10px;
    }

    .addpost-content::-webkit-scrollbar-thumb {
        background: #444;
        border-radius: 10px;
    }

        .addpost-content::-webkit-scrollbar-thumb:hover {
            background: #666; /* hover effect */
        }

.popup-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 27px;
    border-bottom: solid 1px rgba(69, 74, 84, 1);
}

    .popup-top h2 {
        font-weight: 500;
        font-style: Medium;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0px;
        vertical-align: middle;
        margin: 0;
    }

.cancel-btn, .post-btn {
    cursor: pointer;
    font-weight: 500;
    color: rgba(199, 202, 209, 1);
}

button.post-btn {
    color: rgba(255, 77, 77, 1);
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    background: transparent;
    border: 0px;
}

span.post-btn {
    color: rgba(255, 77, 77, 1);
}

.popup-top .cancel-btn {
    border: none;
    background: none;
    padding: 0;
}

.popup-body {
    display: flex;
    margin-top: 0;
    gap: 20px;
}

/* LEFT UPLOAD BOX */
.left-upload {
    flex: 1;
    background: #000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-box {
    text-align: center;
}

    .upload-box p {
        margin: 10px 0;
        color: #bdbdbd;
    }

.select-btn {
    padding: 10px 16px;
    border: 1px solid rgba(92, 98, 112, 0.4);
    background: transparent;
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
}

/* RIGHT SIDE */
.right-info {
    flex: 1;
    padding-right: 24px;
}

.user-head {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-top: 24px;
}

    .user-head .avatar {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        margin: 0;
    }

    .user-head .u-right h4 {
        display: flex;
        font-weight: 500;
        font-style: Medium;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0px;
        align-items: center;
        gap: 5px;
    }

    .user-head .active-dot {
        width: 10px;
        height: 10px;
        background: #00ff3c;
        border-radius: 50%;
        display: inline-block;
        margin-left: 5px;
        position: absolute;
        left: 50px;
    }

.desc-box {
    width: 100%;
    height: 140px;
    margin-top: 15px;
    background: transparent;
    border: 1px solid #3A3A3A;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    resize: none;
    height: 200px;
    margin-top: 24px;
}

    .desc-box::placeholder {
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0px;
        text-transform: capitalize;
        color: rgba(199, 202, 209, 1);
    }

.user-text-comment {
    position: relative;
}

    .user-text-comment svg {
        position: absolute;
        bottom: 17px;
        right: 14px;
    }

    .user-text-comment a {
        float: right;
        color: rgba(255, 77, 77, 1);
        margin-top: 20px;
        font-weight: 600;
        font-size: 14px;
    }

/* Emoji Picker Styles */
.emoji-picker {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 320px;
    max-height: 350px;
    background: #2A2A2A;
    border: 1px solid #3A3A3A;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.emoji-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #3A3A3A;
    background: #1E1E1E;
}

    .emoji-picker-header span {
        color: #fff;
        font-weight: 500;
        font-size: 14px;
    }

.emoji-picker-close {
    background: transparent;
    border: none;
    color: #C7CAD1;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

    .emoji-picker-close:hover {
        color: #fff;
    }

.emoji-picker-body {
    padding: 12px;
    overflow-y: auto;
    max-height: 300px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
    scrollbar-width: thin;
    scrollbar-color: #444 #2A2A2A;
}

    .emoji-picker-body::-webkit-scrollbar {
        width: 6px;
    }

    .emoji-picker-body::-webkit-scrollbar-track {
        background: #1A1A1A;
        border-radius: 10px;
    }

    .emoji-picker-body::-webkit-scrollbar-thumb {
        background: #444;
        border-radius: 10px;
    }

        .emoji-picker-body::-webkit-scrollbar-thumb:hover {
            background: #666;
        }

/* Emoji picker for comment popup - position on left */
.show-comment .emoji-picker {
    right: auto;
    left: 0;
}

.emoji-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s;
    user-select: none;
}

.emoji-item:hover {
    background: #3A3A3A;
}

/* Reply Preview Section (WhatsApp style) */
.reply-preview-section {
    margin-bottom: 8px;
    padding: 8px 12px;
    background: #2A2A2A;
    border-left: 3px solid #C7CAD1;
    border-radius: 4px;
    position: relative;
}

.reply-preview-content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.reply-preview-left-border {
    width: 3px;
    background: #C7CAD1;
    border-radius: 2px;
    flex-shrink: 0;
}

.reply-preview-info {
    flex: 1;
    min-width: 0;
}

.reply-preview-name {
    font-size: 12px;
    font-weight: 500;
    color: #C7CAD1;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reply-preview-text {
    font-size: 13px;
    color: rgba(199, 202, 209, 0.7);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.reply-preview-close {
    background: transparent;
    border: none;
    color: #C7CAD1;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

.reply-preview-close:hover {
    color: #fff;
}

.location-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 149px;
    border-bottom: solid 1px rgba(69, 74, 84, 1);
    padding-bottom: 16px;
}

.location-text {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: rgba(199, 202, 209, 1);
    width: 95%;
    background: transparent;
    border: 0px;
}

.radio-button-div.radio-in-fifty.comment-box-pop {
    margin-top: 24px;
}

.comment-box-pop .radio-card {
    width: auto;
    background: none;
    border: none;
    box-shadow: none;
    padding-left: 0;
    gap: 10px;
    padding-bottom: 0;
}

.radio-button-div .radio-mark {
    border: solid 2px rgba(171, 176, 186, 1);
}

/* App Cropper */
.app-cropper * {
    box-sizing: border-box;
    font-family: Arial,Helvetica,sans-serif
}

.app-cropper {
    position: relative;
    inset: 0;
    background: rgba(0,0,0,.85);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

    /* ===== MODAL ===== */
    .app-cropper .cropper-box {
        width: 100%;
        max-width: 100%;
        background: #000;
        border-radius: 14px;
        padding: 0;
        position: relative;
        height: 100%;
    }

    /* ===== IMAGE AREA ===== */
    .app-cropper .image-wrap {
        position: relative;
        width: 100%;
        aspect-ratio: 1/1;
        overflow: hidden;
        border-radius: 14px;
        height: 100%;
    }

        .app-cropper .image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            user-select: none;
            transform-origin: center;
            cursor: grab
        }

    /* dark overlay + crop circle */
    .app-cropper .overlay {
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0);
    }

        .app-cropper .overlay::after {
            content: "";
            position: absolute;
            inset: 0;
            margin: auto;
            width: 70%;
            height: 70%;
            border-radius: 50%;
            box-shadow: 0 0 0 9999px rgba(255, 255, 255, 0);
        }

    .app-cropper .crop-circle {
        position: absolute;
        inset: 0;
        margin: auto;
        width: 70%;
        height: 70%;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,.6);
        pointer-events: none
    }

    /* ===== CONTROLS ===== */
    .app-cropper .controls {
        margin-top: 18px;
        width: 44%;
        float: left;
        margin-left: 15px
    }

    .app-cropper input[type=range] {
        width: 100%
    }

    .app-cropper .actions {
        display: flex;
        gap: 10px;
        margin-top: 12px;
        width: 45%;
        float: right
    }

    .app-cropper .btn {
        flex: 1;
        padding: 10px;
        border-radius: 10px;
        border: none;
        cursor: pointer
    }

        .app-cropper .btn.cancel {
            background: transparent;
            color: #fff;
            border: solid 1px rgba(92, 98, 112, 0.4);
            width: 122px;
            height: 48px;
        }

        .app-cropper .btn.save {
            background: #ff0000;
            color: #fff
        }

.date-info {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: rgba(199, 202, 209, 1);
}

.delete-button {
    position: absolute;
    top: 16px;
    right: 15px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
}

    .delete-button svg {
        margin-top: 8px;
    }

.show-comment .user-head {
    border-bottom: solid 1px rgba(69, 74, 84, 1);
    padding-bottom: 24px;
}

.sheela-comment {
    display: flex;
    width: 100%;
    gap: 12px;
    justify-content: space-between;
    margin-top: 24px;
}

.image-left-coomment {
    display: flex;
    gap: 12px;
}

.sheela-heading h4 {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.hour-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.four-hour-r {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: rgba(199, 202, 209, 1);
    align-items: center;
    gap: 5px;
}

    .four-hour-r svg {
        fill: rgba(199, 202, 209, 1)
    }

.comment-second-part .user-head {
    border: none;
    padding-left: 55px;
    align-items: flex-start;
    padding-bottom: 0;
}

    .comment-second-part .user-head .avatar {
        width: 40px;
        height: 40px;
    }

.comment-second-part .sheela-comment {
    padding-left: 55px;
}

.comment-second-part .user-head .active-dot {
    left: 78px;
    top: 32px;
}

.shella-comment-fix-height {
    height: 300px;
    overflow-y: scroll;
}

.show-comment .desc-box {
    width: 93%;
    height: 24px !important;
    background: transparent;
    border: 1px solid #3A3A3A;
    border-radius: 8px;
    padding: 20px 45px;
    color: #fff;
    resize: none;
    border: none;
    border-radius: 0;
    margin-top: 0;
    overflow: hidden
}

.show-comment .user-text-comment svg {
    position: absolute;
    top: 15px;
    left: 0;
}

.show-comment .user-text-comment {
    margin-top: 100px;
    border-top: solid 1px #3A3A3A;
}

.profile-shela-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.edit-delete-btn {
    background: rgba(53, 54, 62, 1);
    padding: 16px 15px;
    border-radius: 8px;
    position: absolute;
    right: 0px;
    top: 56px;
}

    .edit-delete-btn a {
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0px;
        vertical-align: middle;
        color: #fff;
        margin-bottom: 16px;
        display: block;
    }

        .edit-delete-btn a:last-child {
            margin-bottom: 0;
        }

/* Verify Popup */
.verify-popup-app * {
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

.verify-popup-app {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.8);
}

    .verify-popup-app .vp-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
    }

    .verify-popup-app .vp-modal {
        position: relative;
        width: 600px;
        margin: auto;
        top: 40%;
        transform: translateY(-50%);
        padding: 40px;
        border-radius: 24px;
        background: radial-gradient( circle at top, #1a1a1a 0%, #120909 60%, #0b0505 100% );
        color: #fff;
        border: solid 1px rgba(92, 98, 112, 1);
    }

.vp-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 40px;
}

.vp-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.3pxpx;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
}

.vp-upload-box {
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.02);
}

.vp-front {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 16px;
}

.vp-drop {
    font-size: 14px;
    margin-bottom: 16px;
}

.vp-or {
    display: block;
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 16px;
}

.vp-browse {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.vp-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.vp-cancel {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
}

.vp-submit {
    background: #ff0000;
    border: none;
    color: #fff;
    padding: 12px 44px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

.bg-black {
    background-color: rgba(0, 0, 0, 1);
}

.bg-black-button {
    width: 100%;
    background: none;
    height: 160px;
}

.img-loader {
    margin-top: 86px;
}

    .img-loader svg {
        margin: 0 auto;
        display: block;
        align-items: center;
    }

.image-loader-text {
    margin-top: 48px;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.3px;
    text-align: center;
    vertical-align: middle;
    color: rgba(171, 176, 186, 1);
    margin-bottom: 86px;
}

.sucess-text {
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.3px;
    text-align: center;
    vertical-align: middle;
    margin-top: 32px;
    margin-bottom: 12px;
}

.mt-0 {
    margin-top: 0;
}

.sucess-text-loader {
    margin-bottom: 17px;
}

.visibilityimage {
    margin: -5px auto !important;
    max-width: 100%;
    max-height: 100%;
    width: 20px;
    height: 20px;
    object-fit: cover;
    display:inline;
}