/*!**************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/src/scss/_constants.scss ***!
  \**************************************************************************************************************************/
:root {
  --font: "Manrope", sans-serif;
  --bg-color: white;
  --text-white: #fefefe;
  --text-color: #282828;
  --link-color: #378fff;
  --khaki: darkkhaki;
  --purple: purple;
  --blue: #185ba5;
  --dark-blue: midnightblue;
  --cyan: #1698a1;
  --red: crimson;
  --error:#c62828;
  --yellow: goldenrod;
  --gray-bg: #efefef;
  --green: green;
  --dark-gray: #6a6a6a;
  --border-color: silver;
  --footer-links: 12px;
  --small: 0.9rem;
  --normal: 1rem;
  --medium: 1.25rem;
  --large: 1.5rem;
  --xlarge: 1.75rem;
  --xxlarge: 2rem;
  --xxxlarge: 2.5rem;
}
/*!***************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/src/scss/_animations.scss ***!
  \***************************************************************************************************************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fromLeft {
  from {
    transform: translate(-100%);
  }
  to {
    transform: translate(0);
  }
}
.anm__from-left {
  animation: fromLeft 1s forwards, fadeIn 1s forwards; /* Animation effect */
}
/*!*********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/src/scss/style.scss ***!
  \*********************************************************************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
}

a {
  text-decoration-skip-ink: auto;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

button {
  outline: 0;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

q {
  display: inline;
  font-style: italic;
}

q:before {
  content: '"';
  font-style: normal;
}

q:after {
  content: '"';
  font-style: normal;
}

textarea, input[type=text], input[type=button], input[type=submit], input[type=reset], input[type=search], input[type=password] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  padding: 2px;
}

big {
  font-size: 120%;
}

small, sup, sub {
  font-size: 80%;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

dd {
  margin-left: 20px;
}

kbd, tt {
  font-family: courier;
  font-size: 12px;
}

ins {
  text-decoration: underline;
}

del, strike, s {
  text-decoration: line-through;
}

dt {
  font-weight: bold;
}

address, cite, var {
  font-style: italic;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

.screen-reader-text:focus {
  background-color: #f7f7f7;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #007acc;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.skip-link {
  left: -9999rem;
  top: 2.5rem;
  z-index: 999999999;
  text-decoration: underline;
}

.skip-link:focus {
  display: block;
  left: 6px;
  top: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: normal;
  padding: 15px 23px 14px;
  z-index: 100000;
  right: auto;
}

.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active) {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/*===general rules===*/
* {
  position: relative;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

#content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--gray-bg);
  padding: 10px 0;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hidden {
  display: none;
}

/*===other components===*/
/*--btn--*/
button.btn {
  padding: 10px;
  border-radius: 5px;
  margin: 0 5px;
  background: var(--blue);
  color: var(--text-white);
  box-shadow: 0 0 5px black;
  border: none;
  font-size: var(--small);
  cursor: pointer;
}

button.btn-alt {
  background-color: var(--cyan);
}

button.btn-red {
  background-color: var(--red);
}

button.btn-yellow {
  background-color: var(--yellow);
}

button.btn-khaki {
  background-color: var(--khaki);
}

button.btn-green {
  background-color: var(--green);
}

button.btn-blue {
  background-color: var(--dark-blue);
}

button.btn-purple {
  background-color: var(--purple);
}

button.btn-gray {
  background-color: var(--dark-gray);
}

.btn:active {
  box-shadow: 0 0 2px black;
}

button.gray-btn {
  background-color: var(--border-color);
  color: var(--dark-gray);
}

section {
  padding: 20px 0;
}

/*---action input---*/
.action_input {
  padding: 10px 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 90%;
}
.action_input i {
  font-weight: bold;
  color: var(--red);
  cursor: pointer;
  padding: 5px;
}

/*---loader---*/
.loader {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: none;
  margin: 15px auto;
  position: relative;
  color: skyblue;
  box-sizing: border-box;
  animation: animloader 1s linear infinite;
}

.loader.show {
  display: block;
}

@keyframes animloader {
  0% {
    box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
  }
  25% {
    box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 2px;
  }
  50% {
    box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 2px, -38px 0 0 -2px;
  }
  75% {
    box-shadow: 14px 0 0 2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
  }
  100% {
    box-shadow: 14px 0 0 -2px, 38px 0 0 2px, -14px 0 0 -2px, -38px 0 0 -2px;
  }
}
#scrollToTopBtn {
  position: fixed;
  z-index: 10;
  bottom: 30px;
  right: 30px;
  background: var(--blue);
  height: 50px;
  width: 50px;
  border-radius: 50pc;
  border: none;
  color: var(--bg-color);
  font-weight: 900;
  box-shadow: 0 0 7px 0px black;
  cursor: pointer;
}

@media print {
  .no-print {
    display: none !important;
  }
}
.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.popup_actions {
  font-size: var(--large);
  color: var(--text-color);
  position: absolute;
  top: -0.7em;
  right: 0;
}
.popup_actions > i {
  padding: 5px;
  border-radius: 3px;
  box-shadow: 0 0 5px black;
  cursor: pointer;
}

input[type=checkbox] {
  cursor: pointer;
}

/** inputs **/
input, .MuiTextField-root, .MuiAutocomplete-root {
  max-width: 100%;
}

.input-plain, div.input-plain {
  height: 100%;
  width: 100%;
}
.input-plain fieldset, div.input-plain fieldset {
  border: 0;
}
.input-plain .MuiPickersInputBase-root, div.input-plain .MuiPickersInputBase-root {
  height: 100%;
  width: 100%;
}

.page-title-section h2 {
  line-height: 1;
  margin-bottom: 3px;
  text-transform: uppercase;
}

#left-drawer-button {
  position: fixed;
  left: -20px;
  top: 150px;
  border-radius: 0 4px 4px 0;
  padding: 15px;
  transition: left 0.2s;
  z-index: 2;
}
#left-drawer-button:hover {
  left: 0;
}

.page-content {
  background: white;
  flex: 1;
  padding-top: 50px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
/*!**************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/src/scss/typography.scss ***!
  \**************************************************************************************************************************/
/* General Typography Setup */
body {
  font-family: var(--font); /* Choose a readable font */
  font-size: 16px; /* Base font size */
  color: #333; /* Dark gray for readability */
  line-height: 1.6; /* Proper line spacing */
  background-color: #fff; /* Light background */
  margin: 0;
  padding: 0;
}

/* Headings Styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font); /* A distinct font for headings */
  font-weight: bold; /* Make headings stand out */
  margin-bottom: 0.5em; /* Add spacing below headings */
  line-height: 1.3; /* Improve readability */
}

h1 {
  font-size: var(--xxxlarge); /* 40px */
}

h2 {
  font-size: var(--xxlarge); /* 32px */
}

h3 {
  font-size: var(--xlarge); /* 28px */
}

h4 {
  font-size: var(--large); /* 24px */
}

h5 {
  font-size: var(--medium); /* 20px */
}

h6 {
  font-size: var(--normal); /* 16px */
  font-weight: 600;
}

/* Paragraph Styling */
p {
  font-size: var(--normal); /* 16px */
  margin-bottom: var(--normal); /* Space between paragraphs */
  max-width: 60ch; /* Optimal readability */
  text-align: left; /* Align text to the left */
}

input {
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: var(--link-color);
}

.error {
  color: var(--error);
}

.text-error {
  color: var(--error);
}

strong {
  font-weight: bold;
}
/*!**********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/src/scss/header.scss ***!
  \**********************************************************************************************************************/
#branding #logo-title {
  text-indent: -99999999px;
  position: absolute;
}

header {
  background: var(--bg-color);
  height: 80px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#navigation {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

/*--brand img---*/
#navigation #branding img {
  height: 74px;
  width: auto;
}

/*---nav right---*/
#navigation #nav-right {
  /*display: flex;*/
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

#nav-right > :not(:last-child) {
  margin-right: 25px;
}

#mobile-nav {
  display: inline-block;
}

#navigation .home-link {
  padding-right: 26px;
}

#navigation .language-switcher img {
  max-width: 24px;
}

#navigation .language-switcher::after {
  content: "";
  border-top: 4px solid black;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  margin-left: 10px;
  position: relative;
  margin-right: 16px;
  top: 10px;
}

#navigation .language-switcher:hover {
  cursor: pointer;
}

/*===user-nav===*/
#navigation .user-nav__icon {
  height: 41px;
  width: 41px;
  display: inline-block;
  vertical-align: middle;
  background-position: center;
  background-color: #9bc2df;
  border-radius: 50px;
  margin-right: 9px;
}

#navigation .user-nav {
  margin-right: 25px;
  position: relative;
  display: inline-block;
  padding: 8px 10px;
  border: 1px solid transparent;
  cursor: pointer;
}

#navigation .user-nav.open {
  color: var(--text-color);
  border: 1px solid var(--bg-color);
}

.user-nav .submenu {
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 10;
  background: var(--bg-color);
  transform: translateX(-50%);
  padding: 20px 15px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  font-size: var(--small);
}

.user-nav.open .submenu::before {
  content: "";
  border-bottom: 10px solid var(--bg-color);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  bottom: 100%;
  left: 50%;
}

.user-nav.open .submenu li a {
  display: block;
  line-height: 30px;
}

.user-nav.open .submenu li a:hover {
  background: var(--gray-bg);
}

.user-nav.open .submenu li a,
.user-nav.open .submenu li a:hover,
.user-nav.open .submenu li a:active {
  color: var(--text-color);
}

.user-nav.open .submenu {
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  left: 10px;
  z-index: 10;
  background: var(--bg-color);
  transform: translateX(-50%);
  padding: 20px 15px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  font-size: var(--normal);
  min-width: 170px;
}

.user-nav.new::after {
  content: "";
  display: inline-block;
  background: var(--red);
  width: 7px;
  height: 7px;
  border-radius: 10px;
  position: absolute;
  bottom: 50%;
  right: 0;
}

/*====user-notifications===*/
#user-notifications-list {
  font-size: var(--small);
  width: 250px;
  padding-top: 0;
  max-height: 250px;
  overflow: auto;
}

#user-notifications-list > * {
  border-bottom: 1px solid var(--dark-gray);
  padding: 10px 0;
}

#user-notifications-list > p {
  position: sticky;
  top: 0;
  z-index: 2;
  background: inherit;
  font-weight: bold;
}

#user-notifications li {
  background: var(--gray-bg);
  padding: 5px 10px;
}

#user-notifications li > span {
  border: none;
  color: var(--red);
  font-weight: bold;
  padding-left: 5px;
}

#user-notifications li > span:hover {
  cursor: pointer;
}

#user-notifications li.mail::before {
  font-family: "Font Awesome 5 Free";
  padding-right: 5px;
  vertical-align: middle;
}

#user-notifications li.attention::before {
  content: "!";
  color: var(--gray-bg);
  background: var(--text-color);
  display: inline-block;
  padding: 1px;
  width: 1.2em;
  height: 1.2em;
  text-align: center;
  vertical-align: middle;
  border-radius: 1.2em;
  margin-right: 5px;
}

#user-notifications li.mail::before {
  content: "\f0e0";
}

#user-notifications li.attention::before {
  content: "\f06a";
}

/*======mobile navigation=======*/
#mobile-nav > i {
  font-size: var(--xlarge);
}

#mobile-menu {
  display: block;
  position: fixed;
  background: var(--bg-color);
  z-index: 9999999;
  right: -150%;
  top: 0;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 80vw;
  overflow-y: auto;
  transition: right 0.4s;
}

#mobile-menu.active {
  display: block;
  right: 0;
}

#mobile-menu > *,
#mobile-menu .user-nav {
  padding: 10px 0;
  display: block;
  margin: 5px 0;
}

#mobile-menu .language-switcher {
  display: none;
}

#mobile-nav .nav-btn > span {
  display: inline-block;
}

#mobile-nav .nav-btn {
  text-align: left;
}

/*==laguage switcher===*/
.language-switcher .selected-language img {
  min-width: 30px;
  border-radius: 50pc;
  height: 30px;
  display: inline-block;
}

.language-switcher .language-list {
  position: absolute;
  display: none;
}

.language-switcher .language-list {
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  left: 10px;
  transform: translateX(-50%);
  background: var(--bg-color);
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
  width: max-content;
  font-size: var(--small);
}

.language-switcher .language-list::before {
  content: "";
  border-bottom: 10px solid var(--bg-color);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  bottom: 100%;
  left: 50%;
}

.language-switcher .language-list a {
  color: var(--text-color);
  padding: 10px;
  display: inline-block;
  font-weight: bold;
  font-size: 15px;
}

.language-switcher .language-list a img {
  padding-right: 6px;
}

#nav-right > .language-switcher {
  margin-right: 0;
}

/*===MENU BNT===*/
.menu-toggler {
  cursor: pointer;
}

#menu-navigation-drawer .menu-closer {
  border: none;
  width: 100%;
  padding: 15px 10px;
  margin-bottom: 20px;
  background: var(--red);
  color: var(--bg-color);
  font-weight: bold;
  cursor: pointer;
}
#menu-navigation-drawer #menu-navigation {
  background: var(--bg-color);
  width: 300px;
  padding: 0 20px;
}
#menu-navigation-drawer #menu-navigation a {
  color: var(--text-color);
  display: block;
  width: 100%;
  padding: 10px 40px;
  font-weight: bold;
  font-size: 15px;
}
#menu-navigation-drawer #menu-navigation .btn {
  color: var(--bg-color);
  width: 90%;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  margin: 5px auto;
}

@media only screen and (min-width: 600px) {
  #navigation #nav-right {
    display: flex;
  }
  #mobile-nav {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  #navigation .nav-btn {
    width: 170px;
  }
  #navigation .nav-btn > span {
    display: inline-block;
    padding-left: 9px;
  }
}
/*!**********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/src/scss/footer.scss ***!
  \**********************************************************************************************************************/
/*===footer===*/
#footer {
  background: var(--gray-bg);
  padding: 10px 20px;
  color: var(--bg-color);
  font-size: var(--small);
  font-weight: bold;
  text-align: right;
  position: relative;
  width: 100%;
  left: 0;
  z-index: 1;
}
#footer #copyright {
  color: var(--dark-gray);
}
#footer #copyright a {
  color: var(--blue);
  text-shadow: none;
  text-decoration: none;
}
#footer.is-frontpage #copyright a {
  color: var(--text-white);
  text-shadow: 0 0 5px black;
}
#footer.is-frontpage #copyright a.author-uri {
  color: var(--link-color);
}

.is-frontpage #footer {
  position: absolute;
  bottom: 0;
  background-color: transparent;
}
