/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Floating labels styling
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Tooltip */
.profile .about-tab .floating-label .tooltip,
.edit-doc .about-tab .floating-label .tooltip {
  bottom: 0;
  color: var(--copy);
  display: none;
  margin-left: 28px;
  margin-right: 3rem;
  position: absolute;
  right: 0;
}
.profile .about-tab .floating-label .tooltip:hover,
.edit-doc .about-tab .floating-label .tooltip:hover {
  display: block;
}

/* Floating labels */
/* Show password */
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

        GGGGGGGGGGGGG                                                                                              lllllll
     GGG::::::::::::G                                                                                              l:::::l
   GG:::::::::::::::G                                                                                              l:::::l
  G:::::GGGGGGGG::::G                                                                                              l:::::l
 G:::::G       GGGGGG    eeeeeeeeeeee    nnnn  nnnnnnnn        eeeeeeeeeeee    rrrrr   rrrrrrrrr   aaaaaaaaaaaaa    l::::l
G:::::G                ee::::::::::::ee  n:::nn::::::::nn    ee::::::::::::ee  r::::rrr:::::::::r  a::::::::::::a   l::::l
G:::::G               e::::::eeeee:::::een::::::::::::::nn  e::::::eeeee:::::eer:::::::::::::::::r aaaaaaaaa:::::a  l::::l
G:::::G    GGGGGGGGGGe::::::e     e:::::enn:::::::::::::::ne::::::e     e:::::err::::::rrrrr::::::r         a::::a  l::::l
G:::::G    G::::::::Ge:::::::eeeee::::::e  n:::::nnnn:::::ne:::::::eeeee::::::e r:::::r     r:::::r  aaaaaaa:::::a  l::::l
G:::::G    GGGGG::::Ge:::::::::::::::::e   n::::n    n::::ne:::::::::::::::::e  r:::::r     rrrrrrraa::::::::::::a  l::::l
G:::::G        G::::Ge::::::eeeeeeeeeee    n::::n    n::::ne::::::eeeeeeeeeee   r:::::r           a::::aaaa::::::a  l::::l
 G:::::G       G::::Ge:::::::e             n::::n    n::::ne:::::::e            r:::::r          a::::a    a:::::a  l::::l
  G:::::GGGGGGGG::::Ge::::::::e            n::::n    n::::ne::::::::e           r:::::r          a::::a    a:::::a l::::::l
   GG:::::::::::::::G e::::::::eeeeeeee    n::::n    n::::n e::::::::eeeeeeee   r:::::r          a:::::aaaa::::::a l::::::l
     GGG::::::GGG:::G  ee:::::::::::::e    n::::n    n::::n  ee:::::::::::::e   r:::::r           a::::::::::aa:::al::::::l
        GGGGGG   GGGG    eeeeeeeeeeeeee    nnnnnn    nnnnnn    eeeeeeeeeeeeee   rrrrrrr            aaaaaaaaaa  aaaallllllll

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --step--3: clamp(0.76rem, calc(0.76rem + 0.02vw), 0.77rem);
  --step--2: clamp(0.91rem, calc(0.89rem + 0.1vw), 0.96rem);
  --step--1: clamp(1.09rem, calc(1.05rem + 0.21vw), 1.2rem);
  --step-0: clamp(1.31rem, calc(1.24rem + 0.37vw), 1.5rem);
  --step-1: clamp(1.58rem, calc(1.46rem + 0.59vw), 1.88rem);
  --step-2: clamp(1.89rem, calc(1.71rem + 0.89vw), 2.34rem);
  --step-3: clamp(2.27rem, calc(2.01rem + 1.29vw), 2.93rem);
  --step-4: clamp(2.72rem, calc(2.36rem + 1.83vw), 3.66rem);
  --step-5: clamp(3.27rem, calc(2.75rem + 2.56vw), 4.58rem);
  --step-6: clamp(3.92rem, calc(3.22rem + 3.52vw), 5.72rem);
}

* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  transition: 250ms;
  transition-delay: 0ms;
}

html {
  --primary: #347779;
  --primary-content: #c6e5e6;
  --primary-dark: #255455;
  --primary-darker: #204041;
  --primary-light: #439a9d;
  --secondary: #793634;
  --secondary-content: #e6c7c6;
  --secondary-dark: #552625;
  --secondary-light: #9d4643;
  --background: #ffffff;
  --foreground: #f5f5f5;
  --foreground-light: #ebebeb;
  --border: #dde1e2;
  --copy: #232929;
  --copy-light: #5e6d6e;
  --copy-lighter: #849495;
  --success: #5cb85c;
  --warning: #eded3a;
  --error: #ed3a3a;
  --error-darker: #db2727;
  --success-content: #c6e6c6;
  --warning-content: #e6e6c6;
  --error-content: #e6c6c6;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  background-color: var(--background);
  color: var(--copy);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body main {
  flex-grow: 1;
}

a {
  color: var(--primary-light);
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.no-underline:hover {
  text-decoration: none;
}

section:not(.nopad) {
  padding: 5rem 0;
}

select:disabled,
input:disabled {
  cursor: not-allowed;
}

.row {
  display: flex;
  flex-direction: row;
}

.col {
  display: flex;
  flex-direction: column;
}
.col.col-1 {
  width: 10%;
}
.col.col-2 {
  width: 20%;
}
.col.col-3 {
  width: 30%;
}
.col.col-4 {
  width: 40%;
}
.col.col-5 {
  width: 50%;
}
.col.col-6 {
  width: 60%;
}
.col.col-7 {
  width: 70%;
}
.col.col-8 {
  width: 80%;
}
.col.col-9 {
  width: 90%;
}

.container {
  margin: 0 auto;
  width: 85%;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Button container
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.button-container {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	Button styling
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.btnDefault {
  background: var(--primary-light) !important;
  border: 2px solid transparent !important;
  border-radius: 1.5rem !important;
  box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.13) !important;
  color: white !important;
  cursor: pointer !important;
  font-size: 14px !important;
  opacity: 1 !important;
  padding: 0.5rem 1rem !important;
  pointer-events: all !important;
  text-align: center !important;
  width: auto !important;
}
.btnDefault a {
  color: white !important;
}
.btnDefault a {
  color: white !important;
}
.btnDefault:hover {
  background-color: var(--primary) !important;
}
.btnDefault:focus {
  box-shadow: 0 0 0 0.25rem rgba(103, 183, 190, 0.25) !important;
}
.btnDefault.disabled, .btnDefault:disabled {
  background-color: var(--primary-content) !important;
  color: var(--primary-dark) !important;
  cursor: not-allowed !important;
}
.btnDefault.editing {
  background-color: var(--primary-light) !important;
  border: 2px solid var(--primary-dark) !important;
  color: var(--primary-dark) !important;
  pointer-events: none !important;
}
.btnDefault.outline {
  background-color: transparent !important;
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
}
.btnDefault.outline:hover {
  background-color: var(--primary) !important;
  color: white !important;
}
.btnDefault.outline.danger {
  background-color: transparent !important;
  border: 1px solid var(--error) !important;
  color: var(--error) !important;
}
.btnDefault.outline.danger:hover {
  background-color: var(--error) !important;
  color: white !important;
}
.btnDefault.square {
  border-radius: 0.5rem !important;
}
.btnDefault.circle {
  border-radius: 100% !important;
  min-width: unset !important;
  padding: 10px 15px !important;
}
.btnDefault.square.modal {
  margin: 1rem !important;
}
.btnDefault.small {
  padding: 0.3rem 0.5rem !important;
}
.btnDefault.danger:not(.outline) {
  background-color: var(--error) !important;
  border: 1px solid var(--error) !important;
  color: white !important;
}
.btnDefault.danger:not(.outline) a {
  color: white !important;
}
.btnDefault.danger:not(.outline):hover {
  background-color: var(--error-darker) !important;
  border: 1px solid var(--error-darker) !important;
}
.btnDefault.cancel {
  background-color: transparent !important;
  border: 1px solid var(--copy-lighter) !important;
  color: var(--copy-lighter) !important;
}
.btnDefault.cancel:hover {
  background-color: var(--copy-lighter) !important;
  border: 1px solid var(--copy-lighter) !important;
  color: white !important;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Link styling
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
ul {
  list-style: none;
}
ul i {
  color: var(--primary-light);
  font-size: 20px;
  padding-right: 4px;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Input styling
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Remove arrows from inputs type number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Input styling
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.standardInput {
  position: relative;
  width: 100%;
}
.standardInput label {
  font-weight: 600;
}
.standardInput input,
.standardInput select {
  background-color: var(--foreground);
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  box-sizing: border-box;
  color: inherit;
  font-size: 16px;
  font-weight: 500;
  height: 33px;
  padding-inline: 1rem !important;
  width: 100%;
  margin-block: 0.5rem;
}
.standardInput input:disabled,
.standardInput select:disabled {
  background-color: var(--foreground-light);
  color: var(--copy-lighter);
  cursor: not-allowed;
}
.standardInput input:focus,
.standardInput select:focus {
  border: solid 1px var(--primary-light);
  outline: 0;
}
.standardInput input.error,
.standardInput select.error {
  border: solid 1px var(--error);
}
.standardInput input:focus-within ~ .search-results,
.standardInput select:focus-within ~ .search-results {
  display: flex;
}
.standardInput .search-results {
  background-color: var(--foreground);
  border-radius: 0.5rem;
  color: inherit;
  display: none;
  flex-direction: column;
  left: 0;
  margin-top: 0.3rem;
  outline: 1px solid var(--primary-light);
  padding-block: 0.5rem;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 10;
}
.standardInput .search-results:active {
  display: flex;
}
.standardInput .search-results .result {
  align-items: center;
  color: inherit;
  cursor: pointer;
  display: flex;
  height: 3rem;
  padding-block: 0.1rem;
  padding-left: 1rem;
}
.standardInput .search-results .result p {
  flex: 1;
}
.standardInput .search-results .result:hover {
  background-color: var(--border) !important;
}
.standardInput .search-results .result:nth-child(2n) {
  background-color: var(--foreground-light);
}

.fancyDropdown {
  position: relative;
  width: 100%;
}
.fancyDropdown .input-container {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.fancyDropdown label {
  font-weight: 600;
}
.fancyDropdown input,
.fancyDropdown select {
  background-color: var(--foreground);
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  box-sizing: border-box;
  color: inherit;
  font-size: 16px;
  font-weight: 500;
  height: 33px;
  margin-top: 0.5rem;
  padding-inline: 1rem !important;
  width: 100%;
}
.fancyDropdown input:disabled,
.fancyDropdown select:disabled {
  background-color: var(--foreground-light);
  color: var(--copy-lighter);
  cursor: not-allowed;
}
.fancyDropdown input:focus,
.fancyDropdown select:focus {
  border: solid 1px var(--primary-light);
  outline: 0;
}
.fancyDropdown input.error,
.fancyDropdown select.error {
  border: solid 1px var(--error);
}
.fancyDropdown input:focus-within ~ .search-results,
.fancyDropdown select:focus-within ~ .search-results {
  display: flex;
}
.fancyDropdown i {
  position: absolute;
  right: 4.5rem;
  top: 50%;
  transform: translateY(40%);
}
.fancyDropdown .search-results {
  background-color: var(--foreground);
  border-radius: 0.5rem;
  color: inherit;
  display: none;
  flex-direction: column;
  left: 0;
  margin-top: 0.3rem;
  outline: 1px solid var(--primary-light);
  padding-block: 0.5rem;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 10;
}
.fancyDropdown .search-results:active {
  display: flex;
}
.fancyDropdown .search-results .result {
  align-items: center;
  color: inherit;
  cursor: pointer;
  display: flex;
  height: 3rem;
  padding-block: 0.1rem;
  padding-left: 1rem;
}
.fancyDropdown .search-results .result p {
  flex: 1;
}
.fancyDropdown .search-results .result:hover {
  background-color: var(--border) !important;
}
.fancyDropdown .search-results .result:nth-child(2n) {
  background-color: var(--foreground-light);
}

.dt-search {
  align-items: center !important;
  display: flex !important;
  gap: 0.5rem !important;
}
.dt-search input {
  background-color: var(--foreground) !important;
  border: none !important;
  border-bottom: solid 2px rgba(0, 0, 0, 0.1) !important;
  border-radius: 0.5rem !important;
  color: var(--copy) !important;
  padding: 0.5rem !important;
  width: 100% !important;
}
.dt-search input:focus {
  border-bottom: solid 2px var(--primary-light) !important;
  outline: none !important;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Alert styling
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.errors {
  text-align: center;
}
.errors .alert {
  display: inline-block;
  margin: 1rem;
  text-align: center;
}
.errors .alert.danger {
  background-color: transparent;
  border: none;
  color: var(--error);
}
.errors .alert.error {
  justify-content: center;
}
.errors .alert.success {
  background-color: transparent;
  border: none;
  color: var(--success);
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Scrollbar
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Back to top button
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.back-to-top {
  align-items: center;
  background: var(--primary-light);
  border-radius: 50%;
  bottom: 15px;
  display: flex;
  height: 40px;
  justify-content: center;
  opacity: 0;
  position: fixed;
  right: 15px;
  width: 40px;
  z-index: 999;
}
.back-to-top i {
  color: white;
  font-size: 24px;
  line-height: 0;
}
.back-to-top:hover {
  background: var(--primary);
  color: white;
}
.back-to-top.active {
  opacity: 1;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Pagination
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.pagination {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
}
.pagination a {
  background-color: transparent;
  border-radius: 0.3rem;
  color: var(--primary-light);
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  text-decoration: none;
}
.pagination a.selected {
  background-color: var(--primary-light);
  color: white;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Section title (main page)
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.section-title {
  text-align: center;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::before {
  background: #ddd;
  bottom: 1px;
  content: "";
  display: block;
  height: 1px;
  left: calc(50% - 60px);
  position: absolute;
  width: 120px;
}
.section-title h2::after {
  background: var(--primary-light);
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: calc(50% - 20px);
  position: absolute;
  width: 40px;
}
.section-title h2 p {
  margin-bottom: 2em;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Breadcrumbs
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.breadcrumbs {
  background-color: var(--foreground);
  box-shadow: 0px 0px 10px rgba(24, 24, 24, 0.25);
  min-height: 40px;
  padding: 1rem 0 !important;
}
.breadcrumbs .container {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.breadcrumbs .container h2 {
  font-size: 28px;
  font-weight: 300;
  margin: 0.5rem 0;
}
.breadcrumbs .container ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumbs .container ul li {
  padding-left: 10px;
}
.breadcrumbs .container ul li::before {
  color: #6c757d;
  content: "/";
  display: inline-block;
  padding-right: 10px;
}

.noMatch {
  padding-top: 5rem;
  text-align: center;
}
.noMatch p {
  color: var(--copy-light);
  font-weight: 500;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

                                                                bbbbbbb
NNNNNNNN        NNNNNNNN                                        b:::::b
N:::::::N       N::::::N                                        b:::::b
N::::::::N      N::::::N                                        b:::::b
N:::::::::N     N::::::N                                        b:::::b
N::::::::::N    N::::::N  aaaaaaaaaaaaavvvvvvv           vvvvvvvb:::::bbbbbbbbb       aaaaaaaaaaaa   rrrr   rrrrrrrrr
N:::::::::::N   N::::::N  a::::::::::::av:::::v         v:::::v b::::::::::::::bb    a::::::::::::a r::::rrr:::::::::r
N:::::::N::::N  N::::::N  aaaaaaaaa:::::av:::::v       v:::::v  b::::::::::::::::b   aaaaaaaaa:::::ar:::::::::::::::::r
N::::::N N::::N N::::::N           a::::a v:::::v     v:::::v   b:::::bbbbb:::::::b           a::::arr::::::rrrrr::::::r
N::::::N  N::::N:::::::N    aaaaaaa:::::a  v:::::v   v:::::v    b:::::b    b::::::b    aaaaaaa:::::a r:::::r     r:::::r
N::::::N   N:::::::::::N  aa::::::::::::a   v:::::v v:::::v     b:::::b     b:::::b  aa::::::::::::a r:::::r     rrrrrrr
N::::::N    N::::::::::N a::::aaaa::::::a    v:::::v:::::v      b:::::b     b:::::b a::::aaaa::::::a r:::::r
N::::::N     N:::::::::Na::::a    a:::::a     v:::::::::v       b:::::b     b:::::ba::::a    a:::::a r:::::r
N::::::N      N::::::::Na::::a    a:::::a      v:::::::v        b:::::bbbbbb::::::ba::::a    a:::::a r:::::r
N::::::N       N:::::::Na:::::aaaa::::::a       v:::::v         b::::::::::::::::b a:::::aaaa::::::a r:::::r
N::::::N        N::::::N a::::::::::aa:::a       v:::v          b:::::::::::::::b   a::::::::::aa:::ar:::::r
NNNNNNNN         NNNNNNN  aaaaaaaaaa  aaaa        vvv           bbbbbbbbbbbbbbbb     aaaaaaaaaa  aaaarrrrrrr

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.navbar {
  background: var(--primary);
  height: 80px;
  position: sticky;
  top: 0;
  transition: all 500ms;
  width: 100%;
  z-index: 997;
}
.navbar.transparent {
  background: none;
}
.navbar.scrolled {
  background: var(--primary);
  height: 60px;
}
.navbar .dropdownIcons {
  display: flex;
}
.navbar .dropdownIcons img,
.navbar .dropdownIcons svg {
  height: 16px;
  width: 16px;
}
.navbar .navbar--desktop {
  align-items: center;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  width: 85%;
}
.navbar .navbar--desktop .logo {
  height: 40px;
}
.navbar .navbar--desktop .logo a {
  display: block;
  height: 0;
}
.navbar .navbar--desktop .logo img {
  max-height: 40px;
}
.navbar .navbar--desktop .nav--links {
  align-items: center;
  gap: 1rem;
  width: fit-content;
}
.navbar .navbar--desktop .nav--links li {
  position: relative;
  width: fit-content;
}
.navbar .navbar--desktop .nav--links li a {
  align-items: center;
  color: white;
  font-size: 14px;
  white-space: nowrap;
}
.navbar .navbar--desktop .nav--links li a:hover {
  text-decoration: underline;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu {
  cursor: pointer;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu #userIcon {
  display: inline-block;
  fill: white;
  height: 30px;
  padding: 0.4rem;
  width: 30px;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu #userIcon:hover ::before {
  background-color: hsla(0, 0%, 100%, 0.2);
  border-radius: 30px;
  content: "";
  height: 30px;
  left: 0;
  position: absolute;
  width: 30px;
  z-index: -1;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu {
  background: var(--foreground);
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(24, 24, 24, 0.25);
  display: block;
  margin: 0;
  opacity: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  top: calc(100% + 30px);
  visibility: hidden;
  width: 10rem;
  z-index: 99;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li {
  cursor: pointer;
  white-space: normal;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li:not(.langContent) {
  padding: 10px;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li:hover {
  background-color: var(--foreground);
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li a {
  color: var(--copy);
  /* padding: 10px 20px; */
  font-size: 14px;
  text-transform: none;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li span {
  font-size: 10pt;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.user {
  align-items: center;
  gap: 0.5rem;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.user h4 {
  color: var(--copy);
  font-weight: 500;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.user svg {
  height: 2rem;
  min-width: 2rem;
  width: 2rem;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.darkModeSelector {
  align-items: center;
  gap: 0.5rem;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.darkModeSelector .darkModeToggle input[type=checkbox] {
  height: 0;
  visibility: hidden;
  width: 0;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.darkModeSelector .darkModeToggle input[type=checkbox]:checked + label {
  background: transparent;
  border: 2px solid var(--copy);
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.darkModeSelector .darkModeToggle input[type=checkbox]:checked + label::after {
  background-color: var(--copy);
  right: calc(100% - 3px);
  transform: translateX(100%);
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.darkModeSelector .darkModeToggle input[type=checkbox]:checked + label::before {
  opacity: 0;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.darkModeSelector .darkModeToggle label {
  background: transparent;
  border: 2px solid var(--primary-light);
  border-radius: 100px;
  cursor: pointer;
  height: 1.2rem;
  position: relative;
  text-indent: -9999px;
  top: 1px;
  width: 2.6rem;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.darkModeSelector .darkModeToggle label::before {
  border-color: var(--primary-light);
  border-style: solid;
  border-width: 0px 0px 2px 2px;
  content: "";
  display: block;
  height: 0.3rem;
  left: 0.7rem;
  position: absolute;
  top: 0.4rem;
  transform: translate3d(-50%, -50%, 0px) rotate(-45deg);
  width: 0.6rem;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.darkModeSelector .darkModeToggle label::after {
  background: var(--primary-light);
  border-radius: 1rem;
  content: "";
  height: 0.7rem;
  position: absolute;
  right: 3px;
  top: 0.12rem;
  width: 0.7rem;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.loginout {
  margin: 0;
  padding: 0;
  width: 100%;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu li.loginout a {
  gap: 0.5rem;
  height: 100%;
  padding: 10px;
  width: 100%;
}
.navbar .navbar--desktop .nav--links li.dropdownMenu .extended-DropdownMenu hr {
  border: 0;
  border-top: 1px solid var(--primary-dark);
}
.navbar .navbar--desktop .nav--links li.dropdownMenu.active > .extended-DropdownMenu {
  opacity: 1;
  transform: translateY(-7%);
  visibility: visible;
}
.navbar .navbar--desktop .nav--links li.language--container {
  cursor: pointer;
  display: flex;
  gap: 1rem;
  height: 2rem;
  width: 2rem;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Profile Info
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#pfp {
  display: inline-block;
  height: 2.5rem;
  padding: 0.4rem;
  width: 2.5rem;
}

#pfp img {
  height: 100%;
  width: 100%;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
                                               bbbbbbbb
MMMMMMMM               MMMMMMMM                b::::::b              iiii  lllllll                          NNNNNNNN        NNNNNNNN
M:::::::M             M:::::::M                b::::::b             i::::i l:::::l                          N:::::::N       N::::::N
M::::::::M           M::::::::M                b::::::b              iiii  l:::::l                          N::::::::N      N::::::N
M:::::::::M         M:::::::::M                 b:::::b                    l:::::l                          N:::::::::N     N::::::N
M::::::::::M       M::::::::::M   ooooooooooo   b:::::bbbbbbbbb    iiiiiii  l::::l     eeeeeeeeeeee         N::::::::::N    N::::::N  aaaaaaaaaaaaavvvvvvv           vvvvvvv
M:::::::::::M     M:::::::::::M oo:::::::::::oo b::::::::::::::bb  i:::::i  l::::l   ee::::::::::::ee       N:::::::::::N   N::::::N  a::::::::::::av:::::v         v:::::v
M:::::::M::::M   M::::M:::::::Mo:::::::::::::::ob::::::::::::::::b  i::::i  l::::l  e::::::eeeee:::::ee     N:::::::N::::N  N::::::N  aaaaaaaaa:::::av:::::v       v:::::v
M::::::M M::::M M::::M M::::::Mo:::::ooooo:::::ob:::::bbbbb:::::::b i::::i  l::::l e::::::e     e:::::e     N::::::N N::::N N::::::N           a::::a v:::::v     v:::::v
M::::::M  M::::M::::M  M::::::Mo::::o     o::::ob:::::b    b::::::b i::::i  l::::l e:::::::eeeee::::::e     N::::::N  N::::N:::::::N    aaaaaaa:::::a  v:::::v   v:::::v
M::::::M   M:::::::M   M::::::Mo::::o     o::::ob:::::b     b:::::b i::::i  l::::l e:::::::::::::::::e      N::::::N   N:::::::::::N  aa::::::::::::a   v:::::v v:::::v
M::::::M    M:::::M    M::::::Mo::::o     o::::ob:::::b     b:::::b i::::i  l::::l e::::::eeeeeeeeeee       N::::::N    N::::::::::N a::::aaaa::::::a    v:::::v:::::v
M::::::M     MMMMM     M::::::Mo::::o     o::::ob:::::b     b:::::b i::::i  l::::l e:::::::e                N::::::N     N:::::::::Na::::a    a:::::a     v:::::::::v
M::::::M               M::::::Mo:::::ooooo:::::ob:::::bbbbbb::::::bi::::::il::::::le::::::::e               N::::::N      N::::::::Na::::a    a:::::a      v:::::::v
M::::::M               M::::::Mo:::::::::::::::ob::::::::::::::::b i::::::il::::::l e::::::::eeeeeeee       N::::::N       N:::::::Na:::::aaaa::::::a       v:::::v
M::::::M               M::::::M oo:::::::::::oo b:::::::::::::::b  i::::::il::::::l  ee:::::::::::::e       N::::::N        N::::::N a::::::::::aa:::a       v:::v
MMMMMMMM               MMMMMMMM   ooooooooooo   bbbbbbbbbbbbbbbb   iiiiiiiillllllll    eeeeeeeeeeeeee       NNNNNNNN         NNNNNNN  aaaaaaaaaa  aaaa        vvv

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.navbar-mobile {
  background-color: transparent;
  display: none;
  grid-template-rows: 5rem 1fr;
  height: 60px;
  inset: 0;
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.navbar-mobile .logo {
  height: 65px;
}
.navbar-mobile .logo img {
  max-height: 40px;
}
.navbar-mobile .dropdownIcons {
  height: 16px;
}
.navbar-mobile input {
  background-color: transparent;
  border: none;
  color: var(--copy);
  font-size: 14px;
  text-transform: none;
  white-space: normal;
}
.navbar-mobile.mobile-nav-show {
  background-color: var(--primary);
  height: 100vh;
}
.navbar-mobile .mobile-nav-toggle {
  color: white;
  cursor: pointer;
  display: none;
  font-size: 28px;
  line-height: 0;
  pointer-events: all;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.navbar-mobile ul {
  color: white;
  display: none;
  gap: 2rem;
  height: fit-content;
  justify-content: flex-end;
  padding: 0 1rem;
  text-align: end;
}
.navbar-mobile ul.mobile-nav-show {
  display: grid;
}
.navbar-mobile ul li {
  cursor: pointer;
}
.navbar-mobile ul li a {
  color: inherit;
  white-space: nowrap;
}
.navbar-mobile ul hr {
  border: 0;
  border-top: 1px solid var(--primary-dark);
}
.navbar-mobile ul .selectors {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}
.navbar-mobile ul .darkModeSelector {
  align-items: center;
}
.navbar-mobile ul .darkModeSelector .darkModeToggle {
  margin-left: 0.5rem;
  margin-right: 0;
}
.navbar-mobile ul .darkModeSelector .darkModeToggle input[type=checkbox] {
  height: 0;
  visibility: hidden;
  width: 0;
}
.navbar-mobile ul .darkModeSelector .darkModeToggle input[type=checkbox]:checked + label {
  background: transparent;
  border: 2px solid var(--copy);
}
.navbar-mobile ul .darkModeSelector .darkModeToggle input[type=checkbox]:checked + label::after {
  background-color: var(--copy);
  right: calc(100% - 3px);
  transform: translateX(100%);
}
.navbar-mobile ul .darkModeSelector .darkModeToggle input[type=checkbox]:checked + label::before {
  opacity: 0;
}
.navbar-mobile ul .darkModeSelector .darkModeToggle label {
  background: transparent;
  border: 2px solid var(--primary-light);
  border-radius: 100px;
  cursor: pointer;
  height: 1.2rem;
  position: relative;
  text-indent: -9999px;
  top: 1px;
  width: 2.6rem;
}
.navbar-mobile ul .darkModeSelector .darkModeToggle label::before {
  border-color: var(--primary-light);
  border-style: solid;
  border-width: 0px 0px 2px 2px;
  content: "";
  display: block;
  height: 0.3rem;
  left: 0.7rem;
  position: absolute;
  top: 0.4rem;
  transform: translate3d(-50%, -50%, 0px) rotate(-45deg);
  width: 0.6rem;
}
.navbar-mobile ul .darkModeSelector .darkModeToggle label::after {
  background: var(--primary-light);
  border-radius: 1rem;
  content: "";
  height: 0.7rem;
  position: absolute;
  right: 3px;
  top: 0.12rem;
  width: 0.7rem;
}
.navbar-mobile .langContent {
  max-height: 0;
  overflow: hidden;
  width: 100%;
}
.navbar-mobile .langContent.expanded {
  background-color: var(--primary-light);
  max-height: 500px;
}
.navbar-mobile .langContent .lang {
  display: flex;
  gap: 0.5rem;
  padding: 5px 1.1rem;
}
.navbar-mobile .langContent .lang:hover {
  background-color: var(--primary-light);
  filter: brightness(1.1);
}
.navbar-mobile .langContent .lang:active {
  background-color: var(--primary-light);
}
.navbar-mobile .langContent .lang input {
  background-color: transparent;
  border: none;
  color: var(--copy);
  /* padding: 10px 20px; */
  font-size: 14px;
  text-transform: none;
  white-space: normal;
}
.navbar-mobile .langContent .lang img {
  height: 2rem;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

                                                            dddddddd
MMMMMMMM               MMMMMMMM                             d::::::d                  lllllll
M:::::::M             M:::::::M                             d::::::d                  l:::::l
M::::::::M           M::::::::M                             d::::::d                  l:::::l
M:::::::::M         M:::::::::M                             d:::::d                   l:::::l
M::::::::::M       M::::::::::M   ooooooooooo       ddddddddd:::::d   aaaaaaaaaaaaa    l::::l
M:::::::::::M     M:::::::::::M oo:::::::::::oo   dd::::::::::::::d   a::::::::::::a   l::::l
M:::::::M::::M   M::::M:::::::Mo:::::::::::::::o d::::::::::::::::d   aaaaaaaaa:::::a  l::::l
M::::::M M::::M M::::M M::::::Mo:::::ooooo:::::od:::::::ddddd:::::d            a::::a  l::::l
M::::::M  M::::M::::M  M::::::Mo::::o     o::::od::::::d    d:::::d     aaaaaaa:::::a  l::::l
M::::::M   M:::::::M   M::::::Mo::::o     o::::od:::::d     d:::::d   aa::::::::::::a  l::::l
M::::::M    M:::::M    M::::::Mo::::o     o::::od:::::d     d:::::d  a::::aaaa::::::a  l::::l
M::::::M     MMMMM     M::::::Mo::::o     o::::od:::::d     d:::::d a::::a    a:::::a  l::::l
M::::::M               M::::::Mo:::::ooooo:::::od::::::ddddd::::::dda::::a    a:::::a l::::::l
M::::::M               M::::::Mo:::::::::::::::o d:::::::::::::::::da:::::aaaa::::::a l::::::l
M::::::M               M::::::M oo:::::::::::oo   d:::::::::ddd::::d a::::::::::aa:::al::::::l
MMMMMMMM               MMMMMMMM   ooooooooooo      ddddddddd   ddddd  aaaaaaaaaa  aaaallllllll

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#cookieModal {
  background-color: var(--foreground);
  border-radius: 1rem;
  bottom: 5%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  left: 5%;
  position: fixed;
  width: 90%;
  z-index: 1;
}
#cookieModal.accepted {
  display: none;
  pointer-events: none;
}
#cookieModal .modal-dialog {
  padding: 1em;
  width: 100%;
}
#cookieModal .modal-dialog .modal-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#cookieModal .modal-dialog .modal-content p {
  color: var(--copy);
  display: inline-block;
  padding: 1em;
  width: fit-content;
}
#cookieModal .modal-dialog .modal-content .modal .btnDefault {
  float: right;
  font-size: unset;
  margin-right: 1rem;
  margin-top: 0;
  padding: 5px;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

FFFFFFFFFFFFFFFFFFFFFF                                        tttt
F::::::::::::::::::::F                                     ttt:::t
F::::::::::::::::::::F                                     t:::::t
FF::::::FFFFFFFFF::::F                                     t:::::t
  F:::::F       FFFFFFooooooooooo      ooooooooooo   ttttttt:::::ttttttt        eeeeeeeeeeee    rrrrr   rrrrrrrrr
  F:::::F           oo:::::::::::oo  oo:::::::::::oo t:::::::::::::::::t      ee::::::::::::ee  r::::rrr:::::::::r
  F::::::FFFFFFFFFFo:::::::::::::::oo:::::::::::::::ot:::::::::::::::::t     e::::::eeeee:::::eer:::::::::::::::::r
  F:::::::::::::::Fo:::::ooooo:::::oo:::::ooooo:::::otttttt:::::::tttttt    e::::::e     e:::::err::::::rrrrr::::::r
  F:::::::::::::::Fo::::o     o::::oo::::o     o::::o      t:::::t          e:::::::eeeee::::::e r:::::r     r:::::r
  F::::::FFFFFFFFFFo::::o     o::::oo::::o     o::::o      t:::::t          e:::::::::::::::::e  r:::::r     rrrrrrr
  F:::::F          o::::o     o::::oo::::o     o::::o      t:::::t          e::::::eeeeeeeeeee   r:::::r
  F:::::F          o::::o     o::::oo::::o     o::::o      t:::::t    tttttte:::::::e            r:::::r
FF:::::::FF        o:::::ooooo:::::oo:::::ooooo:::::o      t::::::tttt:::::te::::::::e           r:::::r
F::::::::FF        o:::::::::::::::oo:::::::::::::::o      tt::::::::::::::t e::::::::eeeeeeee   r:::::r
F::::::::FF         oo:::::::::::oo  oo:::::::::::oo         tt:::::::::::tt  ee:::::::::::::e   r:::::r
FFFFFFFFFFF           ooooooooooo      ooooooooooo             ttttttttttt      eeeeeeeeeeeeee   rrrrrrr

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.footer {
  background: var(--primary-darker);
  color: white;
  font-size: 14px;
  padding: 0 0 30px 0;
}
.footer a {
  color: white;
}
.footer .footer--top {
  background: var(--primary-dark);
  padding: 60px 0 30px 0;
}
.footer .footer--top .container {
  align-items: start;
  display: flex;
  justify-content: space-between;
}
.footer .footer--top .container h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  justify-content: space-between;
  padding-bottom: 12px;
  position: relative;
}
.footer .footer--top .container .footer-links {
  display: grid;
  margin-bottom: 30px;
}
.footer .footer--top .container .footer-links ul li {
  align-items: center;
  color: white;
  padding: 10px 0;
}
.footer .footer--top .container .footer-links ul li a {
  color: white;
  display: inline-block;
  line-height: 1;
}
.footer .footer--top .container .footer-links ul li a:hover {
  color: #a2cce3;
}
.footer .footer--top .container .footer-links ul li i {
  color: var(--primary-light);
  font-size: 18px;
  line-height: 1;
  padding-right: 2px;
}
.footer .footer--top .container .footer-contact {
  display: grid;
  margin-bottom: 30px;
}
.footer .footer--top .container .footer-contact ul li a {
  color: white;
  line-height: 26px;
  text-decoration: underline;
}
.footer .footer--top .container .footer-info {
  display: grid;
}
.footer .footer--top .container .footer-info .social-links a {
  background: var(--primary);
  border-radius: 50%;
  color: white;
  display: inline-block;
  font-size: 18px;
  height: 36px;
  line-height: 1;
  margin-right: 4px;
  padding: 8px 0;
  text-align: center;
  width: 36px;
}
.footer .footer--top .container .footer-info .social-links a:hover {
  background: var(--primary-light);
  color: white;
}
.footer .footer--bottom .copyright {
  color: white;
  padding-top: 30px;
  text-align: center;
}
.footer .footer--bottom .credits {
  color: white;
  font-size: 13px;
  padding-top: 10px;
  text-align: center;
}
.footer .footer--bottom .credits a {
  color: #a2cce3;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

                                                                           dddddddd
                                                                           d::::::d  iiii
     @@@@@@@@@                                                             d::::::d i::::i
   @@:::::::::@@                                                           d::::::d  iiii
 @@:::::::::::::@@                                                         d:::::d
@:::::::@@@:::::::@   mmmmmmm    mmmmmmm       eeeeeeeeeeee        ddddddddd:::::d iiiiiii   aaaaaaaaaaaaa
@::::::@   @::::::@ mm:::::::m  m:::::::mm   ee::::::::::::ee    dd::::::::::::::d i:::::i   a::::::::::::a
@:::::@  @@@@:::::@m::::::::::mm::::::::::m e::::::eeeee:::::ee d::::::::::::::::d  i::::i   aaaaaaaaa:::::a
@:::::@  @::::::::@m::::::::::::::::::::::me::::::e     e:::::ed:::::::ddddd:::::d  i::::i            a::::a
@:::::@  @::::::::@m:::::mmm::::::mmm:::::me:::::::eeeee::::::ed::::::d    d:::::d  i::::i     aaaaaaa:::::a
@:::::@  @:::::::@@m::::m   m::::m   m::::me:::::::::::::::::e d:::::d     d:::::d  i::::i   aa::::::::::::a
@:::::@  @@@@@@@@  m::::m   m::::m   m::::me::::::eeeeeeeeeee  d:::::d     d:::::d  i::::i  a::::aaaa::::::a
@::::::@           m::::m   m::::m   m::::me:::::::e           d:::::d     d:::::d  i::::i a::::a    a:::::a
@:::::::@@@@@@@@   m::::m   m::::m   m::::me::::::::e          d::::::ddddd::::::ddi::::::ia::::a    a:::::a
 @@:::::::::::::@  m::::m   m::::m   m::::m e::::::::eeeeeeee   d:::::::::::::::::di::::::ia:::::aaaa::::::a
   @@:::::::::::@  m::::m   m::::m   m::::m  ee:::::::::::::e    d:::::::::ddd::::di::::::i a::::::::::aa:::a
     @@@@@@@@@@@   mmmmmm   mmmmmm   mmmmmm    eeeeeeeeeeeeee     ddddddddd   dddddiiiiiiii  aaaaaaaaaa  aaaa

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media (prefers-reduced-motion) {
  .navbar .dropdown.active > ul {
    opacity: 1;
    top: -5%;
    visibility: visible;
  }
}
html[data-theme=dark] {
  --background: #181b1b;
  --foreground: #232929;
  --foreground-light: #2d3434;
  --border: #3b4445;
  --copy: #fbfbfb;
  --copy-light: #d6dbdc;
  --copy-lighter: #9facac;
}
html[data-theme=dark] a:not(.footer) :not(.navbar) :not(.logo) :not(.navbar-mobile) {
  color: var(--primary-light);
}
html[data-theme=dark] a:not(.footer) :not(.navbar) :not(.logo) :not(.navbar-mobile):hover {
  color: var(--primary-light);
}
html[data-theme=dark] .navbar .dropdownIcons {
  filter: invert(1);
}
html[data-theme=dark] .navbar #langArrow {
  filter: invert(1);
}
html[data-theme=dark] .map iframe {
  filter: invert(0.9);
}
html[data-theme=dark] .floating-label input {
  color: white !important;
}
html[data-theme=dark] .floating-label input:not(:placeholder-shown) + label {
  color: white !important;
  opacity: 1 !important;
}
html[data-theme=dark] .floating-label label {
  color: white !important;
}
html[data-theme=dark] .floating-label .icon svg {
  fill: var(--primary-light) !important;
  opacity: 1 !important;
}
html[data-theme=dark] .logistirio .logistirioBottom #logistirioRight .card a:not(.btnDefault) {
  color: var(--primary-light);
}
html[data-theme=dark] .logistirio .logistirioBottom #logistirioRight .card a:not(.btnDefault):hover {
  color: var(--primary-light);
}
html[data-theme=dark] .logistirio .logistirioBottom #logistirioRight .card .arrow {
  filter: invert(1);
}
html[data-theme=dark] .logistirio .logistirioBottom .leftTop,
html[data-theme=dark] .logistirio .logistirioBottom .leftBottom {
  background-color: var(--bg-accent3);
}
html[data-theme=dark] .logistirio .logistirioBottom .leftTop .filterResults h5,
html[data-theme=dark] .logistirio .logistirioBottom .leftBottom .filterResults h5 {
  color: var(--primary-light);
}
html[data-theme=dark] .logistirio .logistirioBottom .leftTop .arrow,
html[data-theme=dark] .logistirio .logistirioBottom .leftBottom .arrow {
  filter: invert(1);
}
html[data-theme=dark] .edit-doc--container .about-tab .subsection {
  border: 1px solid rgba(80, 80, 80, 0.5);
  box-shadow: unset;
}
html[data-theme=dark] .add-epitagi .about-tab .subsection {
  border: 1px solid rgba(80, 80, 80, 0.5);
  box-shadow: unset;
}
html[data-theme=dark] .admin .adminBottom .container #adminLeft {
  background-color: var(--bg-accent3);
}
html[data-theme=dark] .admin .adminBottom .container #adminLeft .filterResults h5 {
  color: var(--primary-light);
}
html[data-theme=dark] .admin .adminBottom .container #adminLeft .arrow {
  filter: invert(1);
}
html[data-theme=dark] .admin .adminBottom #adminRight .card .arrow {
  filter: invert(1);
}
html[data-theme=dark] .admin .adminBottom #adminRight .card .arrow a {
  color: var(--primary-light);
}
html[data-theme=dark] .admin .adminBottom #adminRight .card .arrow a:hover {
  color: var(--primary-light);
}

@media (max-width: 1024px) {
  #hero p {
    width: 80%;
  }
  #adminLeft li {
    margin-left: 0;
  }
  #logistirioLeft li {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .row-to-col {
    align-items: center;
    flex-direction: column;
  }
  .row-to-col-rev {
    align-items: center;
    flex-direction: column-reverse;
  }
  .navbar .navbar--desktop {
    display: none;
  }
  .navbar .navbar-mobile {
    display: grid;
  }
  .navbar .navbar-mobile .logo {
    align-items: center;
    display: flex;
    height: 65px;
    justify-content: center;
  }
  .navbar .navbar-mobile .mobile-nav-toggle {
    display: block;
  }
  .navbar .navbar-mobile ul li a {
    font-size: inherit;
    justify-content: inherit;
    width: fit-content;
  }
  .navbar .navbar-mobile #dropdownMenuUserIcon {
    padding: 10px 30px 10px 15px;
  }
  .navbar .navbar-mobile h6,
  .navbar .navbar-mobile p {
    color: white;
  }
  .breadcrumbs .container {
    display: block;
  }
  .breadcrumbs .container ul li {
    display: inline-block;
  }
  .footer .footer--top .container {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer .footer--top .container {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr;
  }
}
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
END
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Icons provided by FontAwesome */
/* Illustations provided by undraw.co and manypixels.co */
/** Photos provided by Unsplash.
* athens2:    Constantinos Kollias
* service-1:  Christina @ wocintechchat.com
* service-2:  Berkeley Communications
* service-3:
* service-4:  Glenn Carstens-Peters
* service-5:  freestocks
* service-6:
**/
