﻿/* ______ buttons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@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");
[class^=bi-]::before, [class*=" bi-"]::before {
  vertical-align: middle;
}

.btn {
  border-radius: 1.25rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
  /* _____ btn tags */
}
.tags-list .btn {
  border-radius: 1rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  width: fit-content;
  margin-bottom: 0;
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}

/* _______ badges */
.badge {
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.75rem 1.5rem;
}
.badge:hover {
  color: #fff;
  background-color: rgb(18.2109375, 143.0859375, 148.2890625) !important;
  text-decoration: none;
}

/* _________ pagination */
.pagination {
  justify-content: center;
}
.pagination li {
  margin: 0.25rem;
  padding: 0.25rem;
  font-weight: 600;
}
.pagination li a {
  padding: 0.5rem;
}
.pagination li.active {
  background: #5792C9;
  border-radius: 25px;
}
.pagination li.active a {
  color: #fff;
}
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #c3c3c3;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

/* _________ breadcrumb */
._breadcrumb {
  position: relative;
  overflow: hidden;
}
._breadcrumb div {
  width: 2000px;
}
._breadcrumb div:after {
  display: block;
  content: "";
  width: 0.75rem;
  height: 2.5rem;
  background: #ffffff;
  position: absolute;
  right: 0;
  top: 0px;
}

.breadcrumb {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 0.8rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, ">");
}

/* __________ form */
.form-control,
.form-select {
  border-radius: 1rem;
  padding-left: 1rem;
}

form .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
}

form label {
  padding-left: 0.75rem;
}

.form-check-inline {
  margin-right: 0.75rem;
  font-size: 0.875rem;
}

/* __________ autocomplete */
.sf-autocomplete {
  z-index: 10;
}
.sf-autocomplete .ui-menu-item {
  border-radius: 1.5rem;
}
.sf-autocomplete .ui-menu-item:hover {
  background-color: #cccccc;
}

/* __________ scrollbar */
.scrollable-list {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  overflow-y: auto;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
._card-forum .scrollable-list, ._card-postit .scrollable-list, ._card-rss .scrollable-list, ._card-webinars .scrollable-list {
  max-height: 450px;
  margin-right: -1rem;
  padding-right: 1rem;
}
.scrollable-list .simplebar-scrollbar {
  right: 0.25rem;
  background: #5792C9;
  opacity: 0.3 !important; /* this is to have the scrollbar always visible */
}

/* __________ scrollbar - noticeboard */
._list-minimal .scrollable-list {
  max-height: 415px;
}
._list-minimal .scrollable-list .simplebar-scrollbar {
  right: 1rem;
  background: #ffffff;
}
@media only screen and (min-width: 992px) {
  ._list-minimal .scrollable-list {
    max-height: 299px;
  }
}
@media only screen and (min-width: 1200px) {
  ._list-minimal .scrollable-list {
    max-height: 375px;
  }
}
@media only screen and (min-width: 1400px) {
  ._list-minimal .scrollable-list {
    max-height: 470px;
  }
}

/* __________ scrollbar - post-it, forum, webinar */
._card-webinars .scrollable-list .simplebar-scrollbar {
  right: 0.5rem;
  background: #15A5AB;
}

/* __________ corporate navigation - vertical  */
._corporate-nav {
  font-size: 0.85rem;
  position: relative;
  /* mobile version */
  /* force the xl width to fit the navigation */
}
._corporate-nav ul {
  margin-bottom: 0;
}
._corporate-nav ul ul {
  overflow: hidden;
  max-height: 0;
  display: none;
  transition: max-height 0.35s ease;
}
._corporate-nav ul ul.show {
  display: block;
  border-left: 2px solid #15A5AB;
  margin-top: 1.55rem;
  padding-left: 1.5rem;
  max-height: none; /* Allow natural height */
}
._corporate-nav ul li {
  margin-bottom: 1.55rem;
}
._corporate-nav ul li:last-child {
  margin-bottom: 0;
}
._corporate-nav ul li a {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
._corporate-nav ul li a i {
  color: #bbbbbb;
}
._corporate-nav ul li a i:before {
  font-weight: bold !important;
}
._corporate-nav ul li a.active + ul, ._corporate-nav ul li a.current + ul {
  display: block;
  max-height: none;
  margin-top: 1.55rem;
  padding-left: 1.5rem;
  border-left: 2px solid #15A5AB;
}
._corporate-nav ul li a.current {
  color: #15A5AB;
}
._corporate-nav #verticalNav {
  background: #fbfbfb;
  position: relative;
  width: 100%;
  border-radius: 5px;
}
._corporate-nav #verticalNav.show {
  margin-bottom: 2rem;
}
._corporate-nav .navbar-toggler {
  display: inline-block;
  padding: 0.5rem 0.25rem;
  margin-bottom: 1rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
  border: 1px solid #15A5AB;
  color: #15A5AB;
}
._corporate-nav .navbar-toggler-icon {
  display: inline-block;
  font-size: 1.25rem;
  height: auto;
  line-height: 1;
  transition: transform 0.3s ease;
}
._corporate-nav li a {
  color: #000;
}
@media (min-width: 992px) {
  ._corporate-nav {
    border-right: 1px solid #e3e3e3;
  }
  ._corporate-nav ul ul {
    margin-left: 0;
    margin: 2rem 0;
  }
  ._corporate-nav ul ul.show {
    margin-left: 0;
  }
  ._corporate-nav ul li {
    margin-bottom: 1.55rem;
  }
  ._corporate-nav ul li a {
    color: #000000;
  }
  ._corporate-nav ul li a.active + ul, ._corporate-nav ul li a.current + ul {
    border-left: 2px solid #15A5AB;
    margin-top: 1.55rem;
  }
  ._corporate-nav #verticalNav {
    display: block !important;
    visibility: visible !important;
    max-height: none !important;
    background: transparent;
    position: initial;
    width: initial;
    box-shadow: none;
  }
  ._corporate-nav .navbar-toggler {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  ._corporate-nav.col-xl-2 {
    width: 20%;
  }
}

._corporate-main {
  /* force the xl width to fit the navigation */
}
@media screen and (min-width: 1200px) {
  ._corporate-main.col-xl-10 {
    width: 80%;
  }
}

/* __________ tags  */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  text-transform: capitalize;
}

/* __________ accordion  */
.accordion-button:not(.collapsed) {
  background-color: #5792C9;
  color: #ffffff;
  /* override the icon color when accordion is active */
}
.accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
.accordion-button:not(.collapsed):focus {
  box-shadow: none;
}

.accordion-button.collapsed:focus {
  box-shadow: none;
}

/* __________ tabs  */
.tabbed-content a {
  color: #5792C9;
}
.tabbed-content .tab-content {
  padding: 1.25rem;
}

/* chips */
.chip {
  padding: 0.5rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 10px;
}
.chip.color-primary {
  color: white;
  background-color: #5792C9;
}

h1 {
  margin-bottom: 2rem;
}

h2 {
  margin-bottom: 1rem;
}

h5.sub-title:after {
  display: block;
  content: "";
  width: 50px;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #5792C9;
  margin-bottom: 1.5rem;
}

.infao-login > div {
  cursor: pointer;
}
.infao-login i {
  display: contents;
  font-size: 2rem;
}
.infao-login li {
  margin: 0 1rem;
}
.infao-login #MegaMenuToggleButton-3_Toggle {
  border: 2px solid #5392c9;
  border-radius: 25px;
  padding: 2px;
}
.infao-login img {
  width: 32px;
  height: 32px;
}
@media only screen and (min-width: 576px) {
  .infao-login {
    margin-left: auto;
  }
  .infao-login li {
    margin: 0;
  }
}

.infao-logo,
.infao-logo-white {
  width: 165px;
  position: relative;
  padding-bottom: 5px;
}

header {
  box-shadow: none !important;
}
header.infao-header.aboutMe-active {
  background: #5ab5d9 !important;
  color: white;
}
header.infao-header.aboutMe-active img.infao-logo {
  display: none;
}
header.infao-header.aboutMe-active img.infao-logo-white {
  display: block !important;
}
header.infao-header.aboutMe-active #navbarNav > .navbar-nav > .nav-item .nav-link {
  color: white;
}

.infao-nav {
  margin-left: auto;
}
.infao-nav .navbar {
  font-size: 0.9rem;
  font-weight: 600;
}
.infao-nav .nav-link {
  color: #000;
  padding: 0.25rem 0.75rem !important;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 576px) {
  .infao-nav .nav-link {
    margin: 0 0.5rem;
  }
}
.infao-nav .nav-link i {
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
  top: -2px;
}
.navbar-dark .navbar-nav .infao-nav .nav-link {
  color: #ffffff;
}
.infao-nav .nav-item {
  border-right: 1px solid #ccc;
}
.infao-nav .nav-item span {
  display: none;
}
@media only screen and (min-width: 576px) {
  .infao-nav .nav-item span {
    display: block;
  }
  .infao-nav .nav-item:last-of-type {
    border-right: none !important;
  }
}
@media only screen and (min-width: 576px) {
  .infao-nav {
    margin-left: unset;
  }
}

/* inFAO Home Carousel custom swiper */
/* main swiper */
.main-swiper {
  float: none;
  width: 100%;
  height: 308px;
  border-radius: 1.25rem;
}
@media screen and (min-width: 576px) {
  .main-swiper {
    float: none;
    width: 100%;
    height: 344px;
  }
}
@media screen and (min-width: 768px) {
  .main-swiper {
    float: none;
    width: 100%;
    height: 464px;
  }
}
@media screen and (min-width: 992px) {
  .main-swiper {
    float: none;
    width: 100%;
    height: 410px;
  }
}
@media screen and (min-width: 1200px) {
  .main-swiper {
    float: left;
    width: 75%;
    height: 378px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .main-swiper {
    float: left;
    width: 75%;
    height: 434px;
  }
}
.main-swiper a:hover h2 {
  text-decoration: underline;
}
.main-swiper .autoplay-progress {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #ffffff;
}
.main-swiper .autoplay-progress span {
  display: none;
}
.main-swiper .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
  stroke-width: 1px;
  stroke: #ffffff;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.main-swiper .swiper-pagination {
  z-index: 2;
}
.main-swiper .swiper-pagination-bullet {
  display: inline-block;
  background: #ffffff;
}
@media screen and (min-width: 1200px) {
  .main-swiper .swiper-pagination-bullet {
    display: none;
  }
}
.main-swiper .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main-swiper.swiper-container {
  overflow: hidden;
  position: relative;
}
.main-swiper.swiper-container h6 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  position: absolute;
  letter-spacing: 0.05rem;
  z-index: 2;
  left: 2rem;
  top: 2rem;
}

/* vertical thumbs */
.vertical-thumbnails {
  float: none;
  width: 100%;
  height: 175px;
  overflow: hidden;
  display: none; /* hide thumbs if less than 1200 */
}
@media screen and (min-width: 1200px) {
  .vertical-thumbnails {
    float: right;
    width: 23%;
    height: 511px;
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .vertical-thumbnails {
    height: 585px;
    display: block;
  }
}

/* horizontal thumbs */
.horizontal-thumbnails {
  float: none;
  width: 100%;
  height: 135px;
  display: none; /* hide thumbs if less than 1200 */
}
@media screen and (min-width: 1200px) {
  .horizontal-thumbnails {
    width: 75%;
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .horizontal-thumbnails {
    width: 75%;
    display: block;
  }
}

.swiper-container {
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  /* Set the aspect ratio to 3:2 */
  overflow: hidden;
  position: relative;
  height: 20px; /*xxxxxxxxxxxxxxxxx */
  padding-top: 66.66%;
  /* 9/16 = 0.5625 */
}
.swiper-slide img {
  width: 100%;
}
.swiper-slide--info {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  width: 100%;
  color: #ffffff;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 2%, rgba(0, 0, 0, 0.9) 100%);
  padding: 8rem 2rem 2rem 2rem;
}
@media (min-width: 768px) {
  .swiper-slide--info {
    padding: 8rem 2rem 1rem 2rem;
  }
}
.swiper-slide--info h2 {
  font-weight: 600;
}
@media (min-width: 768px) {
  .swiper-slide--info h2 {
    font-size: 2rem;
  }
}
.swiper-slide--info p {
  display: none;
}
@media (min-width: 768px) {
  .swiper-slide--info p {
    display: block;
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
}
.swiper-slide.active-thumb h5 {
  color: orange;
}
.swiper-slide:hover {
  cursor: pointer;
}
.swiper-slide:hover h5 {
  color: orange;
}

.swiper-slide > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.swiper-item--img {
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.swiper-item--img:after {
  display: block;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -1%, rgba(0, 0, 0, 0.8) 100%);
}

.swiper-item--text {
  position: absolute;
  height: auto;
  top: auto;
  bottom: 0;
  z-index: 1;
  padding: 0.75rem 1rem;
}
.swiper-item--text h5 {
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
  /*        .active-thumb & {
      color: #df520c;
  }*/
}
.swiper-item--text p {
  display: none;
}

/* swiper for dynamic content */
._dynamic-content {
  /*    .hero-caption {
      position: absolute;
      z-index: 1;
      bottom: 0px;
      width: 100%;
      color: #ffffff;
      background: rgb(0, 0, 0);
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.9) 100%);
      padding: 8rem 2rem 2rem 2rem;
      border-radius: 1.5rem;

      .title-date,
      .title-link a {
          color: #ffffff;
      }
  }

  .hero-banner {
      background-repeat: no-repeat;
      background-size: contain;
      border-radius: 2rem;
  }*/
}
._dynamic-content .swiper-slide.swiper-16x9 {
  height: auto;
  padding-top: calc(56.25% + 2.5rem);
}
._dynamic-content .swiper-slide .card {
  height: 100%;
  margin-bottom: 0;
  border-radius: 1.25rem;
}
._dynamic-content .swiper-auto-cards-container .swiper-slide {
  width: 100%;
}
@media (min-width: 576px) {
  ._dynamic-content.swiper-auto-cards-container .swiper-slide {
    max-width: 300px;
  }
}

._swiper-21x9 {
  margin-bottom: 2rem;
}
._swiper-21x9 .swiper-slide {
  padding-top: 42.8571428571%;
}
._swiper-21x9 .hero-banner {
  margin-bottom: 0;
}

.myInFao {
  color: white;
  overflow: hidden;
  background-color: #5792C9;
}
.myInFao a {
  color: inherit;
  line-height: 1.25rem;
}
.myInFao .border-end {
  border-right: none !important;
}
@media (min-width: 768px) {
  .myInFao .border-end {
    border-right: 1px solid rgba(255, 255, 255, 0.3137254902) !important;
  }
}

._mybox {
  background: #4d83b5;
  border-radius: 1.5rem;
  padding: 1.5rem;
  height: 100%;
}
._mybox--avatar {
  overflow: hidden;
}
._mybox--avatar img {
  max-width: 170px;
  max-height: 170px;
  width: 100%;
  height: auto;
  object-fit: scale-down;
  border-radius: 50%;
  border: 3px solid #fff;
}
._mybox .btn.btn-outline {
  background: transparent !important;
  border-color: #fff !important;
  font-size: 0.85rem;
}
._mybox .btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.062745098) !important;
}

._mydocs .btn.btn-outline {
  background: transparent !important;
  border-color: #fff !important;
  font-size: 0.85rem;
  width: fit-content;
  margin-left: auto;
}
._mydocs .btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.062745098) !important;
}

.FaoPopUpWidget {
  /* infao Article pop-up in homepage */
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content {
  border-radius: 25px;
  border: none;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content {
    padding: 1rem 2rem 2rem 2rem;
  }
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content .modal-header {
  border: none;
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content .modal-header .ima-article-types-list .article-type-item {
  color: #5792C9;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content .modal-header .btn-close {
  opacity: 1;
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content .modal-body {
  padding-top: 0;
  padding-bottom: 0;
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content .modal-body .infao-article-modal .ima-img img {
  border-radius: 25px;
  width: 100%;
  object-fit: cover;
  border-bottom-left-radius: 1.25rem !important;
  border-bottom-right-radius: 1.25rem !important;
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content .modal-body .infao-article-modal .ima-title .modal-title {
  font-weight: bold;
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content .modal-body .infao-article-modal .ima-subtitle {
  color: #454545;
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content .modal-body .infao-article-modal .ima-abstract {
  font-size: 0.875rem;
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content .modal-body .infao-article-modal .ima-abstract a {
  word-break: break-word;
}
.FaoPopUpWidget #FaoPopUpWidget-modal .modal-dialog .modal-content .modal-body .infao-article-modal .ima-readmore a.btn {
  width: fit-content;
}

body .k-window {
  border-radius: 1.5rem !important;
  padding: 1.5rem;
  font-size: 0.9rem;
}
body .k-window-titlebar {
  padding-left: 0;
  background-color: transparent !important;
}
body .k-window-titlebar .k-window-title {
  padding-top: 0;
  font-weight: 600;
}
body .k-window-content {
  padding: 1.5rem 0 0;
  overflow-x: hidden;
}
body .k-window iframe {
  height: 60px !important;
  overflow: hidden;
}
body .k-window .modal-footer {
  justify-content: center;
}
body .k-window table .k-editor {
  border-radius: 1rem;
}
body .custom-kendo-editor iframe {
  height: 200px !important;
}

/* Bootstrap Icons  */
/* Font Poppins */
@font-face {
  font-family: "charterregular";
  src: url("font/charter_regular-webfont.eot");
  src: url("font/charter_regular-webfont.eot?#iefix") format("embedded-opentype"), url("font/charter_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "charterbold";
  src: url("font/charter_bold-webfont.eot");
  src: url("font/charter_bold-webfont.eot?#iefix") format("embedded-opentype"), url("font/charter_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.bg-primary {
  background-color: #5792C9 !important;
  color: #ffffff; /* white */
}
.bg-primary a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}
.bg-primary a:hover {
  opacity: 0.8;
}

.bg-secondary {
  background-color: #15A5AB !important;
  color: #ffffff;
}
.bg-secondary a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}
.bg-secondary a:hover {
  opacity: 0.8;
}

.bg-orange {
  background-color: #F49E14 !important;
  color: #ffffff;
}
.bg-orange a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}
.bg-orange a:hover {
  opacity: 0.8;
}

.bg-darkgray {
  background-color: #454545 !important;
  color: #ffffff;
}
.bg-darkgray a {
  text-decoration: underline;
}
.bg-darkgray a:hover {
  opacity: 0.8;
}

.bg-lightgray {
  background-color: #F2F2F2 !important;
}

.bg-white {
  background-color: #ffffff !important;
  box-shadow: 0px 0px 6px 2px #ebebeb;
}

@media (min-width: 768px) {
  .col-lg-20 {
    flex: 0 0 auto;
    width: 20%;
  }
}
body {
  font-family: "Poppins";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body main {
  flex-grow: 1;
}
body a {
  color: #5792C9;
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}
body.menu-open {
  position: fixed;
  width: 100%;
  overflow-y: scroll; /* Ensure scroll is maintained */
  top: var(--scroll-y, 0); /* Lock the scroll position */
  height: 100vh;
}
body.menu-open ._modalsearch {
  position: absolute;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  z-index: 1002;
}
body.menu-open ._modalsearch > div {
  top: 97px;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
}

/* reset bootstrap file */
.card-body {
  flex: none;
}

footer {
  background: rgb(93, 153, 203);
  background: linear-gradient(128deg, rgb(93, 153, 203) 0%, rgb(39, 98, 149) 100%);
}
footer h4 {
  font-size: 1rem;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  color: #ffffff;
}

/* ---- megamenu - start --- */
.mega-menu {
  width: 100%;
  left: 0;
  top: 100%;
  z-index: 1000;
  display: none;
}
.mega-menu.show {
  display: block;
}
.mega-menu.show h5,
.mega-menu.show a {
  color: #fff;
}

._mmenu-columns {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3137254902);
}
@media (min-width: 768px) {
  ._mmenu-columns {
    border-right: 1px solid rgba(255, 255, 255, 0.3137254902);
    border-bottom: none;
  }
}
._mmenu-columns h6 {
  margin-bottom: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
._mmenu-columns .list-unstyled li {
  margin-left: 0.75rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  ._mmenu-columns .list-unstyled li {
    margin-left: 0;
    line-height: 1.15rem;
    margin-bottom: 0.75rem;
  }
}
._mmenu-columns .list-unstyled li:last-child {
  border-right: none;
}

#megaSearch {
  width: 100%;
}
@media (min-width: 768px) {
  #megaSearch {
    width: 75%;
  }
}
#megaSearch button {
  background-color: #3670a5;
  border-color: #3670a5;
  margin-left: -2rem;
  /*        background-color: #ffffff;
          border-color: #5792c9;
          margin-left: -2rem;
          color: #5792c9;
          padding: 8px 16px;
          border-radius: 0 25px 25px 0;*/
}

.megaMenuButtonClose {
  border: 2px solid #ffffff;
  border-radius: 1.25rem;
  background: #5792C9;
}

/* Menu button */
#MegaMenuToggleButton-1_Toggle {
  border-radius: 1.25rem;
}

.container-nav {
  background: #5792C9;
  position: fixed;
  z-index: 10;
  display: none;
  padding: 0;
}
.container-nav.show {
  display: block;
  height: 100vh;
}
.container-nav.show#containerSearch {
  height: auto;
}

.mega-menu-content {
  background: #5792C9;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1003;
  display: none;
  padding: 0;
}
.mega-menu-content.show {
  display: block;
  overflow-y: auto;
}
.mega-menu-content.show h6, .mega-menu-content.show a {
  color: #fff;
}

.infao-header {
  position: sticky;
  top: 0;
  z-index: 4;
  transition: transform 0.3s ease-in-out;
}
.infao-header .container {
  position: relative;
}
.infao-header .container:before {
  display: block;
  content: "";
  height: 1px;
  background: #efefef;
  width: calc(100% - 1.5rem);
  position: absolute;
  bottom: -1px;
  padding: 0 12px;
}
.infao-header.sticky-top {
  background-color: #649acd !important;
  color: #fff;
  /* z-index: 4;*/
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1050; /* Ensure it's above content */
}
.infao-header.sticky-top i {
  color: #fff;
}
.infao-header.sticky-top .nav-link {
  color: #fff;
}
.infao-header.sticky-top .container:before {
  display: none;
}

/* ---- megamenu  END ---- */
/* ---- clock ---- */
div.regional-clock {
  text-align: center;
  height: 110px;
}
div.regional-clock .c-clock {
  text-decoration: none;
  min-width: 85px;
}
div.regional-clock .c-clock div {
  font-size: 0.8rem;
  line-height: 1rem;
}
div.regional-clock .c-clock div._dec-offices {
  font-size: 0.8rem;
  text-transform: uppercase;
}
div.regional-clock .c-clock a {
  color: #5792C9;
  text-decoration: none;
}
div.regional-clock .c-clock a:hover {
  color: #EC6E00 !important;
}
div.regional-clock .c-clock a ._digital_date, div.regional-clock .c-clock a:hover ._digital_date {
  color: #000 !important;
  text-decoration: none !important;
}
div.regional-clock .simplebar-content {
  display: flex;
  justify-content: space-evenly;
}
div.regional-clock .simplebar-scrollbar {
  background: #cccccc;
}

/* ---- clock END ---- */
._list-default i.bi {
  color: #15A5AB;
}

.rotate-180 {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* double check this TEMP */
.h-100c {
  height: calc(100% - 2rem) !important;
}
.h-100c.btn {
  height: calc(100% - 1rem) !important;
}

._category,
.card-category {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.025rem;
  color: #a5a5a5;
}
._infao-home ._category a,
._infao-home .card-category a {
  color: #5792C9 !important;
}
._card-media-top ._category, ._card-media-full ._category,
._card-media-top .card-category,
._card-media-full .card-category {
  color: #ffffff;
}

._list {
  display: flex;
  margin-bottom: 2.5rem;
  position: relative;
  flex-direction: column;
  /* case homepage */
  /* TEMP */
}
@media (min-width: 768px) {
  ._list {
    flex-direction: row;
  }
}
._infao-home ._list {
  background: #fff;
  padding: 2rem 2rem;
  border-radius: 1.25rem;
  margin-bottom: 3rem;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1882352941);
}
._list img {
  width: 100%;
}
._list--date, ._list--category {
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
  text-transform: uppercase;
}
._list--date .danger, ._list--category .danger {
  border: 1px solid rgba(0, 0, 0, 0.062745098);
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  right: 0;
  top: 1rem;
  position: absolute;
  color: #b10b0b;
  font-weight: 600;
}
._list--date a, ._list--category a {
  color: #5792C9;
}
._list--title a {
  color: #5792C9;
}
._list--teaser {
  font-size: 1rem;
}
@media (min-width: 768px) {
  ._list--teaser {
    font-size: 1.1rem;
  }
}
._list._list-minimal {
  /*padding-bottom: 4rem;*/
  min-height: calc(100% - 0.275rem);
  margin-bottom: 0;
}
._list._list-minimal ul {
  list-style: none;
  padding-left: 0;
  margin: 0 -2rem;
}
._list._list-minimal ul li {
  padding: 1rem 2rem;
  line-height: 1.3rem;
}
._list._list-minimal ul li:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.2);
}
._infao-home ._list._list-minimal {
  background: #5792C9;
}
._infao-home ._list._list-minimal ._category {
  text-transform: uppercase;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  position: relative;
  letter-spacing: 0.05rem;
  /* svg next to Noticeboard */
}
._infao-home ._list._list-minimal ._category a {
  color: #ffffff !important;
}
._infao-home ._list._list-minimal ._category:after {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  background-image: url("data:image/png;base64,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");
  background-size: contain;
  background-repeat: no-repeat;
  width: 105px;
  height: 24px;
  top: -0.1rem;
  right: -10px;
}
@media (min-width: 576px) {
  ._infao-home ._list._list-minimal ._category:after {
    width: 160px;
    height: 36px;
    top: -0.5rem;
  }
}
@media (min-width: 992px) {
  ._infao-home ._list._list-minimal ._category:after {
    width: 105px;
    height: 24px;
    top: -0.1rem;
  }
}
@media (min-width: 1200px) {
  ._infao-home ._list._list-minimal ._category:after {
    width: 150px;
    height: 35px;
    top: -0.5rem;
  }
}
@media (min-width: 1400px) {
  ._infao-home ._list._list-minimal ._category:after {
    width: 160px;
    height: 36px;
    top: -0.5rem;
  }
}
._infao-home ._list._list-minimal a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}
._infao-home ._list._list-minimal .list-btn {
  bottom: -2.5rem;
}
._infao-home ._list._list-minimal .list-btn a {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
}
._list._list-squared-image {
  height: calc(100% - 2.5rem);
  justify-content: space-around;
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}
._list._list-squared-image ._category {
  position: absolute;
  top: 2rem;
}
._list._list-squared-image ._list--title {
  font-size: 1.1rem;
}
._list._list-squared-image ._list--title a {
  font-weight: bold;
  color: #000;
}
._list._list-squared-image ._list--img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0.75rem;
}
._list._list-squared-image ._list--img img {
  height: 100%;
  width: auto;
}
._list._list-default ._list--title a {
  font-weight: bold;
  color: #000000;
}
._list._list-default ._list--img {
  padding-right: 0;
  padding-bottom: 0.5rem;
}
._list._list-default ._list--img img {
  border-radius: 1.25rem;
}
@media (min-width: 768px) {
  ._list._list-default ._list--img {
    padding-right: 2rem;
    padding-bottom: 0;
  }
}
._list--otherlangs a {
  margin-right: 0.75rem;
  margin-left: 0.5rem;
}
._list--otherlangs a:not(:last-of-type) {
  position: relative;
}
._list--otherlangs a:not(:last-of-type):after {
  display: block;
  content: "|";
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  position: absolute;
  right: -1.2rem;
  top: 0;
  color: #000;
}

._card-default,
._card-forum,
._card-media-full,
._card-media-top,
._card-postit,
._card-webinars,
._card-rss,
._postit {
  background: #fff;
  border-radius: 1.25rem !important;
  margin-bottom: 3rem;
}
._infao-home ._card-default,
._infao-home ._card-forum,
._infao-home ._card-media-full,
._infao-home ._card-media-top,
._infao-home ._card-postit,
._infao-home ._card-webinars,
._infao-home ._card-rss,
._infao-home ._postit {
  height: calc(100% - 2.5rem);
  border: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1882352941);
}

._infao-home ._card-default .card-text,
._infao-home ._card-forum .card-text,
._infao-home ._card-media-full .card-text,
._infao-home ._card-postit .card-text,
._infao-home ._card-webinars .card-text,
._infao-home ._card-rss .card-text,
._infao-home ._postit .card-text {
  max-height: 5rem;
  overflow: hidden;
}

._card-forum,
._card-postit,
._card-webinars,
._card-rss {
  margin-bottom: 1rem;
}

._infao-home ._card-default a,
._infao-home ._card-media-full a,
._infao-home ._card-media-top a {
  color: #000000;
}
._card-default .modal-dialog,
._card-media-full .modal-dialog,
._card-media-top .modal-dialog {
  position: relative !important;
  margin-bottom: 0;
  top: initial !important;
  left: initial !important;
}
._card-default .modal-dialog ._category a,
._card-media-full .modal-dialog ._category a,
._card-media-top .modal-dialog ._category a {
  color: #5792C9 !important;
}

.card img {
  border-radius: 1.25rem;
  max-width: 100%;
}
.card a {
  font-weight: 600;
}
._infao-home .card .card-body {
  font-size: 1.1rem;
  color: #000;
}
.card .card-body .card-title {
  margin-bottom: 1.5rem;
}
.card._card-default {
  padding: 2rem 2rem;
}
.card._card-default .card-body {
  padding: 1.5rem 0 0;
}
.card._card-media-top {
  position: relative;
}
.card._card-media-top ._category {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  z-index: 2;
}
.card._card-media-top ._category a {
  color: #ffffff !important;
}
.card._card-media-top img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 100%;
}
.card._card-media-top .card-img {
  position: relative;
}
.card._card-media-top .card-img:after {
  display: block;
  content: "";
  height: 70px;
  background: linear-gradient(0deg, transparent 10%, rgba(0, 0, 0, 0.4) 100%);
  width: 100%;
  position: absolute;
  top: 0;
  border-radius: 1rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.card._card-media-top .card-body {
  padding: 1.5rem 2.5rem;
}
.card._card-media-top._postit .card-body {
  padding: 0.5rem 1rem;
}
.card._card-media-top._postit .card-body ._card-type {
  margin-bottom: 0.5rem;
}
.card._card-media-top._postit .card-body .card-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.card._card-media-full {
  overflow: hidden;
}
.card._card-media-full .card-img-overlay {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.card._card-media-full .card-img-overlay ._category a {
  color: white;
}
.card._card-media-full .card-img-overlay .card-body {
  background: rgba(0, 0, 0, 0.5);
  margin: auto -2.5rem -2rem;
  padding: 1.5rem 2rem;
  min-height: 40%;
}
.card._card-media-full .card-img-overlay .card-body a {
  color: white;
}
.card._card-media-full .card-btn a {
  color: #fff;
}
.card._card-forum, .card._card-postit, .card._card-webinars, .card._card-rss {
  padding: 2rem 2rem;
  /*        ._category {
      margin-bottom: 2rem;
  }*/
}
.card._postit {
  background: #fef693;
  margin-bottom: 2rem;
  height: calc(100% - 2rem);
}
._infao-home .card._postit {
  background: none;
}
.card._postit .card-img:after {
  display: none;
}
.card._postit .card-img ._edit-action {
  background: rgba(49, 49, 49, 0.6901960784);
  padding: 0.5rem 0.75rem;
  border-radius: 1rem 1rem 0 0;
  height: fit-content;
  width: 100%;
  text-align: end;
}
.card._postit .card-img ._edit-action i.bi {
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0.75rem;
}
.card._postit .card-img ._edit-action i.bi:hover {
  opacity: 0.8;
}
.card._postit .card-body {
  padding: 0.75rem 1rem !important;
}
.card._postit .card-body .card-title {
  font-size: 1rem;
}
.card._postit .card-body .card-title a {
  color: #000;
}
.card._postit .card-body .card-text {
  max-height: 65px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.card._postit ._card-type {
  display: flex;
  font-size: 0.8rem;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
}
.card._postit ._card-type .card-date {
  opacity: 0.6;
}
.card._postit ._card-type i.bi {
  font-size: 1.75rem;
  line-height: 1rem;
}
.card._card-webinars {
  background: #15A5AB;
}
.card._card-webinars ._category a {
  color: #ffffff !important;
}
.card._card-webinars .card-title {
  font-size: 1rem;
}
.card._card-webinars ul {
  background: #ffffff;
  border-radius: 1rem;
  padding: 0;
  margin-right: 0;
  max-height: 415px;
}
.card._card-webinars ul li {
  padding: 1rem 1.5rem;
}
.card._card-webinars ul li:nth-child(odd) {
  background-color: rgba(21, 165, 171, 0.2);
}
.card._card-webinars .card-date {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 0.8rem;
  font-weight: 600;
  color: #15A5AB;
  margin-bottom: 0.1rem;
}
.card._card-webinars .card-time {
  font-size: 0.8rem;
  opacity: 0.7;
}
.card.card-bg {
  padding: 1rem;
  margin-bottom: 2rem;
  border: none;
  border-radius: 1.25rem;
}
.card._card-socialmedia .card-img {
  position: relative;
}
.card._card-socialmedia .card-img:before {
  background: linear-gradient(193deg, rgba(0, 0, 0, 0.45) 0, transparent 30%);
  border-radius: 1.25rem 1.25rem 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.card._card-socialmedia .card-img:after {
  display: block;
  content: "";
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: auto;
  color: #fff;
  z-index: 1;
  font-size: 2rem;
}
.card._card-socialmedia._card-x .card-img:after {
  content: "\f8db";
}
.card._card-socialmedia._card-instagram .card-img:after {
  content: "\f437";
}
.card._card-socialmedia._card-facebook .card-img:after {
  content: "\f344";
}
.card._card-socialmedia._card-linkedin .card-img:after {
  content: "\f472";
}
.card._card-socialmedia._card-tiktok .card-img:after {
  content: "\f6cc";
}
.card._card-socialmedia._card-youtube .card-img:after {
  content: "\f62b";
  background: none;
}
.card._card-socialmedia._card-flickr .card-img, .card._card-socialmedia._card-youtube .card-img {
  position: relative;
}
.card._card-socialmedia._card-flickr .card-img:before, .card._card-socialmedia._card-youtube .card-img:before {
  background: linear-gradient(180deg, rgb(0, 0, 0) 0, transparent 100%);
  height: 25%;
}
.card._card-socialmedia._card-flickr iframe {
  border-radius: 1.25rem 1.25rem 0 0;
}
.card._card-socialmedia._card-youtube .ratio {
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: hidden;
}
.card._static-card .card-category {
  font-size: 0.85rem;
  color: #a5a5a5;
  margin-bottom: 0.5rem;
}
.card._static-card .card-body {
  padding: 1.5rem;
}
.card._static-card .card-title {
  margin-bottom: 1rem;
}
.card._static-card._card-default .card-body {
  padding: 0;
  padding-top: 1.5rem;
}

/* TO BE CHECKED */
._card-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
._card-item--img {
  background: #fff;
  color: #5792C9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 2rem;
}
._card-postit ._card-item--img {
  color: #5792C9;
}
._card-postit ._card-item--img i {
  font-size: 1.75rem;
}
._card-item--img i {
  font-size: 1.25rem;
  line-height: 1rem;
}
._card-item--title {
  font-size: 1rem;
  margin-bottom: 0;
}
._card-item--date {
  font-size: 0.8rem;
}
._card-item--date i.bi {
  color: #15A5AB;
}
._card-webinars ._card-item--date {
  font-weight: 500;
  text-transform: uppercase;
}
._card-postit ._card-item--date, ._card-forum ._card-item--date, ._card-rss ._card-item--date {
  font-size: 0.8rem;
  opacity: 0.7;
}
._card-postit ._card-item--date i.bi, ._card-forum ._card-item--date i.bi, ._card-rss ._card-item--date i.bi {
  color: #ffffff;
}

.list-btn,
.card-btn,
._card-btn {
  position: absolute;
  right: 2rem;
  bottom: 0.5rem;
}
.list-btn a.btn-more,
.card-btn a.btn-more,
._card-btn a.btn-more {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
}
._card-webinars .list-btn,
._card-webinars .card-btn,
._card-webinars ._card-btn {
  right: 2.25rem;
}
._card-webinars .list-btn a,
._card-webinars .card-btn a,
._card-webinars ._card-btn a {
  color: #ffffff;
}

@media only screen and (min-width: 1200px) {
  ._detail-item {
    _margin-right: 2rem;
  }
}
._detail-item img {
  border-radius: 1.25rem;
  max-width: 100%;
}
._detail-item--img {
  border-radius: 1.25rem;
  overflow: hidden;
}
._detail-item--title {
  font-size: 2.5rem;
  font-weight: bold;
}
._detail-item--subtitle {
  font-weight: normal;
  font-size: 1.35rem;
  line-height: 1.75rem;
}
._detail-item--body {
  font-size: 1.1rem;
  line-height: 1.65rem;
}
._detail-item--body p {
  margin-bottom: 1.75rem;
}
._detail-item--body a {
  font-weight: 600;
}
._detail-item--body ._embed-video {
  border-radius: 1.25rem;
  border: 1.25rem solid #333333;
}
@media (min-width: 768px) {
  ._detail-item--body ._embed-video {
    border-radius: 1.75rem;
    border: 1.75rem solid #333333;
  }
}
._detail-item--date {
  font-weight: 600;
  font-size: 1rem;
  color: #5792C9;
  margin-bottom: 0.5rem;
  display: block;
}
._detail-item--date._date-noticeboard {
  opacity: 0;
}
._detail-item--type i.bi {
  font-size: 1.75rem;
  margin-right: 1.5rem;
  background: #fef693;
  border-radius: 50%;
  display: block;
  padding: 0.2rem 0.65rem 0.35rem;
  line-height: 1.3;
}
._detail-item--contact {
  border-radius: 1rem;
  background: #f0f0f0;
}
._detail-item--contact h6 {
  color: #454545;
  font-weight: 600;
  opacity: 0.6;
}
._detail-item--contact i.bi {
  color: #fff;
  background: #5792C9;
  padding: 0.35rem 0.65rem;
  border-radius: 50%;
}
._detail-item--more .d-flex {
  gap: 1.5rem;
}
._detail-item--tags {
  text-transform: uppercase;
}
._detail-item--more .card, ._detail-item--latest .card {
  border: none;
  margin-bottom: 2rem;
}
._detail-item--more .card .card-title, ._detail-item--latest .card .card-title {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
._detail-item--more .card .card-body, ._detail-item--latest .card .card-body {
  font-size: 0.95rem;
  padding: 0;
}
._detail-item--more .card .card-text, ._detail-item--latest .card .card-text {
  display: none;
}
._detail-item--more .card a, ._detail-item--latest .card a {
  color: #000;
}
._detail-item--more .card .tags-list, ._detail-item--latest .card .tags-list {
  text-transform: uppercase;
}
._detail-item--more .card .tags-list .btn, ._detail-item--latest .card .tags-list .btn {
  margin-bottom: 0;
}

._forum table {
  margin-top: 1rem;
}
._forum table th {
  font-size: 0.9rem;
}
._forum table tbody {
  border-top: 2px solid #dee2e6 !important;
}
._forum table td {
  padding: 1.25rem 0.5rem;
}
._forum table td h5 a {
  color: #000;
  font-weight: 600;
}
._forum table td i.bi {
  font-size: 1.25rem;
}

.thread-detail blockquote,
._detail-item blockquote {
  border-left: 2px solid #DBDBDB;
  padding-left: 1.5rem !important;
  font-style: italic;
  margin: 0.5rem 0 0.5rem 0rem;
  color: #c0c0c0 !important;
  font-size: 0.775rem;
  font-weight: normal;
  padding: 0;
}
.thread-detail blockquote span,
._detail-item blockquote span {
  color: #c0c0c0 !important;
  background: none !important;
  font-family: "Poppins" !important;
}
.thread-detail blockquote:first-child,
._detail-item blockquote:first-child {
  margin-bottom: 1.5rem;
}
.thread-detail blockquote p,
._detail-item blockquote p {
  margin: 0;
}
.thread-detail .replyTo,
._detail-item .replyTo {
  background: rgba(0, 0, 0, 0.03);
}
.thread-detail .replyTo .post-title,
._detail-item .replyTo .post-title {
  font-weight: 600;
  font-size: 0.8rem;
}
.thread-detail .replyTo .post-content,
._detail-item .replyTo .post-content {
  font-size: 0.775rem;
  border-left: 2px solid #dbdbdb;
  padding-left: 1.5rem !important;
}
.thread-detail .replies .card,
._detail-item .replies .card {
  border: none;
}
.thread-detail .replies .card .card-header,
._detail-item .replies .card .card-header {
  border-radius: 1rem 1rem 0 0;
  background-color: #F2F2F2 !important;
  border: 1px solid #e0e0e0;
}
.thread-detail .replies .card .card-body,
._detail-item .replies .card .card-body {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
}
.thread-detail .replies .card .card-footer,
._detail-item .replies .card .card-footer {
  background: #fff;
  border-top: none;
}
.thread-detail .replies ._reply-header,
._detail-item .replies ._reply-header {
  display: flex;
  align-items: center;
}
.thread-detail .replies ._reply-header i.bi,
._detail-item .replies ._reply-header i.bi {
  font-size: 3rem;
  color: #e3e3e3;
  line-height: 2rem;
}
.thread-detail .replies ._reply-header h6,
._detail-item .replies ._reply-header h6 {
  margin-bottom: 0;
  font-weight: 600;
}
.thread-detail .replies ._reply-header .edit-icon i,
._detail-item .replies ._reply-header .edit-icon i {
  cursor: pointer;
  font-size: 1.2rem;
  color: #2fa0cb;
}
.thread-detail .replies ._reply-header--date,
._detail-item .replies ._reply-header--date {
  font-size: 0.85rem;
  color: #c0c0c0;
}
.thread-detail .replies ._reply-header--edit,
._detail-item .replies ._reply-header--edit {
  position: absolute;
  right: 0;
}
.thread-detail .replies ._reply-header--edit a:hover i,
._detail-item .replies ._reply-header--edit a:hover i {
  color: #000;
}
.thread-detail .replies ._reply-body,
._detail-item .replies ._reply-body {
  border-left: 2px solid #DBDBDB;
  padding-left: 2.25rem !important;
  margin: 0.5rem 0 0.5rem 1.65rem;
  font-weight: normal;
  padding: 0;
}
.thread-detail .replies ._reply-footer .btn,
._detail-item .replies ._reply-footer .btn {
  padding: 0.5rem;
  border-radius: 2rem;
  margin-left: 0.4rem;
}
.thread-detail .replies ._reply-footer .btn i,
._detail-item .replies ._reply-footer .btn i {
  margin-right: 0;
  color: #5792C9;
}
.thread-detail #commentContent,
._detail-item #commentContent {
  padding: 1rem 1.5rem;
}
.thread-detail .disable-panel,
._detail-item .disable-panel {
  background: rgba(255, 255, 255, 0.3);
  z-index: 10000;
}

.my-postit-widget {
  min-height: 3rem;
}

.postit-edit-modal.k-window-content {
  overflow-x: hidden;
}

/* fix Homepage */
._card-home {
  height: calc(100% - 2rem);
  /*        .card-body {
          padding: 0;
      }*/
}
._card-home._calendar .btn {
  width: 100%;
  align-items: center;
  justify-content: start;
  background-color: #E5EEF6;
  border-color: #E5EEF6;
  color: #000;
  position: relative;
  text-align: left;
  padding: 1.5rem 1.25rem 1rem;
  font-size: 1rem;
  line-height: 1.3;
}
._card-home._calendar .btn:before {
  display: block;
  content: "";
  border-top: 0.8rem solid #5792C9;
  border-radius: 1.25rem 1.25rem 0 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
._card-home._calendar .btn:hover {
  background-color: #E5EEF6;
  border-color: #E5EEF6;
  color: #5792C9;
}
._card-home._calendar .btn.btn-orange:before {
  border-color: #F49E14;
}
._card-home._communications ._socialmedia {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
._card-home._communications ._socialmedia a {
  color: #274867;
}
._card-home._communications ._socialmedia .bi {
  font-size: 2.25rem;
  padding: 0rem 1.5rem;
}
@media (min-width: 1200px) {
  ._card-home._communications ._socialmedia .bi {
    padding: 0.5rem 1rem;
  }
}
._card-home._quotes .card-bg .card-body {
  padding: 0 1.5rem;
}
._card-home._quotes .card-bg h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
._card-home._quotes .bi {
  font-size: 3rem;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 1;
}
._card-home._quick-access .btn {
  width: 100%;
  align-items: center;
  justify-content: start;
  font-size: 1rem;
}

.send-mail-button-wrapper {
  background-color: #5792C9;
}
.send-mail-button-wrapper > div {
  max-width: 800px;
}

/* FAO login form */
.my-webinars-widget .card {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
}
.my-webinars-widget .card .card-img img {
  border-radius: 0 !important;
  height: 170px;
  object-fit: cover;
}
.my-webinars-widget .card .card-img ._edit-action {
  background: rgba(49, 49, 49, 0.6901960784);
  padding: 0.5rem 0.75rem;
  border-radius: 1rem 1rem 0 0;
  height: fit-content;
  width: 100%;
  text-align: end;
}
.my-webinars-widget .card .card-img ._edit-action i.bi {
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0.75rem;
}
.my-webinars-widget .card .card-img ._edit-action i.bi:hover {
  opacity: 0.8;
}
.my-webinars-widget .modal-edit-webinar {
  --bs-modal-width: 70%;
}

.alert-message {
  color: #965a00 !important;
  background: rgba(253, 227, 179, 0.2);
  display: block;
  padding: 1rem;
}
.alert-message.alert-small {
  font-size: 0.8rem;
}

.hero-banner .hero-banner-video,
.hero-banner .hero-banner-img {
  /*        width: 100%;*/
  border-radius: 1.25rem;
}
.hero-banner .hero-caption {
  border-radius: 1.25rem;
  /*        @media (min-width: $breakpoint-md) {
              bottom: 1.5rem;
          }

          .title-category {
              text-transform: uppercase;
              font-size: .85rem;
              opacity: .75;
              margin-bottom: .25rem;
          }

          .title-category, .hero-text {
              display: none;

              @media (min-width: $breakpoint-md) {
                  display: block;
              }
          }*/
}
