@charset "UTF-8";
.debug {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 600px;
  max-height: 70vh;
  overflow-y: auto;
  background: #2d2d2d;
  border: 2px solid #ffa500;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  z-index: 9999;
  color: #e0e0e0;
}
.debug__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  border-bottom: 1px solid #ff7700;
  border-radius: 6px 6px 0 0;
}
.debug__icon {
  font-size: 1.25rem;
}
.debug__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.debug__badge {
  background: #fff;
  color: #ff8c00;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.debug__toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.debug__toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}
.debug__toggle:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.debug__toggle-icon {
  display: block;
  font-weight: 300;
}
.debug__body {
  padding: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.debug__section {
  margin-bottom: 1.5rem;
}
.debug__section:last-child {
  margin-bottom: 0;
}
.debug__section--highlight {
  background: rgba(255, 165, 0, 0.1);
  padding: 0.75rem;
  border-radius: 6px;
  border-left: 3px solid #ffa500;
}
.debug__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffa500;
  border-bottom: 1px solid #444;
  padding-bottom: 0.5rem;
}
.debug__section-icon {
  font-size: 1rem;
}
.debug__content {
  background: #1e1e1e;
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  padding: 0.75rem;
}
.debug__pre {
  margin: 0;
  font-family: "Monaco", "Menlo", "Courier New", monospace;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #a9dc76;
  white-space: pre-wrap;
  word-break: break-word;
}
.debug__empty {
  display: block;
  color: #888;
  font-style: italic;
  font-size: 0.85rem;
}
.debug__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.debug__list-item {
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  background: #3a3a3a;
  border-left: 3px solid #ffa500;
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 1.4;
}
.debug__list-item:last-child {
  margin-bottom: 0;
}
.debug--collapsed .debug__body {
  display: none;
}
.debug--collapsed .debug__toggle-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  display: inline-block;
}
.debug::-webkit-scrollbar {
  width: 8px;
}
.debug::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 4px;
}
.debug::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}
.debug::-webkit-scrollbar-thumb:hover {
  background: #777;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  font-family: "Lato", sans-serif;
  color: #333333;
}
body.fixed {
  overflow: hidden;
}
body.tool .m-main {
  padding: 90px 0;
}
body.tool .m-main:before {
  content: "";
  position: fixed;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 30, 56, 0)), to(rgba(5, 30, 56, 0.5))), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(11, 12, 28, 0)), to(#0B0C1C));
  background: linear-gradient(90deg, rgba(5, 30, 56, 0) 0%, rgba(5, 30, 56, 0.5) 100%), linear-gradient(180deg, rgba(11, 12, 28, 0) 50%, #0B0C1C 100%);
  z-index: 0;
}

a {
  text-decoration: none;
}

input:focus,
textarea:focus {
  outline: 0;
}

img {
  max-width: 100%;
}

.m-nav {
  background-color: #004489;
  padding: 4px 24px;
}
.m-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.m-logo {
  display: block;
}
.m-logo img {
  max-height: 40px;
}

.m-menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.m-menu li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #fff;
  cursor: pointer;
}
.m-menu li a {
  color: #fff;
}
.m-menu li a:visited {
  color: #fff;
}
.m-menu li a:hover {
  color: #fff;
}
.m-menu li a:active {
  color: #fff;
}
.m-menu li:after {
  font-family: "Font Awesome 6 Pro";
  content: "";
}

.m-submenu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: none;
  position: absolute;
  right: -4px;
  bottom: -10px;
  left: -4px;
  z-index: 1;
  background-color: #004489;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  padding: 8px 0;
}
.m-submenu li {
  cursor: default;
}
.m-submenu li a {
  color: #fff;
  padding: 4px 8px;
}
.m-submenu li a:visited {
  color: #fff;
}
.m-submenu li a:hover {
  color: #fff;
}
.m-submenu li a:active {
  color: #fff;
}
.m-submenu li:after {
  content: none;
}
.m-submenu.active {
  display: block;
}

.m-main {
  background-size: cover;
  background-attachment: fixed;
}

.m-btn {
  border: 0;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
}
.m-btn--primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: #fff;
  border-radius: 4px;
  background-color: #004489;
  padding: 16px 24px;
}
.m-btn--primary:visited {
  color: #fff;
}
.m-btn--primary:hover {
  color: #fff;
}
.m-btn--primary:active {
  color: #fff;
}
.m-btn--primary.normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  line-height: 100%;
  margin-bottom: 8px;
  padding: 14px;
}
.m-btn--primary.alternative {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  line-height: 100%;
  background-color: #337AB7;
  margin-bottom: 8px;
  padding: 14px;
}
.m-btn--primary.secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  line-height: 100%;
  background-color: #ED7203;
  margin-bottom: 8px;
  padding: 14px;
}
.m-btn--primary.ghost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  line-height: 100%;
  color: #337AB7;
  border: 1px solid #337AB7;
  background-color: transparent;
  margin-bottom: 8px;
  padding: 14px;
}
.m-btn--primary.ghost:visited {
  color: #337AB7;
}
.m-btn--primary.ghost:hover {
  color: #337AB7;
}
.m-btn--primary.ghost:active {
  color: #337AB7;
}
.m-btn--primary.blur {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: -2%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.25);
  padding: 12px 16px;
}
.m-btn--primary.blur:visited {
  color: #fff;
}
.m-btn--primary.blur:hover {
  color: #fff;
}
.m-btn--primary.blur:active {
  color: #fff;
}
.m-btn--primary.blur:after {
  font-family: "Font Awesome 6 Pro";
  content: "";
}
.m-btn--primary.excel {
  color: #146C43;
  background-color: rgba(209, 231, 221, 0.5);
  border: 1px solid #479f76;
}
.m-btn--primary.excel:visited {
  color: #146C43;
}
.m-btn--primary.excel:hover {
  color: #146C43;
}
.m-btn--primary.excel:active {
  color: #146C43;
}
.m-btn--primary.guida {
  color: #6C6C6C;
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid #6C6C6C;
}
.m-btn--primary.guida:visited {
  color: #6C6C6C;
}
.m-btn--primary.guida:hover {
  color: #6C6C6C;
}
.m-btn--primary.guida:active {
  color: #6C6C6C;
}
.m-btn--primary.small {
  gap: 9px;
  padding: 12px 16px;
}
.m-btn--primary.white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  line-height: 100%;
  margin-bottom: 8px;
  padding: 14px;
  color: #337AB7;
  background-color: rgba(255, 255, 255, 0.9);
}
.m-btn--primary.white:visited {
  color: #337AB7;
}
.m-btn--primary.white:hover {
  color: #337AB7;
}
.m-btn--primary.white:active {
  color: #337AB7;
}
.m-btn--anchor {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #fff;
  border-radius: 8px;
  background-color: rgba(51, 122, 183, 0.5);
  padding: 12px 8px 12px 16px;
}
.m-btn--anchor:visited {
  color: #fff;
}
.m-btn--anchor:hover {
  color: #fff;
}
.m-btn--anchor:active {
  color: #fff;
}
.m-btn--anchor svg {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.m-btn--anchor svg path {
  stroke: #fff;
}
.m-btn--back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  margin: 40px 0 28px;
}
.m-btn--back:visited {
  color: #fff;
}
.m-btn--back:hover {
  color: #fff;
}
.m-btn--back:active {
  color: #fff;
}
.m-btn--back:before {
  font-family: "Font Awesome 6 Pro";
  content: "";
}
.m-btn--edit {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  border-radius: 4px;
  background-color: #337AB7;
  padding: 6px 10px;
}
.m-btn--edit:before {
  font-family: "Font Awesome 6 Pro";
  content: "";
}
.m-btn--edit.visible {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.m-btn--cancel {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 150%;
  color: #DC3545;
  padding: 6px 10px;
}
.m-btn--cancel:before {
  font-family: "Font Awesome 6 Pro";
  content: "";
}
.m-btn--cancel.visible {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.m-btn--society {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  font-size: 16px;
  line-height: 150%;
  color: #333333;
  border: 1px solid #CED4DA;
  border-radius: 4px;
  background-color: #E9ECEF;
  padding: 7px 13px;
}
.m-btn--society:visited {
  color: #333333;
}
.m-btn--society:hover {
  color: #333333;
}
.m-btn--society:active {
  color: #333333;
}
.m-btn--society:after {
  font-family: "Font Awesome 6 Pro";
  content: "";
  color: #337AB7;
}
.m-btn--save {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  border-radius: 4px;
  background-color: #337AB7;
  padding: 6px 10px;
}
.m-btn--save:before {
  font-family: "Font Awesome 6 Pro";
  content: "";
}
.m-btn--save.visible {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.m-btn--save:disabled {
  color: #fff;
  background-color: #ccdeed;
}
.m-btn--save:disabled:visited {
  color: #fff;
}
.m-btn--save:disabled:hover {
  color: #fff;
}
.m-btn--save:disabled:active {
  color: #fff;
}
.m-btn--report {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 120%;
  color: #337AB7;
  white-space: nowrap;
  padding: 8px;
}
.m-btn--report:visited {
  color: #337AB7;
}
.m-btn--report:hover {
  color: #337AB7;
}
.m-btn--report:active {
  color: #337AB7;
}
.m-btn--close {
  color: #333;
}
.m-btn--send {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.02rem;
  color: #fff;
  background-color: #004489;
  border-radius: 8px;
  padding: 12px;
}
.m-btn--send[disabled] {
  opacity: 0.4;
}

.m-header {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 99px 0 312px;
}
.m-header__cards {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.m-header:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 30, 56, 0)), to(rgba(5, 30, 56, 0.5))), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(11, 12, 28, 0)), to(#0B0C1C));
  background: linear-gradient(90deg, rgba(5, 30, 56, 0) 0%, rgba(5, 30, 56, 0.5) 100%), linear-gradient(180deg, rgba(11, 12, 28, 0) 50%, #0B0C1C 100%);
}

.m-section--homepage {
  background: -webkit-gradient(linear, left top, left bottom, from(#0A0B22), to(#222F44));
  background: linear-gradient(180deg, #0A0B22 0%, #222F44 100%);
  padding: 265px 0 102px;
}
.m-section--homepage .m-section__title {
  font-size: 48px;
  font-weight: 300;
  background: linear-gradient(114.11deg, #2B7FFF 0.39%, #AD46FF 99.61%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.m-section--homepage .m-section__description {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.m-section--homepage .m-section__text {
  margin-bottom: 90px;
  padding: 93px 97px 0 97px;
}
.m-section--homepage .m-section__text h3 {
  font-size: 27px;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
  margin-bottom: 21px;
}
.m-section--homepage .m-section__text p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.m-section--homepage .m-section__text ul {
  margin: 8px 0;
}
.m-section--homepage .m-section__text li {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.m-section--homepage .m-section__text blockquote {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 37px 0 0 0;
  padding: 16px;
}

.m-card--main {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  padding: 47px;
}
.m-card--main .m-card__label {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.m-card--main .m-card__title {
  font-size: 72px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
}
.m-card--main .m-card__description {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
}
.m-card--main .m-card__description p {
  margin: 0;
}
.m-card--header {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(25px);
  padding: 40px 40px 24px 40px;
}
.m-card--header .m-card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 117px;
  height: 117px;
  margin: 0 auto 28px;
}
.m-card--header .m-card__title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 8px;
}
.m-card--header .m-card__description p {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.m-card--auth {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  scroll-margin-top: 32px;
  margin-bottom: 40px;
  padding: 40px;
}
.m-card--auth .m-card__title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #337AB7;
  text-align: center;
  margin-bottom: 32px;
}
.m-card--auth .m-card__description {
  font-size: 14px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
}
.m-card--auth .m-card__description:last-child {
  margin: 0;
}
.m-card--auth p {
  color: rgba(255, 255, 255, 0.75);
}
.m-card--dashboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 4px 20px 0 rgba(26, 35, 126, 0.05);
  box-shadow: 0 4px 20px 0 rgba(26, 35, 126, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(198, 198, 205, 0.2);
  background-color: #fff;
  height: 100%;
  padding: 17px;
}
.m-card--dashboard .m-card__header {
  margin-bottom: 32px;
}
.m-card--dashboard .m-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.m-card--dashboard .m-card__title {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #45464D;
}
.m-card--dashboard .m-card__icon {
  margin-bottom: 16px;
}
.m-card--dashboard .m-card__label {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--color);
  margin-bottom: 8px;
}
.m-card--dashboard .m-card__text {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #454652;
  text-align: center;
  margin-bottom: 24px;
  padding: 0 18px;
}
.m-card--dashboard .m-card__text p {
  margin: 0;
}

.m-article {
  position: relative;
}
.m-article__inner {
  border-radius: 8px;
  background-color: #F9F9F9;
  padding: 48px 40px;
}
.m-article__header {
  margin-bottom: 27px;
}
.m-article__header ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.m-article__header ul li {
  font-size: 16px;
  line-height: 100%;
}
.m-article__header ul li.actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 16px;
  margin-left: auto;
}
.m-article__title {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 16px;
}
.m-article__text {
  margin-bottom: 80px;
}
.m-article__row {
  margin-bottom: 32px;
}
.m-article__row .m-article__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #F2F4F6;
  margin: 0;
  padding: 19px 16px;
}
.m-article__row .m-article__header h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 0;
}

.m-progress {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  padding: 25px;
}
.m-progress__inner {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 24px;
}
.m-progress__title {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 24px 0 4px;
}
.m-progress__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 12px;
  background-color: #E9E9E9;
  border-radius: 100px;
  margin-bottom: 12px;
  overflow: hidden;
}
.m-progress__bar span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100px;
  overflow: hidden;
}
.m-progress__step {
  display: block;
}
.m-progress__step.completate {
  height: 12px;
  background-color: #BDE038;
}
.m-progress__step.parziali {
  height: 12px;
  background-color: #F2BE22;
}
.m-progress__legend {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 8px;
}
.m-progress__legend li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}
.m-progress__flag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  text-align: right;
}
.m-progress__flag span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6C6C6C;
  margin-top: 2px;
}
.m-progress.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  padding: 25px;
}
.m-progress.inline .m-progress__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-transform: none;
  margin-bottom: 9px;
  padding-bottom: 0;
}
.m-progress.inline .m-progress__bar {
  height: 6px;
  margin: 0;
}
.m-progress.inline .m-progress__flag {
  position: static;
  font-size: 20px;
}
.m-progress.inline .m-progress__flag span {
  display: inline;
  color: #9D9D9D;
}
.m-progress.dashboard {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.m-progress.dashboard .m-progress__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin: 0 0 4px 0;
  padding: 0;
}
.m-progress.dashboard .m-progress__title span {
  color: #BA1A1A;
}
.m-progress.dashboard .m-progress__bar {
  background-color: #D5ECF8;
  height: 6px;
}
.m-progress.dashboard .m-progress__bar span {
  background-color: #BA1A1A;
}
@media screen and (max-width: 767px) {
  .m-progress__bar {
    margin-bottom: 24px;
  }
  .m-progress__legend {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
  }
}

.m-accordion {
  position: sticky;
  top: 0;
}
.m-accordion__item {
  border-radius: 10px;
  margin-bottom: 4px;
  overflow: hidden;
}
.m-accordion__item.open .m-accordion__header:before {
  content: "";
}
.m-accordion__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #004489;
  padding: 12px 8px 12px 36px;
}
.m-accordion__header p {
  font-size: 12px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.m-accordion__header a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.m-accordion__header:before {
  font-family: "Font Awesome 6 Pro";
  content: "+";
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 0;
  color: rgba(255, 255, 255, 0.5);
}
.m-accordion__title {
  position: relative;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  margin: 0;
}
.m-accordion__title:before {
  content: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color);
}
.m-accordion__progress {
  width: 100%;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.08);
}
.m-accordion__progress span {
  display: block;
  background-color: #F2BE22;
  height: 6px;
  border-radius: 100px;
}
.m-accordion__progress span.is-complete {
  background-color: #BDE038;
}
.m-accordion__body {
  display: none;
  background-color: #fff;
}
.m-accordion__body ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  max-height: calc(95vh - 300px);
  overflow: auto;
}
.m-accordion__body ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  line-height: 100%;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 16px;
}
.m-accordion__body ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #333333;
}
.m-accordion__body ul li a:visited {
  color: #333333;
}
.m-accordion__body ul li a:hover {
  color: #333333;
}
.m-accordion__body ul li a:active {
  color: #333333;
}
.m-accordion__body ul li a span:first-of-type {
  -webkit-box-flex: 0.4;
  -ms-flex: 0.4;
  flex: 0.4;
}
.m-accordion__body ul li a span:last-of-type {
  color: #9D9D9D;
}
.m-accordion__body ul li.completate:after {
  content: "";
  width: 16px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../icons/icon_completate.svg");
}
.m-accordion__body ul li.parziali:after {
  content: url("../icons/icon_parziali.svg");
}
.m-accordion__body ul li.highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.m-box {
  position: relative;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}
.m-box__header {
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 10px 10px 0 0;
  background-color: #004489;
  padding: 8px 16px;
  z-index: 999;
}
.m-box__title {
  position: relative;
  font-size: 14px;
  line-height: 112%;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0;
  padding: 8px;
}
.m-box__title:before {
  content: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color);
}
.m-box__body {
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  padding: 48px 43px;
}
.m-box__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 90px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 0;
}
.m-box__info dl {
  margin: 0;
}
.m-box__info dl dt {
  font-size: 12px;
  line-height: 100%;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 4px;
}
.m-box__info dl dd {
  font-size: 14px;
  line-height: 100%;
  margin: 0;
}
.m-box__contents {
  margin-bottom: 48px;
}
.m-box__item {
  margin: 0 16px 64px 16px;
  padding: 16px 0;
}
.m-box__item h3 {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
}
.m-box__item h3:has(+ p) {
  margin-bottom: 8px;
}
.m-box__item p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}
.m-box__item textarea {
  display: none;
  width: 100%;
  font-size: 14px;
  line-height: 1.25;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 10px 14px;
  resize: none;
}
.m-box__item:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin: 0 0 64px 0;
}
.m-box__item:last-of-type {
  margin: 0 16px;
}
.m-box__guide {
  font-size: 14px;
  line-height: 1.5;
  color: #6C6C6C;
  margin-top: 8px;
}
.m-box__guide a {
  color: #337AB7;
}
.m-box__guide a:visited {
  color: #337AB7;
}
.m-box__guide a:hover {
  color: #337AB7;
}
.m-box__guide a:active {
  color: #337AB7;
}
.m-box__text p {
  font-size: 16px;
  line-height: 150%;
}
.m-box__text p a {
  color: #337AB7;
  text-decoration: underline;
}
.m-box__text p a:visited {
  color: #337AB7;
}
.m-box__text p a:hover {
  color: #337AB7;
}
.m-box__text p a:active {
  color: #337AB7;
}
.m-box__text p:last-child {
  margin: 0;
}
.m-box__requirements {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.m-box__requirements li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 150%;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  padding: 16px 64px 16px 16px;
}
.m-box__requirements li .m-switch {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.m-box__requirements li:last-of-type {
  border-width: 1px 0;
}
.m-box__requirements li.disabled {
  font-weight: 700;
  pointer-events: none;
  background-color: #F9F9F9;
}
.m-box__requirements li.disabled .m-switch {
  opacity: 0.25;
}
.m-box__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.65);
  z-index: 40;
  pointer-events: auto;
}
.m-box__spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.12);
  border-top-color: #337ab7;
  -webkit-animation: mbox-spin 0.9s linear infinite;
  animation: mbox-spin 0.9s linear infinite;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.m-box__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.m-box .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  overflow: hidden;
  margin: -1px;
  padding: 0;
}
@-webkit-keyframes mbox-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes mbox-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.m-box.disabled * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 767px) {
  .m-box__body {
    padding: 12px;
  }
  .m-box__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
    padding: 16px;
  }
  .m-box__contents {
    padding: 32px 0;
  }
}

.m-radio {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px;
}
.m-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.m-radio label small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #337AB7;
}
.m-radio label span {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #6C6C6C;
}
.m-radio label span strong {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}
.m-radio input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(102, 112, 128, 0.3);
  cursor: pointer;
}
.m-radio input:checked {
  border: 2px solid #BDE038;
}
.m-radio input:checked:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #BDE038;
}
.m-radio:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.m-checkbox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px;
}
.m-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.m-checkbox label small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #337AB7;
}
.m-checkbox label span {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #6C6C6C;
}
.m-checkbox label span strong {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}
.m-checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(102, 112, 128, 0.3);
  cursor: pointer;
}
.m-checkbox input:checked {
  border: 2px solid #BDE038;
}
.m-checkbox input:checked:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #BDE038;
}
.m-checkbox:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.m-switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
}
.m-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.m-switch input:checked + .m-switch__slider {
  background-color: #BDE038;
}
.m-switch input:checked + .m-switch__slider:before {
  -webkit-transform: translateX(16px);
  transform: translateX(16px);
}
.m-switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CDCDCD;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 34px;
}
.m-switch__slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 3px 0 rgba(16, 24, 40, 0.1);
  box-shadow: 0 1px 3px 0 rgba(16, 24, 40, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.m-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
.m-modal__content {
  position: relative;
  width: 90vh;
  max-height: 90vh;
  overflow-y: scroll;
  height: auto;
  border-radius: 10px;
  background-color: #fff;
  padding: 48px;
}
.m-modal__item {
  margin-bottom: 48px;
  padding: 0 16px;
}
.m-modal__item h3 {
  font-size: 12px;
  line-height: 100%;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
}
.m-modal__item:last-of-type {
  margin: 0;
}
.m-modal__text p {
  font-size: 16px;
  line-height: 150%;
}
.m-modal__text p:last-child {
  margin: 0;
}
.m-modal .m-btn {
  position: absolute;
  top: 12px;
  right: 24px;
}
.m-modal.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-modal--guida .m-modal__item h3 {
  font-size: 16px;
  margin-bottom: 16px;
}
.m-modal--guida .m-modal__item ol {
  padding-left: 16px;
}
.m-modal--guida .m-modal__item ol li {
  margin-bottom: 8px;
}

.m-table {
  width: 100%;
}
.m-table th {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background-color: #E6E8EA;
  padding: 16px 24px;
}
.m-table td {
  font-size: 14px;
  line-height: 1;
  color: #191C1E;
  background-color: #fff;
  padding: 16px 24px;
}
.m-table td strong {
  font-weight: 700;
  line-height: 1.25;
  color: #333333;
}
.m-table td.text {
  width: 430px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
  color: #45464D;
  margin: 0;
}
.m-table .badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.36px;
  border-radius: 12px;
  padding: 3.5px 12px;
}
.m-table .badge--simple.low {
  color: #93000A;
  background-color: #FFDAD6;
}
.m-table .badge--simple.medium {
  color: #1E40AF;
  background-color: #DBEAFE;
}
.m-table .badge--simple.high {
  color: #166534;
  background-color: #DCFCE7;
}
.m-table .badge--dotted {
  text-transform: uppercase;
}
.m-table .badge--dotted:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #ccc;
}
.m-table .badge--dotted.low {
  color: #6C6C6C;
}
.m-table .badge--dotted.low:before {
  background-color: #6C6C6C;
}
.m-table .badge--dotted.medium {
  color: #FFB300;
}
.m-table .badge--dotted.medium:before {
  background-color: #FFB300;
}
.m-table .badge--dotted.high {
  color: #BA1A1A;
}
.m-table .badge--dotted.high:before {
  background-color: #BA1A1A;
}
.m-table .links {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.m-table .links li {
  margin-bottom: 3.5px;
}
.m-table .links li a {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #004489;
}
.m-table .links li a:visited {
  color: #004489;
}
.m-table .links li a:hover {
  color: #004489;
}
.m-table .links li a:active {
  color: #004489;
}
.m-table .links__toggle {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #45464D;
  cursor: pointer;
}

.m-form p a {
  font-weight: 700;
  color: #004489;
}
.m-form p a:visited {
  color: #004489;
}
.m-form p a:hover {
  color: #004489;
}
.m-form p a:active {
  color: #004489;
}
.m-form--contacts .m-form__header {
  margin-bottom: 24px;
}
.m-form--contacts .m-form__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
}
.m-form--contacts .m-form__title a {
  display: block;
  color: #004489;
}
.m-form--contacts .m-form__title a:visited {
  color: #004489;
}
.m-form--contacts .m-form__title a:hover {
  color: #004489;
}
.m-form--contacts .m-form__title a:active {
  color: #004489;
}
.m-form--contacts .m-form__body {
  padding: 24px;
}
.m-form--contacts .m-form__fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.m-form--contacts .m-form__fieldset label {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 10px;
}
.m-form--contacts .m-form__fieldset select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  background-image: url("../icons/icon_arrow-down--black.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 13px) center;
  border: 1px solid #CED4DA;
  border-radius: 4px;
  padding: 7px 13px;
}
.m-form--contacts .m-form__fieldset select:disabled {
  background-color: #E9ECEF;
}
.m-form--contacts .m-form__fieldset input {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  background-color: #fff;
  border: 1px solid #CED4DA;
  border-radius: 4px;
  padding: 7px 13px;
}
.m-form--contacts .m-form__fieldset input:disabled {
  background-color: #E9ECEF;
}
.m-form--contacts .m-form__fieldset textarea {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  border: 1px solid #CED4DA;
  border-radius: 4px;
  padding: 7px 13px;
}
.m-form--contacts .m-form__fieldset textarea:disabled {
  background-color: #E9ECEF;
}
.m-form--contacts .m-form__fieldset .m-form__submit {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  color: #fff;
  border: 1px solid #004489;
  border-radius: 8px;
  background-color: #004489;
  padding: 14px 0;
}
.m-form--contacts .m-form__field {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .m-form--contacts {
    padding: 32px 0;
  }
  .m-form--contacts .m-form__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .m-form--contacts .m-form__body {
    padding: 0;
  }
}

.m-select__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #7C7C7C;
  margin-bottom: 4px;
}
.m-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  color: #667080;
  border: 1px solid #BABABA;
  border-radius: 6px;
  background-color: #fff;
  background-image: url("../icons/icon_arrow-down.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  padding: 13px 12px;
}

.m-alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 15px;
}
.m-alert--warning {
  border: 1px solid #ffc107;
  background-color: #fff3cd;
}

.m-grid {
  display: grid;
  grid-template-columns: 306px 1fr;
  gap: 24px;
}

.chart-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}

.circle-wrapper {
  position: relative;
  height: 250px;
  margin: auto;
}
.circle-wrapper p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.14px;
  color: #1AA179;
  margin: 0;
}
.circle-wrapper canvas {
  display: block;
  margin: 0 auto;
}

.circle-label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
}
.circle-label .value {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
}
.circle-label .total {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
}

.stacked-wrapper {
  position: relative;
  width: 100%;
  height: 80px;
}

.legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin: 17px 0;
  font-size: 13px;
  color: #666;
}

.legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  display: inline-block;
}

.legend-line {
  width: 2px;
  height: 14px;
  background: #d94040;
  display: inline-block;
  border-radius: 1px;
}

.m-card__header--help {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
}

.m-help {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: help;
  outline: none;
}
.m-help__btn {
  color: #337AB7;
  font-size: 16px;
  line-height: 1;
}
.m-help__tip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  width: 300px;
  max-width: 80vw;
  background: #fff;
  color: #333333;
  padding: 12px 14px;
  border-radius: 8px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.2px;
  text-align: left;
  text-transform: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-transition: opacity 0.15s ease, visibility 0.15s, -webkit-transform 0.15s ease;
  transition: opacity 0.15s ease, visibility 0.15s, -webkit-transform 0.15s ease;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s, -webkit-transform 0.15s ease;
}
.m-help__tip dl {
  margin: 0;
}
.m-help__tip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 12px;
  border: 6px solid transparent;
  border-bottom-color: #fff;
}
.m-help:hover .m-help__tip, .m-help:focus-within .m-help__tip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.m-help__row {
  margin-bottom: 8px;
}
.m-help__row:last-child {
  margin-bottom: 0;
}
.m-help__row dt {
  font-weight: 700;
  color: #337AB7;
}
.m-help__row dd {
  margin: 0;
}
.m-help__row.is-current dt {
  color: #1AA179;
}
.m-help__row.is-current dt::after {
  content: " • attuale";
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.8;
}