@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap");
:root {
  --header-height: 7.2rem;
}
@media (min-width: 50em) {
  :root {
    --header-height: 9.6rem;
  }
}

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

html {
  font-size: 50%;
  cursor: default;
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "roboto", sans-serif;
  color: #333;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

form {
  display: grid;
  gap: 1.6rem;
}

input[type=text] {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  margin: 0.4rem;
  padding: 0.8rem;
  font-size: 2rem;
  background-color: #eee3cb;
}

input[type=password] {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  margin: 0.4rem;
  padding: 0.8rem;
  font-size: 2rem;
  background-color: #eee3cb;
}

input[type=email] {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  margin: 0.4rem;
  padding: 0.8rem;
  font-size: 2rem;
  background-color: #eee3cb;
}

.hidden {
  display: none !important;
}

.light {
  color: #967e76 !important;
  background-color: #fbf8f1 !important;
}

.dark {
  color: #fff !important;
  background-color: #967e76 !important;
}

.btn {
  all: unset;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: normal;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0.8rem 1.6rem;
  transition: all 0.2s;
  font-size: 2rem;
  border-radius: 3px;
  color: #fff;
  background-color: #967e76;
}
.btn.light:hover {
  background-color: #eee3cb !important;
}
.btn.dark:hover {
  background-color: #ac9993;
}

.loading-dots {
  display: flex;
  gap: 4px;
}
.loading-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #777;
  animation: breathe 1.4s infinite ease-in-out;
}
.loading-dots .dot:nth-child(1) {
  animation-delay: -0.32s;
}
.loading-dots .dot:nth-child(2) {
  animation-delay: -0.16s;
}
.loading-dots .dot:nth-child(3) {
  animation-delay: 0s;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  flex-grow: 1;
}

.container-fluid {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  margin: 0;
  padding: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 9.6rem;
  max-height: 4.8rem;
}
.site-logo svg {
  max-height: inherit;
  max-width: inherit;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  height: var(--header-height);
  padding: 1.6rem 2.4rem;
  background-color: #d7c0ae;
  color: #fff;
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  font-size: 3.6rem;
}
@media (min-width: 50em) {
  #header {
    justify-content: space-between;
  }
}

@media (max-width: 50em) {
  .menu-open {
    overflow: hidden;
  }
}
.header-title {
  text-decoration: none;
  color: #fff;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.mobile-header {
  display: none;
}
@media (max-width: 50em) {
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.6rem;
    padding: 2.4rem 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: #967e76;
  }
  .mobile-header h3 {
    color: white;
    margin: 0;
    font-size: 3.6rem;
    font-family: "Amatic SC", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.4;
  }
}
.mobile-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.mobile-close:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-close svg {
  width: 4.8rem;
  height: 4.8rem;
}

.settings-dropdown {
  position: relative;
}
.settings-dropdown .settings-icon {
  width: 3rem;
  height: 3rem;
}
.settings-dropdown .settings-toggle {
  cursor: pointer;
  background-color: inherit;
  color: #fff;
}
.settings-dropdown .settings-menu {
  position: absolute;
  z-index: 1000;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.settings-dropdown .settings-menu[hidden] {
  display: none;
}
.settings-dropdown .settings-menu .settings-item {
  text-decoration: none;
  color: #1a1a1a;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.settings-dropdown .settings-menu .settings-item svg {
  max-width: 2.4rem;
  max-height: 2.4rem;
}
.settings-dropdown .settings-menu .settings-item.btn-logout {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  width: 100%;
  text-align: left;
}
@media (min-width: 50em) {
  .settings-dropdown .settings-menu {
    top: 100%;
    right: 0;
    min-width: 25rem;
  }
}
@media (max-width: 50em) {
  .settings-dropdown .settings-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    background: #967e76;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .settings-dropdown .settings-menu:not([hidden]) {
    transform: translateX(0);
  }
  .settings-dropdown .settings-menu .settings-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .settings-dropdown .settings-menu .settings-item {
    color: white;
  }
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2.4rem;
  padding: 1.6rem 1.6rem;
  font-size: 1.6rem;
  color: white;
  background-color: #d7c0ae;
}
.footer a {
  color: white;
}
.footer .info {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
}
.footer .info__logo img {
  height: auto;
  max-width: 10rem;
}
.footer .info__copyright {
  align-self: flex-end;
}
.footer .contact__links {
  gap: 1.6rem;
}
.footer .contact__item {
  font-size: 2.4rem;
  padding: 0.8rem;
}
.footer-nav__item a {
  padding: 1.6rem;
  text-transform: uppercase;
}

@media (min-width: 37.5em) {
  html {
    font-size: 56.25%;
  }
  .container {
    max-width: 54rem;
  }
}
@media (min-width: 50em) {
  html {
    font-size: 62.5%;
  }
  .container {
    max-width: 72rem;
  }
}
@media (min-width: 62.5em) {
  .container {
    max-width: 96rem;
  }
}
@media (min-width: 75em) {
  .container {
    max-width: 114rem;
  }
}
@media (min-width: 90em) {
  .container {
    max-width: 100em;
  }
}
.notifications-container {
  position: relative;
  font-family: Arial;
}
.notifications-toggle {
  appearance: none;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  position: relative;
  padding: 0.8rem;
  border-radius: 3px;
  transition: background-color 0.2s;
}
.notifications-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.notifications-icon {
  width: 3rem;
  height: 3rem;
  color: #fff;
}
.notifications-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 500;
  min-width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d7c0ae;
}
.notifications-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  height: auto;
  max-height: 85vh;
  min-width: 40rem;
  z-index: 1000;
  overflow: hidden;
}
.notifications-dropdown[hidden] {
  display: none;
}
@media (min-width: 50em) {
  .notifications-dropdown {
    top: 100%;
    right: 0;
  }
}
@media (max-width: 50em) {
  .notifications-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    border: none;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    background-color: #fff;
  }
  .notifications-dropdown:not([hidden]) {
    transform: translateX(0);
  }
  .notifications-dropdown .notifications-header {
    background: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .notifications-dropdown .notifications-tab {
    background-color: #d7c0ae;
    color: white;
    font-size: 1.6rem;
  }
  .notifications-dropdown .notifications-tab.active {
    background-color: #967e76;
  }
  .notifications-dropdown .notifications-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
  }
  .notifications-dropdown .notifications-dismiss-all {
    color: #967e76;
  }
  .notifications-dropdown .notifications-dismiss-all:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .notifications-dropdown .notifications-content {
    padding: 1.6rem;
  }
  .notifications-dropdown .notifications-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    background-color: rgba(214, 221, 227, 0.1);
    border-radius: 3px;
    font-size: 1.6rem;
  }
  .notifications-dropdown .notifications-item:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .notifications-dropdown .notifications-item.unread {
    background: rgba(214, 221, 227, 0.4);
    border-left: 3px solid white;
  }
  .notifications-dropdown .notifications-item-time {
    color: #1a1a1a;
  }
  .notifications-dropdown .notifications-mark-read {
    color: #1a1a1a;
    font-size: 1.4rem;
  }
  .notifications-dropdown .notifications-mark-read:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
  .notifications-dropdown .notifications-load-more {
    height: 9.6rem;
    font-size: 2.4rem;
    font-weight: 500;
  }
  .notifications-dropdown .notifications-load-more:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .notifications-dropdown .notifications-loading {
    color: #b7c4cf;
  }
}
.notifications-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}
.notifications-tabs {
  display: flex;
  gap: 0.8rem;
}
.notifications-tab {
  background: none;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #64748b;
  transition: all 0.2s;
}
.notifications-tab.active {
  background: #d7c0ae;
  color: white;
}
.notifications-tab:hover:not(.active) {
  background: #e2e8f0;
}
.notifications-dismiss-all {
  background: none;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  color: #64748b;
  border-radius: 4px;
  transition: all 0.2s;
}
.notifications-dismiss-all:hover {
  background: #e2e8f0;
  color: #ef4444;
}
.notifications-content {
  max-height: 70vh;
  display: flex;
  flex-direction: column;
}
.notifications-list {
  max-height: 65vh;
  overflow-y: auto;
}
.notifications-list:empty::after {
  content: "Ni obvestil";
  display: block;
  text-align: center;
  padding: 4.8rem;
  color: #64748b;
}
.notifications-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.6rem;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.notifications-item:hover {
  background: #f8fafc;
}
.notifications-item.unread {
  background: #eff6ff;
  border-left: 3px solid #d7c0ae;
}
.notifications-item-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: #d7c0ae;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.notifications-item-content {
  flex: 1;
  min-width: 0;
}
.notifications-item-title {
  color: #1a1a1a;
  font-weight: 500;
  margin: 0 0 0.25rem 0;
  font-size: 2.4rem;
}
.notifications-item-time {
  font-size: 1.4rem;
  color: #64748b;
  margin: 0;
}
.notifications-item-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}
.notifications-mark-read {
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  color: #64748b;
  border-radius: 3px;
  transition: all 0.2s;
}
.notifications-mark-read:hover {
  background: #e2e8f0;
  color: #d7c0ae;
}
.notifications-mark-read svg {
  width: 2.4rem;
  height: 2.4rem;
}
.notifications-load-more {
  width: 100%;
  background: none;
  border: none;
  padding: 1.6rem;
  color: #d7c0ae;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.notifications-load-more:hover {
  background: #f8fafc;
}
.notifications-load-more:disabled {
  color: #94a3b8;
  cursor: not-allowed;
}
.notifications-loading {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
  padding: 4.8rem;
  color: #64748b;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
@keyframes breathe {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(183, 196, 207, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(183, 196, 207, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(183, 196, 207, 0);
  }
}
@keyframes pop {
  50% {
    transform: scale(1.2);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.container-home {
  background-color: #d7c0ae;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  flex-grow: 1;
}
.container-home.logged-in {
  background-color: #f0e8e1;
}
.container-home .home {
  min-width: 90%;
  padding: 4.8rem 1.6rem;
}
@media (min-width: 37.5em) {
  .container-home .home {
    padding: 4.8rem;
  }
}
.container-home .home .app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 2.4rem;
}
.container-home .home .app-grid .app-card {
  color: #fff;
  background-color: #967e76;
  border-radius: 6px;
  padding: 0.8rem;
  text-decoration: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container-home .home .app-grid .app-icon {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.container-home .home .app-grid .app-icon svg {
  width: 12.8rem;
  height: 12.8rem;
  color: white;
}
@media (max-width: 50em) {
  .container-home .home .app-grid .app-icon {
    margin-bottom: 0;
    border-radius: 12px;
  }
  .container-home .home .app-grid .app-icon svg {
    max-width: 9.6rem;
    max-height: 9.6rem;
  }
}
.container-home .home .app-grid .app-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
}
.container-home .home .app-grid .app-description {
  font-size: 1.6rem;
}
@media (max-width: 50em) {
  .container-home .home .app-grid .app-description {
    display: none;
  }
}
@media (max-width: 50em) {
  .container-home .home .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.container-home .home .drawing-container svg {
  max-height: 30vh;
  max-width: 100%;
  height: auto;
}
.container-home .home .welcome-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
.container-home .home .welcome-section .page-title {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
  color: white;
  font-size: 9.6rem;
  text-wrap: nowrap;
  line-height: 1;
}
@media (min-width: 50em) {
  .container-home .home .welcome-section .page-title {
    font-size: 12rem;
  }
}
.container-home .home .welcome-section .page-subtitle {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
  color: white;
  font-size: 2.4rem;
  text-wrap: nowrap;
  line-height: 1;
}
.container-home .home .welcome-section .drawing-container {
  display: flex;
  place-content: center;
}
.container-home .home .welcome-section .drawing-container svg {
  width: 60%;
  height: auto;
}
@media (min-width: 50em) {
  .container-home .home .welcome-section .drawing-container svg {
    width: 30%;
  }
}
.container-home .home .welcome-section .login-button {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 2.4rem;
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  font-size: 3.6rem;
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
}

/*# sourceMappingURL=main.css.eebfcd6e3a40.map */
