@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  background: #ebf0f6;
  font-family: var(--font-poppins);
  color: var(--body-color);
  font-size: 18px;
}

:root {
  --black: #000;
  --white: #fff;
  --dark-black: #333;
  --blue: #003285;
  --yellow: #ffb400;
  --body-color: #434343;
  --font-poppins: "Poppins", sans-serif;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

a:focus {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

video {
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

ul {
  margin: 0px;
  padding: 0px;
}

ul {
  list-style: none outside none;
}

ul,
ol,
dl {
  list-style-position: outside;
}

.bg-blue {
  background: #003285;
  transition: all ease 0.4s;
}

.bg-blue.btn:hover {
  background: #fbc31d;
}

.blue {
  color: #003285;
}

.black {
  color: #000;
}

.grey {
  color: #333;
}

.text-color {
  color: #333;
}

.light-grey {
  color: #434343;
}

.bg-white {
  background: #fff;
}

.white {
  color: #fff;
}

.bg-grey {
  background: #f2f2f2;
}

.lh-normal {
  line-height: normal;
}

.fw-600 {
  font-weight: 600 !important;
}

.fs-6 {
  font-size: 16px;
}

.fs-7 {
  font-size: 14px;
}

.fs-8 {
  font-size: 12px;
}

.btn:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

.cornerbox {
  background: transparent;
  position: absolute;
  overflow: hidden;
  padding: 13px 30px;
}

.cornerbox * {
  position: relative;
}

.cornerbox:hover {
  color: var(--yellow);
}

.cornerbox .bg {
  position: absolute;
  background: var(--blue);
  color: var(--white);
  width: auto;
  height: 100%;
  right: 15px;
  left: 0px;
  top: 0;
}

.cornerbox .bg::before {
  content: ' ';
  position: absolute;
  height: auto;
  right: -50px;
  bottom: 50px;
  top: 0px;
  width: 50px;
  background: var(--blue);
}

.cornerbox .bg:after {
  content: ' ';
  position: absolute;
  border-style: solid;
  display: block;
  width: 0;
  right: -50px;
  bottom: 0;
  border-color: var(--blue) transparent;
  border-width: 50px 50px 0 0;
}

.sidebar {
  background-image: linear-gradient(to bottom, #003487, #004296, #0050a4, #015eb2, #066cc0);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 300px;
  display: block;
  z-index: 1002;
  color: #fff;
  transition: all .3s;
}

main {
  height: 100vh;
  height: -webkit-fill-available;
}

.main-panel {
  position: relative;
  width: calc(100% - 300px);
  height: 100vh;
  min-height: 100%;
  float: right;
  transition: all .3s;
}

.main-panel>.container {
  min-height: calc(100% - 123px);
  margin-top: 30px;
  overflow: hidden;
  width: 100%;
  max-width: unset;
  padding: 0 !important;
}

.main-header {
  position: fixed;
  left: 300px;
  right: 0;
  background: #fff;
  z-index: 6;
  width: calc(100% - 300px);
}

.page-inner {
  margin-top: 80px;
}

.sidebar .nav .nav-link.active,
.sidebar .nav .nav-link:hover {
  background-color: transparent;
  color: #fbc31d !important;
}

.sidebar .nav .nav-link img {
  padding-right: 12px;
}

.navbar-header {
  padding: 15px;
}

.navbar-header .container-fluid {
  min-height: inherit;
  padding: 0 !important;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-header .navbar-nav {
  flex-direction: row;
}

.avatar-sm {
  width: 2.75rem;
  height: 2.75rem;
}

.navbar-header-left .input-group input {
  background: #f1f1f1;
  box-shadow: none;
}

.navbar-header-left .input-group .btn-search {
  border-radius: 0 .45rem .45rem 0;
}
.navbar-header-left .input-group .form-control {
  margin: 0;
}
.navbar-header-left .input-group .btn-search img {
  width: 22px;
}

.navbar-header .navbar-nav li {
  padding-right: 40px;
}

.navbar .navbar-nav .notification {
  position: absolute;
  background-color: #fbc31d;
  text-align: center;
  border-radius: 10px;
  min-width: 17px;
  height: 17px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 300;
  line-height: 17px;
  top: 3px;
  right: -8px;
  letter-spacing: -1px;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  transition: all .3s;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: .5rem 0;
}

.dropdown-title {
  border-bottom: 1px solid #f1f1f1;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 15px;
  text-align: center;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  left: auto;
  right: 0;
  z-index: 1001;
}

.navbar-header .navbar-nav li.submenu li {
  padding-right: 0;
}

.navbar .navbar-nav .nav-item .nav-link::after {
  display: none;
}

.logo-header {
  float: left;
  width: 265px;
  height: 70px;
  line-height: 60px;
  color: #333;
  z-index: 1001;
  font-size: 17px;
  font-weight: 400;
  padding-left: 25px;
  padding-right: 25px;
  z-index: 1001;
  display: flex;
  align-items: center;
  position: relative;
  transition: all .3s;
}

.logo-header .nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: absolute;
  top: 0;
  right: 18px;
  z-index: 5;
}

.dropdown-menu {
  border: 0;
  border-radius: 3px;
  box-shadow: 0 1px 11px rgba(0, 0, 0, .15) !important;
  padding-bottom: 5px;
  margin-top: 3px;
}

.messages-notif-box,
.notif-box {
  width: 280px;
  padding: 0 !important;
}

.notif-box .notif-scroll {
  max-height: 256px;
  overflow-y: scroll;
}

.notif-box .notif-scroll .notif-center {
  padding-left: 10px;
}

.messages-notif-box .notif-center a .notif-content,
.notif-box .notif-center a .notif-content {
  padding: 10px 15px 5px 0;
}

.messages-notif-box .notif-center a .notif-content .block,
.notif-box .notif-center a .notif-content .block {
  font-size: 13px;
  line-height: 20px;
  display: block;
  color: #003285;
}

.messages-notif-box .notif-center a .notif-content .time,
.notif-box .notif-center a .notif-content .time {
  color: #7d8c95;
  font-size: 11px;
}

.navbar-header .navbar-nav li .notif-box li {
  padding: 0;
}

.messages-notif-box .notif-center a,
.notif-box .notif-center a {
  display: flex;
  color: #4d585f;
}

.messages-notif-box .notif-center a .notif-img,
.notif-box .notif-center a .notif-img {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin: 10px;
  align-items: center;
  justify-content: center;
  background: #eee;
  border-radius: 50%;
}

.messages-notif-box .notif-center a .notif-content {
  padding: 7px 15px 7px 5px;
}

.messages-notif-box .notif-center a .notif-content .subject,
.notif-box .notif-center a .notif-content .subject {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.messages-notif-box .notif-center a .notif-content .time,
.notif-box .notif-center a .notif-content .time {
  color: #7d8c95;
  font-size: 11px;
}

.messages-notif-box .notif-center a {
  border-bottom: 1px solid #f1f1f1;
}

.messages-notif-box .notif-center a .notif-img img,
.notif-box .notif-center a .notif-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.navbar .navbar-nav .topbar-user .profile-pic:focus,
.navbar .navbar-nav .topbar-user .profile-pic:hover {
  background: rgba(77, 89, 149, .06);
}

.navbar .navbar-nav .topbar-user .profile-pic {
  display: flex;
  align-items: center;
  padding: 0 8px;
  height: 44px;
  border-radius: 3px;
  color: #000;
}

.avatar-img,
.testimonialBox .user-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.navbar .navbar-nav .topbar-user .profile-username {
  margin-right: 8px;
}
.navbar .navbar-nav .topbar-user .profile-username a:hover {
  color: var(--blue);
}
.dropdown-item {
  font-size: 13px;
}

.navbar-header .navbar-nav .dropdown-menu li {
  padding-right: 0;
}

.whiteBox {
  border-radius: 15px;
}

.whiteBox table tr {
  vertical-align: middle;
}

.whiteBox table th {
  background: #003285;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.reports-table tr th {
  background: #003285;
}

.whiteBox table td {
  border: none;
  font-size: 16px;
}

.copyright p {
  font-size: 13px;
}

.copyright ul li {
  padding-right: 10px;
}

.copyright ul li a {
  font-size: 13px;
  color: #fff;
}

.sidebar::after {
  background-position: bottom right;
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  width: 275px;
  height: 275px;
  background-size: 90%;
  background-repeat: no-repeat;
}

.sidebar.home::after {
  background-image: url('../icons/Large-Icon/1.png');
}

.sidebar.dash-side::after {
  background-image: url('../icons/Large-Icon/2.png');
}

.sidebar.alliance-side::after {
  background-image: url('../icons/Large-Icon/3.png');
}

.sidebar.report-side::after {
  background-image: url('../icons/Large-Icon/4.png');
}

.sidebar.about-side::after {
  background-image: url('../icons/Large-Icon/5.png');
}

.sbmtTrck ul {
  flex: 1;
}

.sbmtTrck ul li {
  padding-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.sbmtTrck ul li::before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  left: 0;
  top: 10px
}

.sbmtTrck ul li:first-child {
  font-size: 1.2rem;
  padding-left: 0;
}

.sbmtTrck ul li:first-child::before {
  display: none;
}

.vrForm .form-group .form-control {
  border-radius: 0;
  margin-bottom: 20px;
  background: #f6f6f6;
  font-size: 14px;
  box-shadow: none;
  height: 48px;
}

/* .vrForm .form-group textarea.form-control {
  height: 116px;
} */
.sbmtBtn {
  height: 60px;
  width: 116px;
  margin: auto;
  position: relative;
}

.sbmtBtn a,
.sbmtBtn button {
  display: inline-block;
  position: absolute;
  width: 100%;
  left: 0;
}

.avatar {
  width: 3.2rem;
  height: 3.2rem;
}

.avatar {
  position: relative;
  display: inline-block;
}

.card-list {
  padding: 10px 0;
}

.card-list .item-list {
  display: flex;
  flex-direction: row;
  padding: 10px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cccccc;
}

#connectionsearchid .notification-wrapper {
  border-bottom: 1px solid #cccccc;
  padding: 10px 0;
}

.card-list .item-list .info-user {
  flex: 1;
}

.card-list .item-list .info-user .username,
.card-list .item-list .info-user a.username {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.card-list .item-list .info-user .status {
  font-size: 14px;
  color: #003285;
}

.twoCol {
  gap: 20px;
}

.twoCol .whiteBox {
  flex: 1;
}

.twoCol .card-list {
  height: 400px;
  overflow-y: auto;
  padding-right: 20px;
}

.twoCol .card-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.twoCol .card-list::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.twoCol .card-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #bebebe;
}

.master-slider .item {
  position: relative;
  padding: 10px;
  overflow: hidden;
  padding-bottom: 0;
}

/* .master-slider .item div > img {
  transition: all ease 0.5s;
}
.master-slider .item:hover div > img{
  transform: scale(1.1);
} */
.master-slider .item+.item {
  margin-left: 14px;
  margin-right: 20px;
}

.item .caption {
  display: flex;
  align-items: flex-end;
}

.item .caption h5 {
  color: #ffae00;
  font-weight: 600;
}

.caption .play-btn {
  margin: 0;
  margin-left: 10px;
  margin-right: 10px;
  line-height: normal;
  height: 50px;
}

.caption .play-btn .btn {
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  box-shadow: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
  transition: all ease 0.4s;
}

.caption .play-btn .btn i {
  position: relative;
  left: 2px;
  font-size: 24px;
}

.master-slider .item:hover .play-btn .btn {
  background: #003285;
  color: #fff;
  border: 2px solid #003285;
  transform: scale(1.2);
}

.master-slider .item .caption {
  position: absolute;
  bottom: 20px;
  padding: 15px;
  z-index: 9;
}

.master-slider .item .caption p {
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
}

.master-slider .item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, var(--black) 37.81%);
  opacity: .9;
  transition: all .35s ease;
  height: 190px;
  border-radius: 20px;
  z-index: 1;
  margin: 0 13px;
}

/* login page css */
.login-page {
  background: #ebf0f6;
  width: 100%;
  height: 100dvh;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-page .login-wrapper {
  background: #fff;
  border-radius: 20px;
  display: flex;
  max-width: 950px;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px #dcdcdc;
}

.login-page .login-wrapper .login-form {
  padding: 40px;
}

.login-page .login-wrapper .login-form,
.login-page .login-wrapper .login-banner {
  flex: 1;
}

.login-page .login-wrapper .login-form .form-group {
  margin-bottom: 20px;
}

.login-page .login-wrapper .login-form .form-group label {
  color: #282828;
  padding-bottom: 5px;
}

.login-page .login-wrapper .login-form .form-group .form-control,
.password-container .form-group .form-control {
  background: #f6f6f6;
  border: 1px solid #cccccc;
  border-radius: 0;
  font-size: 14px;
  height: 50px;
  box-shadow: none;
}

.playstoreBtns a {
  margin: 0 30px;
}

/* forget password */
.password-container {
  display: flex;
  align-items: center;
}

.password-container .pw-box {
  width: 60%;
}

.password-container .pw-image {
  width: 40%;
  text-align: center;
}

.back-to-login p {
  color: #1a1a1a;
}

@media screen and (min-width: 992px) {
  .main-header .main-header-logo {
    display: none;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-header .dropdown-menu {
    margin-top: 13px;
  }

  .navbar-header-left {
    width: 45%;
  }
}

@media (min-width: 576px) {
  .page-inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 991.5px) {
  .topbar-icon a i {
    color: #003285;
    font-size: 22px;
  }

  .navbar-form.nav-search {
    padding: 0px 7px;
  }

  .navbar-header .container-fluid {
    justify-content: center;
  }

  .btn-clean {
    padding: 0;
  }

  .btn-clean img {
    width: 25px;
  }

  .page-inner {
    margin-top: 140px;
    padding: 0 15px;
  }

  .logo-header {
    display: flex;
    width: 100% !important;
    text-align: left;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    height: 80px;
  }

  .main-header {
    width: 100% !important;
    transition: all .5s;
    left: 0;
  }

  .sidebar {
    position: fixed;
    left: 0 !important;
    right: 0;
    -webkit-transform: translate3d(-300px, 0, 0);
    -moz-transform: translate3d(-300px, 0, 0);
    -o-transform: translate3d(-300px, 0, 0);
    -ms-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0) !important;
    transition: all .5s;
    margin-top: 0;
  }

  .sidebar .side-logo img {
    width: 195px;
  }

  .navbar-header .navbar-nav .dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0 auto;
    max-width: calc(100vw - 48px);
  }
  .select2-container--default .select2-results>.select2-results__options {
    font-size: 14px;
  }
  .select2-dropdown {
    z-index: 1;
  }
  .main-panel {
    width: 100%;
    transition: all .5s;
  }

  .main-header .main-header-logo {
    display: block;
  }

  .logo-header {
    background: #1a2035 !important;
  }

  .nav-toggle .sidenav-toggler {
    display: inline-block;
  }

  .nav-toggle .sidenav-toggler:focus {
    box-shadow: none;
  }

  .btn-toggle {
    font-size: 20px !important;
    line-height: 20px;
    padding: 0 !important;
    background: 0 0 !important;
    color: #fff !important;
  }

  .gg-menu-left {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
  }

  .gg-menu-left::after,
  .gg-menu-left::before,
  .gg-menu-right::after,
  .gg-menu-right::before {
    transition: all .2s;
  }

  .gg-menu-left::after,
  .gg-menu-left::before {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
  }

  .gg-menu-left::after,
  .gg-menu-left::before {
    content: "";
    position: absolute;
    top: -6px;
    width: 10px;
  }

  .gg-menu-left::after {
    top: 6px;
    width: 14px;
  }

  .nav-toggle {
    left: 15px !important;
    right: unset !important;
  }

  .logo-header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-header .navbar-nav li {
    padding-right: 0px;
    flex-shrink: 0;
  }

  .navbar .navbar-nav li a img {
    width: 25px;
  }

  .navbar .navbar-nav li a .avatar-sm img {
    width: auto;
  }

  .logo-header .more {
    opacity: 1;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    line-height: 56px;
    order: 3;
    width: unset;
    margin-left: auto;
    border-radius: 50%;
    box-shadow: none;
    border: none;
    display: none;
  }

  .gg-more-vertical-alt {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 100%;
  }

  .gg-more-vertical-alt::after,
  .gg-more-vertical-alt::before {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 100%;
    content: "";
    position: absolute;
  }

  .gg-more-vertical-alt::before {
    top: -6px;
    right: 0;
  }

  .gg-more-vertical-alt::after {
    left: 0;
    top: 6px;
  }

  .main-panel>.container {
    transition: all .5s;
  }

  .navbar-header {
    position: absolute;
    width: 100%;
    /* transform: translate3d(0, -200px, 0) !important; */
    background: #fff;
    transform: translate3d(0, 80px, 0) !important;
    transition: all .5s;
  }

  /* .topbar_open .navbar-header {
    transform: translate3d(0, 80px, 0) !important;
    background: #fff;
  } */
  .topbar_open .main-panel>.container {
    margin-top: 100px;
  }

  .nav_open .sidebar {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0) !important;
  }

  .nav_open .main-panel {
    transform: translate3d(300px, 0, 0) !important;
  }

  .reactions {
    font-size: 14px;
  }

  .reactions a img {
    width: 25px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .login-page .login-wrapper .login-banner img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .navbar .navbar-nav .topbar-user .profile-username {
    display: none;
  }

  .twoCol .whiteBox {
    flex: auto;
  }

  .sbmtTrck ul {
    flex: auto;
    margin-top: 20px;
  }

  .sbmtBtn {
    width: 130px;
  }

  .login-page {
    padding: 30px;
  }

  .login-page .login-wrapper,
  .password-container {
    flex-wrap: wrap;
  }

  .password-container .pw-box,
  .password-container .pw-image {
    width: 100%;
  }

  .login-page .login-wrapper .login-form,
  .login-page .login-wrapper .login-banner {
    flex: auto;
  }

  .playstoreBtns {
    padding-bottom: 20px;
  }

  .playstoreBtns a {
    margin: 0 5px;
  }
}

.notification-wrapper {
  display: flex;
  align-items: center;
}

.notification-wrapper .note-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /*background: #003285;*/
  margin-right: 15px;
  flex-shrink: 0;
}

.note-content {
  margin-right: 15px;
  width: 86%;
}

.notification-wrapper .note-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.note-toggle {
  cursor: pointer;
}

.action-btns button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  margin: 0 3px;
  transition: all ease 0.6s;
}

.action-btns button.tick {
  background: #2ba24e;
}

.action-btns button.tick:hover {
  background: #168f3a;
}

.action-btns button.trash {
  background: #ff1a00;
}

.action-btns button.trash:hover {
  background: #cf1500;
}

.ellipse-action .btn {
  padding: 5px;
}

#lineChart {
  height: 428px;
}

.chartBox {
  border-radius: 20px;
}

.connection-place {
  display: flex;
  width: 35%;
  justify-content: end;
}

.connection-place ul li {
  padding-left: 5px;
}

.masonry-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
  /* grid-column-gap: 0px;
  grid-row-gap: 0px; */
}

.masonry-container .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.item-1 {
  grid-area: 1 / 1 / 2 / 2;
}

.item-2 {
  grid-area: 1 / 2 / 2 / 3;
}

.item-3 {
  grid-area: 1 / 3 / 3 / 4;
}

.item-4 {
  grid-area: 1 / 4 / 2 / 5;
}

.item-5 {
  grid-area: 2 / 4 / 3 / 5;
}

.item-6 {
  grid-area: 1 / 5 / 3 / 6;
}

.item-7 {
  grid-area: 2 / 1 / 3 / 2;
}

.item-8 {
  grid-area: 2 / 2 / 3 / 3;
}

.trans-btn {
  border: 1px solid #333;
  color: #333;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 13px;
  display: flex;
  align-items: center;
  max-width: fit-content;
  transition: all ease 0.4s;
}

.alliance .note-content {
  width: 33%;
}

.alliance .connection-place {
  width: 25%;
}

.trans-btn:hover {
  background: #003285;
  color: #fff;
  border: 1px solid #003285;
}

.envelop {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.user-img img {
  width: 60px;
}
/* 
.testimonial-wrapper .slick-track,
.testimonial-wrapper .slick-track .slick-slide-item {
  width: 100% !important;
} */

.testimonial-wrapper .slick-next {
  right: 0;
}

.testimonial-wrapper .slick-prev {
  left: 0;
  z-index: 1;
}

.testimonial-wrapper .slick-next:before {
  content: '\f105';
  font-family: "Font Awesome 6 Free";
  color: #003285;
  font-weight: 900;
  font-size: 25px;
}

.testimonial-wrapper .slick-prev:before {
  content: '\f104';
  font-family: "Font Awesome 6 Free";
  color: #003285;
  font-weight: 900;
  font-size: 25px;
}

.testimonial-wrapper .item {
  padding: 0 40px;
}

.testimonial-wrapper .slick-dots li:not(.slick-active) {
  border-radius: 50%;
  background: #000;
  width: 12px;
  height: 12px;
  transition: all ease 0.5s;
}

.testimonial-wrapper .slick-dots li.slick-active {
  background: #003285;
  width: 40px;
  border-radius: 10px;

}

.testimonial-wrapper .slick-dots li {
  margin: 5px;
  width: 12px;
  height: 12px;
  transition: width 0.3s ease-in-out;
}

.testimonial-wrapper .slick-dots button::before {
  content: none;
}

.event-table tr td {
  font-size: 13px;
}

.event-table tr th {
  background: #f4f4f4;
  color: #434343;
  border: none;
  font-weight: 600;
  font-size: 14px;
}

.event-table tr th:nth-child(02) {
  width: 160px;
}

/* .event-table .table-bordered>:not(caption)>* {
  border: none;
} */
.al-search {
  width: 50%;
  margin-left: 0;
}

.al-search input {
  border: none;
  width: 50%;
  padding-left: 15px;
  outline: none;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
}

.upload-btn-wrapper .btn {
  border: 2px solid gray;
  color: gray;
  background-color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;

}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #003285;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.login-wrapper .sbmtBtn {
  margin: 0;
}

.report-listing {
  list-style: disc;
  padding-left: 15px;
}

.report-listing li {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

/* chats css */
.chat-user-list {
  display: block;
  position: relative;
  height: 100%;
  padding: 20px;
  border-radius: 5px;
  background: #fff;
}

.chat-user-list__box {
  display: block;
  position: relative;
}

.chat-user-list__head {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.chat-user-list__head .avatar {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.chat-user-list__head .avatar img {
  border-radius: 50%;
}

.chat-user-list__search {
  margin-bottom: 30px;
}

.chat-user-list__search .search__input {
  max-width: 100%;
}

.chat-user-list__body {
  margin: 0 -15px;
}

.chat-user-list__body ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.user-item {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 5px;
  background: #FFFFFF;
}

.user-item__avatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  display: block;
  position: relative;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user-item__avatar:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  border: 1.5px solid #FFFFFF;
  border-radius: 50%;
  background: #4aa138;
  content: '';
}

.chat-user-list__box .chatSearch {
  background: #f1f1f1;
}

.chat-user-list__box .chatSearch input {
  background: #f1f1f1;
}

.chat-user-list__box .chatSearch button {
  border-radius: 0px 5px 5px 0px;
}

.chat-user-list__box .chatSearch button img {
  width: 22px;
}

.user-item__avatar img {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
}

.user-item__desc {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 auto 0 16px;
}

.user-item__box {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 auto 0 16px;
}

.user-item__name {
  color: #353535;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.31;
  padding-bottom: 3px;
}

.user-item__name a {
  font-weight: 500;
  color: #222;
}

.user-item__text {
  -o-text-overflow: ellipsis;
  max-width: 220px;
  overflow: hidden;
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.36;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-item__playing {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.36;
}

.user-item__playing b {
  -o-text-overflow: ellipsis;
  display: inline-block;
  margin-left: 5px;
  overflow: hidden;
  color: #323F4B;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.36;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-item__info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.user-item__time {
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.33;
}

.user-item__count {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 6px;
  border-radius: 50%;
  background: #003285;
  color: #FFFFFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.user-item.--active .user-item__avatar:after {
  background: #F46119;
}

.user-item.--active .user-item__text {
  color: #353535;
  opacity: 0.7;
}

.user-item.--active .user-item__time {
  color: #003285;
}

.chat-messages-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 5px;
  background: #fff;
}

.chat-messages-head {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 24px;
  border-bottom: 1px solid #e2e2e2;
}

.chat-messages-head a {
  width: 24px;
  height: 24px;
  color: #323F4B;
  font-size: 24px;
}

.chat-messages-head .dropdown-menu .dropdown-item {
  font-size: 14px;
}

.chat-messages-head .dropdown-menu .dropdown-item+a {
  font-size: 14px;
  margin-left: 0;
}

.chat-messages-head a+a {
  margin-left: 24px;
}

.chat-messages-body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  scrollbar-color: #757575 #E2EBEC;
  scrollbar-width: thin !important;
  -moz-appearance: none !important;
  flex-grow: 1;
  max-height: 600px;
  padding: 37px 24px 70px 10px;
  overflow: auto;
}

.chat-messages-body::-webkit-scrollbar {
  width: 4px;
}

.chat-messages-body::-webkit-scrollbar-track {
  background-color: #E2EBEC;
}

.chat-messages-body::-webkit-scrollbar-thumb {
  background-color: #F46119;
}

.chat-messages-footer {
  padding: 10px 30px;
  border-top: 1px solid #e2e2e2;
}

.chat-messages-form {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-messages-form .chat-messages-form-btns {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.chat-messages-form .chat-messages-form-btns button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  outline: none;
  color: #323F4B;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.25s linear;
  background: transparent;
}

.chat-messages-form .chat-messages-form-btns button:hover,
.chat-messages-form .chat-messages-form-btns button:focus,
.chat-messages-form .chat-messages-form-btns button:active,
.chat-messages-form .chat-messages-form-btns button.nice-select.open {
  color: #003285;
}

.chat-messages-form .chat-messages-form-btns button+button {
  margin-left: 12px;
}

.chat-messages-form .chat-messages-form-controls {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-grow: 1;
  align-items: center;
  width: 100%;
  height: 45px;
  padding: 0 20px;
  border-radius: 25px;
  background: #F5F5F5;
}

.chat-messages-form .chat-messages-form-controls input {
  width: 100%;
  border: none;
  background: none;
  color: #1F2933;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.43;
  position: relative;
}

.chat-messages-form .chat-messages-form-controls input::-webkit-input-placeholder {
  color: #1F2933;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.43;
}

.chat-messages-form .chat-messages-form-controls input::-moz-placeholder {
  color: #1F2933;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.43;
}

.chat-messages-form .chat-messages-form-controls input:-ms-input-placeholder {
  color: #1F2933;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.43;
}

.chat-messages-form .chat-messages-form-controls input::-ms-input-placeholder {
  color: #1F2933;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.43;
}

.chat-messages-form .chat-messages-form-controls input::placeholder {
  color: #1F2933;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.43;
}

.chat-messages-form .chat-messages-form-controls input:hover,
.chat-messages-form .chat-messages-form-controls input:focus,
.chat-messages-form .chat-messages-form-controls input:active,
.chat-messages-form .chat-messages-form-controls input.nice-select.open {
  border: none;
  outline: none;
}

.chat-messages-form .chat-messages-form-btn {
  margin-left: 12px;
}

.chat-messages-form .chat-messages-form-btn button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  outline: none;
  color: #323F4B;
  font-size: 24px;
  cursor: pointer;
  background: transparent;
  transition: all 0.25s linear;
}

.chat-messages-form .chat-messages-form-btn button:hover,
.chat-messages-form .chat-messages-form-btn button:focus,
.chat-messages-form .chat-messages-form-btn button:active,
.chat-messages-form .chat-messages-form-btn button.nice-select.open {
  color: #003285;
}

.messages-item+.messages-item {
  margin-top: 15px;
}

.messages-item.--your-message {
  /* display: inline-block; */
  position: relative;
  align-items: center;
  display: flex;
}

.messages-item.--your-message .messages-item__avatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin-left: 14px;
  margin-bottom: 17px;
}

.messages-item.--your-message .messages-item__avatar img {
  border-radius: 50%;
}

.messages-item.--your-message .messages-item__text {
  max-width: 240px;
  padding: 20px;
  border-radius: 5px;
  background: #eaeaea;
  color: #434343;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.4;
  position: relative;
  margin-left: 15px;
}


.messages-item.--your-message .messages-item__text:before {
  content: '';
  position: absolute;
  border: 10px solid transparent;
  border-right: 11px solid #eaeaea;
  opacity: 1;
  top: 50%;
  left: -20px;
  width: fit-content;
  margin: auto;
  transition: all .3s ease-in-out;
  transform: translateY(-50%);
}


.messages-item.--friend-message .messages-item__text:before {
  content: '';
  position: absolute;
  border: 10px solid transparent;
  border-left: 11px solid #e5f6ee;
  opacity: 1;
  right: -20px;
  top: 50%;
  width: fit-content;
  margin: auto;
  transition: all .3s ease-in-out;
  transform: translateY(-50%);
}


.messages-item.--friend-message .messages-item__text {
  position: relative;
}

/* .messages-item.--friend-message {
  display: grid;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  position: relative;
  margin-bottom: -40px;
  margin-top: -40px;
} */
.messages-item.--friend-message {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  position: relative;
  /* margin-bottom: -40px;
  margin-top: -40px; */
}

.messages-item.--friend-message .messages-item__avatar {
  margin-top: 20px;
  width: 40px;
  height: 40px;
}

.messages-item.--friend-message .messages-item__avatar img {
  border-radius: 50%;
}

.messages-item.--friend-message .messages-item__text {
  max-width: 240px;
  padding: 20px;
  border-radius: 5px;
  background: #e5f6ee;
  color: #39cb8a;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.31;
  margin-right: 20px;
}

.profile-container {
  position: relative;
  width: 60px;
  /* height: 60px; */
}

.profile-image {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ddd;
}

.camera-icon {
  position: absolute;
  top: -6px;
  right: -4px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.camera-icon i {
  font-size: 14px;
}

.upload-input {
  display: none;
}

.reactions a {
  cursor: pointer;
}

.btn-clean {
  padding: 0;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 910px;
    margin: 1.75rem auto;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .modal-dialog .modal-content {
    margin-top: -5%;
  }
}

.report-listing .accordion-item {
  border: none;
  border-bottom: 1px solid #ccc;
}

.report-listing .accordion-header {
  font-size: 18px;
}

.report-listing .accordion-button:not(.collapsed) {
  color: #003285;
  background: transparent;
}

.report-listing .accordion-button:focus {
  box-shadow: none;
}

.report-listing .accordion-button {
  padding-left: 0;
}

.bio-page.page-inner {
  margin-top: 60px;
}

.bio-page .cover-pic {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.bio-menu ul li a {
  color: #1a1a1a;
  font-size: 13px;
  padding-left: 35px;
  transition: all ease 0.5s;
}

.bio-menu ul li.active a,
.bio-menu ul li a:hover {
  color: var(--blue)
}

.user-profile-container {
  display: flex;
  align-items: end;
  gap: 20px;
  margin-top: -100px;
}

.user-profile-header {
  display: inline-block;
  width: 200px;
  height: 200px;
  position: absolute;
  transform: translateY(calc(-10% - 60px))
}

.user-profile-header>div {
  box-shadow: 0px 0px 15px #aea3a3;
  border-radius: 50%;
  height: 100%;
  width: 200px;

}

.user-profile-header img,
.userStoryImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.userStoryImg {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

.userStoryBox {
  margin-left: 215px;
  margin-top: 30px;
}

.userStoryBox>div {
  gap: 10px
}

.userStoryBox a {
  color: #434343;
}

.userStoryShare .form-control {
  border-radius: 40px;
  font-size: 13px;
  padding-left: 15px;
  max-width: 350px;
  padding-right: 45px;
}

.userStoryShare .share-btn {
  border-radius: 40px;
  width: 200px;
  margin-left: -35px;
  font-size: 14px;
}

.profile-form label {
  padding-bottom: 5px;
}

.profile-form .form-control {
  border-radius: 0;
}

.form-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.form-btns .btn {
  width: 140px;
  font-size: 14px;
}

.form-btns .btn.backBtn {
  border: 1px solid #003285;
}

.form-btns .btn:hover {
  background: #003285;
  color: #fff;
}

.sr-btn .btn {
  padding: 5px 10px;
  width: 107px;
}

.siderbar-search {
  width: 150px;
}

.linkdinImage {
  width: 45px;
}

.top-info {
  display: flex;
  justify-content: flex-end;
}

.top-info .info-contain {
  /* width: 235px; */
  justify-content: space-between;
  padding: 4px 10px !important;
  border-radius: 4px;
  background: #232323;
}

.profile-btns {
  gap: 10px;
  padding-top: 20px;
}

.profile-btns button,
.profile-btns .morebtn {
  border: 1px solid #003285;
  border-radius: 5px;
}

.profile-btns .morebtn {
  display: block;
  padding: 4px 20px;
  border: 1px solid #212529;
}

.profile-btns .morebtn .btn {
  border: none;
  box-shadow: none;
}

.home-post-img {
  /* height: 400px; */
  height: auto;
  overflow: hidden;
  border: 1px solid #b4b1b1;
}

.home-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-slider .slick-track {
  height: 465px;
}

.table td,
.table th {
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  font-size: 13px;
}

.table th {}

.modal-body .table th:nth-child(1),
.modal-body .table td:nth-child(1) {
  width: 10%;
  font-size: 14px;
}

.modal-body .table th:nth-child(2),
.modal-body .table td:nth-child(2) {
  width: 14%;
}

.modal-body .table th:nth-child(3),
.modal-body .table td:nth-child(3) {
  width: 13%;
}

.modal-body .table th:nth-child(4),
.modal-body .table td:nth-child(4) {
  width: 10%;
}

.modal-body .table th:nth-child(5),
.modal-body .table td:nth-child(5) {
  width: 10%;
}

.modal-body .table th:nth-child(6),
.modal-body .table td:nth-child(6) {
  width: 15%;
}

.modal-body .table th:nth-child(7),
.modal-body .table td:nth-child(7) {
  width: 15%;
}

.modal-body .table th:nth-child(8),
.modal-body .table td:nth-child(8) {
  width: 26%;
}

/* .progress-dial {width: 300px; height: 155px;} */
.progress-dial .progressbar-text {
  color: #333;
  font-family: 'Figtree', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.progress-dial .progressbar-text .completed-text {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.event-table a.dropdown-item {
  color: #fff;
  background: #003285;
  text-align: center;
  border-radius: .25rem;
  max-width: 100px;
  transition: all ease 0.3s;
}

.event-table a.dropdown-item.moreBtn {
  max-width: 100%;
}

.event-table a.dropdown-item:hover {
  background: #022c6e;
}

.reactions a {
  position: relative;
  color: #022c6e;
  font-size: 16px;
}

.emoji-hover {
  background: #fff;
  width: 202px;
  height: 46px;
  border-radius: 30px;
  border: 1px solid #ddd;
  position: absolute;
  padding: 0 7px;
  display: flex;
  align-items: center;
  transform: translateY(0px);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: transform 0.4s ease-in-out;
}

.reactions a:hover .emoji-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(-40px);
}

.accordion-body {
  padding: 1rem .25rem;
}

.event-table tr td:first-child {
  font-weight: 700;
  font-size: 14px;
}

.event-table tr td:nth-child(02) {
  color: #003285;
}

.unread-messages {
  border-bottom: 1px solid #cccccc;
  padding: 15px 0;
}

.red-color {
  color: red;
}

.edit-cover-pic {
  position: absolute;
  right: 30px;
  bottom: 30px;
  /* background: rgba(0, 0, 0, 0.6); */
  color: #fff;
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 16px;
  z-index: 2;
}

.edit-cover-pic .upload-input-post {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

#suggestions {
  width: 100%;
  position: absolute;
  top: 100%;
}

#suggestions .list-group-item {
  font-size: 16px;
}

.testimonialBox .user-img {
  width: 3.2rem;
  height: 3.2rem;
  box-sizing: content-box;
}

.mt-visitor {
  margin-top: 4.6rem;
}

.mt-visitor2 {
  margin-top: 5.6rem;
}

.w35 {
  width: 35px !important;
}

.event-interested-likes {
  gap: 10px
}

.event-interested-likes button {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  padding: 3px 10px;
}

.event-interested-likes button:hover {
  background: #fbc31d;
}

.event-rightBox {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.event-rightBox ul {
  border-bottom: 1px solid #ccc;
}

.event-rightBox li {
  padding: 5px 0;
}

.event-rightBox li i {
  padding-right: 5px;
}

.publicDetails h4,
.publicDetails p {
  margin: 0;
}

.connectionButtons .btn {
  flex: 1;
}

.connectionButtons .btn:hover {
  background: #fbc31d !important;
  color: #003285;
}

.profileInfo {
  padding-left: 5.8%;
}

#filterRange {
  background: #003285;
  color: #fff;
  border: none;
  font-weight: bold;
  position: relative;
  top: 1px;
  left: -10px;
}

#filterRange:focus {
  outline: none;
  box-shadow: none;
}

.emoji-container {
  display: flex;
  gap: 3px;
}

.emoji-container .emoji-div {
  width: 35px;
  height: 35px;
  background: #003285;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
  transition: all ease 0.5s;
}

.emoji-container .emoji-div:hover {
  background: #124eb1;
}

.modal-content {
  max-width: 100% !important;
}

.popup {
  width: 100%;
  overflow: hidden;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.popup-title {
  font-size: 18px;
  font-weight: 500;
}

.close-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #666;
}

.search-container {
  position: relative;
  margin-bottom: 16px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.search-input {
  width: 100%;
  padding: 10px 10px 10px 36px;
  border: none;
  border-radius: 8px;
  background-color: #f0f0f0;
  font-size: 14px;
}

.user-profile {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #eee;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  margin-left: 12px;
}

.profile-name {
  font-size: 14px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.social-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #eee;
  /* overflow: hidden; */
  position: relative;
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.contact-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.contact-checkbox:checked+.contact-avatar {
  border: 2px solid #0095f6;
}

.contact-checkbox:checked+.contact-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background-color: #0095f6;
  border-radius: 50%;
  border: 2px solid white;
}

.contact-checkbox:checked+.contact-avatar::before {
  content: '✓';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.message-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.send-button {
  width: 100%;
  padding: 10px;
  background-color: #003285;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.send-button:hover {
  background-color: #0085e6;
}

#referralPostForm,
#tyfcbreferralPostForm {
  height: 60vh;
  overflow-y: auto;
  padding-right: 20px;
}

#referralPostForm::-webkit-scrollbar-track,
#tyfcbreferralPostForm::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

#referralPostForm::-webkit-scrollbar,
#tyfcbreferralPostForm::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

#referralPostForm::-webkit-scrollbar-thumb,
#tyfcbreferralPostForm::-webkit-scrollbar-thumb {
  background-color: #003285;
}

#visitorFormProfile select,
#visitorForm select {
  background-image: url('../images/select-arrow.png');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 5%;
  color: #898989;
}

/* comment css */
/* Updated reaction buttons container with horizontal scroll */
.reaction-buttons-container {
  position: relative;
  margin-top: 16px;
  display: none;
}

.reaction-buttons {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar for IE and Edge */
  scroll-behavior: smooth;
  padding-right: 40px;
  /* Space for the scroll icon */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.reaction-buttons::-webkit-scrollbar {
  display: none;
}

.reaction-button {
  white-space: nowrap;
  padding: 6px 12px;
  background-color: #f3f2ef;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  flex-shrink: 0;
}

.reaction-button:hover {
  background-color: #eaeaea;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  /* z-index: 2; */
}

/* Comments section */
.comments-section {
  margin-top: 16px;
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
  /* display: none; */
}

.comment-input-container {
  display: flex;
  align-items: center;
  background-color: #f3f2ef;
  border-radius: 20px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.comment-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #76b852;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 5px;
}

.comment-input {
  flex-grow: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #666;
}

.comment-actions {
  display: flex;
  gap: 8px;
}

.comment-action {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
}

.comment-filter {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: #666;
}

.filter-text {
  font-weight: 600;
  margin-right: 4px;
}

.filter-dropdown {
  cursor: pointer;
}

.comment-item {
  display: flex;
  margin-bottom: 16px;
}

.comment-content {
  margin-left: 8px;
  flex-grow: 1;
}

.commenter-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-bottom: 4px; */
}

.commenter-name,
.commenter-name a {
  font-size: 14px;
  font-weight: 600;
  color: #003285;
}

.commenter-title {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.comment-text {
  font-size: 14px;
  margin-bottom: 8px;
}

.comment-actions-row {
  display: flex;
  gap: 16px;
}

.comment-action-button {
  font-size: 12px;
  color: #666;
  cursor: pointer;
}

.comment-time {
  font-size: 12px;
  color: #666;
}

.comment-options {
  cursor: pointer;
}

.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: #f3f2ef;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.load-more-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reactions a img {
  width: 40px;
}

.groupJoins {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}



/* <!------------------------------> */



.messenger_Custom .message_heading_title {
  font-size: 24px;
  color: #003285;
  font-weight: 700;
}

.messenger_Custom .m-header {}

.messenger_Custom .m-header .user_chats {
  display: flex;
  align-items: center;
}

.MessengerSearch.input-group {}

.MessengerSearch.input-group .messenger-search {
  height: 43px;
  width: 100%;
  margin: 0;
}

.MessengerSearch.input-group .input-group-prepend {
  position: absolute;
  right: 0;
}

.MessengerSearch.input-group .input-group-prepend .btn {
  border-radius: 0 .45rem .45rem 0;
  height: 43px;
}

.MessengerSearch.input-group .input-group-prepend .btn img {
  width: 20px;
}

.messenger_Custom .messenger-listView {
  box-shadow: 0px 0px 10px #dcdcdc;
  padding: 20px;
  border-radius: 20px;
  z-index: 0;
  overflow: hidden;
}

.messenger_Custom .messenger-listView .m-header>nav {
  padding: 0 0 15px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.messenger_Custom .messenger {
  background: transparent;
  gap: 30px;
  height: 550px;
}
.message-card {
  margin-left: 20px;
  margin-bottom: 10px;
}
.MessengerSearch.input-group .messenger-search:focus {
  outline: none;
  box-shadow: none;
}
.messenger-sendCard label {
  margin: 0;
  display: flex;
}
.m-header-right .settings-btn {
  display: none;
}
.messenger_Custom .messenger-listView .m-header>nav .m-header-right svg path,
.messenger_Custom .messenger-listView .m-header>nav .m-header-right a {
  color: #003285;
  fill: #003285;
}
.messenger-listView::-webkit-scrollbar-track
{
	background-color: #F5F5F5;
}

.messenger-listView::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.messenger-listView::-webkit-scrollbar-thumb
{
	background-color: #cfcfcf;
}
.messenger_Custom .messenger-listView .m-header {
  height: auto;
}
.messenger_Custom .messenger-listView {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.messenger_Custom .user_chats {
  display: flex;
  align-items: center;
}

.messenger_Custom .user_chats .use_img {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 100%;
}

.messenger_Custom .user_chats .use_img img {}

.messenger_Custom .user_chats .cint_bx {
  margin-left: 15px;
}

.messenger_Custom .user_chats .cint_bx h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

.messenger_Custom .user_chats .cint_bx p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.messenger_Custom .messenger-listView {}

.messenger_Custom .messenger-list-item {
  background: transparent;
}

.messenger_Custom .messenger-list-item tr>td:first-child {
  padding-right: 10px;
}

.messenger_Custom .messenger-list-item tr>td {
  position: relative;
  padding: 0;
}

.messenger_Custom .messenger-list-item:hover {
  background: transparent;
}


.messenger_Custom .listOfContacts {}

.messenger_Custom .listOfContacts .messenger-list-item+.messenger-list-item {
  margin-top: 15px;
}

.messenger_Custom .messenger-list-item tr>td p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: #3c3c3c!important;
  line-height: 16px;
}

.messenger_Custom .messenger-list-item tr>td span {
  color: #929292;
  font-size: 14px;
}

.messenger_Custom .messenger-list-item tr>td span .lastMessageIndicator {
  color: #929292 !important;
}


.messenger_Custom .messenger-list-item tr>td .contact-item-time {
  display: flex;
  align-items: end;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
}

.messenger_Custom .messenger-list-item tr>td .contact-item-time span {
    color: #929292!important;
    font-size: 14px;
}

.messenger_Custom .messenger-list-item tr>td .contact-item-time .no_Count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 12px;
  margin-top: 5px;
  border-radius: 100px;
  background: #003285;
}

.messenger_Custom .messenger-messagingView {
  box-shadow: 0px 0px 10px #dcdcdc;
  border-radius: 20px;
  z-index: 0;
  height: 100% !important;
}

.messenger_Custom .messenger-messagingView .m-header {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 20px;
  box-shadow: none;
}

.messenger_Custom .messenger-messagingView .btnVideo {
    border: 0;
    background: transparent;
}

.messenger_Custom .messenger-messagingView .btnVideo svg {
    width: 21px;
}

.messenger_Custom .messenger-list-item.m-list-active{ background: transparent !important;}
.messenger_Custom .messenger-messagingView .messenger-sendCard {
    padding: 0px!important;
    margin:0px!important;
}
.messenger-sendCard .send-button {
  width: 110px;
}
.messenger-sendCard .send-button:hover svg {
  color: #fff;
}
a.message_btn {
    position: relative;
}

a.message_btn .messageContent {
    visibility: hidden;
    display: none;
    position: absolute;
    top: 30px;
    background: #fff;
    border: 1px solid #dee2e6;
    font-size: 14px;
    color: #434343;
    font-weight: normal;
    padding: 4px 15px;
    border-radius: 4px;
    left: -41px;
    width: fit-content;
    white-space: nowrap;
}

a.message_btn:hover .messageContent {
    visibility: visible;
    display: block;
}

.messageContent:after {
    content: '';
    position: absolute;
    left: 38%;
    transform: translateX(-50%);
    clip-path: polygon(51% 100%, 0 0, 100% 0);
    top: -10px;
    height: 9px;
    width: 17px;
    background: #e5e5e5;
    transition: .3s ease-in-out;
    transform: rotate(180deg);
    z-index: 6;
}
.industyBrand {
  font-size: 12px;
  color: #6a6a6a;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 310px;
  margin-right: 15px;
}
#suggestions ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#suggestions ul li a .username {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
#suggestions ul li a .user-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
#suggestions ul li a .user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.vrSelect span.select2-container {
  background-image: url(../images/select-arrow.png);
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 5%;
  color: #898989;
  border-radius: 0;
  margin-bottom: 20px;
  background: #f6f6f6;
  font-size: 14px;
  box-shadow: none;
}
.vrSelect .select2-container--default .select2-selection--single {
  border-radius: 0;
  height: 48px;
  background: #f6f6f6;
  border: 1px solid #ced4da;
}

.vrSelect .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
  padding-left: 14px;
  font-size: 14px;
}
.vrSelect .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
  background-image: url(../images/select-arrow.png);
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 5%;
}
.vrSelect .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #7e7e7e;
}
#cropModal .modal-contentcrop,
#cropModalpost .modal-contentcroppost,
#coverCropModal .modal-content {
  max-width: 600px;
}
#cropModal .cropper-bg,
#cropModalpost .cropper-container {
  width: 560px !important;
}
#coverCropModal .cropper-container {
  height: 500px !important;
}
#coverCropModal .modal-content {
  padding: 20px;
}
#coverCropModal .modal-body {
  padding: 0;
}
.modal-actions {
  text-align: center;
}
.modal-actions button {
  background: #003285 !important;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  border-radius: .25rem;
  transition: all ease 0.3s;
}
.modal-actions button:hover {
  background: #fbc31d !important;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .testimonial-content {
      flex-direction: row;
      align-items: center;
  }
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-text {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-author {
  margin-top: 15px;
}

.author-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.author-title {
  font-size: 14px;
  color: #777;
}
.testimonial-card .testimonial-content .user-img {
  width: 7rem;
  height: 7rem;
  box-sizing: content-box;
  flex-shrink: 0;
}
.testimonial-card .testimonial-content .user-img img {
  height: 100%;
  object-fit: cover;
}
.testimonials-tabs .nav-link {
  color: #003285;
}
.testimonials-tabs .nav-link.active {
  background: #003285;
}
.testimonials-tabs .nav-item {
  width: 50%;
}
.testimonials-tabs .nav-item .nav-link {
  width: 100%;
}
table tr td {
  vertical-align: middle;
  border: none;
}
.table td,
.table th {
  border: none;
}
.creatpostBoxContainer {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 45px 20px;
  padding-bottom: 10px;
  background: #fff;
}
.creatpostBox {
  margin: auto;
  text-align: center;
  width: 100%;
}
.creatpostBox img {
  display: block;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}
.custom-file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.upload-input-post {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 0.1px;
  height: 0.1px;
}

.upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #003285;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-label:hover {
  background-color: #fbc31d;
}
.upload-label svg {
  width: 18px;
  height: 18px;
}
.notification-page {
  min-height: 80vh;
}
#formArea span.input-field {
  border-bottom: 1px solid #000;
  min-width: 100px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
#formArea span.input-field:focus-visible {
  outline: none;
}
.pointer-none {
  pointer-events: none !important;
}
/* Post engagement bar styling */
.post-engagement-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
}

.reactions-summary {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.reaction-icons-display {
  display: flex;
  margin-right: 8px;
}

.reaction-icon-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-left: -3px;
  border: 2px solid white;
  position: relative;
  z-index: 1;
}

.reaction-icon-circle:first-child {
  margin-left: 0;
}

.reaction-icon-circle:nth-child(2) {
  z-index: 2;
}

.reaction-icon-circle:nth-child(3) {
  z-index: 3;
}

/* Reaction icon colors matching LinkedIn */
.like-circle { 
  background-color: #0a66c2; 
  color: white; 
}

.love-circle { 
  background-color: #df4759; 
  color: white; 
}

.laugh-circle { 
  background-color: #f5c75d; 
  color: white; 
}

.wow-circle { 
  background-color: #f5c75d; 
  color: white; 
}

.sad-circle { 
  background-color: #f5c75d; 
  color: white; 
}

.angry-circle { 
  background-color: #f48024; 
  color: white; 
}

.clap-circle { 
  background-color: #0a66c2; 
  color: white; 
}

.celebrate-circle { 
  background-color: #7b68ee; 
  color: white; 
}

.reaction-text {
  color: #666;
  font-size: 14px;
}

.engagement-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.separator {
  color: #999;
}

.comments-count,
.reposts-count {
  cursor: pointer;
}

.comments-count:hover,
.reposts-count:hover {
  text-decoration: underline;
}

/* Hide reaction icons when no reactions */
.reaction-icons-display:empty + .reaction-text {
  display: none;
}

/* Update existing styles */
.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  gap: 6px;
}

.action-button:hover {
  background-color: #f3f2ef;
}

.action-button.liked {
  color: #0a66c2;
}

.action-button.liked i {
  color: #0a66c2;
}
.reactedIcons {
  display: flex;
}
.reactedIcons div i {
  background: #003285;
  color: #fff;
  width: 17px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 11px;
}
.reactedIcons div {
  margin-left: -4px; /* Overlap amount */
  z-index: 1;
  position: relative;
}
.reactedIcons div:first-child {
  margin-left: 0; /* No overlap for the first icon */
}
.postReactionIcon {
  background: #003285;
  color: #fff;
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 15px;
  margin-right: 8px;
  text-align: center;
  line-height: 35px;
}
@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.pop-animate {
  animation: pop 0.3s ease;
}
.camera-icon {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 4px;
  color: white;
  font-size: 12px;
  z-index: 2;
  pointer-events: none; /* allows dropdown toggle to work on button */
}
.cover-pic {
  position: relative;
}
.edit-cover-pic .dropdown-toggle {
  background: #003285;
  color: #fff;
}
#postCropModal .cropper-container {
  width: 100% !important;
  height: 400px !important;
  overflow: hidden;
}
#postCropModal .cropper-crop-box {
  width: 100% !important;
  height: auto !important;
}
#cropPostConfirm {
  background: #003285;
}
.privacyPolicy h2 {
  font-size: 1.5rem
}
.privacyPolicy ul {
  margin-bottom: 30px;
}
#postCropModal .cropper-crop-box {
  height: 385px !important;
}

#uploadedPreview {
  width: 100%;
  height: auto;
  border-radius: 8px; /* or 0 if you want sharp corners */
  object-fit: contain;
}

/* Optional: give the preview container a fixed height */
#uploadedPreviewContainer {
  position: relative;
  margin-bottom: 1rem;
}
.connectionButtons .disabled {
  background: #fff;
    opacity: 1;
}
.searchData {
  display: flex;
  align-items: center;
}
.creatpostBox.has-uploaded-image #uploadedPreview {
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}
.closePost{
  position: absolute;
  top: 8px;
  right: 8px;
  background: #003285;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: all ease 0.3s;
}
.closePost:hover {
  background: #fbc31d;
}
#chatbot-close {
  filter: brightness(0) invert(1);
}
#question-options .categories-container .category-button {
  text-align: center;
  background: transparent;
  color: #003285;
  border: 1px solid #003285;
}

.chatbot-body::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.chatbot-body::-webkit-scrollbar
{
	width: 8px;
	background-color: #F5F5F5;
}

.chatbot-body::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #003285;
}
/* .chat-messages {
  min-height: 100px !important;
  overflow-y: hidden !important;
} */
.bot-message {
  margin-top: 15px;
}
.chatbot-icon{
  background-color: #f5c75d !important;
}
.chatbot-icon img {
  width: 40px;
}
.additional-help {
  margin-top: -25px !important;
  font-size: 14px;
}
.message-card-wrapper .message-card.mc-sender .message {
  background: #003285 !important;
}
.message-card.mc-sender .message a {
  color: #fff;
}
.messages .message-card-wrapper .message-user {
  align-items: start;
}
.messenger-sendCard .send-button svg {
  color: #003285 !important; 
}
#message-form .send-button:hover {
  background: #003285;
}
#message-form .send-button:hover svg {
  color: #fff !important;
}
.message-card-wrapper .message-card {
  margin-left: 0;
}
.message-card-wrapper .message-card .message-card-content {
  max-width: 75%;
}
.messenger_Custom .listOfContacts {
  padding-right: 10px;
}
.message-hint span {
  padding: 7px 12px !important;
  border-radius: 30px !important;
}
.whiteBox.allposts {
  padding-bottom: 10px !important;
}