
@import "bootstrap.min.css";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;600;700&display=swap");

:root {
    --opacity_0: rgba(255,255,255,0);
    --blue: #2A66FF;
    --white: #ffffff;
}

.animated-effect, .settings-body .settings-box .gallery-items .gallery-item .btn, .settings-body .settings-box .gallery-items .gallery-item, .settings-body .settings-box .image-field label, .add-place-body .gallery-items .gallery-item .btn, .add-place-body .gallery-items .gallery-item, .add-place-body .image-field label, .business-body .business-gallery .gallery-item, .profile-body .profile-gallery .gallery-item, .chat-person, .messages-single-chat .chat-send-message .upload-image-button, .messages-single-chat .chat-body .chat-messages-gallery .gallery-images img, .messages-single-chat .chat-header .chat-header-info .chat-header-name, .messages-single-chat .chat-header .chat-header-avatar, .messages-list .message-item, .story-page .story-action-button, .feed-body .feed-posts .feed-post .post-summary .post-like, .feed-body .feed-share .feed-share-media-fields .media-field label, .dashboard .dashboard-body .result-item .result-details .result-actions, .dashboard .dashboard-body .result-item, .dashboard .dashboard-body .custom-info-window.person-window .infobox-avatar, .dashboard .dashboard-body .custom-info-window.event-window .infobox-people .people-list > img, .dashboard .dashboard-body .custom-info-window .infobox-name, .dashboard .dashboard-body .custom-info-window .infobox-avatar, .dashboard .dashboard-body .custom-info-window .infobox-background, .dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-toggle:after, .dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-toggle, .dashboard-sidebar .profile-sidebar .nav .nav-item .nav-link, .dashboard-footer li a, .dashboard-header .header-profile, .dashboard-header .header-filters-toggle {
  transition: 0.1s ease all;
}

.animated-long-effect, .dashboard-sidebar {
  transition: 0.2s ease all;
}

.active-effect, .btn.btn-link-dark:active, .btn.btn-link:active, .btn.btn-outline-dark:active, .btn.btn-outline-light:active, .btn.btn-outline-primary:active, .btn.btn-dark:active, .btn.btn-transparent:active, .btn.btn-light:active, .btn.btn-primary:active {
  transform-origin: center;
  transform: scale(0.9875);
}

.disable-selection, .settings-body .settings-box .upload-box, .add-place-body .upload-box, .add-place-body .form-check .form-check-label, .messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-menu .dropdown-item, .messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-toggle, .dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-menu .dropdown-item, .dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-toggle, .dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-menu .dropdown-item, .dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-toggle, .main form .form-check .form-check-label {
  user-select: none;
}

.disable-clicks {
  pointer-events: none;
}

.text-ellipsis {
  width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

html, body {
  font-family: "Inter", sans-serif;
  position: relative;
}

a {
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Removes tap highlight color on iOS */
}

.navbar-brand {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.navbar-brand:hover, .navbar-brand:focus, .navbar-brand:active {
  color: #fff;
  text-decoration: none;
}

.dashboard-header {
  position: relative;
  padding: 1rem 0;
}
.dashboard-header .header-wrapper {
  display: flex;
  align-items: center;
}
.dashboard-header .header-wrapper .navbar-brand {
  margin: 0 auto;
}
.dashboard-header .header-filters-toggle {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  outline: none;
  margin: 0;
  box-shadow: none;
  padding: 0;
}
.dashboard-header .header-filters-toggle.exit-chat-button {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767.9px) {
  .dashboard-header .header-filters-toggle.exit-chat-button.chat-active {
    opacity: 1;
    visibility: visible;
  }
}
.dashboard-header .header-filters-toggle:hover {
  box-shadow: #0866ff 0 0 0 3px;
  background: rgba(255, 255, 255, 0.1);
}
.dashboard-header .header-filters-toggle:active {
  transform-origin: center;
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.15);
}
.dashboard-header .header-filters-toggle img {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  filter: brightness(0) invert(1);
}
.dashboard-header .header-profile {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  border-radius: 50%;
  background: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  outline: none;
  border: none;
  display: block;
  box-shadow: #fff 0 0 0 3px;
}
.dashboard-header .header-profile:hover {
  box-shadow: #0866ff 0 0 0 3px;
}
.dashboard-header .header-profile:active {
  transform-origin: center;
  transform: scale(0.95);
}
.dashboard-header .header-profile img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 3rem;
  z-index: 9;
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 30rem;
  list-style: none;
  padding: 0.5rem;
  background: #040e18;
}
@media (max-width: 767.9px) {
  .dashboard-footer {
    width: 18rem;
  }
}
.dashboard-footer li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.8rem;
  color: white;
  padding: 0.5rem 0.5rem;
  border-radius: 3rem;
  position: relative;
}
.dashboard-footer li a:hover {
  background: rgba(255, 255, 255, 0.05);
}
.dashboard-footer li a:active {
  background: rgba(255, 255, 255, 0.15);
  transform-origin: center;
  transform: scale(0.975);
}
.dashboard-footer li a.active {
  background: rgba(255, 255, 255, 0.1);
}
.dashboard-footer li a img {
  width: 1.75rem;
  height: 1.75rem;
  filter: brightness(0) invert(1);
}
.dashboard-footer li a span {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media (max-width: 767.9px) {
  .dashboard-footer li a span {
    display: none;
  }
}
.dashboard-footer li a i {
  position: absolute;
  top: 0.15rem;
  left: 1.65rem;
  width: 0.9rem;
  height: 0.9rem;
  background: #0866ff;
  color: #fff;
  font-size: 0.6rem;
  line-height: 1.5;
  text-align: center;
  font-family: sans-serif;
  display: block;
  font-weight: 600;
  border-radius: 50%;
  z-index: 1;
  font-style: normal;
}

.dashboard-cta {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 3;
}
@media (max-width: 767.9px) {
  .dashboard-cta {
    width: 8rem;
    text-align: center;
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1.5rem;
  }
}
.dashboard-cta .btn {
  font-weight: 400;
  border-radius: 3rem;
  font-size: 0.8rem;
  color: white;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  border: none;
}
.dashboard-cta .btn img {
  width: 1.75rem;
  height: 1.75rem;
  filter: brightness(0) invert(1);
}
.dashboard-cta .btn span {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.dashboard-sidebar {
  position: absolute;
  top: 4.5rem;
  left: 0;
  bottom: 0;
  width: 23em;
  background: #040e18;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform-origin: center;
  overflow-x: hidden;
  transform: translateX(-100%);
}
.dashboard-sidebar.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dashboard-sidebar.sidebar-right {
  left: auto;
  right: 0;
  transform-origin: center;
  transform: translateX(100%);
}
.dashboard-sidebar.sidebar-right.active {
  transform: none;
}
.dashboard-sidebar::-webkit-scrollbar {
  width: 10px;
  border-radius: 0;
}
.dashboard-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
}
.dashboard-sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
.dashboard-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
.dashboard-sidebar .profile-sidebar {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.5rem;
}
.dashboard-sidebar .profile-sidebar .profile-sidebar-background {
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 0 -1.5rem;
  height: 10rem;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.dashboard-sidebar .profile-sidebar .profile-sidebar-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 5px solid #040e18;
  position: relative;
  z-index: 1;
  /* margin-left: -5px; */
  object-fit: cover;
}
.dashboard-sidebar .profile-sidebar h2 {
  font-size: 1.5rem;
  color: #fff;
  margin: 1rem 0 0 0;
}
.dashboard-sidebar .profile-sidebar h4 {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
  margin: 0.5rem 0 0 0;
}
.dashboard-sidebar .profile-sidebar .nav {
  flex-direction: column;
  margin-top: 1.5rem;
}
.dashboard-sidebar .profile-sidebar .nav .nav-item {
  display: block;
}
.dashboard-sidebar .profile-sidebar .nav .nav-item .nav-link {
  width: calc(100% + 1rem);
  margin: 0 -0.5rem;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.5rem;
  border-radius: 1rem;
  color: #fff;
  font-size: 0.9rem;
}
.dashboard-sidebar .profile-sidebar .nav .nav-item .nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
}
.dashboard-sidebar .profile-sidebar .nav .nav-item .nav-link:active {
  background: rgba(255, 255, 255, 0.1);
  transform-origin: center;
  transform: scale(0.975);
}
.dashboard-sidebar .profile-sidebar .nav .nav-item .nav-link img {
  width: 1.75rem;
  height: 1.75rem;
  filter: brightness(0) invert(1);
  margin-right: 0.5rem;
}
.dashboard-sidebar .profile-sidebar .nav .nav-item .noti {
    position: absolute;
    right: 2rem;
    background: rgb(213, 6, 6);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
}

.dashboard-sidebar .filters-sidebar {
  padding: 1.5rem;
}
.dashboard-sidebar .filters-sidebar h4 {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem 0;
}
.dashboard-sidebar .filters-sidebar .filter-entry {
  display: block;
  position: relative;
  margin-bottom: 0.75rem;
}
.dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-toggle {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
  border: 1px solid transparent;
  outline: none;
  box-shadow: none;
  padding: 0.75rem 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
}
.dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-toggle:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform-origin: center;
  transform: rotate(-45deg);
  content: " ";
  margin: auto;
  z-index: 1;
}
.dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}
.dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-toggle:active {
  background: rgba(255, 255, 255, 0.1);
}
.dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-toggle:not(.collapsed) {
  border-top-color: rgba(255, 255, 255, 0.25);
  border-left-color: rgba(255, 255, 255, 0.25);
  border-right-color: rgba(255, 255, 255, 0.25);
  background: none;
  border-radius: 1rem 1rem 0 0;
}
.dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-toggle:not(.collapsed):after {
  transform: rotate(45deg);
}
.dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-toggle img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  margin-right: 0.5rem;
}
.dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-body {
  padding: 0.75rem 1.5rem 1.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top-color: transparent;
  border-radius: 0 0 1rem 1rem;
}
.dashboard-sidebar .filters-sidebar .filter-entry .filter-entry-body p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.dashboard-sidebar .filters-sidebar .form-field.search-field {
  position: relative;
}
.dashboard-sidebar .filters-sidebar .form-field.search-field .form-control {
  padding: 0.75rem 1rem 0.75rem 3rem;
  background: white;
  border-radius: 4rem;
  color: #061523;
  font-size: 0.9rem;
  border: none;
  outline: none;
  box-shadow: none;
}
.dashboard-sidebar .filters-sidebar .form-field.search-field img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  margin: auto;
  z-index: 1;
}
.dashboard-sidebar .filters-sidebar .form-check.form-switch {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  padding-left: 0;
  cursor: pointer;
}
.dashboard-sidebar .filters-sidebar .form-check.form-switch + .form-check.form-switch {
  margin-top: 0.75rem;
}
.dashboard-sidebar .filters-sidebar .form-check.form-switch .form-check-input {
  cursor: pointer;
  font-size: 1.5rem;
}
.dashboard-sidebar .filters-sidebar .form-check.form-switch .form-check-input:checked {
  background-color: #0866ff;
  border-color: #0866ff;
}
.dashboard-sidebar .filters-sidebar .form-check.form-switch .form-check-input:not(:checked):focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23e77ea3'/%3e%3c/svg%3e");
  filter: grayscale(1);
}
.dashboard-sidebar .filters-sidebar .form-check.form-switch .form-check-input:focus {
  box-shadow: rgba(8, 102, 255, 0.25) 0 0 0 0.25rem;
}
.dashboard-sidebar .filters-sidebar .form-check.form-switch .form-check-label {
  margin-left: 0;
  margin-right: auto;
  flex-grow: 1;
  font-size: 0.8rem;
  color: white;
  font-weight: 400;
  cursor: pointer;
  padding-right: 4rem;
}

.btn {
  font-weight: 600;
  padding: 1rem 0.5rem;
  border-radius: 0.75rem;
}
.btn:hover, .btn:focus, .btn:not(:disabled):not(.disabled):active {
  box-shadow: rgba(6, 21, 35, 0.15) 0 0.25rem 1rem;
}
.btn.btn-primary {
  background: #0866ff;
  border-color: #0866ff;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #088fff;
  border-color: #088fff;
}
.btn.btn-primary:active {
  background: #083dff;
  border-color: #083dff;
}
.btn.btn-light {
  background: #fff;
  border-color: #fff;
  color: #061523;
}
.btn.btn-transparent {
  background: rgba(255, 255, 255, 0.05);
  border-color: transparent;
  color: #fff;
}
.btn.btn-transparent:hover, .btn.btn-transparent:focus {
  background: rgba(255, 255, 255, 0.1);
}
.btn.btn-transparent:active {
  background: rgba(255, 255, 255, 0.15);
}
.btn.btn-dark {
  background: #061523;
  border-color: #061523;
  color: #fff;
}
.btn.btn-dark:hover, .btn.btn-dark:focus {
  background: #081c2e;
  border-color: #081c2e;
  color: #fff;
}
.btn.btn-dark:active {
  background: #0a2239;
  border-color: #0a2239;
  color: #fff;
}
.btn.btn-outline-primary {
  border-color: #0866ff;
  color: #0866ff;
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus {
  background: #0866ff;
  border-color: #0866ff;
  color: #fff;
}
.btn.btn-outline-primary:active {
  background: #083dff;
  border-color: #083dff;
  color: #fff;
}
.btn.btn-outline-light {
  border-color: #fff;
  color: #fff;
}
.btn.btn-outline-light:hover, .btn.btn-outline-light:focus {
  background: #fff;
  border-color: #fff;
  color: #061523;
}
.btn.btn-outline-light:active {
  background: #fff;
  border-color: #fff;
  color: #061523;
}
.btn.btn-outline-dark {
  border-color: #061523;
  color: #061523;
}
.btn.btn-outline-dark:hover, .btn.btn-outline-dark:focus {
  background: #061523;
  border-color: #061523;
  color: #fff;
}
.btn.btn-outline-dark:active {
  background: #333;
  border-color: #333;
  color: #fff;
}
.btn.btn-link {
  border: none;
  font-size: 0.9rem;
  padding: 0;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.btn.btn-link:hover, .btn.btn-link:focus, .btn.btn-link:not(:disabled):not(.disabled):active {
  background: transparent;
  border: transparent;
  box-shadow: none;
  color: #fff;
  text-decoration: underline;
}
.btn.btn-link-dark {
  border: none;
  font-size: 0.9rem;
  padding: 0;
  font-weight: 600;
  color: #061523;
  text-decoration: none;
}
.btn.btn-link-dark:hover, .btn.btn-link-dark:focus, .btn.btn-link-dark:not(:disabled):not(.disabled):active {
  background: transparent;
  border: transparent;
  box-shadow: none;
  color: #061523;
  text-decoration: underline;
}
.main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url("../img/main-bg.jpg") center no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 100svh;
  padding: 5rem 5rem;
}
@media (max-width: 767.9px) {
  .main {
    display: block;
    padding: 2.5rem 0.75rem 0 0.75rem;
  }
  .main:not(.home-main) .navbar-brand ~ * {
    display: none;
  }
}
.main:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #061523;
  content: " ";
  z-index: 1;
  opacity: 0.6;
}
.main .container-fluid {
  position: relative;
  z-index: 2;
  padding: 0;
}
.main form {
  background: #fff;
  min-height: 100svh;
  height: calc(100% + 10rem);
  margin: -5rem -5rem -5rem 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .main form {
    padding: 5rem 1.5rem;
    justify-content: flex-start;
  }
}
@media (max-width: 767.9px) {
  .main form {
    padding: 2.5rem 0.75rem;
    width: calc(100% + 1.5rem);
    margin: 2.5rem -0.75rem 0 -0.75rem;
    height: auto;
    min-height: auto;
  }
}
.main form .form-field .form-label {
  color: #061523;
  font-weight: 600;
}
.main form .form-field .form-control {
  height: auto;
  padding: 1rem;
  border: 1px solid #061523;
  outline: none;
  box-shadow: none;
  border-radius: 0.75rem;
}
.main form .form-field .form-control:focus {
  border-color: #0866ff;
}
.main form .form-check {
  padding-left: 2rem;
  display: flex;
  align-items: center;
}
.main form .form-check .form-check-input {
  background-color: #fff;
  border-color: #061523;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: -2rem;
  float: none;
  display: block;
  margin-top: 0;
  margin-right: 0.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.main form .form-check .form-check-input:checked {
  background-color: #0866ff;
}
.main form .form-check .form-check-input:focus {
  box-shadow: rgba(8, 102, 255, 0.25) 0 0 0 0.25rem;
}
.main form .form-check .form-check-label {
  color: #061523;
  font-size: 0.9rem;
  cursor: pointer;
}
.main form .form-check .form-check-label strong {
  font-weight: 600;
}
.main form .form-check .form-check-label a {
  font-weight: 600;
  color: #061523;
}
.main h1 {
  font-size: 6rem;
  font-weight: 300;
  color: #fff;
  margin: 1.5rem 0;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .main h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767.9px) {
  .main h1 {
    font-size: 2rem;
  }
}
.main h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #061523;
  margin: 0 0 1.5rem 0;
  line-height: 1;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(6, 21, 35, 0.1);
}
.main p {
  color: white;
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}
.main p.copyrights {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(6, 21, 35, 0.45);
}
.main p.copyrights a {
  font-weight: 500;
  color: rgba(6, 21, 35, 0.5);
}
.main p.description {
  font-size: 0.9rem;
  color: #061523;
}
.main .no-account {
  text-align: center;
  margin: 2rem 0 1.5rem 0;
  color: rgba(6, 21, 35, 0.5);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(6, 21, 35, 0.1);
  font-size: 0.9rem;
}

.login {
  background: #061523;
}
.login h1 {
  font-size: 2rem;
  margin: 2rem 0;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}
.login form {
  text-align: left;
}
.login form .form-field .form-label {
  color: #fff;
  font-weight: 600;
}
.login form .form-field .form-control {
  height: auto;
  padding: 1rem;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 0.75rem;
}
.login .no-account {
  margin: 2rem 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.dashboard {
  background: #061523;
  height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dashboard .dashboard-body {
  flex-grow: 1;
  overflow-x: hidden;
  position: relative;
  background: #061523;
}
.dashboard .dashboard-body.grid-body {
  padding-bottom: 5.25rem;
}
.dashboard .dashboard-body.feed-body {
  padding-bottom: 5.25rem;
  padding-top: 1rem;
}
.dashboard .dashboard-body .dashboard-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a2239;
  outline: none;
  box-shadow: none;
}
.dashboard .dashboard-body .dashboard-map img[alt=Google] {
  opacity: 0;
}
.dashboard .dashboard-body .dashboard-map .gm-style {
  outline: none !important;
}
.dashboard .dashboard-body .dashboard-map .gm-style > div:last-child {
  opacity: 0;
  visibility: hidden;
}
.dashboard .dashboard-body .dashboard-map .gm-style .gm-fullscreen-control {
  opacity: 0;
  visibility: hidden;
}
.dashboard .dashboard-body .dashboard-map .gm-style .gm-bundled-control {
  opacity: 0;
  visibility: hidden;
}
.dashboard .dashboard-body .dashboard-map .gm-style .gm-style-iw-c {
  background: none;
  border-radius: 0.75rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0.25rem 1rem;
  padding-left: 0;
  padding-top: 0;
  /* transform: translate3d(-25px, -107.5%, 0) !important; */
}
.dashboard .dashboard-body .dashboard-map .gm-style .gm-style-iw-d {
  overflow: visible !important;
}
.dashboard .dashboard-body .dashboard-map .gm-style .gm-style-iw-d + button {
  top: 0 !important;
  right: 0 !important;
  outline: none;
  filter: brightness(0) invert(1);
}
.dashboard .dashboard-body .dashboard-map .gm-style .gm-style-iw-tc {
  display: none;
  padding: unset;
}
.dashboard .dashboard-body .dashboard-map .gm-style .gm-style-iw.gm-style-iw-c {
  outline: none !important;
  padding: unset;
}
@media (max-width: 767.9px) {
  .dashboard .dashboard-body .dashboard-map .gm-style .gm-style-iw.gm-style-iw-c {
    padding: 0 !important;
  }
}
.dashboard .dashboard-body .dashboard-map .gm-style iframe + div {
  border: none !important;
}
.dashboard .dashboard-body .dashboard-map .custom-marker {
  border-radius: 50%;
  background-color: #0a2239;
  border: 3px solid #fff;
  position: relative;
}
.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-up:before,
.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-down:before,
.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-no:before,
.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-btm:before,
.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-side:before,
.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-top:before,
.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-vers_bottom:before
,.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-vers_top:before,
.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-versatile:before {
  background: #0866ff;
  position: absolute;
  border-radius: 50%;
  bottom: -0.5rem;
  right: 0.1rem;
  width: 1.55rem;
  height: 1.55rem;
  content: " ";
  z-index: 1;
}

.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-up:after {
  background: url("../img/icons/angle-up.svg") center no-repeat;
  background-size: contain;
  background-size: 0.85rem;
  position: absolute;
  border-radius: 50%;
  bottom: -0.45rem;
  right: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  content: " ";
  z-index: 2;
}

.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-down:after {
  background: url("../img/icons/angle-down.svg") center no-repeat;
  background-size: contain;
  background-size: 0.85rem;
  position: absolute;
  border-radius: 50%;
  bottom: -0.25rem;
  right: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  content: " ";
  z-index: 2;
}

.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-no:after {
  /* background: url("../img/icons/type-position/no.svg") center no-repeat; */
  background: url("../img/icons/type-position/no.png") center no-repeat;
  background-size: contain;
  position: absolute;
  border-radius: 50%;
  bottom: -0.45rem;
  right: 0.22rem;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  content: " ";
  z-index: 2;
}

.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-btm:after {
  /* background: url("../img/icons/type-position/btm.svg") center no-repeat; */
  background: url("../img/icons/type-position/btm.png") center no-repeat;
  background-size: contain;
  position: absolute;
  border-radius: 50%;
  bottom: -0.45rem;
  right: 0.22rem;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  content: " ";
  z-index: 2;
}

.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-side:after {
  /* background: url("../img/icons/type-position/side.svg") center no-repeat; */
  background: url("../img/icons/type-position/side.png") center no-repeat;
  background-size: 0.85rem;
  position: absolute;
  border-radius: 50%;
  bottom: -0.38rem;
  right: 0.24rem;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  content: " ";
  z-index: 2;
}

.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-top:after {
  /* background: url("../img/icons/type-position/top.svg") center no-repeat; */
  background: url("../img/icons/type-position/top.png") center no-repeat;
  background-size: contain;
  position: absolute;
  border-radius: 50%;
  bottom: -0.35rem;
  right: 0.22rem;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  content: " ";
  z-index: 2;
}

.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-vers_bottom:after {
  /* background: url("../img/icons/type-position/vers_bottom.svg") center no-repeat; */
  background: url("../img/icons/type-position/vers_bottom.png") center no-repeat;
  background-size: contain;

  position: absolute;
  border-radius: 50%;
  bottom: -0.35rem;
  right: 0.22rem;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  content: " ";
  z-index: 2;
}

.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-vers_top:after {
  /* background: url("../img/icons/type-position/vers_top.svg") center no-repeat; */
  background: url("../img/icons/type-position/vers_top.png") center no-repeat;
  background-size: contain;
  position: absolute;
  border-radius: 50%;
  bottom: -0.35rem;
  right: 0.19rem;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  content: " ";
  z-index: 2;
}

.dashboard .dashboard-body .dashboard-map .custom-marker.person-subtype-versatile:after {
  /* background: url("../img/icons/type-position/versatile.svg") center no-repeat; */
  background: url("../img/icons/type-position/versatile.png") center no-repeat;
  background-size: contain;
  position: absolute;
  border-radius: 50%;
  bottom: -0.35rem;
  right: 0.22rem;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  content: " ";
  z-index: 2;
}




.dashboard .dashboard-body .dashboard-map .custom-marker.type-business {
  border-color: #0866ff;
  background-color: #0866ff;
  color: #fff;
  border-width: 2px;
}
.dashboard .dashboard-body .dashboard-map .custom-marker.type-business:hover, .dashboard .dashboard-body .dashboard-map .custom-marker.type-business.active-marker {
  border-color: #fff;
}
.dashboard .dashboard-body .dashboard-map .custom-marker.type-event {
  border-color: #3b86ff;
  background-color: #3b86ff;
  border-width: 2px;
}
.dashboard .dashboard-body .dashboard-map .custom-marker.type-event:hover, .dashboard .dashboard-body .dashboard-map .custom-marker.type-event.active-marker {
  border-color: #fff;
  box-shadow: rgba(28, 59, 153, 0.25) 0 0.25rem 1rem;
}
.dashboard .dashboard-body .dashboard-map .custom-marker:hover {
  border-color: #0866ff;
  box-shadow: rgba(8, 102, 255, 0.25) 0 0.25rem 1rem;
}
.dashboard .dashboard-body .dashboard-map .custom-marker {
  border-color: #0866ff;
  box-shadow: rgba(8, 102, 255, 0.25) 0 0.25rem 1rem;
}
.dashboard .dashboard-body .dashboard-map .custom-marker.my-marker {
  border-color: #ff873d;
  box-shadow: rgba(244, 199, 75, 0.25) 0 0.25rem 1rem;
}
.dashboard .dashboard-body .custom-info-window {
  background-color: #0a2239;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 10rem 1.5rem 1.5rem 1.5rem;
  width: 22rem;
  overflow: hidden;
  outline: none;
  position: relative;
}
.dashboard .dashboard-body .custom-info-window .infobox-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  z-index: 0;
  display: block;
}
.dashboard .dashboard-body .custom-info-window .infobox-background:hover {
  opacity: 0.5;
}
.dashboard .dashboard-body .custom-info-window .infobox-background img {
  width: 100%;
  height: 10rem;
  display: block;
  object-fit: cover;
}
.dashboard .dashboard-body .custom-info-window .infobox-avatar {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #081c2e;
  margin-left: -5px;
  margin-top: -2rem;
  position: relative;
  z-index: 3;
  display: block;
}
.dashboard .dashboard-body .custom-info-window .infobox-avatar:hover {
  border-color: #0866ff;
}
.dashboard .dashboard-body .custom-info-window .infobox-avatar img {
  width: calc(4rem - 10px);
  height: calc(4rem - 10px);
  border-radius: 50%;
}
.dashboard .dashboard-body .custom-info-window .infobox-online {
  position: absolute;
  top: 10.75rem;
  z-index: 4;
  left: 4rem;
  width: 0.85rem;
  height: 0.85rem;
  display: block;
  background: lawngreen;
  border: 3px solid #040e18;
  border-radius: 50%;
  font-size: 0;
  color: transparent;
}
.dashboard .dashboard-body .custom-info-window .infobox-name {
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  display: block;
  color: #fff;
  margin: 1rem 0 0.5rem 0;
  text-decoration: none;
  outline: none;
}
.dashboard .dashboard-body .custom-info-window .infobox-name:hover {
  color: #0866ff;
  text-decoration: underline;
}
.dashboard .dashboard-body .custom-info-window .infobox-status {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-toggle {
  height: auto;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 0.75rem;
  cursor: pointer;
}
.dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}
.dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-toggle:after {
  display: none;
  letter-spacing: 1px;
}
.dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-menu {
  border-radius: 0.75rem;
  background: #fff;
  border: none;
  box-shadow: none;
  padding: 0.5rem;
}
.dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.75rem;
  color: #061523;
  font-size: 0.9rem;
}
.dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-menu .dropdown-item img {
  width: 1rem;
  height: 1rem;
  margin: -0.25rem 0.5rem -0.25rem 0;
}
.dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-menu .dropdown-item:hover, .dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-menu .dropdown-item:focus {
  background: rgba(6, 21, 35, 0.05);
  color: #061523;
  box-shadow: none;
}
.dashboard .dashboard-body .custom-info-window .infobox-dropdown .dropdown-menu .dropdown-item:active {
  background: rgba(6, 21, 35, 0.15);
  color: #061523;
  box-shadow: none;
}
.dashboard .dashboard-body .custom-info-window .rating-box {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 1rem;
}
.dashboard .dashboard-body .custom-info-window .rating-box:before {
  position: absolute;
  top: 0;
  bottom: 0.15rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/icons/star.svg") center no-repeat;
  background-size: contain;
  content: " ";
  margin: auto;
}
.dashboard .dashboard-body .custom-info-window .rating-box strong {
  display: block;
  color: #ffb32b;
  font-weight: bold;
  font-size: 1rem;
}
.dashboard .dashboard-body .custom-info-window .rating-box span {
  display: block;
  margin-left: 0.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.dashboard .dashboard-body .custom-info-window .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}
.dashboard .dashboard-body .custom-info-window .btn.btn-primary img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  margin: -0.25rem 0.25rem -0.25rem -0.25rem;
}
.dashboard .dashboard-body .custom-info-window.event-window {
  padding-top: 1.5rem;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-avatar {
  margin-top: 0;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-avatar img {
  background-color: #2276ff;
  padding: 1rem;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-status {
  margin-bottom: 0.5rem;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-description {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 0.5rem;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-event-details {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-event-details strong {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-left: 1.45rem;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-event-details strong + strong {
  margin-top: 0.5rem;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-event-details strong:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  content: " ";
  z-index: 0;
  margin: auto;
  filter: brightness(0) invert(1);
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-event-details strong.infobox-event-details-address:before {
  background: url("../img/icons/map-marker.svg") center no-repeat;
  background-size: contain;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-event-details strong.infobox-event-details-date:before {
  background: url("../img/icons/calendar.svg") center no-repeat;
  background-size: contain;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-event-details strong.infobox-event-details-time:before {
  background: url("../img/icons/clock.svg") center no-repeat;
  background-size: contain;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-event-details strong.infobox-event-details-price:before {
  background: url("../img/icons/ticket.svg") center no-repeat;
  background-size: contain;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-people {
  margin-top: 0.75rem;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-people .people-list {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-people .people-list > img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0a2239;
  margin-right: -1.25rem;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-people .people-list > img:hover {
  cursor: pointer;
  border-color: #0866ff;
  box-shadow: rgba(8, 102, 255, 0.2) 0 0 1rem;
  z-index: 5;
  position: relative;
}
.dashboard .dashboard-body .custom-info-window.event-window .infobox-people strong {
  margin-bottom: 0;
  color: #fff;
  font-weight: bold;
  font-size: 0.8rem;
  display: block;
}
.dashboard .dashboard-body .custom-info-window.person-window {
  padding: 0;
}
@media (max-width: 767.9px) {
  .dashboard .dashboard-body .custom-info-window.person-window {
    width: 264px;
  }
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  margin: 0;
  border: none;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-avatar:hover {
  border: none;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-online {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
  background: none;
  color: lawngreen;
  font-size: 0.8rem;
  font-weight: 600;
  padding-left: 1.25rem;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-online:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  box-shadow: rgba(124, 252, 0, 0.4) 0 0 0 0.25rem;
  margin: auto;
  content: " ";
  background: lawngreen;
  border-radius: 50%;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-details {
  position: relative;
  z-index: 3;
  background: linear-gradient(to top, rgba(6, 21, 35, 0.7), rgba(6, 21, 35, 0));
  padding: 12rem 1.5rem 1.5rem 1.5rem;
}
@media (max-width: 767.9px) {
  .dashboard .dashboard-body .custom-info-window.person-window .infobox-details {
    padding: 12rem 1rem 1rem 1rem;
  }
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-details .infobox-distance {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  position: relative;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 600;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-details .infobox-distance:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/icons/map-marker.svg") center no-repeat;
  background-size: contain;
  content: " ";
  filter: brightness(0) invert(1);
  margin: auto;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-details .infobox-features {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  position: relative;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 600;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-details .infobox-features:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/icons/heart-full.svg") center no-repeat;
  background-size: contain;
  content: " ";
  filter: brightness(0) invert(1);
  margin: auto;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-details .infobox-description {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 300;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-dropdown .dropdown-toggle {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.dashboard .dashboard-body .custom-info-window.person-window .infobox-dropdown .dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.dashboard .dashboard-body .custom-info-window.business-window {
  padding-top: 2.5rem;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-avatar {
  margin-top: 0;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-avatar img {
  background-color: #0866ff;
  padding: 1rem;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-background {
  height: 5rem;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-background img {
  height: 5rem;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-distance {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  position: relative;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 400;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-distance:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/icons/map-marker.svg") center no-repeat;
  background-size: contain;
  content: " ";
  filter: brightness(0) invert(1);
  margin: auto;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-checkins {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-checkins > img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0a2239;
  margin-right: -1rem;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-checkins strong {
  margin-left: 1.5rem;
  margin-right: 0.5rem;
  color: #fff;
  font-size: 0.8rem;
  display: block;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments {
  margin-top: 1rem;
  display: block;
  max-height: 8rem;
  overflow-x: hidden;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments::-webkit-scrollbar {
  width: 10px;
  border-radius: 0;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments .infobox-reply {
  display: flex;
  align-items: flex-start;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments .infobox-reply + .infobox-reply {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments .infobox-reply > img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1rem;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments .infobox-reply .infobox-reply-content {
  display: block;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments .infobox-reply .infobox-reply-content span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments .infobox-reply .infobox-reply-content p {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  margin: 0;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments-reply {
  display: flex;
  margin-top: 0.5rem;
}
.dashboard .dashboard-body .custom-info-window.business-window .infobox-comments-reply .form-control {
  background: white;
  color: #061523;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: none;
  box-shadow: none;
}
.dashboard .dashboard-body .result-item {
  background: none;
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}
.dashboard .dashboard-body .result-item:hover .result-details .result-actions {
  opacity: 1;
  margin-bottom: 0;
}
@media (max-width: 767.9px) {
  .dashboard .dashboard-body .result-item:active {
    transform-origin: center;
    transform: scale(0.975);
    opacity: 0.9;
  }
}
.dashboard .dashboard-body .result-item .item-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.dashboard .dashboard-body .result-item .item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.dashboard .dashboard-body .result-item .result-details {
  position: relative;
  padding: 1rem;
  width: 100%;
  aspect-ratio: 1/1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(6, 21, 35, 0.5), rgba(6, 21, 35, 0));
}
@media (max-width: 767.9px) {
  .dashboard .dashboard-body .result-item .result-details {
    padding: 0.75rem;
  }
}
.dashboard .dashboard-body .result-item .result-details p {
  font-size: 0.8rem;
  color: white;
  font-weight: 600;
  margin: 0;
}
.dashboard .dashboard-body .result-item .result-details .result-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: -3rem;
  opacity: 0;
}
@media (max-width: 767.9px) {
  .dashboard .dashboard-body .result-item .result-details .result-actions {
    display: none;
  }
}
@media (max-width: 767.9px) {
  .dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown {
    opacity: 1;
  }
}
.dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-toggle {
  height: auto;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  font-size: 0.9rem;
  background: rgba(6, 21, 35, 0.4);
  backdrop-filter: blur(5px);
  color: white;
  border-radius: 0.75rem;
  cursor: pointer;
}
.dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-toggle:hover {
  background: rgba(6, 21, 35, 0.65);
}
.dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-toggle:after {
  display: none;
  letter-spacing: 1px;
}
.dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-menu {
  border-radius: 0.75rem;
  background: #fff;
  border: none;
  box-shadow: none;
  padding: 0.5rem;
}
.dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.75rem;
  color: #061523;
  font-size: 0.9rem;
}
.dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-menu .dropdown-item img {
  width: 1rem;
  height: 1rem;
  margin: -0.25rem 0.5rem -0.25rem 0;
}
.dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-menu .dropdown-item:hover, .dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-menu .dropdown-item:focus {
  background: rgba(6, 21, 35, 0.05);
  color: #061523;
  box-shadow: none;
}
.dashboard .dashboard-body .result-item .result-details .result-actions .infobox-dropdown .dropdown-menu .dropdown-item:active {
  background: rgba(6, 21, 35, 0.15);
  color: #061523;
  box-shadow: none;
}
.dashboard .dashboard-body .result-item .result-details .result-actions .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}
@media (max-width: 767.9px) {
  .dashboard .dashboard-body .result-item .result-details .result-actions .btn.btn-primary {
    opacity: 1;
  }
}
.dashboard .dashboard-body .result-item .result-details .result-actions .btn.btn-primary img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  margin: -0.25rem 0.25rem -0.25rem -0.25rem;
}
@media (max-width: 767.9px) {
  .dashboard .dashboard-body .result-item .result-details .result-actions .btn.btn-primary span {
    display: none;
  }
}
.dashboard .dashboard-body .result-item .item-online {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  width: 1rem;
  height: 1rem;
  display: block;
  background: lawngreen;
  border: 3px solid #071a2c;
  border-radius: 50%;
  font-size: 0;
  color: transparent;
}
@media (max-width: 767.9px) {
  .dashboard .dashboard-body .result-item .item-online {
    top: 0.5rem;
    right: 0.5rem;
    width: 0.8rem;
    height: 0.8rem;
    border-width: 2px;
  }
}
.dashboard .dashboard-body .result-item .item-mobile-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: block;
}
@media (min-width: 768px) {
  .dashboard .dashboard-body .result-item .item-mobile-link {
    display: none;
  }
}

.feed-body {
  background: white;
}
.feed-body .feed-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}
.feed-body .feed-share img.avatar {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
.feed-body .feed-share .form-control {
  border: none;
  box-shadow: none;
  outline: none;
  padding: 1rem 7.5rem 1rem 1rem;
  width: auto;
  flex-shrink: 1;
  background: none;
  color: #fff;
  flex-grow: 1;
}
@media (max-width: 767.9px) {
  .feed-body .feed-share .form-control {
    padding: 1rem 0;
  }
}
.feed-body .feed-share .feed-share-actions {
  width: 100%;
  padding-top: 1rem;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  display: none;
}
@media (max-width: 767.9px) {
  .feed-body .feed-share .feed-share-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.feed-body .feed-share .feed-share-actions .btn {
  padding: 0.75rem 1.5rem;
  margin-left: auto;
}
@media (max-width: 767.9px) {
  .feed-body .feed-share .feed-share-actions .btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
    display: block;
  }
}
.feed-body .feed-share .feed-share-media-fields {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
}
.feed-body .feed-share .feed-share-media-fields .media-field {
  position: relative;
  margin-left: 0.5rem;
}
.feed-body .feed-share .feed-share-media-fields .media-field input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
}
.feed-body .feed-share .feed-share-media-fields .media-field label {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.feed-body .feed-share .feed-share-media-fields .media-field label:hover {
  background: rgba(255, 255, 255, 0.15);
}
.feed-body .feed-share .feed-share-media-fields .media-field label img {
  width: 1.75rem;
  height: 1.75rem;
  filter: brightness(0) invert(1);
}
.feed-body .feed-share .feed-share-media-attachments {
  display: none;
}
@media (max-width: 767.9px) {
  .feed-body .feed-share .feed-share-media-attachments {
    margin-bottom: 1rem;
  }
}
.feed-body .feed-share .feed-share-media-attachments .feed-share-media-attachment {
  display: block;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  border-radius: 0.5rem;
  position: relative;
  margin-right: 0.5rem;
}
.feed-body .feed-share .feed-share-media-attachments .feed-share-media-attachment img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feed-body .feed-share.text-active .feed-share-actions {
  display: flex;
}
.feed-body .feed-share.media-active .feed-share-media-attachments {
  display: flex;
  justify-content: flex-start;
}
.feed-body .feed-share.media-active .feed-share-actions {
  display: flex;
}
.feed-body .feed-posts .feed-post {
  display: block;
  padding: 1.5rem 1.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  margin-top: 1rem;
}
@media (max-width: 767.9px) {
  .feed-body .feed-posts .feed-post {
    padding: 0.75rem;
  }
}
.feed-body .feed-posts .feed-post .post-person {
  display: flex;
  align-items: center;
}
.feed-body .feed-posts .feed-post .post-person img.post-person-avatar {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.feed-body .feed-posts .feed-post .post-person .post-person-details {
  padding-left: 1rem;
}
.feed-body .feed-posts .feed-post .post-person .post-person-details .post-person-name {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  font-weight: bold;
}
.feed-body .feed-posts .feed-post .post-person .post-person-details .post-date {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.feed-body .feed-posts .feed-post .post-content {
  font-size: 1rem;
  color: white;
  padding-left: 4rem;
}
.feed-body .feed-posts .feed-post .post-content .post-content-text {
  margin-top: 1rem;
}
.feed-body .feed-posts .feed-post .post-content .post-content-text p:last-child {
  margin: 0;
}
.feed-body .feed-posts .feed-post .post-content .post-content-images {
  --gap: 0rem;
  margin: 0.5rem 0 0 calc(-1 * var(--gap));
  width: calc(100% + var(--gap));
  display: flex;
  justify-content: stretch;
  flex-wrap: wrap;
}
.feed-body .feed-posts .feed-post .post-content .post-content-images img {
  width: auto;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 50%;
  /* max-width: calc(50% - var(--gap)); */
  border-radius: 1rem;
  margin: var(--gap) 0 0 var(--gap);
  object-fit: cover;
}
@media (max-width: 767.9px) {
    .feed-body .feed-posts .feed-post .post-content,
    .feed-body .feed-posts .feed-post .post-summary {
        padding-left: 0 !important;
    }
    .feed-body .feed-posts .feed-post .post-thread {
        margin-left: 0 !important;
    }
    .feed-body .feed-posts .feed-post .post-content {
        margin-top: 1rem;
    }
}
.feed-body .feed-posts .feed-post .post-summary {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  padding-left: 4rem;
}
@media (max-width: 767.9px) {
  .feed-body .feed-posts .feed-post .post-summary {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.feed-body .feed-posts .feed-post .post-summary .post-likes {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767.9px) {
  .feed-body .feed-posts .feed-post .post-summary .post-likes {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    margin-bottom: 0.5rem;
  }
}
.feed-body .feed-posts .feed-post .post-summary .post-likes .post-likes-avatars {
  display: flex;
  align-items: center;
}
.feed-body .feed-posts .feed-post .post-summary .post-likes .post-likes-avatars img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: -0.75rem;
  border: 3px solid #071a2c;
}
.feed-body .feed-posts .feed-post .post-summary .post-likes .post-likes-total {
  margin-left: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.feed-body .feed-posts .feed-post .post-summary .post-like {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0.5rem 1rem 0.5rem 2.25rem;
  position: relative;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  user-select: none;
}
.feed-body .feed-posts .feed-post .post-summary .post-like:hover {
  background: rgba(255, 255, 255, 0.1);
}
.feed-body .feed-posts .feed-post .post-summary .post-like:hover:before {
  background: url("../img/icons/heart-full.svg") center no-repeat;
  background-size: contain;
}
.feed-body .feed-posts .feed-post .post-summary .post-like:active {
  background: rgba(255, 255, 255, 0.2);
  transform-origin: center;
  transform: scale(0.925);
}
.feed-body .feed-posts .feed-post .post-summary .post-like:active:before {
  background: url("../img/icons/heart-full.svg") center no-repeat;
  background-size: contain;
}
.feed-body .feed-posts .feed-post .post-summary .post-like.active {
  background: #fff;
  color: #0866ff;
}
.feed-body .feed-posts .feed-post .post-summary .post-like.active:before {
  filter: none;
  background: url("../img/icons/heart-full.svg") center no-repeat;
  background-size: contain;
}
.feed-body .feed-posts .feed-post .post-summary .post-like:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.75rem;
  width: 1rem;
  height: 1rem;
  background: url("../img/icons/heart-empty.svg") center no-repeat;
  background-size: contain;
  content: " ";
  filter: brightness(0) invert(1);
  margin: auto;
}
.feed-body .feed-posts .feed-post .post-summary .post-like span {
  font-size: 0.8rem;
  width: 2.25rem;
}
.feed-body .feed-posts .feed-post .post-thread {
  display: block;
  margin-left: 4rem;
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 1rem;
}
.feed-body .feed-posts .feed-post .post-thread .post-thread-reply {
  display: flex;
  align-items: center;
  border-radius: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
}
.feed-body .feed-posts .feed-post .post-thread .post-thread-reply img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.feed-body .feed-posts .feed-post .post-thread .post-thread-reply .form-control {
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  color: #fff;
  font-size: 0.9rem;
}
.feed-body .feed-posts .feed-post .post-thread .post-replies .post-reply {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.feed-body .feed-posts .feed-post .post-thread .post-replies .post-reply .post-reply-avatar {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.feed-body .feed-posts .feed-post .post-thread .post-replies .post-reply .post-reply-details {
  padding-left: 1rem;
  display: block;
  position: relative;
  width: -webkit-fill-available;
}
.feed-body .feed-posts .feed-post .post-thread .post-replies .post-reply .post-reply-details strong {
  display: block;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 600;
}
.feed-body .feed-posts .feed-post .post-thread .post-replies .post-reply .post-reply-details span {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
}
.feed-body .feed-posts .feed-post .post-thread .post-replies .post-reply .post-reply-details p {
  margin: 0.15rem 0 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.feed-body .feed-posts .feed-post .post-thread .post-replies .post-replies-show-more {
  color: #0866ff;
  font-weight: 600;
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.feed-body .feed-posts .feed-post .post-thread .post-replies .post-replies-show-more:hover {
  text-decoration: underline;
}

.story-page {
  background: #061523;
  position: relative;
  min-height: 100svh;
  padding: 1rem 0;
}
@media (max-width: 767.9px) {
  .story-page {
    padding: 4.25rem 0 0.75rem 0;
  }
}
.story-page .story-preview {
  position: relative;
  width: 100%;
  height: calc(100svh - 2rem);
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 767.9px) {
  .story-page .story-preview {
    height: calc(100svh - 5rem);
  }
}
.story-page .story-preview .story-person {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: 1rem;
}
.story-page .story-preview .story-person img.story-person-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.story-page .story-preview .story-person strong {
  margin: 0 0.5rem;
  color: #fff;
  font-weight: bold;
}
.story-page .story-preview .story-person span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.story-page .story-preview:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(6, 21, 35, 0.5), rgba(6, 21, 35, 0));
  content: " ";
  z-index: 1;
}
.story-page .story-preview .story-preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.story-page .story-action-button {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0);
  text-decoration: none;
  display: block;
  text-align: center;
  line-height: 1;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0.5rem;
  border-radius: 1rem;
}
@media (max-width: 767.9px) {
  .story-page .story-action-button {
    display: none;
  }
}
.story-page .story-action-button:hover {
  background: rgba(255, 255, 255, 0.05);
}
.story-page .story-action-button:hover img {
  opacity: 1;
}
.story-page .story-action-button:active {
  background: rgba(255, 255, 255, 0.15);
  transform-origin: center;
  transform: scale(0.95);
}
.story-page .story-action-button:active img {
  opacity: 1;
}
.story-page .story-action-button.prev-story {
  margin-left: auto;
}
.story-page .story-action-button.prev-story img {
  transform-origin: center;
  transform: rotate(180deg);
}
.story-page .story-action-button img {
  width: 2rem;
  height: 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.25;
}

.chat-body {
  display: flex;
  overflow: hidden;
}

.messages-list {
  display: block;
  position: relative;
  padding: 0.75rem;
  width: 22rem;
  flex-shrink: 0;
  height: 100%;
  overflow-x: hidden;
  background: #040e18;
}
@media (max-width: 767.9px) {
  .messages-list {
    width: 100%;
  }
  .messages-list.chat-active {
    display: none;
  }
}
.messages-list::-webkit-scrollbar {
  width: 10px;
  border-radius: 0;
}
.messages-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
}
.messages-list::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
.messages-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
.messages-list .form-field.search-field {
  position: relative;
}
.messages-list .form-field.search-field .form-control {
  padding: 0.75rem 1rem 0.75rem 3rem;
  background: white;
  border-radius: 4rem;
  color: #061523;
  font-size: 0.9rem;
  border: none;
  outline: none;
  box-shadow: none;
}
.messages-list .form-field.search-field img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.6rem;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  z-index: 1;
}
.messages-list .message-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.5rem 0.75rem;
  border-radius: 1rem;
}
.messages-list .message-item + .message-item {
  margin-top: 2px;
}
.messages-list .message-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.messages-list .message-item:active {
  background: rgba(255, 255, 255, 0.1);
}
.messages-list .message-item .person-avatar {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}
.messages-list .message-item .person-avatar img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}
.messages-list .message-item .person-info {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  overflow: hidden;
  padding-left: 1rem;
}
.messages-list .message-item .person-info strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  width: 100%;
  flex-shrink: 0;
}
.messages-list .message-item .person-info p {
  max-width: calc(100% - 6rem);
  flex-grow: 0;
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin: 0;
}
.messages-list .message-item .person-info span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  display: block;
  /* width: 5em; */
  width: 10em;
  text-align: right;
  margin-left: auto;
  padding-left: 1rem;
  position: relative;
}
.messages-list .message-item .person-info span:before {
  content: " ";
  width: 0.25rem;
  height: 0.25rem;
  background: rgba(6, 21, 35, 0.25);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.35rem;
  margin: auto;
}
.messages-list .message-item.unread {
  background: rgba(13, 47, 79, 0.25);
}
.messages-list .message-item.unread:hover, .messages-list .message-item.unread:active {
  background: rgba(255, 255, 255, 0.075);
}
.messages-list .message-item.person-online .person-avatar {
  position: relative;
}
.messages-list .message-item.person-online .person-avatar:before {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  content: " ";
  background: #18d518;
}

.messages-select-chat {
  flex-grow: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2.5rem;
}
@media (max-width: 767.9px) {
  .messages-select-chat {
    display: none;
  }
}
.messages-select-chat img {
  width: 5rem;
  height: 5rem;
  filter: brightness(0) invert(1);
}
.messages-select-chat h4 {
  font-weight: bold;
  color: #fff;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.5rem;
}
.messages-select-chat p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.messages-single-chat {
  flex-grow: 1;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 5.25rem;
}
.messages-single-chat:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5.25rem;
  background: #040e18;
  content: " ";
}
.messages-single-chat .chat-header {
  display: flex;
  align-items: center;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}
.messages-single-chat .chat-header.v2 {
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.messages-single-chat .chat-header .chat-header-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-header .chat-header-avatar {
    width: 3rem;
    height: 3rem;
  }
}
.messages-single-chat .chat-header .chat-header-avatar:hover {
  box-shadow: #0866ff 0 0 0 0.25rem;
}
.messages-single-chat .chat-header .chat-header-avatar img {
  width: 4rem;
  height: auto;
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-header .chat-header-avatar img {
    width: 3rem;
    height: auto;
  }
}
.messages-single-chat .chat-header .chat-header-info {
  padding-left: 1rem;
}
.messages-single-chat .chat-header .chat-header-info .chat-header-name {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: unset!important;
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-header .chat-header-info .chat-header-name {
    font-size: 1rem;
  }
}
.messages-single-chat .chat-header .chat-header-info .chat-header-name:hover {
  /* color: #0866ff; */
  color: #fff;
  text-decoration: unset!important;
}
.messages-single-chat .chat-header .chat-header-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  position: relative;
}
.messages-single-chat .chat-header .chat-header-info span.online-now {
  padding-left: 1rem;
}
.messages-single-chat .chat-header .chat-header-info span.online-now:before {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  margin: auto;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  content: " ";
  background: #18d518;
}
.messages-single-chat .chat-header .chat-avatars {
  display: flex;
  margin-left: auto;
  align-items: center;
}
.messages-single-chat .chat-header .chat-avatars img {
  margin-left: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 4px solid #061523;
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-header .chat-avatars img {
    margin-left: -1rem;
  }
  .messages-single-chat .chat-header .chat-avatars img:nth-child(5) {
    display: none;
  }
}
.messages-single-chat .chat-header .chat-avatars span {
  margin-left: 0.5rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: #fff;
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-header .chat-avatars span {
    display: none;
  }
}
.messages-single-chat .chat-header .chat-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.messages-single-chat .chat-header .chat-actions .btn {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  margin-right: 0.5rem;
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-header .chat-actions .btn {
    padding: 0.5rem;
  }
}
.messages-single-chat .chat-header .chat-actions .btn img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  margin-right: 0.5rem;
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-header .chat-actions .btn img {
    margin-right: 0;
  }
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-header .chat-actions .btn span {
    display: none;
  }
}
.messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-toggle {
  height: auto;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 3rem;
  cursor: pointer;
}
.messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}
.messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-toggle:after {
  display: none;
  letter-spacing: 1px;
}
.messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-menu {
  border-radius: 0.75rem;
  background: #fff;
  border: none;
  box-shadow: none;
  padding: 0.5rem;
}
.messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.75rem;
  color: #061523;
  font-size: 0.9rem;
}
.messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-menu .dropdown-item img {
  width: 1rem;
  height: 1rem;
  margin: -0.25rem 0.5rem -0.25rem 0;
}
.messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-menu .dropdown-item:hover, .messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-menu .dropdown-item:focus {
  background: rgba(6, 21, 35, 0.05);
  color: #061523;
  box-shadow: none;
}
.messages-single-chat .chat-header .chat-actions .chat-dropdown .dropdown-menu .dropdown-item:active {
  background: rgba(6, 21, 35, 0.15);
  color: #061523;
  box-shadow: none;
}
.messages-single-chat .chat-body {
  flex-grow: 1;
  display: flex;
  position: relative;
}
.messages-single-chat .chat-body .chat-messages-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.messages-single-chat .chat-body .chat-messages-gallery {
  width: 25rem;
  flex-shrink: 0;
  background: #02080d;
  padding: 1rem 1rem 0 1rem;
  display: none;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-body .chat-messages-gallery {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
  }
}
.messages-single-chat .chat-body .chat-messages-gallery.active {
  display: flex;
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-person {
  display: flex;
  align-items: center;
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-person img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 0.5rem;
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-person strong {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-images {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-x: hidden;
  margin-top: 1rem;
  width: calc(100% + 1rem);
  margin-right: -1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-images::-webkit-scrollbar {
  width: 10px;
  border-radius: 0;
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-images::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-images::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-images::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-images img {
  border-radius: 1rem;
  width: 100%;
  cursor: pointer;
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-images img:hover {
  opacity: 0.6;
}
.messages-single-chat .chat-body .chat-messages-gallery .gallery-images img + img {
  margin-top: 1rem;
}
.messages-single-chat .chat-messages {
  flex-grow: 1;
  display: flex;
  flex-direction: column-reverse;
  overflow-x: hidden;
  padding: 0.75rem 0.75rem;
}
.messages-single-chat .chat-messages::-webkit-scrollbar {
  width: 10px;
  border-radius: 0;
}
.messages-single-chat .chat-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
}
.messages-single-chat .chat-messages::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
.messages-single-chat .chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
.messages-single-chat .chat-messages .chat-start {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem 0 0 0;
}
.messages-single-chat .chat-messages .chat-message {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: flex-start;
  position: relative;
}
.messages-single-chat .chat-messages .chat-message + .chat-message {
  margin-bottom: 1.5rem;
}
.messages-single-chat .chat-messages .chat-message .person-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  position: relative;
}
.messages-single-chat .chat-messages .chat-message .person-avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.messages-single-chat .chat-messages .chat-message .person-details {
  margin-bottom: 0.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.messages-single-chat .chat-messages .chat-message .person-details span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
}
.messages-single-chat .chat-messages .chat-message .person-message {
  width: calc(100% - 2.5rem);
  padding: 0 2.5rem 0 0.75rem;
}
.messages-single-chat .chat-messages .chat-message .person-message .message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.messages-single-chat .chat-messages .chat-message .person-message .message p {
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 1rem;
  margin: 0 0 0.25rem 0;
  display: block;
  width: auto;
  border-radius: 1rem;
}
.messages-single-chat .chat-messages .chat-message.my-message {
  flex-direction: row-reverse;
}
.messages-single-chat .chat-messages .chat-message.my-message .person-details {
  flex-direction: row-reverse;
}
.messages-single-chat .chat-messages .chat-message.my-message .person-message {
  padding: 0 0.75rem 0 2.5rem;
}
.messages-single-chat .chat-messages .chat-message.my-message .person-message .message {
  align-items: flex-end;
}
.messages-single-chat .chat-messages .chat-message.my-message .person-message .message p {
  background: #0866ff;
  color: #fff;
  border-radius: 1rem;
}
.messages-single-chat .chat-messages .chat-typing {
  padding-left: 4rem;
  padding-top: 1rem;
  margin-top: auto;
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-messages .chat-typing {
    padding-left: 0;
  }
}
.messages-single-chat .chat-messages .chat-typing .dot {
  display: inline-block;
  vertical-align: middle;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.125rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: dotFlashing 0.8s infinite alternate;
  animation-delay: 0s;
  transition: 0.6s ease all;
}
.messages-single-chat .chat-messages .chat-typing .dot:nth-child(2) {
  animation-delay: 0.4s;
}
.messages-single-chat .chat-messages .chat-typing .dot:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes dotFlashing {
  0% {
    background-color: rgba(255, 255, 255, 0.1);
  }
  50%, 100% {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.messages-single-chat .chat-messages .chat-typing span {
  display: inline-block;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
.messages-single-chat .send-image-widget {
  display: flex;
  margin: 1rem 0 0 0;
  padding: 0 0.75rem;
}
.messages-single-chat .send-image-widget .image-widget-item {
  width: 5rem;
  height: 5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  margin-right: 0.5rem;
  cursor: pointer;
}
.messages-single-chat .send-image-widget .image-widget-item:hover {
  opacity: 0.75;
}
.messages-single-chat .send-image-widget .image-widget-item.item-upload input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
}
.messages-single-chat .send-image-widget .image-widget-item.item-upload label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.messages-single-chat .send-image-widget .image-widget-item.item-upload label img {
  width: 2rem;
  height: 2rem;
  filter: brightness(0) invert(1);
}
.messages-single-chat .send-image-widget .image-widget-item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.messages-single-chat .chat-send-message {
  display: flex;
  align-items: center;
  margin: 1rem 0.75rem;
  position: relative;
}
.messages-single-chat .chat-send-message .upload-image-button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  margin: auto;
}
.messages-single-chat .chat-send-message .upload-image-button:hover {
  background: rgba(8, 102, 255, 0.15);
}
.messages-single-chat .chat-send-message .upload-image-button:active {
  background: rgba(8, 102, 255, 0.25);
  transform-origin: center;
  transform: scale(0.95);
}
.messages-single-chat .chat-send-message .upload-image-button img {
  width: 1.5rem;
  height: 1.5rem;
}
.messages-single-chat .chat-send-message .form-control {
  border-radius: 3rem;
  background: #fff;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0.75rem 1rem 0.75rem 3rem;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}
@media (max-width: 767.9px) {
  .messages-single-chat .chat-send-message .form-control {
    font-size: 16px;
  }
}
.messages-single-chat .chat-send-message .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 3rem;
}

.chat-person {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #061523;
}
.chat-person:hover, .chat-person:active {
  opacity: 0.75;
}
.chat-person img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 50%;
}
.chat-person .chat-person-details {
  padding-left: 0.5rem;
}
.chat-person .chat-person-details strong {
  display: block;
  line-height: 1.2;
  color: #061523;
}
.chat-person .chat-person-details span {
  display: block;
  line-height: 1.2;
  color: rgba(6, 21, 35, 0.5);
  font-size: 0.8rem;
}

.profile-body {
  padding: 0 0 5.25rem 0;
}
.profile-body .profile-thumbnail {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.profile-body .profile-main-details {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
}
@media (max-width: 767.9px) {
  .profile-body .profile-main-details {
    padding: 0;
    background: none;
    border-radius: 0;
  }
}
.profile-body .profile-main-details .profile-avatar {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  border-radius: 1rem;
}
.profile-body .profile-main-details .profile-introduction {
  padding-bottom: 1rem;
}
.profile-body .profile-main-details .profile-introduction h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
.profile-body .profile-main-details .profile-introduction .profile-description {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}
.profile-body .profile-main-details .profile-introduction .profile-distance {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  position: relative;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 600;
}
.profile-body .profile-main-details .profile-introduction .profile-distance:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/icons/map-marker.svg") center no-repeat;
  background-size: contain;
  content: " ";
  filter: brightness(0) invert(1);
  margin: auto;
}
.profile-body .profile-main-details .profile-introduction .profile-features {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  position: relative;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 600;
}
.profile-body .profile-main-details .profile-introduction .profile-features:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/icons/heart-full.svg") center no-repeat;
  background-size: contain;
  content: " ";
  filter: brightness(0) invert(1);
  margin: auto;
}
.profile-body .profile-main-details .profile-introduction .profile-online {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
  background: none;
  color: lawngreen;
  font-size: 0.8rem;
  font-weight: 600;
  padding-left: 1.25rem;
  margin-top: 1rem;
}
.profile-body .profile-main-details .profile-introduction .profile-online:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  box-shadow: rgba(124, 252, 0, 0.4) 0 0 0 0.25rem;
  margin: auto;
  content: " ";
  background: lawngreen;
  border-radius: 50%;
}
.profile-body .profile-main-details .profile-actions {
  display: flex;
  align-items: center;
}
/* @media (max-width: 767.9px) {
  .profile-body .profile-main-details .profile-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5rem 1rem 1rem 1rem;
    justify-content: center;
    background: linear-gradient(to top, rgba(6, 21, 35, 0.8), rgba(6, 21, 35, 0));
  }
} */
.profile-body .profile-main-details .profile-avatar-wrapper {
  position: relative;
  overflow: hidden;
}
.profile-body .profile-main-details .btn {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0.5rem 0 0;
}
@media (max-width: 767.9px) {
  .profile-body .profile-main-details .btn {
    padding: 0.5rem 0.5rem;
    font-size: 0.75rem;
    margin: 0 0.25rem 0 0;
  }
}
.profile-body .profile-main-details .btn img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  margin-right: 0.5rem;
}
@media (max-width: 767.9px) {
  .profile-body .profile-main-details .btn img {
    width: 1rem;
    height: 1rem;
  }
}
.profile-body .nav-tabs {
  margin: 2.5rem 0 1rem 0;
  border: none;
}
.profile-body .nav-tabs .nav-item {
  margin: 0 1rem 0 0;
}
.profile-body .nav-tabs .nav-item .nav-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 400;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
.profile-body .nav-tabs .nav-item .nav-link.active {
  color: #fff;
  font-weight: 600;
}
.profile-body .profile-gallery {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 1rem;
}
@media (max-width: 767.9px) {
  .profile-body .profile-gallery {
    grid-template-columns: auto auto;
  }
}
.profile-body .profile-gallery .gallery-item {
  cursor: pointer;
}
.profile-body .profile-gallery .gallery-item:hover {
  opacity: 0.7;
}
.profile-body .profile-gallery .gallery-item img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 1rem;
}

.business-body {
  padding: 0 0 5.25rem 0;
}
.business-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 2.5rem 0 0 0;
}
.business-body .business-thumbnails {
  width: 100%;
  height: 15rem;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: stretch;
}
.business-body .business-thumbnails img {
  width: 25%;
  height: 15rem;
  object-fit: cover;
}
.business-body .business-main-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin-top: -5rem;
}
.business-body .business-main-details .business-avatar {
  width: 10rem;
  height: 10rem;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 10px solid #071a2c;
  margin-bottom: 1.5rem;
}
.business-body .business-main-details .business-introduction {
  padding-bottom: 1rem;
}
.business-body .business-main-details .business-introduction h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
.business-body .business-main-details .business-introduction h2 {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}
.business-body .business-main-details .business-actions {
  display: flex;
  align-items: center;
}
.business-body .business-main-details .btn {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0.5rem;
}
.business-body .business-main-details .btn img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  margin-right: 0.5rem;
}
.business-body .business-rating {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}
.business-body .business-rating .leave-review .leave-review-person {
  display: flex;
  align-items: center;
}
.business-body .business-rating .leave-review .leave-review-person img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.business-body .business-rating .leave-review .leave-review-person strong {
  font-size: 0.9rem;
  color: white;
  font-weight: 600;
}
.business-body .business-rating .leave-review textarea.form-control {
  margin-top: 0.5rem;
  width: 100%;
  height: 10rem;
  background: rgba(255, 255, 255, 0.025);
  border: none;
  outline: none;
  box-shadow: none;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 1rem;
  padding: 1rem;
}
.business-body .business-rating .leave-review .btn {
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: auto;
  margin-top: 0.5rem;
}
.business-body .business-rating .rating-summary {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}
@media (max-width: 767.9px) {
  .business-body .business-rating .rating-summary {
    height: auto;
    border-left: none;
    padding-left: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.business-body .business-rating .rating-summary .summary-score {
  display: flex;
  align-items: center;
}
.business-body .business-rating .rating-summary .summary-score img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}
.business-body .business-rating .rating-summary .summary-score h3 {
  margin: 0;
  line-height: 1;
  color: #ffb32b;
  font-weight: 600;
  font-size: 3rem;
}
.business-body .business-rating .rating-summary .rating-reviews {
  margin: 1rem 0;
}
.business-body .business-rating .rating-summary .rating-reviews .review-item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.business-body .business-rating .rating-summary .rating-reviews .review-item + .review-item {
  margin-top: 0.5rem;
}
.business-body .business-rating .rating-summary .rating-reviews .review-item img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.business-body .business-rating .rating-summary .rating-reviews .review-item strong {
  white-space: nowrap;
  font-size: 0.9rem;
  color: white;
  margin: 0 0.5rem;
}
.business-body .business-rating .rating-summary .rating-reviews .review-item i {
  font-style: normal;
  font-size: 0.9rem;
  color: #ffb32b;
  font-weight: 600;
  margin-left: auto;
  padding-left: 0.5rem;
  flex-shrink: 0;
}
.business-body .business-rating .rating-summary .rating-reviews .review-item span {
  white-space: nowrap;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.25);
}
.business-body .business-rating .rating-summary .rating-total {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}
.business-body .business-rating .rating-summary .rating-total .rating-avatars {
  display: flex;
  align-items: center;
  margin-left: -2px;
}
.business-body .business-rating .rating-summary .rating-total .rating-avatars img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: -0.5rem;
  border: 2px solid #071a2c;
}
.business-body .business-rating .rating-summary .rating-total strong {
  display: block;
  margin-left: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 400;
}
.business-body .business-location {
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}
.business-body .business-location img[alt=Google] {
  opacity: 0;
}
.business-body .business-location .gm-style > div:last-child {
  opacity: 0;
  visibility: hidden;
}
.business-body .business-location .gm-style .gm-fullscreen-control {
  opacity: 0;
  visibility: hidden;
}
.business-body .business-location .gm-style .gm-bundled-control {
  opacity: 0;
  visibility: hidden;
}
.business-body .business-location .gm-style .gm-style-iw-c {
  background: none;
  border-radius: 0.75rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0.25rem 1rem;
  padding-left: 0;
  padding-top: 0;
  transform: translate3d(-25px, -107.5%, 0) !important;
}
.business-body .business-location .gm-style .gm-style-iw-d {
  overflow: visible !important;
}
.business-body .business-location .gm-style .gm-style-iw-d + button {
  top: 0 !important;
  right: 0 !important;
  outline: none;
  filter: brightness(0) invert(1);
}
.business-body .business-location .gm-style .gm-style-iw-tc {
  display: none;
}
.business-body .business-location .gm-style iframe + div {
  border: none !important;
}
.business-body .business-features {
  width: 100%;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  margin-top: 1rem;
  padding: 1.5rem;
}
.business-body .business-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.business-body .business-features ul li {
  display: block;
  position: relative;
  padding-left: 1.5rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
}
.business-body .business-features ul li + li {
  margin-top: 1rem;
}
.business-body .business-features ul li img {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.business-body .business-gallery {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 767.9px) {
  .business-body .business-gallery {
    grid-template-columns: auto auto;
  }
}
.business-body .business-gallery .gallery-item {
  cursor: pointer;
}
.business-body .business-gallery .gallery-item:hover {
  opacity: 0.7;
}
.business-body .business-gallery .gallery-item img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 1rem;
}

.add-place-body {
  padding: 2.5rem 0 5.25rem 0;
}
.add-place-body h1 {
  font-weight: 600;
  color: #fff;
  font-size: 1.75rem;
}
.add-place-body p {
  color: rgba(255, 255, 255, 0.5);
}
.add-place-body p.small {
  color: rgba(255, 255, 255, 0.25);
}
.add-place-body p.small a {
  color: #fff;
  text-decoration: underline;
}
.add-place-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 2.5rem 0 0 0;
}
.add-place-body .business-location {
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}
.add-place-body .business-location img[alt=Google] {
  opacity: 0;
}
.add-place-body .business-location .gm-style > div:last-child {
  opacity: 0;
  visibility: hidden;
}
.add-place-body .business-location .gm-style .gm-fullscreen-control {
  opacity: 0;
  visibility: hidden;
}
.add-place-body .business-location .gm-style .gm-bundled-control {
  opacity: 0;
  visibility: hidden;
}
.add-place-body .business-location .gm-style .gm-style-iw-c {
  background: none;
  border-radius: 0.75rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0.25rem 1rem;
  padding-left: 0;
  padding-top: 0;
  transform: translate3d(-25px, -107.5%, 0) !important;
}
.add-place-body .business-location .gm-style .gm-style-iw-d {
  overflow: visible !important;
}
.add-place-body .business-location .gm-style .gm-style-iw-d + button {
  top: 0 !important;
  right: 0 !important;
  outline: none;
  filter: brightness(0) invert(1);
}
.add-place-body .business-location .gm-style .gm-style-iw-tc {
  display: none;
}
.add-place-body .business-location .gm-style iframe + div {
  border: none !important;
}
.add-place-body .image-field {
  position: relative;
  margin-bottom: 1rem;
}
.add-place-body .image-field input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.add-place-body .image-field label {
  display: flex;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
}
.add-place-body .image-field label:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.add-place-body .image-field label:active {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.5);
}
.add-place-body .image-field label:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  width: 4rem;
  text-align: center;
  height: 1.5rem;
  line-height: 1.5rem;
  content: "Upload";
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  margin: auto;
}
.add-place-body .image-field label .image-preview {
  width: 5rem;
  height: 5rem;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
}
.add-place-body .image-field label .image-details {
  padding: 0.75rem;
}
.add-place-body .image-field label .image-details strong {
  font-size: 1rem;
  color: #fff;
  display: block;
}
.add-place-body .image-field label .image-details span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}
.add-place-body .form-field {
  margin-bottom: 1rem;
}
.add-place-body .form-field .form-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.add-place-body .form-field .form-control {
  background: none;
  padding: 0 0 0.5rem 0;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.add-place-body .form-field .form-control:focus {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.add-place-body .form-field select.form-control option {
  color: #061523;
}
.add-place-body .form-check .form-check-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  cursor: pointer;
}
.add-place-body .form-check .form-check-input:checked {
  background-color: #0866ff;
}
.add-place-body .form-check .form-check-input:focus {
  box-shadow: rgba(8, 102, 255, 0.25) 0 0 0 0.25rem;
}
.add-place-body .form-check .form-check-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  cursor: pointer;
}
.add-place-body .form-check .form-check-label:hover {
  color: #fff;
}
.add-place-body .upload-box {
  display: block;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.5rem 6rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
}
.add-place-body .upload-box:hover {
  border: 1px dashed rgba(255, 255, 255, 0.5);
}
.add-place-body .upload-box img {
  width: 3rem;
  height: 3rem;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  margin: auto;
  filter: brightness(0) invert(1);
}
.add-place-body .upload-box h4 {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  margin: 0;
}
.add-place-body .upload-box p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.add-place-body .gallery-items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.add-place-body .gallery-items .gallery-item {
  display: block;
  margin: 0 0.5rem 0.5rem 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  width: 10rem;
  height: 10rem;
  position: relative;
}
.add-place-body .gallery-items .gallery-item:hover {
  border-color: #fff;
}
.add-place-body .gallery-items .gallery-item:hover .btn {
  opacity: 1;
}
.add-place-body .gallery-items .gallery-item > img {
  width: 10rem;
  height: 10rem;
  object-fit: cover;
}
.add-place-body .gallery-items .gallery-item .btn {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  text-align: center;
  line-height: 2.2rem;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
}
.add-place-body .gallery-items .gallery-item .btn:hover img, .add-place-body .gallery-items .gallery-item .btn:focus img, .add-place-body .gallery-items .gallery-item .btn:active img {
  filter: none;
}
.add-place-body .gallery-items .gallery-item .btn img {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) invert(1);
}

.settings-body {
  position: relative;
  padding: 2.5rem 0 5.25rem 0;
}
.settings-body .settings-box {
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
}
@media (max-width: 767.9px) {
  .settings-body .settings-box {
    padding: 1.5rem;
  }
}
.settings-body .settings-box + .settings-box {
  margin-top: 1.5rem;
}
.settings-body .settings-box.delete-box {
  background: rgba(8, 102, 255, 0.15);
  border: 1px dashed rgba(8, 102, 255, 0.5);
}
.settings-body .settings-box.delete-box p {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.settings-body .settings-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
}
.settings-body .settings-box .form-field {
  margin-bottom: 1rem;
}
.settings-body .settings-box .form-field .form-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.settings-body .settings-box .form-field .form-control {
  background: none;
  padding: 0 0 0.5rem 0;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.settings-body .settings-box .form-field .form-control:focus {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.settings-body .settings-box .image-field {
  position: relative;
  margin-bottom: 1rem;
}
.settings-body .settings-box .image-field input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.settings-body .settings-box .image-field label {
  display: flex;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
}
.settings-body .settings-box .image-field label:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.settings-body .settings-box .image-field label:active {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.5);
}
.settings-body .settings-box .image-field label:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  width: 4rem;
  text-align: center;
  height: 1.5rem;
  line-height: 1.5rem;
  content: "Upload";
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  margin: auto;
}
@media (max-width: 767.9px) {
  .settings-body .settings-box .image-field label:after {
    display: none;
  }
}
.settings-body .settings-box .image-field label .image-preview {
  width: 5rem;
  height: 5rem;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
}
.settings-body .settings-box .image-field label .image-details {
  padding: 0.75rem;
}
.settings-body .settings-box .image-field label .image-details strong {
  font-size: 1rem;
  color: #fff;
  display: block;
}
.settings-body .settings-box .image-field label .image-details span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}
.settings-body .settings-box .btn {
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.settings-body .settings-box .form-check.form-switch {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  padding-left: 0;
  cursor: pointer;
}
.settings-body .settings-box .form-check.form-switch + .form-check.form-switch {
  margin-top: 0.75rem;
}
.settings-body .settings-box .form-check.form-switch .form-check-input {
  cursor: pointer;
  font-size: 1.5rem;
}
.settings-body .settings-box .form-check.form-switch .form-check-input:checked {
  background-color: #0866ff;
  border-color: #0866ff;
}
.settings-body .settings-box .form-check.form-switch .form-check-input:not(:checked):focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23e77ea3'/%3e%3c/svg%3e");
}
.settings-body .settings-box .form-check.form-switch .form-check-input:focus {
  box-shadow: rgba(8, 102, 255, 0.25) 0 0 0 0.25rem;
}
.settings-body .settings-box .form-check.form-switch .form-check-label {
  margin-left: 0;
  margin-right: auto;
  flex-grow: 1;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  cursor: pointer;
  padding-right: 4rem;
}
.settings-body .settings-box .upload-box {
  display: block;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.5rem 6rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
}
.settings-body .settings-box .upload-box:hover {
  border: 1px dashed rgba(255, 255, 255, 0.5);
}
.settings-body .settings-box .upload-box img {
  width: 3rem;
  height: 3rem;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  margin: auto;
  filter: brightness(0) invert(1);
}
.settings-body .settings-box .upload-box h4 {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  margin: 0;
}
.settings-body .settings-box .upload-box p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.settings-body .settings-box .gallery-items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.settings-body .settings-box .gallery-items .gallery-item {
  display: block;
  margin: 0 0.5rem 0.5rem 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  width: 10rem;
  height: 10rem;
  position: relative;
}
@media (max-width: 767.9px) {
  .settings-body .settings-box .gallery-items .gallery-item {
    width: 6.5rem;
    height: 6.5rem;
  }
}
.settings-body .settings-box .gallery-items .gallery-item:hover {
  border-color: #fff;
}
.settings-body .settings-box .gallery-items .gallery-item:hover .btn {
  opacity: 1;
}
.settings-body .settings-box .gallery-items .gallery-item > img {
  width: 10rem;
  height: 10rem;
  object-fit: cover;
}
@media (max-width: 767.9px) {
  .settings-body .settings-box .gallery-items .gallery-item > img {
    width: 6.5rem;
    height: 6.5rem;
  }
}
.settings-body .settings-box .gallery-items .gallery-item .btn {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  text-align: center;
  line-height: 2.2rem;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
}
.settings-body .settings-box .gallery-items .gallery-item .btn:hover img, .settings-body .settings-box .gallery-items .gallery-item .btn:focus img, .settings-body .settings-box .gallery-items .gallery-item .btn:active img {
  filter: none;
}
.settings-body .settings-box .gallery-items .gallery-item .btn img {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) invert(1);
  margin: auto;
}
.m-a{
  margin: auto;
}
.txt-preview{
  position: absolute;
  /* top: 0; */
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: auto;
  height: 2.5rem;
  padding: 0;
  text-align: center;
  line-height: 2.2rem;
  z-index: 1;
  /* background-color: #6c757d; */
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  color: #fff;
}
.txt-preview-map{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: auto;
  height: 2.5rem;
  padding: 0;
  text-align: center;
  line-height: 2.2rem;
  z-index: 1;
  background-color: #6c757d;
  font-size: 14px;
  color: #fff;
}
.img-blur {
  filter: blur(5px);
}

.txt-preview-profile {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: auto;
  height: 0.5rem;
  padding: 0;
  text-align: center;
  line-height: 0.1rem;
  z-index: 1;
  /* background-color: #6c757d; */
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  color: #fff;
}

.txt-preview-profile-right-side-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem; /* Adjust as needed */
  padding: 5px; /* Adjust as needed */
  text-align: center;
  line-height: 2rem; /* Adjust as needed */
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  color: #fff;
}

.txt-preview-profile span{
  font-size: 5px;
}
.p-r{
  position: relative;
}
.hide{
  display: none !important;
}
.binoculars:before {
  background: url(../img/icons/binoculars-solid.svg) center no-repeat !important;
  filter: brightness(0) invert(1);
}
.hiv-tested:before {
  background: url(../img/icons/check.svg) center no-repeat !important;
}
.profile-body .profile-main-details .profile-avatar-wrapper .profile-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5rem 1rem 1rem 1rem;
  justify-content: center;
  background: linear-gradient(to top, rgba(6, 21, 35, 0.8), rgba(6, 21, 35, 0));
}
.navbar-brand{
  text-align: center;
}
.refresh{
  width: 1.5rem;
  cursor: pointer;
  margin-left: 0.5rem;
  position: absolute;
  left: 3.5rem;
  display: none;
}
.header-profile img{
  object-fit: cover;
}
/*# sourceMappingURL=style.css.map */


.img-wait-review {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.5);
  /* z-index: 999; */
}
.img-wait-review span.right-side-bar-page {
  font-size: 8px;
}
.right-sidebar-profile-container {
  position: relative;
  display: inline-block;
}

.header-right-txt-preview-profile {
  top: 45%!important;
  font-size: 4px!important;
}

.wrap-re-post-content {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    margin-top: 10px;
    padding: 10px;
}
.btn-go-to-stories {
  display: inline-block!important;
}

@media (max-width: 767.9px) {
  .dashboard-cta {
      width: unset;
  }
}

.header-profile .has-noti {
    position: absolute;
    top: -3px;
    right: 0;
    background: rgb(256, 0, 0);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: blinker 1s linear infinite;
  }

  @keyframes blinker {
    1% {opacity: 0;}
    20% {opacity: 1;}

  }

.header-profile .has-noti img {
    width: 90%;
    height: auto;
    filter: invert(90%) brightness(90%);
    display: none;
}
