@font-face{font-family:'Plus';src:url(./../webfonts/PlusJakartaSans-Regular.woff2) format('woff2'),url(./../webfonts/PlusJakartaSans-Regular.woff) format('woff');font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:'Plus';src:url(./../webfonts/PlusJakartaSans-Medium.woff2) format('woff2'),url(./../webfonts/PlusJakartaSans-Medium.woff) format('woff');font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:'Plus';src:url(./../webfonts/PlusJakartaSans-SemiBold.woff2) format('woff2'),url(./../webfonts/PlusJakartaSans-SemiBold.woff) format('woff');font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:'Plus';src:url(./../webfonts/PlusJakartaSans-Bold.woff2) format('woff2'),url(./../webfonts/PlusJakartaSans-Bold.woff) format('woff');font-weight:700;font-style:normal;font-display:swap}

/* general css */
body {
    background: #34C759;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    font-family: 'Plus';
}

body.home{overflow:hidden}body.post-details{overflow:hidden}body.upload-post{overflow:hidden}body.chat{overflow:hidden}body.create-group{overflow:hidden}body.user-profile{overflow:hidden}body.chatboard{overflow:hidden}body.view-profile{overflow:hidden}body.edit-post{overflow:hidden}body.edit-profile{overflow:hidden}body.notification{overflow:hidden}body.settings{overflow:hidden}body.change-password{overflow:hidden}body.my-watchlist{overflow:hidden}body.add-stock{overflow:hidden}body.terms-of-service{overflow:hidden}body.privacy-policy{overflow:hidden}body.help-center{overflow:hidden}

@media (max-width: 575.98px) {
    body {
        background: #FFFFFF;
    }
}

.mobile-frame {
    overflow: hidden;
    position: relative;
}

.page-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
}

/* splash screen */

.splash-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}

.logo {
    margin-bottom: 50px;
}

.loader {
    width: 214px;
    height: 6px;
    background: #D9D9D9;
    border-radius: 7px;
    overflow: hidden;
}

.loader-bar {
    height: 6px;
    width: 0;
    background: #3478F6;
    animation: load 2s infinite ease-in-out;
    border-radius: 7px;
}

@keyframes load {
    0% {
        width: 1%;
    }

    20% {
        width: 20%;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}

/* login */

.login-logo {
    text-align: center;
    margin-top: 80px;
}

.login-logo img {
    width: 162px;
}

.tagline {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #69849A;
    margin-top: 20px;
}

.login-box .login-title {
    font-weight: 700;
    font-size: 34px;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 25px;
}

.login-box .input-group input {
    width: 100%;
    border-radius: 4px;
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
    border: 1px solid #EDEDED;
    padding: 14px;
    padding-left: 50px;
    outline: none;
}

.login-box .input-group input::placeholder {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #BFBFBF;
}

.login-box .input-group {
    width: 100%;
    position: relative;
}

.login-box .input-icon {
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
    pointer-events: none;
    background: #fff;
    padding-right: 5px;
}

.general-btn {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15.5px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    background: linear-gradient(121.05deg, #008000 31.21%, #00A100 83.01%);
    margin-top: 10px;
    text-align: center;
    text-decoration: none;
}

.general-btn:hover {
    color: #FFFFFF;
}


/* otp */

.otp-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #BFBFBF;
    margin-bottom: 20px;
}

.otp-text span {
    font-weight: 600;
    color: #34C759;
}

.otp-wrapper {
    display: flex;
    gap: 12px;
    width: 100%;
}

.otp-input {
    flex: 1 1 0;
    min-width: 40px;
    max-width: 80px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 6px;
    text-align: center;
    outline: none;
}

.otp-input:focus {
    border-color: #34C759;
}

@media (max-width: 480px) {
    .otp-wrapper {
        max-width: 360px;
        gap: 10px;
        padding: 0 5px;
    }

    .otp-input {
        height: 40px;
        min-width: 32px;
        max-width: 60px;
    }
}

.change-number {
    display: block;
    text-align: center;
    margin-top: 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
}

.change-number:hover {
    color: #69849A;
}


/* profile-setup */

.profile-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.profile-photo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    margin-bottom: 20px;
}

.profile-photo {
    width: 70px;
    height: 70px;
    border-radius: 11px;
    object-fit: cover;
}

.upload-link {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
}

.upload-link:hover {
    color: #69849A;
}

.setup .input-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
    margin-bottom: 8px;
    display: block;
}

.setup .input-group input {
    width: 100%;
    border: 1px solid #EDEDED;
    border-radius: 4px;
    padding: 13px;
    font-size: 15px;
    outline: none;
}

.setup .form-control::placeholder {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #BFBFBF;
}

.setup .form-control:focus {
    box-shadow: none;
    border-color: #EDEDED;
}

.setup .bio-input {
    width: 100%;
    border: 1px solid #EDEDED;
    border-radius: 4px;
    padding: 15px;
    outline: none;
}

.bio-input::placeholder {
    color: #BFBFBF;
}


/* home */

.feed-tabs {
    justify-content: space-around;
    border-bottom: 1px solid transparent;
}

.nav-tabs.feed-tabs .nav-item {
    width: 50%;
}

.feed-tabs .nav-link {
    border: none;
    background: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #808080;
    padding-bottom: 10px;
    width: 100%;
}

.feed-tabs .nav-link.active {
    color: #34C759;
    border-bottom: 2px solid #34C759;
}

.feed {
    padding-top: 17px;
}

.post-card {
    background: #fff;
    margin-bottom: 30px;
}

.post-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-bottom: 15px;
}

.post-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 43px;
    height: 43px;
    object-fit: cover;
    border-radius: 50%;
}

.username {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 3px;
}

.time {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
    margin-bottom: 0;
}

.post-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin: 12px 0;
}

.tag-highlight {
    color: #34C759;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.post-tags span {
    border-radius: 60px;
    gap: 10px;
    padding: 6px 12px;
    background: #F8FAFF;

    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
}

.post-actions {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #EDEDED;
    padding-top: 12px;

    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
}

.post-actions div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-actions img {
    cursor: pointer;
    margin-top: 1px;
}

@media (max-width: 575px) {
    .post-actions {
        font-size: 12px;
        line-height: 18px;
    }
}

.top-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    z-index: 99;
    border-bottom: 1px solid #F0F0F0;
}

.header-profile {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    object-fit: cover;
}

.page-content.home {
    height: calc(100dvh - 64px - 83px);
    overflow-y: scroll;
}

.page-content.homes {
    height: calc(100dvh - 52px - 83px);
    overflow-y: scroll;
}

.page-content.post-details {
    height: calc(100dvh - 52px);
    overflow-y: scroll;
}

.post-details .page-content {
    padding: 0;
}

.post-details .post-image {
    height: 237px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.inner-post {
    padding: 0 22px;
}

.comments-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 25px;
}

.comment-box {
    margin-bottom: 28px;
}

.comment-username {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #808080;
    margin-bottom: 6px;
}

.comment-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 6px;
}

.comment-time {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
}

.post-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 25px;
    background: #fff;
}

.back-icon {
    cursor: pointer;
}

.back-icon-btn{
    background: transparent;
    border: none;
    padding: 0;
}

.post-detail-header .header-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 0;
}

.bottom-nav {
    width: 100%;
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    box-shadow: -3px -1px 4px 0px #00000040;
    padding: 16px 30px;
}

@media (max-width: 576px) {
    .bottom-nav {
        padding: 10px 20px;
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
}

.nav-label {

    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
}

.nav-item.active .nav-icon {
    filter: brightness(0) saturate(100%) invert(66%) sepia(18%) saturate(1654%) hue-rotate(83deg) brightness(94%) contrast(89%);
}

.nav-item.active .nav-label {
    color: #34C759;
}

.comen {
    cursor: pointer;
}

.modal-content.comus {
    border-radius: 10px;
    border: none;
}

.modal-content.comus .modal-body {
    padding: 29px;
}

.modal-content.comus .modal-body label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
}

.modal-content.comus .modal-body .form-control::placeholder {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #BFBFBF;
}

.modal-content.comus .modal-body .form-control {
    border: 1px solid #EDEDED;
}

.modal-content.comus .modal-body .form-control:focus {
    box-shadow: none;
    border-color: #EDEDED;
}

.floating-action {
    position: absolute;
    bottom: 105px;
    right: 22px;
    z-index: 9999;
    cursor: pointer;
}


/* upload-post */

.create-post {
    padding: 25px;
}

.create-post .title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.upload-box {
    width: 100%;
    padding: 15px;
    border: 1px dashed #69849A;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.upload-box span {
    color: #69849A;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.image-preview-container {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.image-preview-container img {
    width: 100%;
    height: 211px;
    object-fit: cover;
    border-radius: 10px;
}

.delete-btn {
    position: absolute;
    bottom: 9px;
    right: 5px;
    border: none;
    cursor: pointer;
    background: transparent;
}

.delete-btn img {
    width: 40px;
    height: 40px;
}

.create-post .input-label {
    font-size: 14px;
    font-weight: 500;
    color: #69849A;
    margin-bottom: 6px;
    display: block;
}

.create-post .input-field {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #EDEDED;
}

.create-post .input-field:focus {
    outline: none;
}

.create-post .input-field::placeholder {
    color: #BFBFBF;
    font-size: 16px;
    font-weight: 500;
}


/* chat */

.chat-list {
    padding: 15px 0;
}

.chat-item {
    background: #FFFFFF;
    border-radius: 4px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    border: 1px solid #EDEDED
}

.chat-avatar {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-name {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 5px;
}

.chat-sub {
    font-size: 14px;
    font-weight: 500;
    color: #808080;
    margin-bottom: 0;
}


.groups-page {
    padding: 15px 0;
}

.create-group-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.create-group-btn:hover {
    color: #FFFFFF;
}

.group-card {
    background: #F3F3F3;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.group-avatar {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    object-fit: cover;
}

.group-info {
    flex: 1;
}

.group-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 5px;
}

.group-members {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #808080;
    margin-bottom: 0;
}

.join-btn {
    padding: 9px 21px;
    background: #34C759;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    border: none;
}

.joined-btn {
    padding: 9px 11px;
    background: #D2D2D2;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    border: none;
}


/* create-group */

.page-content.create-group {
    height: calc(100dvh - 52px);
    overflow-y: scroll;
}

.custom-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #EDEDED;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.group-option {
    margin-top: 12px;
    padding: 14px 15px;
    border: 1px solid #EDEDED;
    border-radius: 4px;
    display: flex;
    align-items: start;
    gap: 14px;
    cursor: pointer;
    position: relative;
}

.group-option input {
    display: none;
}

.option-content {
    flex: 1;
}

.option-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 7px;
}

.option-sub {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #69849A;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #6B7280;
    position: relative;
}

.group-option input:checked~.radio-circle {
    border-color: #34C759;
}

.group-option input:checked~.radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #34C759;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

.group-option:has(input:checked) {
    border-color: #34C759;
}

.members-popup {
    border-radius: 14px;
    padding: 10px 0;
    border: none;
}

.members-popup .modal-header {
    border-bottom: none;
    justify-content: center;
}

.members-popup .modal-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #000000;
}

.members-popup .member-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(90.02deg, #F3F3F3 0.01%, #FFFFFF 91.7%);
    margin-bottom: 10px;
}

.members-popup .member-row span {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #000000;
}

.members-popup .action-btn {
    border: none;
    background: transparent;
}



/* user-profile */

.profile-card .profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.profile-card .profile-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 1px solid;
    border-image-source: linear-gradient(357.47deg, #006500 36.48%, #FFFFFF 79.98%);
}

.profile-card .profile-info {
    flex: 1;
}

.profile-card .profile-name {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.profile-card .profile-username {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #69849A;
    margin-bottom: 0;
}

.profile-card .more-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.profile-card .action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.profile-card .follow-btn {
    flex: 1;
    background: #34C759;
    color: #FFFFFF;
    padding: 8px;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-decoration: none;
}

.profile-card .follow-btn:hover {
    color: #FFFFFF;
}

.profile-card .message-btn {
    flex: 1;
    border: 1px solid #34C759;
    color: #34C759;
    padding: 8px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-decoration: none;
}

.profile-card .message-btn:hover {
    color: #34C759;
}

.profile-card .stats-row {
    display: flex;
    gap: 15px;
    margin-top: 16px;
}

.profile-card .stat-box {
    flex: 1;
    text-align: center;
    background: #EDEDED;
    border-radius: 5px;
    padding: 14px 0;
}

.profile-card .stat-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #393B3F;
}

.profile-card .stat-value {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
    margin-top: 5px;
}

.profile-card .profile-bio {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #69849A;
    margin-top: 16px;
}


.more-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.more-menu {
    position: absolute;
    top: 75px;
    right: 20px;
    width: 140px;
    background: #FFFFFF;
    border-radius: 8px;
    display: none;
    z-index: 1000;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #69849A;
    cursor: pointer;
    border-bottom: 1px solid #EDEDED;
}

.menu-item:not(:last-child) {
    border-bottom: 1px solid #EDEDED;
}


/* chatboard */

.page-content.board {
    height: calc(100dvh - 50px - 81px);
    overflow-y: scroll;
}

.post-detail-header.board {
    gap: 12px;
}

.chat-avatar-board {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.post-detail-header.board .header-title {
    font-weight: 500;
}

.board-nav {
    padding: 15px;
}

.board-nav .chat-input-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #ECECEC;
    border-radius: 4px;
    overflow: hidden;
    background: #FFFFFF;
}

.board-nav .chat-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    outline: none;
}

.board-nav .chat-input::placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #808080;
}

.board-nav .send-btn {
    height: 100%;
    border: none;
    padding: 0;
    background: transparent;
}



.chat-container .chat-row {
    max-width: 75%;
    margin-bottom: 15px;
}

.chat-container .chat-row.right {
    margin-right: auto;
    text-align: left;
}

.chat-container .chat-row.left {
    margin-left: auto;
    text-align: left;
}

.chat-container .chat-bubble {
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    display: inline-block;
}

.chat-container .chat-bubble.green {
    background: #34C759;
    color: #FFFFFF;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    display: table;
    margin-bottom: 3px;
}

.chat-container .chat-bubble.grey {
    background: #EDEDED;
    color: #000000;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-bottom: 3px;
}

.chat-container .chat-time {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #69849A;
}

.chat-container .chat-time.right {
    text-align: left;
}

.chat-container .chat-time.left {
    text-align: right;
    width: 100%;
    display: block;
}


/* view-profile */

.page-content.view-profile {
    height: calc(100dvh - 0px - 83px);
    overflow-y: scroll;
}

.view-edit-btn {
    border-radius: 4px;
    padding: 10px;
    background: #34C759;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

@media (max-width: 468px) {
    .view-edit-btn {
        padding: 7px;
        font-size: 14px;
        line-height: 20px;
    }
}

.view-edit-btn:hover {
    color: #FFFFFF;
}

.reward-box {
    border-radius: 12px;
    padding: 19px;
    background: #FFFFFF;
    box-shadow: 0px 4px 6.1px 0px #00000026;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.reward {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #808080;
}

.reward-aank {
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    color: #34C759;
}

.page-content.view-profile .post-image {
    border-radius: 8px;
}

.post-image-wrapper {
    position: relative;
    width: 100%;
}

.post-image-wrapper .noti-icon {
    position: absolute;
    bottom: 25px;
    right: 10px;
}

.post-detail-header.view-hed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0px 0px 15px 0px;
    background: #fff;
}

.post-detail-header.view-hed .header-title {
    font-weight: 500;
}



/* edit-post */

.create-post.edu {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 52px);
}

.delete-btns {
    border-radius: 10px;
    padding: 15px;
    border: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    background: #FF383C;
    width: 50%;
    text-align: center;
    text-decoration: none;
}

.delete-btns:hover {
    color: #FFFFFF;
}

.save-btns {
    border-radius: 10px;
    padding: 15px;
    border: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    background: linear-gradient(121.05deg, #008000 31.21%, #00A100 83.01%);
    width: 50%;
}

div.inputTags-list span.inputTags-item i {
    color: #6B7280;
}



/* notification */

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.notification-card {
    background: #FFFFFF;
    border-left: 2px solid #34C759;
    box-shadow: 0px 4px 4px 0px #0000001C;
    border-radius: 12px;
    padding: 15px;
}

.notif-user {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #34C759;
}

.notif-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin: 8px 0;
}

.notif-time {
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
}


/* settings */

.settings-page .section-title {
    background: #34C759;
    padding: 12px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #FFFFFF;
}

.settings-page .settings-item {
    display: flex;
    justify-content: space-between;
    margin: 15px 15px 25px 15px;
    align-items: center;
    gap: 10px;
}

.settings-page .settings-item.last {
    margin-bottom: 30px;
}

.settings-page .item-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.settings-page .item-sub {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #69849A;
    margin-top: 5px;
    margin-bottom: 0;
}

.settings-page .logout-btn {
    width: 100%;
    margin-top: 25px;
    padding: 13px;
    background: #FFFFFF;
    border: 1px solid #FF383C;
    color: #FF383C;
    border-radius: 4px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.settings-page .switch {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 46px;
    height: 26px;
}

.settings-page .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.settings-page .slider {
    position: absolute;
    cursor: pointer;
    background-color: #EAEAEA;
    border-radius: 13px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .4s;
}

.settings-page .slider:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 1px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

.settings-page input:checked+.slider {
    background-color: #34C759;
}

.settings-page input:checked+.slider:before {
    transform: translateX(22px);
}

.settings-page .slider.round {
    border-radius: 34px;
}

.settings-page .slider.round:before {
    border-radius: 50%;
}

.modal-content.logus {
    border-radius: 10px;
    border: none;
}

.modal-content.logus .modal-body {
    padding: 29px;
    text-align: center;
}

.modal-content.logus .modal-body h2 {
    font-size: 34px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.modal-content.logus .modal-body p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #69849A;
    margin-bottom: 20px;
}

.modal-content.logus .modal-body .modal-log-btn {
    border-radius: 10px;
    padding: 15px;
    background: #FF383C;
    width: 100%;
    border: none;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
}



/* change-password */

.password-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.password-box .input-wrapper {
    position: relative;
    width: 100%;
}

.password-box .input-wrapper input {
    width: 100%;
    padding: 14px 42px 14px 42px;
    border: 1px solid #EDEDED;
    border-radius: 4px;
}

.password-box .input-wrapper input::placeholder {
    color: #BFBFBF;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.password-box .input-wrapper input:focus {
    outline: none;
}

.password-box .left-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.password-box .eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    cursor: pointer;
}

.password-box .error-box {
    background: #FF383C0A;
    border: 1px solid #FF383C69;
    padding: 13px;
    text-align: center;
    color: #FF383C;
    border-radius: 4px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}



/* my-watchlist */

.watchlist-box .market-header .title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #808080;
    margin-bottom: 5px;
}

.watchlist-box .market-value {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
}

.watchlist-box .market-value span {
    color: #808080;
}

.watchlist-box .nav-tabs.feed-tabs.aura .nav-item {
    width: auto;
}

.watchlist-box .feed-tabs.aura .nav-link {
    padding: 8px 10px;
}

.watchlist-box .feed-tabs.aura .nav-link.active {
    color: #1C6CFF;
    border-bottom: 2px solid #1C6CFF;
}

.watchlist-box .search-row {
    margin-top: 12px;
    padding: 14px;
    background: #FFFFFF;
    box-shadow: 0px 4px 6.1px 0px #00000026;
    border-radius: 4px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 12px 0 15px;
}

.watchlist-box .search-icon {
    margin-right: 8px;
}

.watchlist-box .search-row input {
    border: none;
    background: none;
    width: 100%;
    outline: none;
}

.watchlist-box .search-row .count {
    margin-right: 12px;
    margin-left: 12px;
    white-space: nowrap;
    font-size: 16px;
    line-height: 22px;
    color: #808080;
}

.search-row .filter-icon {
    cursor: pointer;
}

.watchlist-box .stock-item {
    background: linear-gradient(90.02deg, #F3F3F3 0.01%, #FFFFFF 91.7%);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13px;
    gap: 15px;
}

.watchlist-box .stock-name {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0;
}

.watchlist-box .exchange {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #808080;
}

.watchlist-box .stock-price {
    text-align: right;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.watchlist-box .stock-rate {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #808080;
}

.watchlist-box .firsty {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.watchlist-box .secondy {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.watchlist-box .green {
    color: #008000 !important;
}

.watchlist-box .red {
    color: #FF0000 !important;
}


.watchlist-box .chart-slider {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 5px;
}

.watchlist-box .slider-img {
    width: 100%;
    height: 161px;
    object-fit: cover;
    border-radius: 6px;
}

.watchlist-box .owl-dots {
    text-align: center;
    margin-top: -23px;
    position: relative;
    z-index: 5;
}

.watchlist-box .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 5px 3px;
    background: #D9D9D991;
    display: block;
    border-radius: 50%;
    transition: 0.3s;
}

.watchlist-box .owl-dots .owl-dot.active span {
    background: #FFFFFF;
}

.watchlist-box .owl-carousel .owl-stage-outer {
    border-radius: 6px;
}

.action-btn {
    border: none;
    background: transparent;
}



/* terms-of-service */

.terms-page h1 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 6px;
}

.terms-page span {
    font-size: 14px;
    line-height: 20px;
    color: #69849A;
    margin-bottom: 16px;
}

.terms-page h2 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #000000;
    margin: 10px 0 6px;
}

.terms-page p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #69849A;
}

.terms-page p span {
    font-weight: 500;
}

.terms-page ul {
    margin-bottom: 14px;
}

.terms-page ul li {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #69849A;
}



/* help-center */

.faq-page{
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 52px);
}

.faq-page .faq-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.faq-page .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: visible;
}

.faq-page .accordion-button {
    justify-content: space-between;
}

.faq-page .accordion-button::after {
    display: none !important;
}

.faq-page .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.faq-page .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.faq-page .accordion-button:focus {
    box-shadow: none;
}

.faq-page .accordion-button.collapsed {
    background: #34C759;
    color: #FFFFFF;
    border-radius: 12px;
    padding: 15px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-page .plus-icon {
    width: 24px;
    height: 24px;
    background: url('./../images/plus-white.svg') no-repeat center center / contain;
}

.faq-page .accordion-item:has(.accordion-collapse.show) .accordion-button {
    background: transparent;
    color: #34C759;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    border-radius: 0;
    border: none;
}

.faq-page .accordion-item:has(.accordion-collapse.show) .plus-icon {
    background-image: url('./../images/plus-green.svg');
}

.faq-page .accordion-button:not(.collapsed) {
    background: transparent;
    color: #34C759;
    border-bottom: none;
    padding: 15px;
    box-shadow: none;
}

.faq-page .accordion-button:not(.collapsed) .plus-icon {
    background-image: url('./../images/plus-green.svg');
}

.faq-page .accordion-button:not(.collapsed)+.accordion-collapse .accordion-body {
    border: 1.5px solid transparent;
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-top: -1px;
}

.faq-page .accordion-item:has(.accordion-collapse.show) {
    border-style: solid;
    border-color: #34C759;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-radius: 12px;
    background: transparent;
    overflow: hidden;
}

.faq-page .accordion-body {
    background: #fff;
    color: #69849A;
    padding: 15px;
    font-size: 14px;
    line-height: 20px;
    padding-top: 0;
}

.faq-page .not-found {
    text-align: center;
    margin-top: 40px;
    color: #69849A;
    margin-bottom: 0;
}

.faq-page .arrow-icon {
    margin-left: 6px;
}