:root {
  --mainColor: #b80000; /*Colour used for the header and "EVIDENCE GAP MAP" chart text*/
  --mainColorHover: #4800ff;
  --mainColor-5: #faf3f3;
  --mainColor-10: #f4e6e6;
  --mainColor-50: #ca8484;
  --mainColor-70: #b55353;
  --mainColor-A5: rgba(150, 10, 10, 0.05);
  --mainColor-A10: rgba(150, 10, 10, 0.1);
  --mainColor-A85: rgba(150, 10, 10, 0.85);
  --mainColor-cirlce: rgba(150, 10, 10, 0.35);
  --mainColor-cirlceSel: rgba(150, 10, 10, 0.65);

  --secondaryColor: #fa3c3c;
  --secondaryColorHover: #c83030;

  --topH: 100px;
  --footerH: 30px;
  --sideW: 180px;
  --mapMargin: 10px;
  --scrollWH: 21px;
  --easing: cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
  -webkit-overflow-scrolling: touch;

  color-adjust: exact !important;
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
  -webkit-tap-highlight-color: transparent;
}
*:focus,
*:focus-visible {
  outline: none;
}
::selection {
  background: var(--mainColor-A10);
}
::-moz-selection {
  background: var(--mainColor-A10);
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html,
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}
html.noscroll {
  position: fixed;
  overflow-y: scroll;
  width: 100%;
}
body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  background-color: #f7f7f7;
}
a {
  text-decoration: none;
}
#page {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: filter 400ms;
}
#page.blur {
  filter: blur(3px);
}
header {
  position: relative;
  z-index: 10;
  background-color: var(--mainColor);
}
#main-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.22);
}
.fullscreen #main-nav-bar {
  display: none;
}
#main-nav-bar .logo {
  box-sizing: border-box;
  height: 100%;
  padding: 0.85em;
}
#main-nav-bar .logo img {
  max-height: 100%;
}
#main-nav-bar .placeholder {
  flex: 1 1 100%;
  max-width: 50%;
  max-height: 100%;
}
#main-menu {
  user-select: none;
  display: flex;
  flex-direction: row;
  flex: 1 1 100%;
  height: 100%;
  z-index: 10;
}
#main-menu ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  height: 100%;
  margin: 0px;
  padding: 0px;
  border-left: solid 1px rgba(0, 0, 0, 0.1);
}
#main-menu .menu-item {
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  height: 100%;
  margin: 0px;
  padding: 0px;
  border-right: solid 1px rgba(0, 0, 0, 0.1);
}
#main-menu .more {
  display: none;
}
#main-menu .menu-item a {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 87px;
  max-width: 130px;
  height: 100%;
  padding: 0px 9px;
  color: rgba(255, 255, 255, 0.85);
  fill: rgba(255, 255, 255, 0.85);
  transition: all 200ms;
}
#main-menu .menu-item.sel a {
  background-color: var(--mainColor);
}
#main-menu .menu-item a:hover,
#main-menu .menu-item a:focus-visible {
  text-decoration: none;
  color: #8c5353;
  fill: #8c5353;
  background-color: rgba(255, 255, 255, 0.9);
}

#main-menu .menu-item a:before {
  pointer-events: none;
  content: attr(data-title);
  position: absolute;
  display: block;
  opacity: 0;
  transform: scale(0);
  top: calc(100% + 14px);
  font-size: 15px;
  line-height: 22px;
  text-transform: none;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  padding: 7px 15px;
  margin: 0px;
  border-radius: 4px;
  transform-origin: center top;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
#main-menu .menu-item a:hover:before,
#main-menu .menu-item a:focus-visible:before {
  opacity: 1;
  transition-duration: 150ms;
  transition-delay: 500ms;
  transform: scale(1);
}
#main-menu .close-area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#main-menu .close-area.visible {
  display: block;
}

#main-menu .menu-item.language {
  position: relative;
}
#main-menu .menu-item.language ul {
  display: none;
  position: absolute;
  top: 60px;
  left: 0px;
  list-style-type: none;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 2px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  z-index: 1;
}
#main-menu .menu-item.language li {
  display: block;
  font-size: 15px;
  line-height: 22px;
  text-align: left;
  text-transform: none;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
#main-menu .menu-item.language > a:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
}
#main-menu .menu-item.language > a:hover:after,
#main-menu .menu-item.language > a:focus-visible:after {
  border-top-color: #8c5353;
}
#main-menu .menu-item.language li:before {
  content: none;
}
#main-menu .menu-item.language li a {
  display: block;
  color: #3a3a3a;
  padding: 14px 16px;
}
#main-menu .menu-item.language li a:before {
  content: none;
}
#main-menu .menu-item.language li a:hover,
#main-menu .menu-item.language li a:focus-visible {
  background-color: #e6e6e6;
}
#main-menu .menu-item.language li.sel a {
  color: var(--mainColor);
  background-color: var(--mainColor-5);
}
#main-menu .menu-item.language li.sel a:hover,
#main-menu .menu-item.language li.sel a:focus-visible {
  background-color: var(--mainColor-10);
}

#sub-menu {
  display: flex;
  height: 50px;
}
#sub-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  height: 100%;
  margin: 0px auto;
  padding: 0px;
  border-left: solid 1px rgba(0, 0, 0, 0.1);
}
#sub-menu .menu-item {
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  height: 100%;
  margin: 0px;
  padding: 0px;
  border-right: solid 1px rgba(0, 0, 0, 0.1);
}
#sub-menu .menu-item a {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 87px;
  max-width: 130px;
  height: 100%;
  padding: 0px 9px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 200ms;
}
#sub-menu .menu-item.sel a {
  background-color: #a22161;
}

#sub-menu .menu-item a:before {
  pointer-events: none;
  content: attr(data-title);
  position: absolute;
  display: block;
  opacity: 0;
  transform: scale(0);
  top: calc(100% + 14px);
  font-size: 15px;
  line-height: 22px;
  text-transform: none;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  padding: 7px 15px;
  margin: 0px;
  border-radius: 4px;
  transform-origin: center top;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
#sub-menu .menu-item a:hover,
#sub-menu .menu-item a:focus-visible {
  text-decoration: none;
  color: #8c5353;
  fill: #8c5353;
  background-color: rgba(255, 255, 255, 0.9);
}
#sub-menu .menu-item a:hover:before,
#subs-menu .menu-item a:focus-visible:before {
  opacity: 1;
  transition-duration: 150ms;
  transition-delay: 500ms;
  transform: scale(1);
}

#main-menu-mobile {
  display: none;
  user-select: none;
  opacity: 0;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--mainColor-A85);
  z-index: 20;
}
#main-menu-mobile .close {
  appearance: none;
  display: block;
  border: none;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;

  box-sizing: border-box;
  position: fixed;
  top: 8px;
  right: 16px;
  width: 76px;
  height: 76px;
  padding: 10px;
  fill: #fff;
  border-radius: 50%;
  background: none;
  transition: fill 400ms, background-color 400ms;
}
#main-menu-mobile .close:hover,
#main-menu-mobile .close:focus-visible {
  fill: #8c5353;
  background-color: #fff;
}
#main-menu-mobile .contents {
  overflow: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
#main-menu-mobile ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
  min-width: 70%;
  max-width: 800px;
  margin: 0px auto;
  padding: 100px 0px 0px;
}
#main-menu-mobile .menu-item {
  width: 30%;
}
#main-menu-mobile .menu-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 15px;
  margin: 6px 8px;
  border-radius: 2px;
  transition: background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#main-menu-mobile .menu-item a:hover,
#main-menu-mobile .menu-item a:focus-visible {
  text-decoration: none;
  background-color: #fff;
}
#main-menu-mobile .menu-item .title {
  display: block;
  font-size: 21px;
  line-height: 32px;
  color: #3ff;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
#main-menu-mobile .menu-item .subtitle {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding-top: 6px;
}
#main-menu-mobile .menu-item a:hover .title,
#main-menu-mobile .menu-item a:focus-visible .title,
#main-menu-mobile .menu-item a:hover .subtitle,
#main-menu-mobile .menu-item a:focus-visible .subtitle {
  color: #8c5353;
}
#main-menu-mobile .contents .sep {
  margin: 0 22px 25px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

#main-menu-mobile .language {
  display: flex;
  justify-content: center;
  align-items: baseline;
  color: #fff;
  margin: 0 auto;
}
#main-menu-mobile .language .title {
  text-transform: uppercase;
  opacity: 0.8;
  font-size: 11px;
  margin-right: 5px;
}
#main-menu-mobile .language ul {
  margin: 0;
  padding: 0;
  min-width: auto;
  max-width: auto;
}
#main-menu-mobile .language li {
  display: block;
  font-size: 15;
  line-height: 22px;
  margin: 0;
  padding: 0 0 0 5px;
}
#main-menu-mobile .language li:before {
  content: none;
}
#main-menu-mobile .language a {
  display: inline-block;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#main-menu-mobile .language a.sel {
  color: rgb(255, 51, 51);
  font-weight: 600;
}
#main-menu-mobile .language a:hover,
#main-menu-mobile .language a:focus-visible {
  color: #8c5353;
  text-decoration: none;
  background-color: #fff;
}

#agendas-map {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.modal-container {
  box-sizing: border-box;
  position: fixed;
  display: flex;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 20px;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.modal-container .background {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.modal-container .dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  height: 100%;
  max-height: 900px;
  border-radius: 6px;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25),
    0 30px 60px -30px rgba(0, 0, 0, 0.3);
}
.modal-container .modal-header {
  user-select: none;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 70px;
  background-color: #b11f2a;
}
.modal-container .modal-header .counter {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 15px;
  color: #fff;
  text-align: right;
  font-weight: 700;
  padding: 20px;
  flex-basis: 65px;
  background-color: rgba(0, 0, 0, 0.3);
}
.modal-container .modal-header .labels-container {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 20px;
  flex-grow: 2;
}
.modal-container .modal-header .labels-container .label {
  max-width: 300px;
}
.modal-container .modal-header .labels-container .label:not(:last-child) {
  padding-right: 30px;
}
.modal-container .modal-header .labels-container .caption {
  font-size: 10px;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
}
.modal-container .modal-header .labels-container .title {
  font-size: 13px;
  color: #fff;
}
.modal-container .modal-header .labels-container .title strong {
  font-weight: 600;
}
.modal-container .modal-header .close-container {
  display: flex;
  align-items: center;
}
.modal-container .modal-header .close-btn {
  appearance: none;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  border: none;
  outline: none;
  margin: 0px 20px;
  cursor: pointer;
  touch-action: manipulation;
  padding: 0px;
  background: none;
}
.modal-container .modal-header .close-btn:focus-visible:before {
  border: solid 2px #fff;
}
.modal-container .modal-header .close-btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: solid 0px transparent;
  transition: all 300ms;
}
.modal-container .modal-header .close-btn:hover:before {
  background-color: rgba(255, 255, 255, 0.1);
}
.modal-container .doclist-container {
  overflow-y: auto;
  height: 100%;
  background-color: #f3f3f3;
}
.modal-container .doclist-container .item {
  position: relative;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  padding: 10px 20px 10px 65px;
}
.modal-container .doclist-container .item:last-child {
  border-bottom: none;
}
.modal-container .doclist-container .item.over,
.modal-container .doclist-container .item:hover,
.modal-container .doclist-container .item:focus-within {
  background-color: #fff;
}
.modal-container .doclist-container .count {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  font-size: 13px;
  color: #fff;
  background-color: #b11f2a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-container .doclist-container h3 {
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  margin: 0px;
}
.modal-container .doclist-container .title a {
  color: #000;
}
.modal-container .doclist-container .title a.over,
.modal-container .doclist-container .title a:hover,
.modal-container .doclist-container .title a:focus-visible {
  color: #000;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 0 var(--mainColor);
}
.modal-container .doclist-container .authors {
  font-size: 15px;
  line-height: 21px;
  color: #333;
}
.modal-container .doclist-container .details {
  font-size: 13px;
  line-height: 20px;
  color: #666;
}

.modal-container .doclist-container .study,
.modal-container .doclist-container .country {
  display: inline-block;
  color: #333;
  margin-right: 5px;
  margin-bottom: 4px;
  padding: 0px 4px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.1);
}
.modal-container .doclist-container .message {
  padding: 10px 20px 10px 65px;
}

.modal-container.help .dialog {
  max-width: 450px;
  height: auto;
  max-height: 100%;
}
.modal-container.help .modal-header {
  min-height: auto;
  background-color: var(--mainColor);
}
.modal-container.help .modal-header .labels-container {
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
.modal-container.help .doclist-container .item {
  padding: 12px 20px;
}

#filters-container {
  background-color: #f7f7f7;

  transition-property: box-shadow;
  transition-duration: 0ms;
}
#filters-container.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0px 2px 1px rgba(0, 0, 0, 0.3);
  z-index: 2;

  transition-duration: 400ms;
}
#filters-container .col {
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0px 10px;
  margin: 0 auto;
}
#filters-container.fixed .col {
  padding: 10px 20px;
  max-width: 730px;
}
#filters .contents {
  display: flex;
  margin: 0 -5px;
}
#filters .filter {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;

  cursor: pointer;
  display: inline-block;
  color: #000;
  margin: 0px 5px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background-color 300ms;
}
#filters .filter:focus-visible {
  box-shadow: 0px 0px 0px 2px #f7f7f7, 0px 0px 0px 4px var(--mainColor); /**/
}
#filters .custom-select {
  position: relative;
  height: 27px;
}
#filters .custom-select .close-area {
  position: fixed;
  display: none;
  cursor: auto;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#filters .custom-select .list-container {
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  height: 25px;
  border: solid 1px hsla(0, 0%, 80%, 1);
  border-radius: 14px;
  background-color: #f7f7f7;
  transition: left 300ms, background-color 300ms, border-radius 300ms,
    border-color 300ms, box-shadow 300ms;
}
#filters .custom-select.highlight .list-container {
  border-color: hsla(0, 0%, 25%, 1);
  background-color: hsla(0, 0%, 25%, 1);
}
#filters .custom-select ul {
  cursor: pointer;
  list-style-type: none;
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 5px);
  margin: 0px;
  padding: 0px;
  font-size: 13px;
  line-height: 16px;
  transition: left 300ms;
}
#filters .custom-select li {
  pointer-events: none;
  margin: 0px;
  padding: 0px;
  transition: all 300ms;
}
#filters .custom-select li:before {
  content: none;
}
#filters .custom-select:hover .list-container {
  border-color: hsla(0, 0%, 80%, 1);
  background-color: rgba(0, 0, 0, 0.05);
}
#filters .custom-select.highlight:hover .list-container {
  border-color: hsla(0, 0%, 20%, 1);
  background-color: hsla(0, 0%, 20%, 1);
}
#filters .custom-select .label {
  position: relative;
  display: inline-block;
  color: #000;
  font-weight: 400;
  height: 17px;
  padding: 9px 11px 9px 16px;
  transition: color 300ms;
}
#filters .custom-select .label:before {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  top: 12px;
  left: 6px;
  border: solid var(--mainColor);
  border-width: 0 2px 2px 0;
  padding: 3.5px 1.5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: opacity 300ms;
}
#filters .custom-select.open .selected .label:before {
  opacity: 1;
}
#filters .custom-select.highlight .label {
  color: #fff;
  font-weight: 600;
}

#filters .custom-select .label:after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  top: 16px;
  right: 0px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  transition: all 300ms;
}
#filters .custom-select .selected .label:after {
  opacity: 1;
}
#filters .custom-select.highlight .label:after {
  border-top-color: #fff;
}
#filters .custom-select.open .label:after {
  opacity: 0;
}

#filters .custom-select.open .close-area {
  display: block;
}
#filters .custom-select.open .list-container {
  left: -5px;
  border-radius: 5px;
  border-color: #fff !important;
  background-color: #fff !important;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05),
    0px 10px 20px -8px rgba(0, 0, 0, 0.3);
}
#filters .custom-select.scrollable .list-container {
  overflow-y: auto;
}
#filters .custom-select.open ul {
  left: 0px;
}
#filters .custom-select.open li {
  pointer-events: auto;
}
#filters .custom-select.open li.selected {
  background-color: var(--mainColor-5);
}
#filters .custom-select.open li:hover,
#filters .custom-select.open li:focus-visible {
  background-color: rgba(0, 0, 0, 0.08);
}
#filters .custom-select.open li.selected:hover,
#filters .custom-select.open li.selected:focus-visible {
  background-color: var(--mainColor-10);
}
#filters .custom-select.open .label {
  color: #333;
  font-weight: 600;
}
#filters .custom-select.open .selected .label {
  color: var(--mainColor);
}
#display-results {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: hsla(0, 0%, 30%, 1);
}
#display-results .contents {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 27px;
}
#display-results strong {
  font-size: 24px;
  line-height: 32px;
  padding: 0px 4px 3px;
}
#filters-toggle {
  display: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-top: 23px;
}
.fixed #filters-toggle {
  margin-top: 13px;
  margin-right: 20px;
}
#filters-toggle svg {
  opacity: 0.7;
  transition: All 400ms;
}
#filters-toggle:hover svg {
  opacity: 1;
  transition-duration: 0ms;
}
#filters-toggle svg line,
#filters-toggle svg circle {
  transition: All 400ms;
}
#filters-toggle.open svg .circle1 {
  cx: 15px;
}
#filters-toggle.open svg .circle2 {
  cx: 5px;
}
#filters-toggle.open svg .circle3 {
  cx: 12px;
}
#filters-toggle.open svg line,
#filters-toggle.open svg circle {
  stroke: var(--mainColor) !important;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 11px;
  color: #333;
  padding-bottom: 10px;
}
footer .contents {
  display: flex;
  justify-content: center;
}
footer .item {
  padding: 0px 8px;
  border-left: solid 1px rgba(0, 0, 0, 0.15);
}
footer .item:first-child {
  border-left: none;
}
footer .last-update .new-data {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  padding: 2px 4px;
  margin-right: 4px;
  border-radius: 2px;
  background-color: var(--mainColor);
}
footer a {
  color: #333;
  text-decoration: none;
}
footer a:hover,
footer a:focus-visible {
  text-decoration: underline;
}

@media screen and (max-width: 1279px) {
  #main-menu ul .menu-item:nth-child(n + 5) {
    display: none;
  }
  #main-menu .more {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  #main-menu ul .menu-item:nth-child(n + 3) {
    display: none;
  }
  #main-menu-mobile ul {
    justify-content: flex-start;
    margin: 0px;
    max-width: none;
  }
}

@media screen and (max-width: 640px) {
  #filters-container {
    display: flex;
  }
  #filters-container .col {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  #filters-toggle {
    display: block;
  }
  #filters .contents {
    flex-direction: column;
    margin: 0;
  }
  #filters .filter {
    margin: 0;
  }
  #filters .filter + .filter {
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  #main-menu {
    justify-content: flex-end;
  }
  #main-menu ul,
  #main-nav-bar .placeholder {
    display: none;
  }
  #main-menu .more {
    border-right: none;
    background-color: rgba(0, 0, 0, 0.1);
  }
  #main-menu .more a {
    min-width: 60px;
  }
  #main-menu-mobile ul {
    padding: 0 0 20px;
    flex-direction: column;
  }
  #main-menu-mobile .close {
    top: 4px;
    right: 4px;
    width: 66px;
    height: 66px;
  }
  #main-menu-mobile .menu-item {
    display: flex;
    width: calc(100% - 100px);
    margin-bottom: 0;
  }
  #main-menu-mobile .menu-item a {
    text-align: left;
    align-items: flex-start;
  }
  #main-menu-mobile .contents .sep {
    margin-bottom: 35px;
  }
  #main-menu-mobile .language {
    display: block;
    width: auto;
    margin: 0 0 20px 37px;
  }
  #main-menu-mobile .language .title {
    margin-bottom: 10px;
  }
  #main-menu-mobile .language li {
    padding-left: 0;
    margin-bottom: 5px;
    margin-left: -8px;
  }
  #sub-menu {
    height: 40px;
  }
  h2 {
    font-size: 30px;
    line-height: 34px;
  }
  h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
