.toolbar-menu-administration .toolbar-menu .menu-item a {
  font-family: var(--font-regular);
  font-weight: 400;
  font-size: 14px;
}

.field--name-field-file .file {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.field--name-field-file .file .file-icon {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../../media/images/file.svg) no-repeat center;
}

.field--name-field-file .file a {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0em;
  color: var(--primary-color);
  text-decoration: unset;
}

[dir="ltr"] .field--name-field-file .file a {
  margin-left: 10px;
}

[dir="rtl"] .field--name-field-file .file a {
  margin-right: 10px;
}

@media (max-width: 48rem) {
  .field--name-field-file {
    overflow: auto;
  }
}

.page-404 .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.errors-404 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.error-text {
  text-align: center;
}

.error-text .text-title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  color: var(--text-color);
  margin-top: 32px;
  margin-bottom: 8px;
}

.error-text p {
  font-family: var(--font-regular);
  font-weight: 400;
  line-height: normal;
  color: var(--text-color);
  margin: 0;
}

.error-text .home-btn {
  margin: 32px auto 0 auto;
}

.sitemap .sitemap-item {
  margin-bottom: 0;
}

.sitemap ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: square;
}

.sitemap ul li {
  margin-bottom: 8px;
}

.sitemap ul li a {
  font-family: var(--font-regular);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--text-color);
  text-decoration: unset;
}

.sitemap ul li a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

#loader-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #fff;
}

[dir="ltr"] #loader-wrapper {
  left: 0;
}

[dir="rtl"] #loader-wrapper {
  right: 0;
}

#loader-wrapper #loader {
  display: block;
  position: relative;
  top: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  animation: spin 2s linear infinite;
  z-index: 1001;
}

[dir="ltr"] #loader-wrapper #loader {
  left: 50%;
  margin: -75px 0 0 -75px;
}

[dir="rtl"] #loader-wrapper #loader {
  right: 50%;
  margin: -75px -75px 0 0;
}

#loader-wrapper #loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--grey-color);
  animation: spin 3s linear infinite;
}

#loader-wrapper #loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--accent-color);
  animation: spin 1.5s linear infinite;
}

.loaded #loader-wrapper {
  visibility: hidden;
  transition: background-color 0.2s ease-out;
}

.loaded #loader-wrapper #loader {
  opacity: 0;
  transition: all 0.1s ease-out;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.captcha .captcha__title {
  position: relative;
  display: block;
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 14px;
  line-height: 21px;
  margin: 0 0 4px 0 !important;
  color: var(--text-color);
}

html[data-theme=theme-dark] #loader-wrapper,
.dark-mode #loader-wrapper {
  background-color: var(--dark-grey-bg) !important;
}

/*# sourceMappingURL=general.css.map*/