@import url(https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap);
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: cover;
}

.close-icon {
  background-image: url("../images/close-icon.svg");
}

.close-white-icon {
  background-image: url("../images/close-white-icon.svg");
}

.circle-check-white-icon {
  background-image: url("../images/circle-check-white-icon.svg");
}

.circle-close-white-icon {
  background-image: url("../images/circle-close-white-icon.svg");
}

.circle-info-white-icon {
  background-image: url("../images/circle-info-white-icon.svg");
}

.help-icon {
  background-image: url("../images/question.svg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a,
a:link {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: nowrap;
}

.content-wrap {
  flex: 1;
  margin-bottom: 50px;
}

.container {
  margin: 0 7.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.background {
  background: #FAFAF3;
}

.description {
  text-align: justify;
}

.dropdown {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 12px;
  border-radius: 8px;
  background: #FFFFFF;
  color: #00549C;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.dropdown:hover {
  background-color: #bee0ff;
}
.dropdown:active {
  background-color: #000000;
  color: #FFFFFF;
}
.dropdown .dropdown-toggle {
  display: flex;
  gap: 10px;
  text-transform: capitalize;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.dropdown .dropdown-toggle img {
  width: 20px;
}
.dropdown .dropdown-menu {
  position: absolute;
  width: 60px;
  padding: 3px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: -2px;
  top: 50px;
  z-index: 50;
}
.dropdown .dropdown-menu .dropdown-item {
  display: flex;
  gap: 10px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #1D2220;
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 8px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 1px 14px rgba(0, 105, 62, 0.12);
  transition: all 0.3s ease 0s;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #bee0ff;
}
.dropdown .dropdown-menu .dropdown-item:active {
  background-color: #000000;
  color: #FFFFFF;
}
.dropdown .dropdown-menu .dropdown-item img {
  width: 20px;
}

button {
  cursor: pointer;
}

.navbar {
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 5;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 50px;
}
.navbar .dropdown-toggle {
  cursor: pointer;
  border-radius: 8px;
}
.navbar .nav-container {
  margin: 0 7.5%;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.navbar .navbar-top-constrast-line {
  background-color: #00549C;
  left: 0;
  right: 0;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  display: flex;
  padding: 6px 0;
}
.navbar .navbar-top-constrast-line .right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.navbar .navbar-top-constrast-line .right .user-profile {
  color: #FFFFFF !important;
}
.navbar .navbar-top-constrast-line .right .logout-btn {
  display: flex;
}
.navbar .navbar-top-constrast-line .right .dropdown {
  position: relative;
  height: 20px;
  background: #00549C;
  color: #FFFFFF;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navbar .navbar-top-constrast-line .right .dropdown:hover {
  color: #00549C;
  background-color: #FFFFFF;
}
.navbar .navbar-top-constrast-line .right .dropdown:hover.profile-dropdown {
  color: inherit;
  background-color: transparent;
}
.navbar .navbar-top-constrast-line .right .dropdown .dropdown-toggle img {
  width: 20px;
}
.navbar .navbar-top-constrast-line .right .dropdown .dropdown-menu {
  background-color: #FFFFFF;
  position: absolute;
  width: 47px;
  border: 1px #f1f5f9 solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  left: 0;
  top: 28px;
  z-index: 50;
  border-radius: 8px;
}
.navbar .navbar-top-constrast-line .right .dropdown .dropdown-menu .dropdown-item {
  height: 20px;
  flex: none;
  padding: 12px 0;
}
.navbar .navbar-top-constrast-line .right .profile-info {
  display: flex;
  gap: 10px;
  text-align: left;
  position: relative;
  cursor: pointer;
}
.navbar .navbar-top-constrast-line .right .profile-info .auth {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.navbar .navbar-top-constrast-line .right .profile-info .avatar {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 43px;
  background-color: #FFFFFF;
  border: 1px solid #00549C;
  vertical-align: middle;
  text-align: center;
  margin-right: 10px;
  overflow: hidden;
}
.navbar .navbar-top-constrast-line .right .profile-info .avatar img {
  width: 40px;
  height: 40px;
}
.navbar .navbar-top-constrast-line .right .profile-info .avatar .icon {
  margin-top: 8px;
}
.navbar .navbar-top-constrast-line .right .profile-info .info {
  display: inline-block;
  vertical-align: middle;
  min-width: 50px;
  font-size: 16px;
  line-height: 20px;
}
.navbar .navbar-top-constrast-line .right .profile-info .info .user {
  display: block;
}
.navbar .navbar-top-constrast-line .right .profile-info .icon.ellipsis-icon {
  width: 30px !important;
  height: 30px !important;
  vertical-align: middle;
}
.navbar .navbar-top-constrast-line .right .profile-info .dropdown-list {
  top: 30px;
  right: -15;
  bottom: unset;
}
.navbar .navbar-top-constrast-line .right .profile-info .dropdown-list .app-version {
  padding: 8px 12px;
  display: block;
  cursor: default;
  color: #a2a2a2;
  font-size: 18px;
  border-bottom: 1px solid #C1C2C3;
}
.navbar .navbar-top {
  height: 120px;
  background-color: #FFFFFF;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .navbar-top .navbar-top-left {
  width: 30%;
  height: 80px;
  display: flex;
  align-items: center;
}
.navbar .navbar-top .navbar-top-left .brand-logo a {
  height: 100%;
  display: flex;
}
.navbar .navbar-top .navbar-top-left .brand-logo a img {
  max-width: none;
  height: 100px;
}
.navbar .navbar-top .navbar-top-center h1 {
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  line-height: normal;
}
.navbar .navbar-top .navbar-top-right {
  height: 80px;
  padding: 10px;
  text-align: right;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}
.navbar .navbar-top .navbar-top-right .menu {
  display: flex;
  gap: 10px;
}
.navbar .navbar-top .navbar-top-right .menu .menu-item {
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  padding: 10px 12px;
  border-radius: 8px;
  transition: 0.3s all ease;
}
.navbar .navbar-top .navbar-top-right .menu .menu-item.active {
  color: white;
  background-color: #00549C;
}
.navbar .navbar-top .navbar-top-right .menu .menu-item:hover {
  background-color: #CCDDEB;
}

.page {
  padding-top: 20px;
  padding-bottom: 20px;
}

.homepage {
  flex-direction: column;
}
.homepage .search, .homepage .search-page {
  width: 100%;
}
.homepage .search-title, .homepage .search-page-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 1.5em;
}
.homepage .search-form, .homepage .search-page-form {
  width: 100%;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.homepage .search-form form, .homepage .search-form .form, .homepage .search-page-form form, .homepage .search-page-form .form {
  width: 100%;
  display: flex;
  gap: 20px;
}
.homepage .search-form form .search-form-bar, .homepage .search-form .form .search-form-bar, .homepage .search-page-form form .search-form-bar, .homepage .search-page-form .form .search-form-bar {
  width: 100%;
  position: relative;
}
.homepage .search-form form .search-form-bar input, .homepage .search-form form .search-form-bar select, .homepage .search-form .form .search-form-bar input, .homepage .search-form .form .search-form-bar select, .homepage .search-page-form form .search-form-bar input, .homepage .search-page-form form .search-form-bar select, .homepage .search-page-form .form .search-form-bar input, .homepage .search-page-form .form .search-form-bar select {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  transition: 0.3s all ease;
}
.homepage .search-form form .search-form-bar input:hover, .homepage .search-form form .search-form-bar select:hover, .homepage .search-form .form .search-form-bar input:hover, .homepage .search-form .form .search-form-bar select:hover, .homepage .search-page-form form .search-form-bar input:hover, .homepage .search-page-form form .search-form-bar select:hover, .homepage .search-page-form .form .search-form-bar input:hover, .homepage .search-page-form .form .search-form-bar select:hover {
  background-color: #EEEEEE;
}
.homepage .search-form form .search-form-bar input, .homepage .search-form .form .search-form-bar input, .homepage .search-page-form form .search-form-bar input, .homepage .search-page-form .form .search-form-bar input {
  height: 100%;
}
.homepage .search-form form .search-form-bar .search-icon, .homepage .search-form .form .search-form-bar .search-icon, .homepage .search-page-form form .search-form-bar .search-icon, .homepage .search-page-form .form .search-form-bar .search-icon {
  position: absolute;
  right: 12px;
  top: 10px;
}
.homepage .search-form form button, .homepage .search-form .form button, .homepage .search-page-form form button, .homepage .search-page-form .form button {
  white-space: nowrap;
  padding: 12px;
  border: 1px solid #00549C;
  background-color: #00549C;
  color: #FFFFFF;
  border-radius: 8px;
  transition: 0.3s all ease;
  display: flex;
  gap: 8px;
}
.homepage .search-form form button:hover, .homepage .search-form .form button:hover, .homepage .search-page-form form button:hover, .homepage .search-page-form .form button:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.homepage .search-form form button:hover svg path, .homepage .search-form .form button:hover svg path, .homepage .search-page-form form button:hover svg path, .homepage .search-page-form .form button:hover svg path {
  fill: #000000;
}
.homepage .search-form .control, .homepage .search-page-form .control {
  display: flex;
  gap: 20px;
}
.homepage .search-form .control .search-btn, .homepage .search-page-form .control .search-btn {
  padding: 10px 30px;
  border-radius: 8px;
  color: #FFFFFF;
  border: none;
}
.homepage .search-form .control .search-btn.blue, .homepage .search-page-form .control .search-btn.blue {
  background-color: #00549C;
}
.homepage .search-form .control .search-btn.red, .homepage .search-page-form .control .search-btn.red {
  background-color: #E85600;
}
.homepage .search .no-data, .homepage .search-page .no-data {
  width: 100%;
  margin: 100px 0;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #e3e3e3;
}
.homepage .projects-table .follow-icon {
  width: 100px;
}
.homepage .projects {
  width: 100%;
}
.homepage .projects .tabs {
  margin-top: 40px;
  margin-block-end: 20px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.homepage .projects .tabs-header {
  display: flex;
  width: 50%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.homepage .projects .tabs-header li {
  flex: 1 1 180px;
  max-width: 180px;
  min-width: 100px;
  height: 48px;
  text-align: center;
  padding: 9px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s all ease;
  background-color: #FFFFFF;
  border: 1px solid #00549C;
  color: black;
}
.homepage .projects .tabs-header li:hover {
  background-color: #e0e0e0;
}
.homepage .projects .tabs-header li:first-child {
  border-radius: 8px 0 0 0;
}
.homepage .projects .tabs-header li:last-child {
  border-radius: 0 8px 0 0;
}
.homepage .projects .tabs-selected {
  background-color: #00549C !important;
  color: #FFFFFF !important;
}
.homepage .projects .tabs .tabs-header li.tabs-selected {
  position: relative;
}
.homepage .projects .tabs .tabs-header li.tabs-selected::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 20%;
  width: 60%;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 4px 4px 0 0;
}
.homepage .projects .tabs-content {
  border-top: 20px solid #00549C;
  border-radius: 0 8px 0 0;
}
.homepage .projects-table {
  width: 100%;
  border-collapse: collapse;
}
.homepage .projects-table tr {
  cursor: pointer;
  transition: 0.3s all ease;
}
.homepage .projects-table tr:hover {
  background-color: #EEEEEE;
}
.homepage .projects-table td {
  padding: 0 20px;
}
.homepage .projects-table td.description {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 20px;
}
.homepage .projects-table td.description .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.homepage .projects-table td.follow {
  width: 20%;
  text-align: center;
}
.homepage .projects-table td.follow a {
  display: inline-block;
  padding: 10px 20px;
  color: rgb(13, 110, 253);
}
.homepage .projects-table td.date {
  width: 20%;
}
.homepage .watch-all button {
  background-color: #00549C;
  color: white;
  width: 115px;
  height: 34px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homepage .watch-all button:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #00549C;
}

.map .map-container {
  position: relative;
  z-index: 1;
  height: calc(60vh + 10px);
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.map .map-container #map {
  height: calc(60vh + 10px);
}
.map .map-container .details ul {
  list-style-type: none;
}
.map .modal-lg {
  width: 80%;
  margin-left: -40%;
  height: 80vh;
}
.map .modal-lg #map {
  height: calc(80vh - 60px) !important;
}
.map .modal-lg .bottom-actions {
  margin-top: 0 !important;
}
.map .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.map .loading-overlay .loading-spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.map .legend {
  width: 100%;
  display: flex;
}
.map .legend-title {
  margin-right: 5px;
}
.map .legend-body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.map .legend-body-element {
  display: flex;
  align-items: center;
  gap: 5px;
}
.map .legend-body-element .square {
  width: 16px;
  height: 16px;
}
.map .legend-body-element .project {
  border: 2px solid black;
  background-color: rgba(0, 0, 0, 0.2);
}
.map .legend-body-element .public {
  border: 2px solid #008000;
  background-color: rgba(0, 128, 0, 0.2);
}
.map .legend-body-element .cancelled {
  border: 2px solid #E85600;
  background-color: rgba(232, 86, 0, 0.2);
}
.map .legend-body-element .finished {
  border: 2px solid #00549C;
  background-color: rgba(0, 84, 156, 0.2);
}

.burger-button {
  position: absolute;
  top: 10px;
  z-index: 9999;
  background-color: #ffffff;
  color: #00549c;
  border: 1px solid #8f8e8e;
  border-radius: 8px;
  padding: 10px 10px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.burger-button img {
  width: 20px;
  height: 20px;
}
.burger-button .icon-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.burger-button.top-right {
  right: 15px;
}
.burger-button.active {
  border: none;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: start;
  padding: 40px 7.4vw;
  box-sizing: border-box;
}
.about-text-content-about {
  flex: 1 1 400px;
  max-width: 800px;
  color: #201F1E;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text-content-about h2, .about-text-content-about h3, .about-text-content-about h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  text-align: left;
}
.about-text-content-about p {
  margin: 0;
}
.about-image-container-about {
  flex: 1 1 400px;
  width: 100%;
}
.about-image-container-about img {
  width: 97%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
@media (max-width: 768px) {
  .about .about {
    flex-direction: column;
    padding: 20px 4vw;
    gap: 24px;
  }
  .about .about-text-content-about, .about .about-image-container-about {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }
  .about .about-text-content-about {
    font-size: 15px;
    gap: 16px;
  }
  .about .about-text-content-about-title-about {
    font-size: 20px;
    text-align: left;
  }
  .about .about-image-container-about img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.contact-info {
  max-width: 550px;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.9;
  padding-top: 30px;
}
.contact-info p {
  margin: 4px 0;
}
.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-info .contact-item img {
  width: 16px;
  height: auto;
}
.contact-info .contact-item a {
  color: #00549C;
  text-decoration: none;
  font-weight: 500;
}
.contact-info .contact-item a:hover {
  text-decoration: underline;
}
.contact .feedback-form {
  max-width: 1200px;
  margin: 0 auto;
  width: 45%;
}
.contact .feedback-form h2 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact .feedback-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact .feedback-form form .form-group {
  display: flex;
  gap: 10px;
}
.contact .feedback-form form input, .contact .feedback-form form textarea {
  width: 100%;
  gap: 8px;
  padding: 12px;
  border: 1px solid black;
  border-radius: 8px;
  font-size: 14px;
}
.contact .feedback-form form textarea {
  height: 100px;
  resize: none;
}
.contact .feedback-form form button {
  display: inline-block;
  border: 2px solid #00549C;
  background: #00549C;
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}
.contact .feedback-form form button:hover {
  background: white;
  color: #00549C;
}
@media (max-width: 768px) {
  .contact {
    flex-direction: column;
    padding: 0 16px;
  }
  .contact-info,
  .contact .feedback-form {
    width: 100%;
  }
  .contact .feedback-form {
    margin-top: 20px;
  }
  .contact .feedback-form form .form-group {
    flex-direction: column;
    gap: 8px;
  }
  .contact .feedback-form form input,
  .contact .feedback-form form textarea {
    font-size: 16px;
    padding: 10px;
  }
  .contact .feedback-form form button {
    align-self: center;
    width: 100%;
    text-align: center;
  }
}

.development-block {
  text-align: center;
  padding: 50px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  margin: 20px auto;
  max-width: 600px;
}
.development-block .title {
  font-size: 24px;
  color: #343a40;
  margin-bottom: 10px;
}
.development-block .description {
  font-size: 16px;
  color: #6c757d;
  text-align: center;
}

.btn-primary {
  background-color: #fff;
  color: #000000;
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid #00549C;
  font-size: 16px;
  transition: 0.25s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #00549C;
}

.btn-blue {
  transition: 0.25s;
  background-color: #00549C;
  color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #00549C;
  padding: 5px 20px;
  font-size: 16px;
  cursor: pointer;
}

.btn-blue:hover {
  color: #00549C;
  background-color: #fff;
}

.btn-orange {
  background-color: #E85600;
  color: #FFFFFF !important;
  border-radius: 4px;
  border: 1px solid #E85600;
  padding: 5px 20px;
  font-size: 16px;
  cursor: pointer;
}

.btn-burger {
  background: #00549C;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  padding: 13px;
  display: inline-block;
  transition: all 0.3s ease 0s;
  border: none;
}

.text-editor p {
  margin: 0;
}
.text-editor p + p {
  margin-top: 1em;
  margin-bottom: 1em;
}
.text-editor p:not(:last-child) {
  margin-bottom: 1em;
}

.pagination-controls {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pagination-controls .results-count {
  background-color: #00549C;
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 8px;
}
.pagination-controls .per-page select {
  border-radius: 8px;
  padding: 3px;
}

.cancelation_gap {
  padding-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.accordion {
  width: 100%;
  margin: 20px auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f8f8f8;
}
.accordion .accordion-header {
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
  color: #0056b3;
}
.open .accordion .accordion-header {
  color: #000;
}
.accordion .accordion-header-red {
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
  color: #FF3B30;
}
.open .accordion .accordion-header-red {
  color: #FF3B30;
}
.accordion .accordion-content {
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.accordion.open .accordion-header {
  background-color: #ffffff;
  color: #000;
}
.accordion.open .accordion-content {
  padding: 0px 20px;
  opacity: 1;
}

.details-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.details-header-flex h2.dossier-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
.details-header-flex .subscribe-button-wrapper {
  margin-left: auto;
}
.details-header-flex .subscribe-button-wrapper .subscribe-link {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.details-header-flex .subscribe-button-wrapper .subscribe-link:hover {
  text-decoration: underline;
}

.dossier-info .info-line {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4px;
}
.dossier-info .info-line strong {
  white-space: nowrap;
  display: inline-block;
}
.dossier-info .info-line.autoritate strong {
  min-width: 60px;
}
.dossier-info .info-line.domeniu strong {
  min-width: 75px;
}
.dossier-info .info-line.cuvinte-cheie strong {
  min-width: 110px;
}

.project {
  flex-direction: column;
}
.project .timeline-container {
  display: flex;
  width: calc(100% - 50px);
  height: 50px;
  border-radius: 8px;
  margin-bottom: 50px;
  align-items: center;
}
.project .timeline-container .single {
  width: 100% !important;
}
@media (max-width: 768px) {
  .project .timeline-container {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
}
.project .timeline-container .stage {
  display: flex;
  height: 25px;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  flex-shrink: 0;
  color: transparent;
  background-color: #d6d6d6;
  border: 4px solid #d6d6d6;
}
.project .timeline-container .stage.past {
  background-color: #00549C;
}
.project .timeline-container .stage.expanded {
  z-index: 1;
  color: black;
}
.project .timeline-container .stage.expanded.past {
  color: white;
  background-color: #00549C;
}
.project .timeline-container .stage:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .project .timeline-container .stage {
    color: black;
    height: 150px !important;
    width: 15px !important;
  }
}
.project .timeline-container .stage-number {
  z-index: 2;
  position: absolute;
  left: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #00549C;
  color: white;
  border: 4px solid #d6d6d6;
}
@media (max-width: 768px) {
  .project .timeline-container .stage-number {
    left: -22px;
    top: -25px;
  }
}
.project .timeline-container .final-stage-number {
  left: auto;
  right: -25px;
}
@media (max-width: 768px) {
  .project .timeline-container .final-stage-number {
    top: auto;
    bottom: -25px;
    left: -22px;
  }
}
.project .timeline-container .stage-content {
  text-align: center;
  font-size: 12px;
  padding: 0 5px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}
.project .timeline-container .stage-dates {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 5px;
  color: #404040;
}
@media (max-width: 768px) {
  .project .timeline-container .stage-dates {
    top: -25px;
    left: 25px;
    align-items: flex-start;
  }
}
.project .timeline-container .progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #00549C;
  border-radius: 0 16px 16px 0;
}
@media (max-width: 768px) {
  .project .timeline-container .progress-bar {
    width: 7px;
    border-radius: 0 0 3px 3px;
  }
}
.project .details-block {
  width: 100%;
  padding: 15px;
  background-color: #f8f8f8;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  color: #333;
}
.project .details-block .details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.project .details-block .details-header h2 {
  font-size: 20px;
  font-weight: bold;
}
.project .details-block .details-header .follow-link {
  text-decoration: none;
  color: #0066cc;
  font-size: 14px;
}
.project .details-block .details-header .follow-link:hover {
  text-decoration: underline;
}
.project .details-block .details-content p {
  margin: 5px 0;
  display: flex;
  align-items: center;
}
.project .details-block .details-content p img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.project .details-block .details-content .views {
  display: flex;
  align-items: center;
}
.project .details-block .details-content .map {
  display: flex;
  align-items: center;
  gap: 6px;
}
.project .details-block .details-content .map a {
  display: inline-flex;
  align-items: center;
}
.project .details-block .details-content .map a:hover {
  opacity: 0.7;
}

.stage-dates {
  display: flex;
  align-items: center;
  gap: 5px;
}
.stage-dates img {
  width: 24px;
  height: 24px;
}

.responsibles-list {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.responsibles-list img {
  width: 24px;
  height: 24px;
  margin-top: 6px;
}

.table-responsibles {
  width: 100%;
  border-collapse: collapse;
}
.table-responsibles td {
  padding: 5px 10px;
  min-width: 150px;
  vertical-align: middle;
}
.table-responsibles a {
  color: #0066cc;
  text-decoration: none;
}
.table-responsibles a:hover {
  text-decoration: underline;
}

.table-documents {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.table-documents thead {
  background-color: #f5f5f5;
  font-weight: bold;
}
.table-documents th, .table-documents td {
  padding: 10px;
  border: none;
  text-align: left;
}
.table-documents th {
  font-weight: bold;
}
.table-documents th:last-child {
  text-align: center;
}
.table-documents td.download-file {
  text-align: center;
}
.table-documents .download-file {
  text-align: center;
}
.table-documents .download-file a img {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.section-divider {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 20px 0;
}

.docs-title {
  color: #0056b3;
  font-weight: bold;
  margin-bottom: 10px;
}

.no-documents {
  text-align: center;
  vertical-align: middle;
  font-style: italic;
  color: #777;
  font-size: 14px;
  font-weight: normal;
}

.recommendations-container {
  margin-top: 20px;
  padding: 15px;
  background: #ffffff;
  border-radius: 8px;
}

.recommendations-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.recommendations-title {
  font-size: 16px;
  font-weight: bold;
  color: #00549C;
}

.recommendation-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 8px;
}

.recommendation-header {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  gap: 30px;
}

.recommendation-text {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}

.recommendations-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.date-recom {
  color: #656565;
  font-size: 14px;
}

.btn {
  padding: 0 15px;
  height: 32px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  width: auto;
  text-align: center;
  gap: 6px;
}

.btn-primary {
  background-color: #00549C;
  color: white;
}

.btn-secondary {
  background-color: #00549C;
  color: white !important;
}

.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.8;
}

.btn-recommendation-link {
  padding: 0 15px;
  height: 32px;
  width: 210px;
  border-radius: 8px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-recommendation-link img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.small-modal {
  max-width: 800px !important;
  width: 60%;
  margin: auto;
  background: #F3F4F6;
  border-radius: 8px;
  padding: 0;
  flex-direction: column;
}
.small-modal .modal-header {
  font-size: 18px;
  font-weight: bold;
  padding: 12px 15px;
  border: 1px solid transparent;
  border-bottom: 1px solid #ddd;
  text-align: left;
  background: #F0F0F0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.small-modal .modal-body {
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.small-modal .tox-tinymce {
  width: 100% !important;
  min-height: 200px !important;
  max-height: 150px;
  border-radius: 8px !important;
}
.small-modal .modal-btns {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
}
.small-modal .modal-btns button {
  min-width: 90px;
  padding: 5px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid transparent;
  transition: all 0.5s ease-in-out;
}
.small-modal .modal-btns .save-btn {
  background-color: #00549C;
  color: white;
  border: 1px solid #00549C;
}
.small-modal .modal-btns .save-btn:hover {
  background-color: transparent;
  color: black;
}
.small-modal .modal-btns .cancel-btn {
  background-color: #dc3545;
  color: white;
  border: 1px solid #dc3545;
}
.small-modal .modal-btns .cancel-btn:hover {
  background-color: transparent;
  color: black;
}

.recommendations-page {
  max-width: 100%;
  padding: 30px 150px 50px 150px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recommendations-page .card {
  width: 100%;
  border-radius: 8px;
  border: #D5D5D5 solid 1px;
  background-color: #fff;
  overflow: hidden;
}
.recommendations-page .card .recommendations-header {
  padding: 1rem 1.5rem;
  border-top: none;
  border-bottom: 0px solid #dee2e6;
  background-color: #fff;
}
.recommendations-page .card .recommendations-header .recommendations-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0056b3;
  margin: 0;
}
.recommendations-page .card .recommendations-header .btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #0056b3;
  color: #fff;
  padding: 0 15px;
  height: 32px;
  width: auto;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  line-height: 1;
  box-sizing: border-box;
}
.recommendations-page .card .recommendations-header .btn-back:hover {
  background-color: #004999;
}
.recommendations-page .card .card-body {
  padding: 1.5rem;
}
.recommendations-page .card .card-body .recommendation-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}
.recommendations-page .card .card-body .recommendation-item:last-child {
  border-bottom: none;
}
.recommendations-page .card .card-body .recommendation-item .recommendation-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.recommendations-page .card .card-body .recommendation-item .recommendation-meta .author {
  font-weight: 600;
}
.recommendations-page .card .card-body .recommendation-item .recommendation-meta .date {
  font-size: 0.875rem;
  color: #6c757d;
}
.recommendations-page .card .card-body .recommendation-item .message {
  margin: 0;
  line-height: 1.5;
}
.recommendations-page .card .card-body .no-recommendations {
  color: #6c757d;
  font-style: italic;
}

.loading-indicator {
  width: 100%;
  margin: 100px 0;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #00549C;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.pagination button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0.5em 1em;
}
.pagination button:disabled {
  cursor: auto;
}
.pagination button.active {
  background-color: #00549C;
  border-radius: 8px;
  color: #FFFFFF;
  cursor: auto;
}

footer {
  background-color: #00549C;
  color: #FFFFFF;
}
footer .footer {
  padding: 15px 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
footer .footer-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  line-height: 16px;
}
footer .footer-block-name {
  font-weight: 600;
  text-decoration: underline;
  text-transform: uppercase;
}
footer .footer-block-item {
  font-weight: 400;
}
footer .footer .logo-block {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 16px;
  align-self: stretch;
  justify-content: space-between;
}
footer .footer .logo-block .logo-container {
  margin-bottom: 50px;
}
footer .footer .logo-block .bottom .developed {
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.4px;
}
footer .footer .logo-block .bottom .developed span {
  color: #EE6D60;
  font-weight: 500;
}
footer .footer .logo-block .bottom .copyright {
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

#modal-body .feedback {
  background-image: none;
  padding: 0;
}

nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
nav .pagination {
  display: flex;
  gap: 10px;
}
nav .pagination li {
  display: flex;
}
nav .pagination li.active span,
nav .pagination li a.page-link,
nav .pagination li span.page-link {
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 43px;
  font-weight: 500;
}
nav .pagination li.active span {
  background-color: #00549C;
  color: #FFFFFF;
  border-color: #00549C;
}
nav .pagination li.disabled span.page-link {
  color: #dadada;
  border-color: #dadada;
  cursor: default;
}
nav .pagination li.prev a,
nav .pagination li.prev span, nav .pagination li.next a,
nav .pagination li.next span {
  border: none;
  background: none;
  padding: 0;
  min-width: auto;
  height: auto;
  color: #000;
  font-weight: 500;
}
nav .pagination li.prev.disabled span, nav .pagination li.next.disabled span {
  color: #dadada;
  cursor: default;
}

@media (max-width: 600px) {
  footer .footer {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1180px) {
  .navbar .navbar-top-constrast-line .right {
    gap: 20px;
    align-items: center;
    display: none;
  }
  .container {
    padding: 30px;
    margin: 0;
    flex-direction: column;
  }
  .dropdown {
    width: 45px !important;
  }
  .dropdown .dropdown-menu {
    width: 50px !important;
  }
}
modal {
  display: none;
}

.modal-overlay {
  display: none;
  overflow-y: auto;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(4px) saturate(180%);
  -webkit-backdrop-filter: blur(4px) saturate(180%);
}

.modal-container {
  background: #FFFFFF;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 800px;
  max-height: 90vh;
  z-index: 15;
  overflow-y: auto;
  overflow-x: hidden;
  animation: jelly 0.5s ease-in-out;
  border-radius: 12px;
  border: 1px solid #F5F5F5;
}
.modal-container::-webkit-scrollbar {
  width: 10px;
}
.modal-container::-webkit-scrollbar-track {
  border-radius: 12px;
  background-color: #FFF;
}
.modal-container::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background-color: #CBCBCB;
  outline: 2px solid #FFF;
  outline-offset: -2px;
  border: 0.1px solid #B7B7B7;
}
.modal-container::-webkit-scrollbar-thumb:hover {
  background-color: #909090;
}
.modal-container {
  scrollbar-width: thin;
  scrollbar-color: #CBCBCB transparent;
}
.modal-container .modal-body {
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
}
.modal-container .modal-body .modal-title {
  width: 100%;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.modal-container .modal-body .modal-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100px;
  width: calc(100% + 200px);
  height: 1px;
  background-color: #E5E5E5;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal-overlay {
  display: block;
}

.alert-danger {
  color: #FF4D50;
  font-size: 0.9em;
}

.alert-wrapper {
  width: 100%;
  bottom: 10px;
  right: 10px;
  position: fixed;
  z-index: 100;
}
.alert-wrapper .alert {
  width: 648px;
  position: relative;
  left: 50%;
  margin-bottom: 10px;
  margin-left: -324px;
  padding: 15px 44px 15px 44px;
  display: block;
  animation: jelly 0.5s ease-in-out;
  transform-origin: center top;
  z-index: 999;
  text-align: left;
  border-radius: 3px;
}
.alert-wrapper .alert.error {
  background: #E85600;
}
.alert-wrapper .alert.info {
  background: #ffffff;
}
.alert-wrapper .alert.success {
  background: #28a745;
  color: white;
}
.alert-wrapper .alert.warning {
  background: #E85600;
}
.alert-wrapper .alert .icon {
  position: absolute;
}
.alert-wrapper .alert .icon:first-child {
  left: 10px;
  top: 15px;
}
.alert-wrapper .alert .icon:last-child {
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.alert-wrapper .alert p {
  color: #FFFFFF;
  margin: 0;
  font-size: 16px;
}

.tooltip {
  display: block !important;
  z-index: 10000;
}
.tooltip.hide {
  display: none !important;
}
.tooltip .tooltip-inner {
  max-width: 400px;
  background: #00549C;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 5px 10px 4px;
  font-size: 16px;
}
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: #00549C;
  z-index: 1;
}
.tooltip[x-placement^=top] {
  margin-bottom: 5px;
}
.tooltip[x-placement^=top] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^=bottom] {
  margin-top: 5px;
}
.tooltip[x-placement^=bottom] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^=right] {
  margin-left: 5px;
}
.tooltip[x-placement^=right] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip[x-placement^=left] {
  margin-right: 5px;
}
.tooltip[x-placement^=left] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.burger {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
}
.burger .brand-logo img {
  width: 140px;
}
.burger .btn-burger img {
  width: 24px;
  height: 24px;
}

.burger-menu {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  overflow-y: auto;
  padding: 0px 20px;
  box-sizing: border-box;
}
.burger-menu .pages {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.burger-menu .pages .menu {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.burger-menu .pages .menu .menu-item {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.burger-menu .pages .menu .menu-item a {
  color: #323232;
  text-decoration: none;
  display: block;
}
.burger-menu .pages .menu .menu-item a:hover {
  color: #00549C;
  background-color: #f5f5f5;
}
.burger-menu .pages .menu .menu-item a.active {
  color: #00549C;
  background-color: rgba(0, 0, 255, 0.1);
}
.burger-menu .links {
  display: flex;
  justify-content: center;
  padding: 5px;
}
.burger-menu .btn-burger {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1101;
}
.burger-menu .btn-burger img {
  width: 24px;
  height: 24px;
}
.burger-menu .burger-profile {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-left: 15px;
}
.burger-menu .burger-profile .user-profile {
  font-size: 16px;
  font-weight: 600;
  color: #00549C;
  text-transform: uppercase;
  text-align: center;
}
.burger-menu .burger-profile .logout-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.burger-menu .burger-profile .logout-btn img {
  width: 20px;
  height: 20px;
}
.burger-menu .auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  font-size: 16px;
  color: #00549C;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.burger-menu .auth img {
  width: 20px;
  height: 20px;
}
.burger-menu .auth:hover {
  color: rgb(0, 56.5384615385, 105);
}

@media (max-width: 1180px) {
  .dropdown .dropdown-menu {
    top: -3px;
    left: 0;
    margin-left: 50px;
  }
  .burger {
    position: absolute;
    top: 70px;
    right: 20px;
    z-index: 1100;
    background: #00549C;
    border-radius: 8px;
    padding: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .burger img {
    width: 24px;
    height: 24px;
  }
  .navbar-top-right,
  .navbar-top-constrast-line .right .profile-info {
    display: none !important;
  }
}
@media (max-width: 568px) {
  .burger {
    top: 95px;
  }
}
@media (max-width: 768px) {
  .brand-logo img {
    width: 330px;
  }
  .homepage .projects .tabs-header li {
    height: auto;
  }
}
@media (max-width: 480px) {
  .brand-logo img {
    width: 280px;
  }
  .homepage .projects .tabs-header li {
    height: auto;
  }
}
@media (max-width: 768px) {
  .homepage .search-title, .homepage .search-page-title {
    font-size: 18px;
    line-height: 22px;
  }
  .homepage .search-form, .homepage .search-page-form {
    align-items: stretch;
  }
  .homepage .search-form form, .homepage .search-form .form, .homepage .search-page-form form, .homepage .search-page-form .form {
    flex-direction: column;
    gap: 12px;
  }
  .homepage .search-form form .search-form-bar input, .homepage .search-form .form .search-form-bar input, .homepage .search-page-form form .search-form-bar input, .homepage .search-page-form .form .search-form-bar input {
    font-size: 16px;
  }
  .homepage .search-form form .search-form-bar .search-icon, .homepage .search-form .form .search-form-bar .search-icon, .homepage .search-page-form form .search-form-bar .search-icon, .homepage .search-page-form .form .search-form-bar .search-icon {
    top: 14px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
  .homepage .search-form form button, .homepage .search-form .form button, .homepage .search-page-form form button, .homepage .search-page-form .form button {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 10px;
  }
  .homepage .search-form .control, .homepage .search-page-form .control {
    flex-direction: column;
    gap: 12px;
  }
  .homepage .search-form .control .search-btn, .homepage .search-page-form .control .search-btn {
    width: 100%;
    text-align: center;
  }
  .projects-table {
    width: 100%;
  }
  .projects-table tr {
    display: block;
    border: 1px solid #e0e0e0;
    margin-bottom: 16px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 0;
  }
  .projects-table tr:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .projects-table td {
    display: block;
    width: 100% !important;
    padding: 12px 15px;
    text-align: left !important;
    box-sizing: border-box;
    border-bottom: none;
  }
  .projects-table td.follow {
    padding: 12px 15px !important;
    margin: 0 !important;
  }
  .projects-table td.follow a {
    display: inline-block;
    padding: 0 !important;
    color: rgb(13, 110, 253);
  }
  .projects-table td.date {
    padding: 12px 15px !important;
    margin: 0 !important;
  }
  .pagination-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .pagination-controls .results-count,
  .pagination-controls .per-page {
    width: 100%;
  }
  .recommendations-page {
    padding: 20px 15px 40px 15px;
  }
  .recommendations-page .card .recommendations-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .recommendations-page .card .recommendations-header .recommendations-title {
    font-size: 1.125rem;
  }
  .recommendations-page .card .recommendations-header .btn-back {
    width: 100%;
    justify-content: center;
  }
  .recommendations-page .card .card-body {
    padding: 1rem;
  }
  .recommendations-page .card .card-body .recommendation-item .recommendation-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .recommendations-page .card .card-body .recommendation-item .recommendation-meta .date {
    font-size: 0.75rem;
  }
  .recommendations-page .card .card-body .recommendation-item .message {
    font-size: 0.9rem;
  }
  .table-responsibles {
    display: block;
    width: 100%;
  }
  .table-responsibles tbody {
    display: block;
  }
  .table-responsibles tr {
    display: block;
    border-bottom: none;
    padding: 10px 0;
  }
  .table-responsibles td {
    display: block;
    margin-left: 22px;
  }
  .table-responsibles td:first-child {
    margin-left: 0;
    font-weight: bold;
  }
  .table-responsibles a {
    word-break: break-word;
  }
  .recommendations-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .btn,
  .btn-recommendation-link {
    width: 100%;
    justify-content: center;
  }
  .table-documents {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
  .table-documents thead {
    display: none;
  }
  .table-documents tbody,
  .table-documents tr {
    display: block;
    width: 100%;
  }
  .table-documents tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
  }
  .table-documents td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 5px;
    box-sizing: border-box;
  }
  .table-documents td::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    color: #000000;
  }
  .table-documents td.download-file {
    text-align: left !important;
  }
  .table-documents .download-file a img {
    width: 24px;
    height: 24px;
  }
  .filter-popup {
    max-height: 95vw;
    width: 90vw;
    padding: 15px;
  }
  .filter-popup .btn {
    width: 100% !important;
    margin-bottom: 10px;
  }
}
.profile-dropdown {
  position: relative;
  display: inline-block;
}
.profile-dropdown .dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.profile-dropdown .dropdown-list {
  position: absolute;
  right: 0;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-width: 200px;
  display: none;
  z-index: 1050;
}
.profile-dropdown .dropdown-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.profile-dropdown .dropdown-list ul li a {
  display: block;
  padding: 10px 15px;
  color: black;
  text-align: left;
  justify-content: flex-start;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.profile-dropdown .dropdown-list ul li a:hover {
  background-color: #CCDDEB;
}
.profile-dropdown .dropdown-toggle.active + .dropdown-list {
  display: block;
}

.follow-icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .follow-icon {
    margin-bottom: 10px;
  }
}
