@import "font-sizes.css";
@import "colors.css";

body {
  background: var(--theme-body) !important;
  font-family: "Poppins", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  color: #000;
}

/* SCROLL BAR SECTION STARTS HERE*/

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #f5b7b5;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f5b7b5;
}

/* SCROLL BAR SECTION ENDS HERE*/

.header.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1010;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  background: var(--theme-body);
  border-bottom: 1px solid #cccccc;
}

.header.header-sticky .site-logo img {
  height: 2rem;
}

.header-container {
  width: 95% !important;
  margin: 0 auto !important;
}

.header-desktop {
  display: block !important;
}

.header-mobile {
  display: none !important;
}

.dropdown-toggle {
  cursor: pointer !important;
}

.dropdown-menu {
  background-color: #f5b7b5 !important;
}


.dropdown-item-profile {
  padding: .25rem 1rem;
  display: flex;
}

.dropdown-item-profile img.profile-img {
  width: 40px;
  height: 40px;
}

.dropdown-item-profile .view-profile {
  font-size: 15px;
  font-weight: 400;
  color: #2E2E2E;
  margin-bottom: 5px;
  text-decoration: none;
}

.dropdown-item-profile .profile-name {
  font-size: 12px;
  font-weight: 400;
  color: #565656;
  margin-bottom: 0px;
}

.dropdown-menu li .dropdown-item:hover {
  background-color: #fcd5d4 !important;
  color: #000 !important;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.search-icon {
  position: absolute;
  top: 10px;
  left: 15px;
}

.search-field {
  padding-left: 40px !important;
  border: none !important;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 85%;
  margin: 0 auto;
}

.grid-item {
  padding: 16px 25px;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}

.grid-item:hover {
  border: 1px solid #5d1d88;
}

.community-serial {
  color: #2e2e2e;
  font-weight: 700;
  font-size: 15px;
  margin-right: 30px;
}

.community-img {
  margin-right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.community-text {
  font-size: 16px;
  font-weight: 500;
  color: #2e2e2e;
  margin-bottom: 0px;
}

.text-darkgray {
  color: #2e2e2e !important;
}

.text-gray {
  color: #676767 !important;
}

.text-purple {
  color: #5d1d88 !important;
}

.check-icon-field {
  position: absolute;
  top: 8px;
  right: 9px;
}

.btn-continue {
  background-color: #5d1d88 !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 30px !important;
  border-radius: 5px;
}

.mobile-only {
  display: none;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px; /* Adjust width as needed */
  margin-top: 70px;
  border-right: 1px solid #cccccc; /* Sidebar border */
  overflow-y: auto; /* Enable vertical scrolling if needed */
}

.sidebar-content > ul > li > a {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 10px 0px;
  text-decoration: none !important;
  color: #2e2e2e !important;
  font-size: 16px !important;
  font-weight: normal;
}

.navIcon {
  background: url(../images/communities-sprite.svg) no-repeat;
  flex: 0 0 20px;
  max-width: 20px;
  height: 20px;
  margin-right: 15px;
}

.navIcon.home {
  background-position: -23px -20px;
}

.navIcon.favourites {
  background-position: -70px -20px;
}

.navIcon.exp-communities {
  background-position: -117px -20px;
}

.navIcon.exp-job-communities {
  background-position: -164px -20px;
}

.navIcon.exp-notice-communities {
  background-position: -210px -20px;
}

.sidebar-content > ul > li > a:hover .navIcon.home,
.sidebar-content > ul > li.active > a .navIcon.home {
  background-position: -23px -61px;
}

.sidebar-content > ul > li > a:hover .navIcon.favourites,
.sidebar-content > ul > li.active > a .navIcon.favourites {
  background-position: -70px -61px;
}

.sidebar-content > ul > li > a:hover .navIcon.exp-communities,
.sidebar-content > ul > li.active > a .navIcon.exp-communities {
  background-position: -117px -61px;
}

.sidebar-content > ul > li > a:hover .navIcon.exp-job-communities,
.sidebar-content > ul > li.active > a .navIcon.exp-job-communities {
  background-position: -164px -61px;
}

.sidebar-content > ul > li > a:hover .navIcon.exp-notice-communities,
.sidebar-content > ul > li.active > a .navIcon.exp-notice-communities {
  background-position: -210px -61px;
}


/* new css for the dropdown */
.sidebar-content .broker_ul > li > a{
  padding-left: 35px;
}

.sidebar-content ul {
  list-style: none;
  padding-left: 35px;
}
.sidebar-content h6 {
  padding-left: 35px;
}
.broker_ul{
  padding-left: 0px !important;
}
.broker_ul > li{
  padding-left: 0px;
}
.has-submenu{
  padding-left: 0px;
}
.has-submenu > a{
  padding-left: 35px;
}
.submenu{
  background: #ebbcbc;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3) inset;
  padding: 10px 0px 6px 25px !important;
  list-style: circle !important;
}
.submenu > li{
  margin: 0px 0px 5px 40px;
  list-style: circle;
}
/* new css for the dropdown */

.sidebar-content > ul > li > a:hover,
.sidebar-content > ul > li.active > a {
  color: #5d1d88 !important;
}

.sidebar-hr {
  color: #cccccc !important;
  height: 3px !important;
  /* border: 1px solid red !important; */
}

.content {
  margin-left: 250px; /* Adjust the margin to match the sidebar width */
  padding: 30px;
}

.content-card {
  background-color: #fcd5d4 !important;
  border-radius: 5px !important;
  border: none !important;
}

.content-card .card-body {
  /* padding: 25px; */
}

.right-content .content-card {
  position: sticky;
  top: 92px;
}

.chip {
  background-color: #f5b7b5;
  color: #2e2e2e;
  font-size: 11px;
  font-weight: 400;
  padding: 2px 6px !important;
  border-radius: 5px;
  text-align: center;
}

.more-text {
  text-decoration: none;
  color: #5d1d88 !important;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

.react-card {
  background-color: #f5b7b5;
  padding: 10px 15px !important;
  border-radius: 5px;
  /* margin-right: 18px; */
}

.react-card .like-text {
  /* margin-right: 15px; */
  margin: 2px 10px;
}

.content-card-img img {
  width: 100%;
  max-height: 300px;
}

.related-post img {
  height: 74px ;
  width: 74px ;
  border-radius: 5px !important;
}

.background-banner img {
  width: 100%;
  height: 200px;
  border-radius: 5px;
}

.banner-user {
  position: absolute;
  bottom: 10px;
}

img.banner-user-icon {
  width: 80px;
  height: 80px;
}

.banner-user-text {
  margin-left: 88px;
}

.btn-create-post {
  background-color: transparent !important;
  border: 1px solid #b8b8b8 !important;
  color: #2e2e2e !important;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 12px !important;
  border-radius: 5px;
}

.btn-joined {
  background-color: #5d1d88 !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 20px !important;
  border-radius: 5px;
}

.more-toggle.dropdown-toggle::after {
  display: none !important;
}

/* Create post modal starts here */

.modal .modal-header {
  padding: 16px 25px;
  /* border-bottom: none !important; */
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.modal .modal-body,
.modal .modal-footer {
  padding: 16px 25px;
}

.textarea-form-control {
  height: 200px;
}

.modal .modal-footer {
  background-color: #ffe0df;
}

.custom-border-header {
  position: relative !important;
}

.custom-border-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 5px;
  background: #5d1d88;
}

.btn-post {
  background-color: #5d1d88 !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 20px !important;
  border-radius: 5px;
}
/* Create post modal ends here */

/* Chat Section Starts Here */
.left-chat-container {
  border-right: 1px solid #cccccc;
}

.chat-list {
  width: 100% !important;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 17px;
  padding-top: 17px;
}

.right-chat-header {
  border-bottom: 1px solid #cccccc;
}

.right-chat-body {
  border-bottom: 1px solid #cccccc;
  height: 19rem;
  overflow-y: auto;
}

.white-chat-box-main {
  position: relative;
  display: grid;
  justify-content: start;
  margin-bottom: 25px;
}

.white-chat-box {
  background-color: #ffeae9 !important;
  padding: 16px 24px;
  border-radius: 5px;
  border-bottom-left-radius: 0px;
  font-size: 14px;
  color: #2e2e2e !important;
  font-weight: 400;
  display: inline-block;
}

.white-time-stamp {
  color: #959595 !important;
  font-size: 12px !important;
  font-weight: 400;
  position: absolute;
  bottom: -22px;
  left: 0px;
}

.pink-chat-box-main {
  position: relative;
  display: grid;
  justify-content: end;
  margin-bottom: 25px;
  gap:5px;
}

.pink-chat-box {
  background-color: #f5b7b5 !important;
  padding: 16px 24px;
  border-radius: 5px;
  border-bottom-right-radius: 0px;
  font-size: 14px;
  color: #2e2e2e !important;
  font-weight: 400;
  display: inline-block;
}

.pink-time-stamp {
  color: #959595 !important;
  font-size: 12px !important;
  font-weight: 400;
  position: absolute;
  bottom: -22px;
  right: 0px;
}

.btn-send {
  background-color: #5d1d88 !important;
  border-radius: 50% !important;
  height: 42px;
  width: 42px;
  position: relative;
}

.right-chat-footer textarea.form-control {
  background-color: transparent !important;
  border: none !important;
  height: auto;
  font-size: 15px;
  color: #2e2e2e;
}

.btn-send img {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 12px;
  left: 10px;
}

.toggle-chat-btn {
  position: absolute;
  top: 18px;
  right: 10px;
}

/* .left-chat-toggle {
  right: auto;
  left: 18px;
} */

.toggle-chat-btn {
  display: none;
}

/* Chat Section Ends Here */
/* Preset post css */
.preset-post {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 20%;
  background: #ffffff;
  color: #5d2c85; /* red text */
  border-top: 2px solid #5d2c85;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.preset-post-text {
  font-size: 16px;
}

.preset-post-arrow {
    font-size: 18px;
}

.preset-post:hover {
    background: #fff4f4ed;
    cursor: pointer;
}
@media (max-width: 600px) {
    .preset-post {
        padding: 16px;
        font-size: 16px;
    }
}
/* Preset post end here */
@media (min-width: 1280px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }
}

@media (min-width: 1366px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

@media (min-width: 1440px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}

@media (max-width: 990px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 85%;
    margin: 0 auto;
  }

  .right-content {
    margin-top: 20px !important;
  }

  /* Chat Section Starts Here */

  .toggle-chat-btn {
    display: block !important;
}

  .left-chat-container {
    position: absolute;
    top: 0;
    left: -210%;
    width: 100%;
    height: 50rem !important;
    z-index: 2;
    background-color: #fcd5d4;
    transition: left 0.3s ease-in-out;
}

.right-chat-container {
    transition: margin-left 0.3s ease-in-out;
}

.left-chat-container.show {
    left: 0;
}

.right-chat-container {
    margin-left: 0;
}

.right-chat-container.shift-right {
    margin-left: 100%;
}
  /* Chat Section Ends Here */
}

@media (max-width: 767px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    width: 100%;
    margin: 0 auto;
  }

  .grid-item {
    padding: 14px 20px;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #ccc !important;
    position: relative;
    cursor: pointer;
  }

  .community-serial {
    color: #2e2e2e;
    font-weight: 700;
    font-size: 15px;
    margin-right: 25px;
  }

  .community-img {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .header.header-sticky .site-logo img {
    height: 1.3rem !important;
  }

  .search-area {
    display: none; /* Initially hide the search area */
    position: fixed;
    left: 0;
    width: 100%;
    padding: 0 1rem;
    background: #fff;
    padding: 1rem;
    top: 0;
  }

  /* Add isOpen class to display the search area */
  .search-area.isOpen {
    display: flex;
    align-items: center;
    z-index: 1;
  }

  .header-desktop {
    display: none !important;
  }

  .header-mobile {
    display: block !important;
  }

  .mobile-only {
    display: block !important;
  }

  .mobile-container {
    padding: 0px !important;
  }

  .content {
    padding: 20px;
    margin-left: 0px;
  }

  .content-card .card-body {
    padding: 16px;
  }
  .sidebar {
    z-index: 10;
    background-color: #ffe0df;
    margin-top: 65px;
    border-right: 0;
    transition: transform 0.3s ease; /* Add transition for smooth slide effect */
    transform: translateX(-250px);
  }

  /* .sidebar-hidden {
    transform: translateX(-250px);
} */

  .sidebar.sidebar-visible {
    transform: translateX(0); /* Slide the sidebar into the viewport */
  }

  .react-card {
    background-color: #f5b7b5;
    padding: 7px 10px !important;
    border-radius: 5px;
    /* margin-right: 5px; */
    align-items: center;
  }

  .react-card .like-text {
    margin-right: 10px;
  }

  .react-card img {
    width: 15px;
    height: 20px;
  }

  .background-banner img {
    width: 100%;
    height: 120px;
    border-radius: 5px;
  }

  .banner-user {
    position: absolute;
    bottom: 55px;
  }

  .banner-user-text {
    margin-left: 75px;
    transform: translateY(-5px);
  }

  img.banner-user-icon {
    width: 60px;
    height: 60px;
  }

  .banner-flex-mobile {
    display: flex;
    flex-direction: column;
  }

  .buttons-mobile-flex {
    justify-content: space-between !important;
  }

  .m-top {
    margin-top: 10px;
  }

  .chat-list-body {
    height: 35rem !important;
    overflow-y: auto;
    padding-right: 20px;
    margin-right: -20px !important;
  }
  .right-chat-body {
    border-bottom: 1px solid #cccccc;
    height: 39rem;
    overflow-y: auto;
  }
  .notification-container .dropdown-content{
    min-width: 280px !important;
  }
  
  .ribbon-wrapper .ribbon {
    font: bold 10px sans-serif !important;
    left: -40px !important;
    top: 15px !important;
    padding: 1px 0 !important;
  }

}


.confirm-popup {
  position: fixed;
  z-index: 1000123;
  background: rgba(0,0,0,.8);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
}

.c-in {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  background: #fff;
  max-width: 480px;
  margin: 0 auto;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 0;
  padding: 30px 40px;
  background: var(--theme-body);
  text-align: center;
}
.c-in.small { max-width: 500px; border-top: 5px solid #E8C00D;}

.c-in.c-open{ display:block}


.clodse-confirm a:before {
    content: "close";
    text-transform: uppercase;
    color: #fff;
}
.clodse-confirm a {
    position: absolute;
    right: 0;
    top: -28px;
    background: url(../images/close-modal.svg) center right no-repeat var(--theme-color);
    padding: 0 30px 0 .9rem;
    height: 28px;
    font-size: 14px;
    line-height: 26px;
    text-decoration: none;
    background-position: 90%;
}
.c-in-content {
    font-size: 28px;
    color: #5d1d88;
}
.cursor-pointer {
  cursor: pointer;
}

.chat-list-body {
  height: 23rem;
  overflow-y: auto;
  padding-right: 20px;
  margin-right: -20px !important;
}

/* Notification Section Starts Here */

.notification-container {
  position: relative;
  display: inline-block;
}

.bell-icon {
  cursor: pointer;
}

.notification-container .dropdown-content {
  display: none;
  position: absolute;
  right: 0px;
  top: 52px;
  background-color: #f9f9f9;
  min-width: 350px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px !important;
  max-height: 300px;overflow-y: auto;
}

.notification {
  padding: 15px 15px 0px;
  border-bottom: 1px solid #ACACAC;
  background-color: #F5B7B5;
}

.notification  .notification-img {
  margin-right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.notification-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0px !important;
}

.notification-time {
  font-size: 10px;
  font-weight: 600;
  color: white;
  margin-bottom: 0px !important;
}

.notification-description {
  font-size: 14px;
  font-size: 400;
  color: #565656;
  margin-bottom: 0px !important;
}

.notification-read{
  font-size: small;
  font-weight: 600;
  color: purple;
}

.mark-as-read-btn {
  background-color: #fff;
  color: #5d1d88;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* Notification Section Ends Here */


/* Search Field Filter Section Starts Here */
.search-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.search-field {
  width: 100%;
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.search-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  z-index: 1;
  /* padding: 15px 20px; */
  max-height: 340px;
  overflow-y: auto;
}


.search-dropdown-item {
  padding: 14px 0px;
  cursor: pointer;
  border-bottom: 1px solid #DDDDDD;
}

.search-dropdown-item .search-community-img {
  margin-right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.search-dropdown-item .search-community-title {
  font-size: 14px;
  font-weight: 400;
  color: #2E2E2E;
  margin-bottom: 3px !important;
}


.search-dropdown-item .search-community-profile {
  font-size: 12px;
  font-weight: 400;
  color: #565656;
  margin-bottom: 0px !important;
}

.search-dropdown-item:hover {
  background-color: #ddd;
}
/* Search Field Filter Section Starts Here */

/* Login Dropdown Section Starts Here */
.login-dropdpown-menu .dropdown-item {
  display: flex;
  width: 100%;
  padding: .25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  width: 230px;
}

.login-dropdpown-menu li .dropdown-item:hover, 
.login-dropdpown-menu li .dropdown-item:active {
  background-color: #fcd5d4 !important;
  color: #5d1d88 !important;
}

.login-dropdpown-menu hr.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #ACACAC;
}

.navIconLogin.saved {
  background-position: -23px -21px;
}

.navIconLogin.drafts {
  background-position: -62px -21px;
}

.navIconLogin.languages {
  background-position: -101px -21px;
}

.navIconLogin.help {
  background-position: -143px -21px;
}

.navIconLogin.logout {
  background-position: -184px -20px;
}

ul.login-dropdpown-menu > li > a:hover .navIconLogin.saved,
ul.login-dropdpown-menu > li.active > a .navIconLogin.saved {
  background-position: -23px -52px;
}

ul.login-dropdpown-menu > li > a:hover .navIconLogin.drafts,
ul.login-dropdpown-menu > li.active > a .navIconLogin.drafts {
  background-position: -62px -52px;
}

ul.login-dropdpown-menu > li > a:hover .navIconLogin.languages,
ul.login-dropdpown-menu > li.active > a .navIconLogin.languages {
  background-position: -101px -52px;
}

ul.login-dropdpown-menu > li > a:hover .navIconLogin.help,
ul.login-dropdpown-menu > li.active > a .navIconLogin.help {
  background-position: -143px -52px;
}

ul.login-dropdpown-menu > li > a:hover .navIconLogin.logout,
ul.login-dropdpown-menu > li.active > a .navIconLogin.logout {
  background-position: -184px -20px;
}
/* Login Dropdown Section Ends Here */

/* chat user search */


#chat_user_list_on_search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  z-index: 1;
  /* padding: 15px 20px; */
  max-height: 340px;
  overflow-y: auto;
}


.chat_user_list-dropdown-item {
  padding: 14px 0px;
  cursor: pointer;
  border-bottom: 1px solid #DDDDDD;
}

.chat_user_list-dropdown-item .chat_user_list-img {
  margin-right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.chat_user_list-dropdown-item .chat_user_list-title {
  font-size: 14px;
  font-weight: 400;
  color: #2E2E2E;
  margin-bottom: 3px !important;
}
.chat_user_list-dropdown-item:hover {
  background-color: #ddd;
}
/* chat user search end */

/* comment css start */

.comment-div-left-padding{
  padding-left: 2.3rem;
}

.border-radius-10{
  border-radius: 10px;
}

.comment-inputs:focus{
  box-shadow:0 0 0 0 transparent !important;
}
/* comment css end */


/* Communities View Profile Section Starts Here */
.profile-edit {
  font-size: 15px !important;
  color: #2e2e2e !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

.navigation {
  display: flex;
  /* justify-content: space-around; */
  padding: 10px 0;
}

.nav-button {
  text-decoration: none;
  color: #2E2E2E !important;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin-right: 10px;
}

.nav-button:hover {
  background-color: #f5b7b55c;
}

.nav-button.nav-active {
  background-color: #F5B7B5;
}

.nav-hr {
  color: #cccccc !important;
  height: 1px !important;
  opacity: 1;
}

.btn-edit_profile {
  background-color: #5d1d88 !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 12px !important;
  border-radius: 5px;
}

.border-dashed-grey{
  border: 1px dashed grey !important;
}

.profile-main-container {
  padding: 20px 10px;
  width: 100%;
  border: 1px dashed grey;
  border-radius: 8px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* Style for the profile image container */
.profile-container {
  position: relative;
  display: inline-block;
}

/* Style for the profile image */
#profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/* Style for the edit button */
#edit-button {
  position: absolute;
  bottom: 0;
  right: 0;
  background: purple;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#edit-button img {
  width: 15px;
  height: 15px;
}

/* Optional styling for the modal */
.custom-border-header {
  border-bottom: 1px solid #dee2e6;
}

/* Communities View Profile Section Ends Here */

.community-big-img{
  width: 5rem;
}


.nav-chat-icon {
  padding: 5px;
  border-radius: 1rem;
  position: relative;
  box-shadow: 0 0 20px rgb(93 44 133);
  animation: glow 1s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 20px rgb(93 44 133);
  }
  to {
    box-shadow: 0 0 40px rgb(147, 93, 190);
  }
}

.related_height{
  max-height: 30rem;
  overflow-x: auto;
}

.introjs-tooltip {
  min-width: 25rem !important;/* Adjust the width to make the dialog box wider */
  max-width: 50rem !important; /* Set a maximum width */
  background: #5d2c85 !important;
  color: white;
}

.introjs-skipbutton{
  color:white !important;
}

.introjs-arrow.top,.introjs-arrow.top-right,.introjs-arrow.top-middle{
  border-bottom-color: #5d2c85 !important;
}
.introjs-arrow.right-bottom,.introjs-arrow.right{
  border-left-color: #5d2c85 !important;
}
.introjs-arrow.bottom{
  border-top-color : #5d2c85 !important;
}
.introjs-arrow.left-bottom,.introjs-arrow.left{
  border-right-color : #5d2c85 !important;
}
.introjs-tooltiptext {  
  font-size: 14px;
}
.introjs-bullets{
  padding-top: 0px !important;
}
.introjs-button{
  padding: 0.2rem 1rem !important;
}
.parent-react-card{
  flex-wrap: wrap;
  gap: 10px;
}

/* ribbon */

.ribbon-wrapper {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  left: -3px;
  
}
.ribbon-wrapper .ribbon {
  font: bold 15px sans-serif;
  text-align: center;
  -webkit-transform: rotate(-45deg);
  -moz-transform:    rotate(-45deg);
  -ms-transform:     rotate(-45deg);
  -o-transform:      rotate(-45deg);
  position: relative;
  padding: 3px 0;
  top: 18px;
  left: -33px;
  width: 120px;
}

.ribbon-warning{
  background-color: #ebb134 !important;
  color: #fff;
}

.ribbon-danger{
  background-color: #dc3545 !important;
  color: #fff;
}

.ribbon-success{
  background-color: #198754!important;
  color: #fff;
}

/* ribbon end */

.more-sidemenu-div li a{
  display: flex;
  width: 100%;
  align-items: center;
  padding: 10px 0px;
  text-decoration: none !important;
  color: #2e2e2e !important;
  font-size: 16px !important;
  font-weight: normal;
}

.opacity-25{
  opacity:0.25;
}


.bg-primary-pink {
  background: #f5b7b5;
}

.visible-mobile {
    display: none;
}
.side-card{
    height: 50vh;
    overflow-x: auto;
    margin-bottom: 2rem;
}
.choose-box{
  background-color:#5d1d88 !important;
  color: white;
}

.text-primary-light-pink{
  color:#FFE0DF !important;
}
.text-spacing-1{
  letter-spacing: 1px !important;
}

.choose-box .pnt-img {
  object-fit: cover;
  object-position: left;
  width: 15rem;
}
.bg-primary-light{
  background:#0d6efd9c !important;
}
.text-primary-light{
  color:#0d6efd9c !important;
}

.hero-post-section {
    background: #0000004a url(../images/textbox_bg.png) center/cover no-repeat;
    height: 250px;
    position: relative;
    background-blend-mode: color;
}

.section-post-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -95%);
    width: 60%;
}

.section-post-input {
    border-radius: 30px;
    padding-left: 20px;
    padding-right: 50px;
}

.section-post-btn {
    position: absolute;
    right: 10px;
    top: 5.5px;
    border-radius: 50%;
    padding: 4px 8px !important;
}

.section-pink-section {
    background: #faf9f9;
    margin: 15px 0;
    padding:10px 0px;
}
.react-card-2{
  background-color: #dfdede;
  padding: 0px 10px !important;
  border-radius: 5px;
}
.react-card-2 .like-text {
  margin: 2px 10px;
}
.mini-post .card-body{
  height: 44.5vh;
  overflow-y: auto;
}
.news-card {
    height: 100%;
    border-radius: 4px;
    padding: 22px 30px 28px 30px;
}
.news-title {
    color: #000;
    /* font-family: Poppins; */
    /* font-weight: 600; */
    /* font-size: 20px; */
    line-height: 1rem;
    letter-spacing: 0px;
    margin-bottom: 10px;
}

.property-deals-auction-section .card-header {
    padding: 40px 60px 30px 30px;
    border-radius: 0px;
}
.owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.owl-nav button.owl-prev {
    background: url(../../pnt_website/images/nav-prev.svg) center center no-repeat #fff !important;
    background-size: 1rem !important;
}
.owl-nav button.disabled {
    opacity: .4;
}
.owl-nav button.owl-next {
    background: url(../../pnt_website/images/nav-next.svg) center center no-repeat #fff !important;
    background-size: 1rem !important;
}
.owl-nav button {
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid #6e6c6b69 !important;
    border-radius: 100% !important;
    background: #fff !important;
    font-size: 0 !important;
    margin: 0 10px;
}

.box-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 0;
    z-index: 1;
    background: none !important;
}
.auction-price {
    background-color: #FFE0DF;
    border-radius: 4px;
    padding: 7px 14px;
    display: inline-block;
    position: absolute;
    /* bottom: 10px; */
    bottom: 20px;
    left: 10px;
}
.bank-auction-img {
    position: relative;
    /* margin-right: 30px; */
    margin-right: 0px;
    /* width: 280px; */
    height: 200px;
}
.bank-auction-img img{
  width: 100%;
  height: 100%;
}
.main-img{
    height: 160px !important;
    width: 200px !important;
}
.select2-dropdown{
  z-index: 1060;
}
.head-strip{
  font-size: 20px;
}
.pp{
  width:38px; height:38px;
}
.news-card-pink {
  background-color: white;
}
.news-card {
  height: 100%;
  border-radius: 4px;
  padding: 22px 30px 28px 30px;
}
.news-card-image img {
  width: 100%;
  /* height: 230px; */
}
.news-title {
  color: rgb(0, 0, 0);
  font-family: sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2rem;
  letter-spacing: 0px;
  margin-bottom: 10px;
}
.news-content {
  color: rgb(46, 46, 46);
  font-family: sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  margin-bottom: 15px;
}
.news-content-read-more {
  color: rgb(93, 29, 136);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none !important;
}
.two-line-ellipse {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky_box {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-color: #cd8c8c rgb(250, 250, 249);
    scrollbar-width: thin;
}

.bg-danger-custom{
  background: #ec2427 !important;
}
.bg-info-custom{
  background: #4db3e6 !important;
}
.bg-success-custom{
  background: #2ab052 !important;
}
.bg-warning-custom{
  background: #e7bf20 !important;
}

.text-danger-custom{
  color:#ec2427 !important;
}
.text-info-custom{
  color:#4db3e6 !important;
}
.text-success-custom{
  color:#2ab052 !important;
}
.text-warning-custom{ 
  color:#e7bf20 !important;
} 
.ql-sticky{
  position: sticky;
  top: 0;
  background: #fcd5d4;
  padding: 15px 0px;
}
.mh-120-px{
  max-height: 120px !important;
}


@media (max-width: 991px) {
  .nav-primary, .visible-desktop {
      display: none;
  }
  .visible-mobile {
    display: block;
  }
  .head-strip{
    font-size: 10px;
  }
  #switch-communityDropdown{
    font-size: 8px;
  }
  .bg-primary-pink img{
    width: 15px;
  }
  .dropdown-item-profile img.profile-img, .pp{
    width:30px !important; height:30px;
  }
  .sticky_box {
    position: relative;
    top: 0;
    max-height: 100%;
    overflow-y: hidden;
  }

  .section-post-box {
    left: 65%;
    top: 50%;
    transform: translate(-45%, -95%);
    width: 62%;
  }

  .form-control{
    font-size: 0.9rem;
  }

  .section-post-btn {
    right: 5px;
    padding: 0.6px 4px !important;
  }
}