html {
  margin: 0;
  padding: 0;
  /**
   * Custom mixins, re-done in SCSS
   *
   * @author AM.HIGH
   * @version 2.0
   * @since 1.0
   */
  /**
   * Keyline using the :before pusedo selector
   */
  /**
   * Keyline using the :after pusedo selector
   */
  /**
   * Svg background image
   */
  /**
   * Svg image setting width and height of the element
   */
  /**
   * Shadow mixins
   */
  /**
   * Border radius
   */
  /**
   * Element alignment
   */
  /**
   * Gradients
   */
  /**
   * Appearance wrapper
   */
  /**
   * Animations, transitions and transforms
   */
}
html .container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
html body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Manrope", serif;
  color: #11142d;
}
html body * {
  box-sizing: border-box;
}
html h1, html h2, html h3, html h4, html h5, html h6, html p {
  margin: 0;
}
html a {
  text-decoration: none;
  color: #11142d;
}
html .btn {
  height: 48px;
  font-size: 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 600;
}
html .inner-content {
  background: #e9ebff;
  padding-top: 120px;
  padding-bottom: 50px;
  min-height: 100vh;
}
html .content-row {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  margin-top: 64px;
}
html .content-row .left-col {
  width: calc(65% - 32px);
}
html .content-row .right-col {
  width: calc(35% - 32px);
}
html .section-title {
  font-size: 36px;
}
html body .fixed-header {
  background: #f00699;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
html body .fixed-header .header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 16px 15px 106px;
}
html body .fixed-header .header-row .logo-wrapper {
  max-width: 180px;
}
html body .fixed-header .header-row .logo-wrapper img {
  width: 100%;
  height: auto;
}
html body .fixed-header .header-row .logout-wrapper {
  width: calc(100% - 180px);
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
html body .fixed-header .header-row .logout-wrapper .custom-search {
  position: relative;
  width: 230px;
  display: flex;
}
html body .fixed-header .header-row .logout-wrapper .custom-search input {
  border-radius: 6px;
  background: #f8f8ff;
  border: 1px solid #11142d;
  color: #11142d;
  font-size: 16px;
  height: 48px;
  padding: 0 16px;
  width: 100%;
}
html body .fixed-header .header-row .logout-wrapper .custom-search button {
  position: absolute;
  background: #11142d;
  border-radius: 6px;
  border: 0;
  color: #f8f8ff;
  padding: 5px 12px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 16px;
  cursor: pointer;
}
html body .fixed-header .header-row .logout-wrapper a {
  background: #f8f8ff;
  max-width: 180px;
}
html body .sidebar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
}
html body .sidebar-fixed.sidebar-act .sidebar-element.sidebar-small {
  transform: translateX(-100%);
}
html body .sidebar-fixed.sidebar-act .sidebar-element.sidebar-big {
  transform: translateX(0);
}
html body .sidebar-fixed .sidebar-element {
  height: 100%;
  position: absolute;
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition-delay: 0.3s;
}
html body .sidebar-fixed .sidebar-element.sidebar-small {
  width: 90px;
}
html body .sidebar-fixed .sidebar-element.sidebar-big {
  width: 300px;
  transform: translateX(-100%);
}
html body .sidebar-fixed .sidebar-element.sidebar-big .sidebar-toggle {
  background: #f00699;
  justify-content: flex-start;
  padding: 0 16px;
}
html body .sidebar-fixed .sidebar-element.sidebar-big .sidebar-toggle a {
  justify-content: flex-start;
  gap: 24px;
}
html body .sidebar-fixed .sidebar-element.sidebar-big .sidebar-toggle a img.logo {
  max-width: 140px;
}
html body .sidebar-fixed .sidebar-element .sidebar-toggle {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 248, 255, 0.3);
}
html body .sidebar-fixed .sidebar-element .sidebar-toggle a {
  display: flex;
  align-items: center;
  justify-content: center;
}
html body .sidebar-fixed .sidebar-element .sidebar-toggle a img {
  width: 100%;
  max-width: 40px;
}
html body .sidebar-fixed .sidebar-element .sidebar-nav {
  padding: 32px 16px;
  background: #f8f8ff;
  height: 100%;
}
html body .sidebar-fixed .sidebar-element .sidebar-nav.big-sidebar-nav ul li a {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
}
html body .sidebar-fixed .sidebar-element .sidebar-nav.big-sidebar-nav ul li a img {
  width: 32px;
}
html body .sidebar-fixed .sidebar-element .sidebar-nav.big-sidebar-nav ul li a .menu-name {
  font-size: 18px;
  color: #11142d;
}
html body .sidebar-fixed .sidebar-element .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
html body .sidebar-fixed .sidebar-element .sidebar-nav ul li a {
  display: block;
  text-align: center;
  position: relative;
}
html body .sidebar-fixed .sidebar-element .sidebar-nav ul li a:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
html body .sidebar-fixed .sidebar-element .sidebar-nav ul li a img {
  width: 20px;
}
html body .sidebar-fixed .sidebar-element .sidebar-nav ul li a .tooltip {
  visibility: hidden;
  background: rgba(17, 20, 45, 0.8);
  color: #f8f8ff;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  white-space: nowrap;
  font-size: 12px;
}
html body footer {
  padding: 12px 0;
}
html body footer p {
  font-size: 14px;
  text-align: center;
}
html body .sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
html body .sidebar-wrapper .sidebar-item {
  padding: 16px;
  border-radius: 6px;
  box-shadow: 2px 2px 8px 0 rgba(17, 20, 45, 0.3);
  background: #f8f8ff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body .sidebar-wrapper .sidebar-item .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(17, 20, 45, 0.7);
  padding-bottom: 8px;
  border-bottom: 1px solid #f00699;
}
html body .sidebar-wrapper .sidebar-item.birthdays .birthday-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
html body .sidebar-wrapper .sidebar-item.birthdays .birthday-row .birthday-icon {
  width: 48px;
}
html body .sidebar-wrapper .sidebar-item.birthdays .birthday-row .birthday-icon img {
  width: 100%;
  height: auto;
}
html body .sidebar-wrapper .sidebar-item.birthdays .birthday-row .birthday-text {
  font-size: 16px;
  width: calc(100% - 56px);
  color: #11142d;
}
html body .sidebar-wrapper .sidebar-item.members .members-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid #f00699;
}
html body .sidebar-wrapper .sidebar-item.members .members-wrap .sidebar-title {
  padding-bottom: 0;
  border-bottom: 0;
}
html body .sidebar-wrapper .sidebar-item.members .members-wrap .member-btn {
  font-weight: 500;
}
html body .sidebar-wrapper .sidebar-item.members .member-lists {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
html body .sidebar-wrapper .sidebar-item.members .member-lists li a {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  color: #11142d;
}
html body .sidebar-wrapper .sidebar-item.members .member-lists li a img {
  width: 32px;
}
html body .welcome-banner {
  width: 100%;
  background: url("../img/bg-pattern.jpg");
  background-size: contain;
  background-repeat: repeat;
  padding: 32px 0;
  display: flex;
  align-items: center;
  border-radius: 6px;
  justify-content: center;
}
html body .welcome-banner p {
  font-size: 28px;
  color: #f8f8ff;
  text-align: center;
}
html body .homepage-announcements {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
html body .homepage-announcements .featured-announcements {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
html body .homepage-announcements .featured-announcements .homepage-announcement-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8f8ff;
  padding: 16px 24px;
  border-radius: 6px;
  box-shadow: 2px 2px 8px 0 rgba(17, 20, 45, 0.3);
}
html body .homepage-announcements .featured-announcements .homepage-announcement-item .featured-announcement-titles h3 {
  font-size: 20px;
}
html body .homepage-announcements .featured-announcements .homepage-announcement-item .featured-announcement-titles .meta-infos {
  font-size: 14px;
  color: #9d9595;
}
html body .homepage-announcements .announcements-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
html body .homepage-announcements .announcements-wrapper .announcements-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #f8f8ff;
  padding: 16px 24px;
  border-radius: 6px;
  box-shadow: 2px 2px 8px 0 rgba(17, 20, 45, 0.3);
}
html body .homepage-announcements .announcements-wrapper .announcements-row .announcement-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body .homepage-announcements .announcements-wrapper .announcements-row .announcement-item .announcement-titles h3 {
  font-size: 18px;
}
html body .homepage-announcements .announcements-wrapper .announcements-row .announcement-item .announcement-titles .meta-infos {
  font-size: 14px;
  color: #9d9595;
}
html body .homepage-announcements .announcements-wrapper .announcement-btn {
  display: flex;
  justify-content: center;
}
html body .homepage-announcements .announcements-wrapper .announcement-btn a {
  background: #11142d;
  color: #f8f8ff;
  width: auto;
  padding: 24px;
}
html body .homepage-announcements .announcement-action a {
  font-size: 14px;
  text-decoration: underline;
}
html body .newsfeed-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
html body .newsfeed-wrapper .nfeed {
  background: #f8f8ff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 2px 2px 8px 0 rgba(17, 20, 45, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
html body .newsfeed-wrapper .nfeed .nfeed-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
html body .newsfeed-wrapper .nfeed .nfeed-author .author-img {
  width: 48px;
}
html body .newsfeed-wrapper .nfeed .nfeed-author .author-img img {
  width: 100%;
}
html body .newsfeed-wrapper .nfeed .nfeed-author .author-desc {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
html body .newsfeed-wrapper .nfeed .nfeed-author .author-desc .author-name {
  font-size: 16px;
  font-weight: 600;
}
html body .newsfeed-wrapper .nfeed .nfeed-author .author-desc .published-date {
  font-size: 12px;
  color: #9d9595;
  font-weight: 300;
}
html body .newsfeed-wrapper .nfeed .nfeed-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body .newsfeed-wrapper .nfeed .nfeed-content .nfeed-text {
  font-size: 16px;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-counts {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-counts .count-text {
  font-size: 14px;
  color: #9d9595;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-actions {
  display: flex;
  padding: 8px 0;
  border-top: 1px solid #11142d;
  border-bottom: 1px solid #11142d;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-actions a {
  width: 50%;
  display: flex;
  gap: 8px;
  font-size: 14px;
  justify-content: center;
  align-items: center;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-comments {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-comments .nfeed-comments-wrap {
  display: flex;
  gap: 8px;
  flex-direction: column;
  margin-top: 24px;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-comments .nfeed-comments-wrap .nfeed-comment {
  display: flex;
  gap: 8px;
  align-items: center;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-comments .nfeed-comments-wrap .nfeed-comment .nfeed-comment-img {
  width: 40px;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-comments .nfeed-comments-wrap .nfeed-comment .nfeed-comment-img img {
  width: 100%;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-comments .nfeed-comments-wrap .nfeed-comment .nfeed-comment-text {
  background: #e9ebff;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-comments .nfeed-comments-wrap .nfeed-comment .nfeed-comment-text .nfeed-comment-name {
  font-size: 12px;
  font-weight: 600;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-comments .nfeed-comments-wrap .nfeed-comment .nfeed-comment-text .nfeed-comment-content {
  font-size: 14px;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-comments .nfeed-comment-form {
  width: 100%;
  display: flex;
}
html body .newsfeed-wrapper .nfeed .nfeed-lower .nfeed-comments .nfeed-comment-form input {
  background: #e9ebff;
  border-radius: 24px;
  padding: 8px 16px;
  width: 100%;
  border: 1px solid #e9ebff;
}
html body.page-template-page-login .fixed-header, html body.page-template-page-login .sidebar-fixed, html body.page-template-page-login footer {
  display: none;
}
html body.page-template-page-login .inner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}
html body.page-template-page-login .logo-placement {
  max-width: 220px;
  margin: 0 auto 40px;
}
html body.page-template-page-login .logo-placement img {
  width: 100%;
}
html body.page-template-page-login .login-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 6px;
  background: #f8f8ff;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: 2px 2px 8px 0 rgba(17, 20, 45, 0.3);
}
html body.page-template-page-login .login-wrapper .form-message {
  padding: 24px;
  background: #f4f4f4;
  font-style: italic;
  width: 100%;
}
html body.page-template-page-login .login-wrapper .form-message.form-error-message {
  border-top: 2px solid #f00;
}
html body.page-template-page-login .login-wrapper .form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
html body.page-template-page-login .login-wrapper .form-row.form-row-checkx {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
html body.page-template-page-login .login-wrapper .form-row.form-row-checkx .form-checkbox input {
  width: auto;
}
html body.page-template-page-login .login-wrapper .form-row.form-row-checkx .form-checkbox label {
  font-weight: 400;
  color: #9d9595;
  font-size: 14px;
}
html body.page-template-page-login .login-wrapper .form-row label {
  font-weight: 500;
}
html body.page-template-page-login .login-wrapper .form-row input {
  width: 100%;
  border-radius: 6px;
  padding: 16px;
  border: 1px solid #11142d;
}
html body.page-template-page-login .login-wrapper .form-row a {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
}
html body.page-template-page-login .login-wrapper .form-row button {
  background: #11142d;
  color: #f8f8ff;
  border: 1px solid #11142d;
  cursor: pointer;
}
html body .profile-wrapper .profile-banner {
  height: 260px;
  border-radius: 6px;
  background: url("../img/bg-pattern.jpg");
  background-size: contain;
  background-repeat: repeat;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 32px;
}
html body .profile-wrapper .profile-banner .profile-details {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
html body .profile-wrapper .profile-banner .profile-details .profile-img {
  width: 100px;
}
html body .profile-wrapper .profile-banner .profile-details .profile-img img {
  width: 100%;
}
html body .profile-wrapper .profile-banner .profile-details .profile-detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body .profile-wrapper .profile-banner .profile-details .profile-detail-wrapper .profile-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
html body .profile-wrapper .profile-banner .profile-details .profile-detail-wrapper .profile-detail h1 {
  font-size: 26px;
  color: #f8f8ff;
}
html body .profile-wrapper .profile-banner .profile-details .profile-detail-wrapper .profile-detail p {
  color: #f8f8ff;
}
html body .profile-wrapper .profile-banner .profile-details .profile-detail-wrapper .profile-socials {
  display: flex;
  gap: 8px;
}
html body .profile-wrapper .profile-banner .profile-details .profile-detail-wrapper .profile-socials a {
  background: #f00699;
  padding: 4px 8px;
  border-radius: 100px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}
html body .profile-wrapper .profile-banner .profile-edit {
  display: flex;
  gap: 16px;
}
html body .profile-wrapper .profile-banner .profile-edit a {
  background: #f8f8ff;
  padding: 24px;
  width: auto;
}
html body .profile-information-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
html body .profile-information-wrapper .profile-wrapper {
  border-radius: 6px;
  background: #f8f8ff;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
html body .profile-information-wrapper .profile-wrapper h2 {
  font-size: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f00699;
}
html body .profile-information-wrapper .profile-values {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
html body .profile-information-wrapper .profile-values .profile-row {
  display: flex;
  border-bottom: 1px solid #9d9595;
  padding-bottom: 16px;
  flex-wrap: wrap;
}
html body .profile-information-wrapper .profile-values .profile-row:last-child {
  border-bottom: 0;
}
html body .profile-information-wrapper .profile-values .profile-row .profile-label {
  color: #9d9595;
  width: 240px;
}
html body .profile-information-wrapper .profile-values .profile-row .profile-value {
  width: calc(100% - 240px);
}
html body .edit-profile-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
html body .edit-profile-row .profile-edit {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #f8f8ff;
  padding: 24px 30px;
  width: 100%;
  border-radius: 6px;
}
html body .edit-profile-row .profile-edit .form-row {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
html body .edit-profile-row .profile-edit .form-row label {
  font-weight: 600;
}
html body .edit-profile-row .profile-edit .form-row input {
  border-radius: 6px;
  padding: 16px;
  border: 1px solid #11142d;
  background: #f8f8ff;
  color: #11142d;
}
html body .edit-profile-row .profile-edit .form-row button {
  border-radius: 6px;
  background: #11142d;
  color: #f8f8ff;
  border: 0;
}
html body .member-wrappers h2 {
  margin-bottom: 32px;
}
html body .member-wrappers .members-wrappers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
html body .member-wrappers .members-wrappers-row .members-wrap {
  background: #f8f8ff;
  padding: 16px;
  border-radius: 8px;
  width: calc(25% - 18px);
  text-align: center;
  box-shadow: 2px 2px 8px 0 rgba(17, 20, 45, 0.3);
}
html body .member-wrappers .members-wrappers-row .members-wrap img {
  max-width: 140px;
  margin: 0 auto;
  width: 100%;
}
html body .member-wrappers .members-wrappers-row .members-wrap p {
  margin: 10px 0 5px;
}
html body .member-wrappers .members-wrappers-row .members-wrap span {
  font-size: 12px;
}
