html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input {
  outline: none;
}
/* PATHS */
/* COLORS */
/* MIXINS */
/* GRADIENT */
.clearfix {
  @include clearfix;
}
/* Animacoes */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
            transform: translate3d(0, -10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
            transform: translate3d(0, -10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}
.leaflet-container {
  overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-drag: none;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
  max-width: none !important;
  max-height: none !important;
}
.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
  -webkit-filter: inherit;
          filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 800;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}
.leaflet-pane {
  z-index: 400;
}
.leaflet-tile-pane {
  z-index: 200;
}
.leaflet-overlay-pane {
  z-index: 400;
}
.leaflet-shadow-pane {
  z-index: 500;
}
.leaflet-marker-pane {
  z-index: 600;
}
.leaflet-tooltip-pane {
  z-index: 650;
}
.leaflet-popup-pane {
  z-index: 700;
}
.leaflet-map-pane canvas {
  z-index: 100;
}
.leaflet-map-pane svg {
  z-index: 200;
}
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}
/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-control {
  float: left;
  clear: both;
}
.leaflet-right .leaflet-control {
  float: right;
}
.leaflet-top .leaflet-control {
  margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
  margin-left: 10px;
}
.leaflet-right .leaflet-control {
  margin-right: 10px;
}
/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1), -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}
/* cursors */
.leaflet-interactive {
  cursor: pointer;
}
.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}
/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}
/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}
.leaflet-container a {
  color: #0078A8;
}
.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}
/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* general toolbar styles */
.leaflet-bar {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.leaflet-bar a:hover {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px;
}
.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}
/* layers control */
.leaflet-control-layers {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}
.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}
.leaflet-control-layers label {
  display: block;
}
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}
/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(images/marker-icon.png);
}
/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover {
  text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}
.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}
.leaflet-popup-content p {
  margin: 18px 0;
}
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  -webkit-box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}
.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}
/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}
/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}
/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}
.leaflet-tooltip-top {
  margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}
.leaflet-tooltip-left {
  margin-left: -6px;
}
.leaflet-tooltip-right {
  margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* OLD BROWSERS */
.old_browser {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999999;
  background-color: white;
  left: 0px;
  top: 0px;
  text-align: center;
  display: none;
}
.old_browser p {
  margin: 0 auto;
  margin-bottom: 15px;
  max-width: 600px;
}
.old_browser > div {
  margin-top: 15%;
}
.old_browser > div > img {
  height: 50px;
  width: 50px;
  margin-bottom: 10px;
}
.old_browser .new_browsers > a {
  margin: 10px;
}
.old_browser .report_explain {
  margin-top: 30px;
}
.old_browser h3 {
  font-size: 20px;
}
@media \0screen\,screen\9  {
  .old_browser {
    display: block;
  }
}
@media screen\0  {
  .old_browser {
    display: block;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .old_browser {
    display: none;
  }
}
/* STRUCTURE */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html,
body {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #03265E;
  height: 100%;
}
body.blocked {
  overflow: hidden;
}
body {
  background-color: #fcfbfa;
  padding-top: 60px;
  overflow-y: scroll;
  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: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}
#container {
  min-height: 100%;
}
.wrap {
  width: 95%;
  max-width: 1440px;
  margin: 0 auto;
}
a {
  cursor: pointer;
}
input:focus {
  border-color: #17B0E4 !important;
}
/* SCROLL BAR */
::-webkit-scrollbar {
  width: 6px;
  background: white;
}
::-webkit-scrollbar-track {
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #d6d6d6;
}
::-webkit-scrollbar-thumb:window-inactive {
  background: #d6d6d6;
}
/* GENERAL */
#patterns {
  position: absolute;
  left: -1000px;
  top: -1000px;
}
.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 9999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
}
.loader > img {
  height: 75px;
  width: 75px;
}
.box {
  padding: 1rem;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
}
#cookie_box {
  display: none;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 999999;
  width: 100%;
  padding: 20px 0px;
}
#cookie_box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#cookie_box > div > div {
  padding-right: 50px;
}
@media (max-width: 768px) {
  #cookie_box > div {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #cookie_box > div > div {
    padding-right: 0px;
    padding-bottom: 20px;
  }
  #cookie_box > div > div p {
    text-align: center;
  }
}
#tooltip {
  position: fixed;
  z-index: 999999;
  top: 50%;
  left: 50%;
  max-width: 260px;
  margin: 0 -160px;
  background: white;
  -webkit-box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 0.4em;
  visibility: hidden;
  -webkit-transition: opacity 0.6s, visibility 0.6s, height 0.6s;
  transition: opacity 0.6s, visibility 0.6s, height 0.6s;
  opacity: 0;
}
#tooltip .score-title {
  max-width: 32%;
  display: inline-block;
  vertical-align: middle;
}
#tooltip .box-outline {
  margin-left: 5px;
  margin-right: 5px;
}
[data-responsibility="1"] #tooltip .box-outline {
  border-color: #31CFB5;
}
[data-responsibility="2"] #tooltip .box-outline {
  border-color: #388E91;
}
[data-responsibility="3"] #tooltip .box-outline {
  border-color: #5FD7FF;
}
[data-responsibility="4"] #tooltip .box-outline {
  border-color: #1695D4;
}
#tooltip .btn-txt {
  margin: 10px 0px;
}
#tooltip p {
  line-height: normal;
}
#tooltip .tooltip-content {
  min-height: 165px;
  min-width: 220px;
}
@media (max-width: 768px) {
  #tooltip {
    display: none !important;
    left: 0 !important;
    top: inherit !important;
    bottom: 0px;
    margin: 0px !important;
    height: 100%;
  }
}
#tooltip.active {
  visibility: visible;
  opacity: 1;
}
.tip {
  width: 200px;
  padding: 20px;
  position: absolute;
  right: 10%;
  top: 35%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  visibility: hidden;
  opacity: 0;
  text-align: left;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.tip .btn.btn-txt {
  margin: 0px;
}
.tip .btn.btn-txt:hover {
  color: white;
}
.tip .fishbone-icon {
  padding-left: 40px;
  background: url('../assets/images/fishbone-icon.svg') left center no-repeat;
  background-size: 30px 30px;
}
.tip:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #03265E;
}
.tip.show {
  right: calc(-5% + -10px);
  visibility: visible;
  opacity: 1;
}
.tip ~ .tip {
  top: calc(35% + 200px);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.tip ~ .tip:before {
  top: 15%;
}
.tip.down {
  right: initial;
  left: 0%;
  top: 130%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
.tip.down:before {
  top: -9px;
  left: calc(50% - 10px);
  border-bottom: 10px solid #03265E;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.tip.down ~ .tip {
  top: 130%;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.tip.down ~ .tip:before {
  top: -9px;
}
.tip.down.show {
  top: 110%;
}
.tip[data-tip="howtoReadTip"].show {
  right: 12.5%;
}
.tip[data-tip="yearMapTip"] {
  left: initial;
  right: 68%;
}
.tip[data-tip="rankChangeTip"] {
  left: 16%;
}
.tip[data-tip="scoreChangeTip"] {
  left: 91%;
}
@media (max-width: 1024px) {
  .tip {
    display: none;
  }
}
.highlighted-country {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  padding: 2px 4px;
  left: 25px;
  margin-bottom: -10px;
  bottom: 0%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.highlighted-country:before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #03265e;
  display: block;
  position: absolute;
  left: -24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.highlighted-country.ativo {
  opacity: 1;
  visibility: visible;
}
.fish-box-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.fish-box-grid .fish-box {
  width: 28%;
  padding: 40px 20px;
  background-color: white;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
}
.fish-box-grid .fish-box > * {
  max-width: 100%;
}
.fish-box-grid .fish-box .graph > * {
  display: block;
  margin: 0 auto;
}
.fish-box-grid .fish {
  margin: -10px auto;
  max-width: 100%;
}
.fish-box-grid .fish > * {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 1024px) {
  .fish-box-grid {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .fish-box-grid .fish-box {
    width: 100%;
  }
}
.flag-alert {
  display: inline-block;
  width: 15px;
  height: 20px;
  vertical-align: middle;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 22"><path d="M1,3V21" fill="none" stroke="%2331cfb5" stroke-linecap="round" stroke-width="2"/><path d="M8.5,11v1" fill="none" stroke="%2331cfb5" stroke-linecap="round" stroke-width="2"/><path d="M8.5,5V8" fill="none" stroke="%2331cfb5" stroke-linecap="round" stroke-width="2"/><path d="M1,3A6.5,6.5,0,0,1,5.4,1C8,1,10,3,12,3a4.4,4.4,0,0,0,3-1" fill="none" stroke="%2331cfb5" stroke-linecap="round" stroke-width="2"/><path d="M1,16a6.5,6.5,0,0,1,4.4-2C8,14,10,16,12,16a4.4,4.4,0,0,0,3-1V2" fill="none" stroke="%2331cfb5" stroke-linecap="round" stroke-width="2"/></svg>');
}
.comparative {
  position: relative;
  z-index: 9;
}
.comparative .grid {
  position: absolute;
  width: 100%;
  height: calc(100% - 10px);
  right: 0px;
  top: 5px;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.comparative .grid .line {
  width: 100%;
  position: relative;
  padding-right: 10px;
}
.comparative .grid .line hr {
  width: 100%;
  height: 1px;
  color: #7D878B;
  background-color: #A6B6BD;
  border: none;
  margin: 0;
}
.comparative .grid .line span {
  margin-left: 5px;
  color: #7D878B;
  font-size: 0.72rem;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.comparative .bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 12px);
  height: calc(100% - 10px);
  margin-top: 5px;
  max-width: 304px;
}
.comparative .bars > div {
  background-color: #A6B6BD;
  width: 100%;
  margin-right: 1px;
}
.comparative .bars > div.highlight {
  background-color: #03265E;
  padding: 0px;
}
@media all and (-ms-high-contrast: none) {
  .comparative .bars > div {
    width: auto;
    min-width: 1px;
  }
  .comparative *::-ms-backdrop > div,
  .comparative .bars > div {
    width: auto;
    min-width: 1px;
  }
}
@media (max-width: 1024px) {
  .comparative .bars {
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .comparative .bars {
    max-width: 304px;
  }
}
.search-form {
  position: relative;
  padding: 0px 10px;
  margin: 20px 0px;
}
.search-form .icone {
  position: absolute;
  left: 18px;
  top: 8px;
  width: 20px;
  display: block;
  height: 21px;
  width: 21px;
}
.search-form .icone svg * {
  stroke: #03265E;
  stroke-width: 2px;
}
.search-form input {
  width: calc(100% - 10px);
  background-color: transparent;
  padding: 6px 10px 6px 30px;
  border-radius: 5px;
  border-color: #A6B6BD;
  border-width: 2px;
  border-style: solid;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  max-width: 150px;
}
.search-form input:focus + .search-result {
  visibility: visible;
  opacity: 1;
}
.search-form .search-result {
  position: absolute;
  background-color: white;
  top: calc(100% + 15px);
  left: 10px;
  width: calc(100% - 20px);
  max-height: calc((100vh/5)*3);
  padding: 0px;
  overflow-y: auto;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.search-form .search-result > li {
  padding: 0px 15px;
  list-style: none;
}
.search-form .search-result > li > * {
  display: block;
}
.search-form .search-result > li:last-child {
  padding-bottom: 2em;
}
@media (max-width: 1024px) {
  .search-form {
    padding: 0px;
  }
  .search-form .icone {
    left: 7px;
  }
}
.highlight {
  background: url('../assets/images/sea.jpg') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0px;
}
.highlight h1,
.highlight h2,
.highlight p {
  color: white;
}
.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 10px 0px;
}
.social > * {
  margin-right: 10px;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25% !important;
  padding-top: 30px !important;
  width: 100% !important;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.variation {
  color: #7D878B;
  font-weight: 700;
  font-size: 0.85rem;
}
.variation:before {
  content: "";
  height: 8px;
  width: 8px;
  display: inline-block;
  vertical-align: middle;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25rem;
}
.variation.neutral::before {
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7.4 1"><line x1="7.4" y1="0.5" y2="0.5" fill="none" stroke="%237d878b" stroke-miterlimit="10"/></svg>');
}
.variation.positive {
  color: #27AE60;
}
.variation.positive:before {
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8.4 8.4"><path d="M8.2,4.5,4.5,8.2m0,0L.8,4.5M4.5,8.2V.8" transform="translate(-0.3 -0.3)" fill="none" stroke="%2327ae60" stroke-linecap="round"/></svg>');
}
.variation.negative {
  color: #EB5757;
}
.variation.negative:before {
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8.4 8.4"><path d="M1.2,4.3,4.9.6m0,0L8.6,4.3M4.9.6V8" transform="translate(-0.7 -0.1)" fill="none" stroke="%23eb5757" stroke-linecap="round"/></svg>');
}
.variation.alternative.positive:before {
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8"><path d="M7.5,1V8m0,0H.5m7,0L.5,1" transform="translate(0 -0.5)" fill="none" stroke="%2327ae60" stroke-linecap="round"/></svg>');
}
.variation.alternative.negative:before {
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8"><path d="M.5,1h7m0,0V8m0-7L.5,8" transform="translate(0 -0.5)" fill="none" stroke="%23eb5757" stroke-linecap="round"/></svg>');
}
.drop-download {
  position: relative;
}
.drop-download ul {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  left: 0px;
  top: 50%;
  width: calc(100% - 50px);
  max-height: 0px;
  background-color: white;
  opacity: 0;
  visibility: hidden;
  padding: 0px;
  margin: 0px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
}
.drop-download ul li {
  text-align: center;
  color: #03265E;
  padding: 0.5rem;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 400;
}
.drop-download ul li a {
  display: block;
}
.drop-download input {
  position: absolute;
  left: -200vw;
}
.drop-download input:checked ~ ul {
  max-height: 800vh;
  top: 100%;
  opacity: 1;
  visibility: visible;
}
/* TYPOGRAPHY */
p {
  line-height: 1.5rem;
}
h1 {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 700;
}
strong {
  font-weight: 700;
}
/* LISTS */
ul {
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}
/* DEVICE ORIENTATION */
#device-orientation {
  height: 100%;
  width: 100%;
  position: fixed;
  background: #03265E;
  z-index: 9999999;
  left: 0px;
  top: 0px;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#device-orientation .logo {
  background: url('../assets/images/logo.svg') left center no-repeat;
  background-size: contain;
  height: 40px;
  width: 100px;
  padding-left: 45px;
  line-height: 14px;
  font-size: 1rem;
  font-family: Lato;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 20px;
  right: 20px;
}
#device-orientation .device {
  background: url('../assets/images/mobile.svg') center center no-repeat;
  background-size: contain;
  height: 120px;
  width: 120px;
  margin: 10px auto 30px;
  -webkit-animation: rotacionar 3s infinite;
          animation: rotacionar 3s infinite;
}
#device-orientation > * {
  max-width: 80%;
}
@media (min-width: 300px) and (max-width: 812px) and (orientation: portrait) {
  #device-orientation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@-webkit-keyframes rotacionar {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  30% {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  80% {
    opacity: 1;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  90% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@keyframes rotacionar {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  30% {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  80% {
    opacity: 1;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  90% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
/* Main Modal */
.mainModal {
  background-color: rgba(3, 38, 94, 0.75);
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 9999999;
  display: none;
}
.mainModal .mainModalBox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #03265E;
  width: 650px;
  max-width: calc(100% - 2rem);
  text-align: center;
  padding: 1.5rem;
}
.mainModal .mainModalBox .logo {
  background: url('../assets/images/logo.svg') left center no-repeat;
  background-size: contain;
  height: 38px;
  padding-left: 45px;
  line-height: 36px;
  font-size: 1.3rem;
  font-family: Lato;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  color: white;
  display: inline-block;
  margin-bottom: 1em !important;
}
.mainModal .mainModalBox h3 {
  font-size: 1rem;
  line-height: 1em;
  font-weight: 800;
  color: #17B0E4;
  margin-bottom: 0.5em !important;
}
.mainModal .mainModalBox p {
  font-size: 1rem;
  line-height: 1.25em;
  font-weight: 200;
  color: white;
  margin-bottom: 2em !important;
}
.mainModal .mainModalBox p a {
  color: #17B0E4;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mainModal .mainModalBox p a:hover,
.mainModal .mainModalBox p a:focus {
  color: white;
}
/* MENU */
nav {
  position: fixed;
  height: 60px;
  width: 100vw;
  top: 0px;
  left: 0px;
  background-color: white;
  z-index: 99999;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.01), 0 3px 6px rgba(0, 0, 0, 0.02);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.01), 0 3px 6px rgba(0, 0, 0, 0.02);
}
nav .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
}
nav .logo {
  background: url('../assets/images/logo.svg') left center no-repeat;
  background-size: contain;
  height: 36px;
  padding-left: 45px;
  line-height: 36px;
  font-size: 1.3rem;
  font-family: Lato;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
nav #open-menu {
  position: relative;
  height: 15px;
  width: 20px;
  margin: 0px 10px;
  cursor: pointer;
  z-index: 9;
}
nav #open-menu > span {
  position: absolute;
  display: block;
  left: 0px;
  width: 100%;
  height: 3px;
  background-color: #03265E;
  opacity: 1;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
nav #open-menu > span:nth-child(1) {
  top: 0px;
}
nav #open-menu > span:nth-child(2) {
  top: 6px;
}
nav #open-menu > span:nth-child(3) {
  top: 12px;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 65%;
  -webkit-transition: top 0.6s;
  transition: top 0.6s;
  padding: 0px;
  margin: 0px;
}
nav ul li {
  list-style: none;
}
nav .btn.btn-txt {
  color: #7D878B;
  margin-left: 5px;
}
nav .btn.btn-txt.active {
  color: #03265E;
}
nav.open {
  z-index: 9999999;
}
@media (max-width: 1024px) {
  nav {
    background-color: transparent;
  }
  nav .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background-color: #fcfbfa;
    width: 100%;
    -webkit-transition: background-color 0.6s;
    transition: background-color 0.6s;
  }
  nav .logo {
    font-size: 1rem;
    line-height: 40px;
    height: 40px;
  }
  nav ul {
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100vw;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 15px;
    background-color: #03265E;
    z-index: -1;
    height: calc(100% - 60px);
    overflow: auto;
  }
  nav .btn.btn-txt {
    margin-left: 0px;
  }
  nav .btn.btn-txt:hover,
  nav .btn.btn-txt.active {
    color: white;
  }
  nav.open ul {
    top: 60px;
  }
  nav.open #open-menu > span:nth-child(1) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 6px;
  }
  nav.open #open-menu > span:nth-child(2) {
    opacity: 0;
  }
  nav.open #open-menu > span:nth-child(3) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 6px;
  }
}
/* SCORE HEATMAPS */
#map {
  height: 100%;
  width: 100%;
  z-index: 9;
}
#map-controls-holder {
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
  display: block;
  position: absolute;
}
.map-controls {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999999;
}
#map-filter {
  position: absolute;
  left: 0px;
  top: 10px;
  width: 110px;
  height: 65px;
  background-color: white;
  padding: 10px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#map-filter .btn-expand {
  margin-right: 60px;
}
#map-filter .btn-expand:before {
  content: "Expand controls";
  width: 50px;
  position: absolute;
  right: -60px;
  top: -8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.7px;
}
#map-filter .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: calc(100% - 110px);
  height: calc(100% - 20px);
}
#map-filter .filters .divider {
  height: 40px;
  width: 2px;
  background-color: #A6B6BD;
  margin-left: 10px;
}
#map-filter .filters .filter-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 15px;
}
#map-filter .filters .filter-section:nth-child(2) .custom-select {
  width: 150px;
}
#map-filter .filters .filter-section:nth-child(3) .custom-select {
  width: 105px;
}
#map-filter .filters .filter-section.multiple-filter-section > .custom-select {
  width: 128px;
}
#map-filter .filters .filter-section.multiple-filter-section > .custom-select .select-selected {
  font-size: 1rem;
  line-height: 1rem;
}
#map-filter .filters .filter-section.multiple-filter-section > .custom-select .select-selected.select-arrow-active {
  color: #03265E;
}
#map-filter .filters .filter-section p {
  line-height: 1rem;
  min-width: 50px;
}
#map-filter .filters .filter-section p > span {
  display: block;
}
#map-filter .filters .filter-section .search-form {
  margin: 0px;
}
#map-filter .filters .filter-section .search-form .icone {
  top: 8px;
}
#map-filter .filters .filter-section .search-form input {
  border: none;
  background-color: #eff2f3;
  padding: 12px 10px 12px 30px;
}
#map-filter .filters .filter-section:first-child {
  margin-left: 0px;
}
#map-filter.open {
  width: 100%;
}
#map-filter.open .btn-expand:before {
  content: "Minimize controls";
}
@media (min-width: 768px) and (max-width: 1280px) {
  #map-filter {
    width: 65px;
  }
  #map-filter .btn-expand {
    margin-right: 0px;
    margin-left: 15px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  #map-filter .btn-expand:before {
    display: none;
  }
  #map-filter .filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 40px);
  }
  #map-filter .filters .filter-section {
    position: relative;
  }
  #map-filter .filters .filter-section > p {
    position: absolute;
    top: -20px;
    left: -3px;
    line-height: 0.8rem;
  }
  #map-filter .filters .filter-section > p span {
    display: inline-block;
    margin-left: 3px;
  }
  #map-filter .filters .filter-section .custom-select {
    margin-left: 0px;
    margin-bottom: -15px;
  }
  #map-filter .filters .filter-section:nth-child(2) .custom-select {
    width: 180px;
  }
  #map-filter .filters .filter-section.multiple-filter-section > p {
    top: 3px;
  }
  #map-filter .filters .filter-section.multiple-filter-section .custom-select {
    margin-right: 10px;
    width: 90px;
  }
  #map-filter.open .btn-expand {
    margin-left: 0px;
  }
}
@media (max-width: 860px) {
  #map-filter .search-form {
    display: none;
  }
  #map-filter .filters .filter-section.multiple-filter-section > p {
    top: -20px;
  }
}
@media (max-width: 768px) {
  #map-filter {
    position: fixed;
    left: unset;
    top: unset;
    bottom: 5px;
    right: 0px;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 160px;
    min-height: 0px;
    height: 40px;
  }
  #map-filter .btn-expand {
    position: absolute;
    bottom: 10px;
    right: 15px;
    margin: 0px;
  }
  #map-filter .btn-expand:before {
    width: 120px;
    right: 10px;
    top: 0px;
  }
  #map-filter .filters {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    overflow: auto;
  }
  #map-filter .filters .divider {
    display: none;
  }
  #map-filter .filters .filter-section {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 0px;
    margin-bottom: 10px;
    width: 100%;
  }
  #map-filter .filters .filter-section p {
    margin-bottom: 10px;
  }
  #map-filter .filters .filter-section p > span {
    display: inline-block;
    margin-left: 3px;
  }
  #map-filter .filters .filter-section p > span:first-child {
    margin-left: 0px;
  }
  #map-filter .filters .filter-section .custom-select {
    margin-left: 0px;
    margin-bottom: 5px;
    width: 100%;
  }
  #map-filter .filters .filter-section .custom-select .select-items {
    position: fixed;
    right: 190px;
    bottom: 5px;
    top: unset;
    width: 200px;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    left: unset;
    height: calc(100% - 5px);
    min-height: inherit;
    max-height: inherit;
  }
  #map-filter .select-selected {
    border-bottom: 1px solid #A6B6BD;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
  #map-filter.open {
    width: 185px;
    height: calc(100% - 5px);
    min-height: 0px;
    z-index: 99;
  }
  #map-filter .search-result {
    position: fixed;
    top: unset;
    left: unset;
    right: 190px;
    width: 200px;
    bottom: 20px;
    height: 60vh;
  }
}
#map-infos {
  position: absolute;
  left: 0px;
  top: 90vh;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  margin: 10px;
  pointer-events: none;
}
#map-infos #map-score {
  margin-bottom: 75px;
}
#map-infos #map-score .map-score-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 10px;
}
#map-infos #map-score #map-score-value {
  background-color: #fcfbfa;
}
@media (max-width: 1024px) {
  #map-infos #map-score #map-score-value {
    margin-bottom: 0px;
    margin-right: 10px;
  }
}
[data-responsibility="1"] #map-infos #map-score #map-score-value {
  border-color: #31CFB5;
}
[data-responsibility="2"] #map-infos #map-score #map-score-value {
  border-color: #388E91;
}
[data-responsibility="3"] #map-infos #map-score #map-score-value {
  border-color: #5FD7FF;
}
[data-responsibility="4"] #map-infos #map-score #map-score-value {
  border-color: #1695D4;
}
#map-infos #map-score #map-score-value-variation {
  margin-left: 0.5em;
}
#map-infos #map-score #map-score-value-variation .variation {
  font-size: 1.3rem;
}
@media (max-width: 1024px) {
  #map-infos #map-score {
    position: absolute;
    left: 50vw;
    bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
#map-infos #map-legends .legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  cursor: pointer;
}
#map-infos #map-legends .legend .box-legend {
  display: inline-block;
  height: 20px;
  width: 20px;
  border: 1px solid #fcfbfa;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#map-infos #map-legends .legend .text-legend {
  margin-top: -17px;
}
#map-infos #map-legends .legend:hover .box-legend,
#map-infos #map-legends .legend.active .box-legend {
  background-color: inherit !important;
}
#map-infos #map-legends .legend-interval {
  position: relative;
  z-index: 99;
  display: inline-block;
  pointer-events: all;
}
#map-infos #map-legends .legend-interval .legend {
  z-index: 9;
}
#map-infos #map-legends .legend-interval:before,
#map-infos #map-legends .legend-interval:after {
  content: "";
  height: 100%;
  width: 20px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  background-color: #fcfbfa;
}
#map-infos #map-legends .legend-interval:after {
  background: #447087;
  background: -webkit-gradient(linear, left top, left bottom, from(#447087), to(rgba(68, 112, 135, 0)));
  background: linear-gradient(to bottom, #447087, rgba(68, 112, 135, 0));
}
[data-responsibility="2"] #map-infos #map-legends .legend-interval:after {
  background: #388e91;
  background: -webkit-gradient(linear, left top, left bottom, from(#388e91), to(rgba(56, 142, 145, 0)));
  background: linear-gradient(to bottom, #388e91, rgba(56, 142, 145, 0));
}
[data-responsibility="4"] #map-infos #map-legends .legend-interval:after {
  background: #1695d4;
  background: -webkit-gradient(linear, left top, left bottom, from(#1695d4), to(rgba(22, 149, 212, 0)));
  background: linear-gradient(to bottom, #1695d4, rgba(22, 149, 212, 0));
}
[data-responsibility="1"] #map-infos #map-legends .legend-interval:after {
  background: #31cfb5;
  background: -webkit-gradient(linear, left top, left bottom, from(#31cfb5), to(rgba(49, 207, 181, 0)));
  background: linear-gradient(to bottom, #31cfb5, rgba(49, 207, 181, 0));
}
[data-responsibility="3"] #map-infos #map-legends .legend-interval:after {
  background: #5fd7ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#5fd7ff), to(rgba(95, 215, 255, 0)));
  background: linear-gradient(to bottom, #5fd7ff, rgba(95, 215, 255, 0));
}
#map-infos #map-legends .legend-interval:hover .box-legend,
#map-infos #map-legends .legend-interval.active .box-legend {
  background-color: rgba(252, 252, 252, 0.8);
}
#map-infos #map-legends > .legend:nth-of-type(3) .text-legend {
  margin-top: 0px;
  margin-left: 5px;
  width: 80px;
  line-height: 1rem;
}
#map-infos #map-legends > .legend:last-child p {
  margin-top: 1em !important;
  font-size: 0.85rem;
  line-height: 1em;
}
@media (max-width: 768px) {
  #map-infos #map-legends > .legend:last-child p {
    font-size: 0.7rem;
  }
}
@media (max-width: 1024px) {
  #map-infos {
    position: fixed;
    left: 0px;
    top: unset;
    bottom: 5px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    z-index: 9;
  }
  #map-infos #map-legends .legend .box-legend {
    height: 16px;
    width: 16px;
  }
  #map-infos #map-legends .legend-interval:before,
  #map-infos #map-legends .legend-interval:after {
    width: 16px;
  }
}
@media (max-width: 768px) {
  #map-infos {
    margin: 0px 10px;
    bottom: 5px;
  }
}
#map-local,
#map-score-responsibility {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  #map-local,
  #map-score-responsibility {
    font-size: 1rem;
  }
}
/* PROFILES */
.profile {
  margin-top: 10px;
}
.profile .wrap > aside {
  position: fixed;
  width: 30%;
  max-width: 408px;
  max-height: calc(100vh - 80px);
}
.profile .wrap > article {
  width: 65%;
  padding: 20px;
  position: relative;
  z-index: 9;
  float: right;
  margin-top: -60px;
}
.profile .wrap > article .btn-download {
  float: right;
  z-index: 3;
  display: block !important;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .profile .wrap > aside {
    position: relative;
    width: 100%;
    max-height: initial;
    min-width: inherit;
    max-width: inherit;
  }
  .profile .wrap > article {
    width: 100%;
    margin-left: 0%;
    margin-top: 0px;
  }
}
.profile .score {
  margin-top: 60px;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  animation-ease: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}
.profile .score .box-outline {
  border-color: #17B0E4;
}
.profile .score .indicators-block .indicator-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.profile .score .indicators-block .indicator-labels .values-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.profile .score .indicators-block .indicator-labels .values-label > * {
  margin: 0px 4px;
  width: 39px;
  text-align: center;
}
.profile .score .indicators-block .indicator-labels .values-label .variation-label {
  width: 70px;
  text-align: right;
}
.profile .score .indicators-block .indicators .indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #A6B6BD;
  padding: 7px 0px;
}
.profile .score .indicators-block .indicators .indicator > p {
  max-width: 400px;
}
.profile .score .indicators-block .indicators .indicator .values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}
.profile .score .indicators-block .indicators .indicator .values > * {
  margin: 0px 4px;
}
.profile .score .indicators-block .indicators .indicator .values > *:first-child {
  font-weight: 700;
}
.profile .score .indicators-block .indicators .indicator .values .na {
  width: 40px;
  text-align: center;
}
.profile .score .indicators-block .indicators .indicator .values .variation {
  width: 70px;
  text-align: center;
}
.profile .score .indicators-block .indicators .indicator .values .box-outline:not(:first-child) {
  font-weight: 400;
}
.profile .score .indicators-block .indicators .indicator .values .obs {
  width: 0px;
  display: inline-block;
}
.profile .score .indicators-block .indicators .indicator:last-child {
  border-bottom: 1px solid #A6B6BD;
}
.profile .score[data-responsibility="1"] .box-outline {
  border-color: #31CFB5;
}
.profile .score[data-responsibility="2"] .box-outline {
  border-color: #388E91;
}
.profile .score[data-responsibility="3"] .box-outline {
  border-color: #5FD7FF;
}
.profile .score[data-responsibility="4"] .box-outline {
  border-color: #1695D4;
}
@media (max-width: 768px) {
  .profile .score .indicators-table {
    position: relative;
    overflow: auto;
    width: 100%;
  }
  .profile .score .indicators-table::-webkit-scrollbar {
    height: 6px;
  }
  .profile .score .indicators-block .indicator-labels {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 100%;
  }
  .profile .score .indicators-block .indicator-labels > p {
    min-width: 125px;
    max-width: 40%;
    position: sticky;
    left: 0;
    z-index: 1;
    padding: 2px 0px;
    background-color: white;
  }
  .profile .score .indicators-block .indicators .indicator {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 100%;
  }
  .profile .score .indicators-block .indicators .indicator > p {
    min-width: 125px;
    max-width: 40%;
    position: sticky;
    left: 0;
    z-index: 1;
    padding: 2px 0px;
    background-color: white;
  }
}
@media (max-width: 580px) {
  .profile .root_title {
    display: block;
    margin-bottom: 0.4rem;
  }
}
.summary {
  background-color: white;
  padding: 20px;
  z-index: 99;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
}
.summary .summary-scores {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.summary .summary-scores > div {
  position: relative;
}
.summary .summary-scores > div svg {
  width: 100%;
}
.summary .summary-scores .fish {
  width: 55%;
}
@media (max-width: 1024px) {
  .summary .summary-scores .fish {
    width: inherit;
  }
}
.summary .summary-resume {
  margin-bottom: 10px;
}
.summary .summary-ranking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px 0px;
  border-bottom: 1px solid #A6B6BD;
}
.summary .summary-ranking .ranking-content {
  width: calc(100% - 15px);
}
.summary .summary-ranking h2 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #7D878B;
  line-height: 1rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.summary .summary-ranking p {
  font-size: 0rem;
  font-weight: 500;
  color: #03265E;
  line-height: 0rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.summary .summary-ranking .comparative {
  width: 100%;
  height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.summary .summary-ranking .btn-expand {
  margin-top: 1em !important;
}
.summary .summary-ranking.active h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #03265E;
  line-height: 2rem;
}
.summary .summary-ranking.active p {
  font-size: 0.85rem;
  line-height: 1rem;
  font-style: italic;
}
.summary .summary-ranking.active .comparative {
  height: 80px;
  margin: 5px 0px;
}
.summary .summary-ranking:last-of-type {
  border-bottom: none;
  margin-bottom: 10px;
}
.summary .summary-content {
  overflow: auto;
}
.summary .summary-content[data-resp] {
  display: none;
}
.summary .summary-content[data-resp='0'] {
  display: block;
}
[data-responsibility='1'] .summary .summary-content[data-resp='1'] {
  display: block;
}
[data-responsibility='1'] .summary .summary-content[data-resp='0'] {
  display: none;
}
[data-responsibility='2'] .summary .summary-content[data-resp='2'] {
  display: block;
}
[data-responsibility='2'] .summary .summary-content[data-resp='0'] {
  display: none;
}
[data-responsibility='3'] .summary .summary-content[data-resp='3'] {
  display: block;
}
[data-responsibility='3'] .summary .summary-content[data-resp='0'] {
  display: none;
}
[data-responsibility='4'] .summary .summary-content[data-resp='4'] {
  display: block;
}
[data-responsibility='4'] .summary .summary-content[data-resp='0'] {
  display: none;
}
.summary [data-responsibility] {
  cursor: pointer;
}
.summary .mobile-details {
  margin-bottom: 2em !important;
  display: none;
}
.summary .mobile-details h2 {
  font-size: 1rem;
  line-height: 1.5em;
}
@media (min-width: 580px) and (max-width: 1024px) {
  .summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .summary .summary-header,
  .summary .summary-scores {
    width: 50%;
  }
  .summary .summary-header .fish,
  .summary .summary-scores .fish {
    width: 70%;
  }
  .summary .summary-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .summary .summary-contents .summary-content[data-resp] {
    display: block !important;
    width: 40%;
  }
  .summary .summary-contents .summary-content[data-resp] .summary-ranking {
    display: none;
  }
  .summary .summary-contents .summary-content[data-resp] > p {
    display: none;
  }
  .summary .summary-contents .summary-content[data-resp] .summary-resume h2 {
    font-size: 1em;
    line-height: 1em;
  }
  .summary .summary-contents .summary-content[data-resp] .summary-resume:nth-child(3) {
    display: none;
  }
  .summary .summary-contents .extra-content {
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .summary .summary-contents .extra-content .summary-content[data-resp] {
    width: 50%;
  }
  .summary .summary-contents .extra-content .summary-content[data-resp] .summary-resume {
    margin-bottom: 0 !important;
  }
  .summary .summary-contents .extra-content .summary-content[data-resp] .fsi {
    display: none;
  }
  .summary .mobile-details {
    display: block;
  }
}
@media (min-width: 1024px) {
  .summary .summary-content {
    padding-right: 1rem;
    max-height: calc(100vh - 400px);
  }
}
body[data-responsibility="3"] .profile .score:not([data-responsibility="3"]) {
  display: none;
}
body[data-responsibility="2"] .profile .score:not([data-responsibility="2"]) {
  display: none;
}
body[data-responsibility="1"] .profile .score:not([data-responsibility="1"]) {
  display: none;
}
body[data-responsibility="4"] .profile .score:not([data-responsibility="4"]) {
  display: none;
}
/* ABOUT */
.about article {
  padding: 75px 0px;
}
.about article .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about article .wrap > div {
  padding: 0px 15px;
}
.about article .wrap > div:first-child {
  width: 30%;
  background-size: contain;
  background-position: center;
}
.about article .wrap > div:last-child {
  width: 70%;
}
.about article .wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.about article .wrap.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1024px) {
  .about article .wrap {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about article .wrap > div {
    padding: 0px;
  }
  .about article .wrap > div:first-child {
    width: 100%;
  }
  .about article .wrap > div:last-child {
    width: 100%;
    height: 100%;
    margin-top: 10px;
  }
  .about article .wrap.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about article.highlight .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about article.highlight .wrap > div:first-child,
.about article.highlight .wrap > div:last-child {
  width: 50%;
}
.about article.highlight .wrap .highlights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: -50px;
}
@media (max-width: 1024px) {
  .about article.highlight .wrap {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about article.highlight .wrap > div:first-child {
    width: 100%;
  }
  .about article.highlight .wrap > div:last-child {
    width: 100%;
    margin-top: 10px;
  }
  .about article.highlight .wrap.report {
    margin: 0px;
  }
  .about article.highlight .wrap.report .report-cover {
    margin: 0px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .about article.highlight .wrap .highlights {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 10px;
  }
  .about article.highlight .wrap .highlights > * {
    margin-top: 30px;
  }
}
.about article.report .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about article.report .wrap > div {
  padding: 0px 15px;
}
.about article.report .wrap > div:first-child {
  width: 30%;
}
.about article.report .wrap > div:last-child {
  width: 70%;
}
@media (max-width: 991px) {
  .about article.report .wrap {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about article.report .wrap > div {
    width: 100% !important;
  }
  .about article.report .wrap > div:last-child {
    margin-top: 50px;
  }
}
.about article.report .report-cover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.about article.report .report-cover a {
  display: table;
  margin: 0 auto;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.about article.report .report-cover a img {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  max-width: 96%;
  margin-left: 2%;
  max-height: calc(100vh - 165px);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.about article.report .report-cover a:hover,
.about article.report .report-cover a:focus {
  margin-top: -5px;
  margin-bottom: 5px;
}
.about article.report .report-cover a:hover img,
.about article.report .report-cover a:focus img {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.about article.report .report-slick {
  width: 50%;
}
.about article.report .report-slick .slick-list {
  overflow: visible;
}
.about article.report .report-slick .slick-slide {
  z-index: 1;
  position: relative;
  pointer-events: none;
}
.about article.report .report-slick .slick-slide .report-cover {
  -webkit-transform: scale(0.5) translate(-160%, 0%);
          transform: scale(0.5) translate(-160%, 0%);
  pointer-events: all;
}
.about article.report .report-slick .slick-active {
  z-index: 3;
}
.about article.report .report-slick .slick-active .report-cover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.about article.report .report-slick .slick-active + .slick-slide {
  z-index: 2;
}
.about article.report .report-slick .slick-active + .slick-slide .report-cover {
  -webkit-transform: scale(0.75) translate(-40%, 0%);
          transform: scale(0.75) translate(-40%, 0%);
}
.about article.report .report-wrap {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  overflow: hidden;
}
@media (min-width: 992px) {
  .about article.report {
    position: relative;
    height: 700px;
  }
  .about article.report .wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (min-width: 1350px) {
  .about article.report {
    height: 500px;
    margin: 5rem  0rem;
  }
}
.about article .world-overall-map,
.about article .world-port-map,
.about article .world-flag-map,
.about article .world-coastal-map,
.about article .world-general-map {
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.about article .world-overall-map > img,
.about article .world-port-map > img,
.about article .world-flag-map > img,
.about article .world-coastal-map > img,
.about article .world-general-map > img {
  width: 100%;
  z-index: 1;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .about article .world-overall-map > img,
  .about article .world-port-map > img,
  .about article .world-flag-map > img,
  .about article .world-coastal-map > img,
  .about article .world-general-map > img {
    height: 100%;
  }
}
.about article .world-overall-map > div,
.about article .world-port-map > div,
.about article .world-flag-map > div,
.about article .world-coastal-map > div,
.about article .world-general-map > div {
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 0px;
  z-index: 2;
}
.about article .world-overall-map .no-color,
.about article .world-port-map .no-color,
.about article .world-flag-map .no-color,
.about article .world-coastal-map .no-color,
.about article .world-general-map .no-color {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about article .world-overall-map {
  padding: 0px !important;
}
.about article .world-overall-map .box-outline {
  background-color: white;
}
.about article .world-overall-map > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about article .world-port-map .box-outline {
  border-color: #1695D4;
  background-color: white;
}
.about article .world-flag-map .box-outline {
  border-color: #31CFB5;
  background-color: white;
}
.about article .world-coastal-map .box-outline {
  border-color: #5FD7FF;
  background-color: white;
}
.about article .world-general-map .box-outline {
  border-color: #388E91;
  background-color: white;
}
.about article .world-fractioned-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about article .world-fractioned-map > div {
  width: 20%;
  background-size: contain;
  z-index: 99;
}
.about article .world-fractioned-map > div .box-outline {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .about article .world-fractioned-map {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about article .world-fractioned-map > div {
    width: 100%;
    background-position: top center;
    margin-bottom: 20px;
  }
  .about article .world-fractioned-map > div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about article .world-fractioned-map > div .box-outline {
    margin-bottom: 0rem;
    margin-right: 0.5rem;
  }
}
.about article .profiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about article .profiles .summary {
  max-width: 40%;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
  margin: 0px 20px;
}
@media (max-width: 768px) {
  .about article .profiles {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about article .profiles .summary {
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .about article .profiles .summary .summary-content {
    max-height: none;
  }
}
@media (max-width: 768px) {
  .about article:first-child {
    padding: 0px 0px 50px;
  }
}
@media all and (-ms-high-contrast: none) {
  .about article:nth-child(2) {
    max-height: 750px;
  }
  *::-ms-backdrop article:nth-child(2),
  .about article:nth-child(2) {
    max-height: 750px;
  }
}
/* RANKINGS */
.rankings {
  margin-top: 10px;
}
.rankings .wrap > aside {
  position: relative;
  width: 30%;
  float: left;
  background-color: white;
  padding: 20px;
  z-index: 99;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
  /* max-height: ~"calc(100vh - 74px)"; */
  max-width: 408px;
}
.rankings .wrap > aside .fish-ranking-header {
  padding-bottom: 10px;
}
.rankings .wrap > aside .fish-box {
  width: 40%;
  padding: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 0px;
}
.rankings .wrap > aside .rankingnone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rankings .wrap > aside .rankingnone > div {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.rankings .wrap > aside .rankingnone .fish-box-grid {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.rankings .wrap > aside .rankingnone .fish-box-grid .fish-box {
  width: 80%;
}
.rankings .wrap > aside p {
  font-size: 0.85rem;
}
.rankings .wrap > article {
  width: 65%;
  float: right;
  padding: 0px 20px;
  z-index: 9;
}
@media (max-width: 1024px) {
  .rankings .wrap > aside {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: inherit;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .rankings .wrap > aside .fish-box {
    width: 20%;
  }
  .rankings .wrap > aside .fish-ranking-header h2 {
    max-width: 100%;
  }
  .rankings .wrap > aside .rankingnone {
    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: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rankings .wrap > aside .rankingnone > div {
    max-width: 100%;
  }
  .rankings .wrap > aside .rankingnone .fish-box-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rankings .wrap > aside .rankingnone .fish-box-grid .fish-box {
    width: 20%;
  }
  .rankings .wrap > article {
    width: 100%;
    margin-left: 0%;
    padding: 0px;
  }
}
@media (max-width: 768px) {
  .rankings .wrap > aside {
    margin-top: 145px;
  }
  .rankings .wrap > aside .fish-box {
    width: 40%;
  }
}
.rankings #ranking-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: white;
  height: 65px;
  padding: 10px 25px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
}
.rankings #ranking-filter .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.rankings #ranking-filter .filters .filter-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.rankings #ranking-filter .filters .filter-section > p > span {
  display: block;
}
.rankings #ranking-filter .filters .search-form {
  margin: 0rem;
}
@media (max-width: 1024px) {
  .rankings #ranking-filter {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 70px;
    left: 2.5%;
    width: 95%;
    height: auto;
  }
  .rankings #ranking-filter .filters {
    width: 100%;
  }
  .rankings #ranking-filter .filters .filter-section > p > span {
    display: inline-block;
    margin-left: 3px;
    white-space: nowrap;
  }
  .rankings #ranking-filter .filters .filter-section > p > span:first-child {
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .rankings #ranking-filter .filters {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rankings #ranking-filter .filters .filter-section {
    margin-bottom: 10px;
  }
}
.rankings #ranking-header {
  width: 100%;
  background-color: white;
  height: 65px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
  display: grid;
  grid-template-columns: 1fr 1.5fr 6fr 1fr 1fr 1.5fr 1fr;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
  position: relative;
}
.rankings #ranking-header > * {
  line-height: 1em;
  padding: 10px;
}
.rankings #ranking-header > *:first-child {
  font-weight: 800;
}
.rankings #ranking-header > *:nth-child(3) {
  text-align: left;
}
.rankings #ranking-header > *:nth-child(4) {
  font-weight: 800;
}
.rankings #ranking-order {
  width: 100%;
  height: 65px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 6fr 1fr 1fr 1.5fr 1fr;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rankings #ranking-order fieldset:nth-child(3) {
  text-align: left;
}
.rankings #ranking-order fieldset > label {
  display: block;
  cursor: pointer;
  padding: 10px;
}
.rankings #ranking-order fieldset > label label {
  pointer-events: none;
}
.rankings #ranking-order fieldset > label [type='checkbox'] {
  height: 20px;
  width: 20px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  pointer-events: none;
}
.rankings #ranking-order fieldset > label > input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.rankings #ranking-order fieldset > label > input ~ label [type='checkbox'] {
  background-image: url('../assets/images/order-inative.svg');
}
.rankings #ranking-order fieldset > label > input:checked ~ label [type='checkbox'] {
  pointer-events: all;
  background-image: url('../assets/images/order-normal.svg');
}
.rankings #ranking-order fieldset > label > input:checked ~ label [type='checkbox']:checked {
  background-image: url('../assets/images/order-reverse.svg');
}
.rankings #yearComp + .select-selected {
  font-weight: 300;
}
.rankings .search-form input {
  background-color: #fcfbfa;
  max-width: 100%;
  height: 35px;
}
.rankings .groups .group {
  margin-bottom: 20px;
}
.rankings .groups .group .group-header {
  padding: 10px 0px;
  display: grid;
  grid-template-columns: 8.5fr 1fr 1fr 1.5fr 1fr 0.5fr;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  background-color: white;
  cursor: pointer;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
}
.rankings .groups .group .group-header .btn-expand {
  margin: 0 auto;
}
.rankings .groups .group .group-header h3 {
  text-align: left;
  padding: 0px 10px;
}
.rankings .groups .group .group-header > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rankings .groups .group .group-header > div > * {
  margin-left: 20px;
}
.rankings .groups .group .group-header > div > p {
  max-width: 50px;
}
.rankings .groups .group .group-scores {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.rankings .groups .group .group-scores .score {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr 6fr 1fr 1fr 1.5fr 1fr;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.rankings .groups .group .group-scores .score > * {
  line-height: 1em;
  padding: 10px;
  height: 100%;
}
.rankings .groups .group .group-scores .score > *:nth-child(3) {
  text-align: left;
}
.rankings .groups .group .group-scores .score > *:nth-child(3),
.rankings .groups .group .group-scores .score > *:nth-child(4) {
  font-weight: 700;
}
.rankings .groups .group .group-scores .score:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.5);
}
.rankings .groups .group.open .group-scores {
  max-height: 99999px;
}
.rankings .groups[data-order='pos'] .group .group-scores .score > *:nth-child(1) {
  background-color: white;
  -webkit-box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
          box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
}
.rankings .groups[data-order='posVar'] .group .group-scores .score > *:nth-child(2) {
  background-color: white;
  -webkit-box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
          box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
}
.rankings .groups[data-order='name'] .group .group-scores .score > *:nth-child(3) {
  background-color: white;
  -webkit-box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
          box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
}
.rankings .groups[data-order='value'] .group .group-scores .score > *:nth-child(4) {
  background-color: white;
  -webkit-box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
          box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
}
.rankings .groups[data-order='valueComp'] .group .group-scores .score > *:nth-child(5) {
  background-color: white;
  -webkit-box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
          box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
}
.rankings .groups[data-order='valueVar'] .group .group-scores .score > *:nth-child(6) {
  background-color: white;
  -webkit-box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
          box-shadow: 0px 2px 18px rgba(228, 226, 223, 0.487687);
}
.rankings .select-items {
  min-width: 150px;
}
.rankings .simple #ranking-header {
  grid-template-columns: 1fr 5fr 1fr;
}
.rankings .simple #ranking-header > *:nth-child(2),
.rankings .simple #ranking-header > *:nth-child(5),
.rankings .simple #ranking-header > *:nth-child(6) {
  display: none;
}
.rankings .simple #ranking-order {
  grid-template-columns: 1fr 5fr 1fr;
}
.rankings .simple #ranking-order fieldset:nth-child(2),
.rankings .simple #ranking-order fieldset:nth-child(5),
.rankings .simple #ranking-order fieldset:nth-child(6) {
  display: none;
}
.rankings .simple .groups .group .group-scores .score {
  grid-template-columns: 1fr 5fr 1fr;
}
.rankings .simple .groups .group .group-scores .score > *:nth-child(2),
.rankings .simple .groups .group .group-scores .score > *:nth-child(5),
.rankings .simple .groups .group .group-scores .score > *:nth-child(6) {
  display: none;
}
.rankings .grouped #ranking-header {
  grid-template-columns: 1fr 1.5fr 6fr 1fr 1fr 1.5fr 1fr 0.5fr;
}
.rankings .grouped #ranking-order {
  grid-template-columns: 1fr 1.5fr 6fr 1fr 1fr 1.5fr 1fr 0.5fr;
}
.rankings .grouped .groups .group .group-scores .score {
  grid-template-columns: 1fr 1.5fr 6fr 1fr 1fr 1.5fr 1fr 0.5fr;
}
@media (max-width: 768px) {
  .rankings .scores {
    overflow: auto;
  }
  .rankings .scores #ranking-header,
  .rankings .scores #ranking-order,
  .rankings .scores .groups {
    min-width: 650px !important;
  }
  .rankings .scores #ranking-header,
  .rankings .scores #ranking-order,
  .rankings .scores .groups .group .group-scores .score {
    grid-template-columns: 1fr 1.5fr 3fr 1fr 1fr 1.5fr 1fr;
  }
}
/* REPORT */
.report article {
  padding: 25px 0px;
  min-height: calc(100vh - 60px);
}
.report article .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.report article .wrap > div {
  width: 50%;
  padding: 0px 15px;
}
.report article .wrap > div:first-child {
  width: 30%;
}
.report article .wrap > div:last-child {
  width: 70%;
}
@media (max-width: 768px) {
  .report article .wrap {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .report article .wrap > div {
    width: 100% !important;
  }
  .report article .wrap > div:last-child {
    margin-top: 50px;
  }
}
.report article .report-cover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.report article .report-cover a {
  display: table;
  margin: 0 auto;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.report article .report-cover a img {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  max-width: 100%;
  max-height: calc(100vh - 220px);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.report article .report-cover a:hover,
.report article .report-cover a:focus {
  margin-top: -5px;
  margin-bottom: 5px;
}
.report article .report-cover a:hover img,
.report article .report-cover a:focus img {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.report article .report-slick {
  width: 50%;
}
.report article .report-slick .slick-list {
  overflow: visible;
}
.report article .report-slick .slick-slide {
  z-index: 1;
  position: relative;
  pointer-events: none;
}
.report article .report-slick .slick-slide .report-cover {
  -webkit-transform: scale(0.5) translate(-160%, 0%);
          transform: scale(0.5) translate(-160%, 0%);
  pointer-events: all;
}
.report article .report-slick .slick-active {
  z-index: 3;
}
.report article .report-slick .slick-active .report-cover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.report article .report-slick .slick-active + .slick-slide {
  z-index: 2;
}
.report article .report-slick .slick-active + .slick-slide .report-cover {
  -webkit-transform: scale(0.75) translate(-40%, 0%);
          transform: scale(0.75) translate(-40%, 0%);
}
.report article .report-wrap {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  overflow: hidden;
}
/* Data Files */
.download {
  padding: 120px 0px;
}
.download .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.download .wrap > div {
  width: 50%;
  padding: 0px 15px;
}
.download .wrap > div:first-child {
  width: 50%;
}
.download .wrap > div:last-child {
  width: 30%;
}
@media (max-width: 768px) {
  .download {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .download .wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .download .wrap > div {
    width: 100% !important;
  }
}
/* CONTACT */
.contact article {
  padding: 50px 0px;
}
.contact article .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact article .wrap > div {
  width: 50%;
  padding: 0px 15px;
}
.contact article .wrap > div > a:first-child img {
  max-height: 60px;
}
@media (max-width: 768px) {
  .contact article .wrap {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact article .wrap > div {
    width: 100%;
  }
  .contact article .wrap > div:last-child {
    margin-top: 50px;
  }
}
.contact article.highlight {
  padding: 75px 0px 100px;
}
/* COUNTRY PROFILE */
#country-profiles {
  position: fixed;
  background-color: #03265E;
  width: 100%;
  height: calc(100vh - 60px);
  bottom: 0;
  left: 0px;
  z-index: 999999;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#country-profiles.active {
  opacity: 1;
  visibility: visible;
}
.country-profiles .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.country-profiles .wrap > div {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: white;
  width: 17%;
  padding: 0px 10px;
}
.country-profiles .wrap > div > *:first-child {
  margin-top: 50px;
}
.country-profiles .wrap > div h2 {
  margin: 30px 0px 20px;
  max-width: 100%;
}
.country-profiles .wrap > div a {
  margin-bottom: 5px;
}
.country-profiles .wrap > div .search-form .icone svg * {
  stroke: white;
}
.country-profiles .wrap > div .search-form input {
  color: white;
}
@media (max-width: 1024px) {
  .country-profiles {
    height: 100%;
  }
  .country-profiles .wrap {
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 75px;
  }
  .country-profiles .wrap > div {
    width: 33%;
  }
  .country-profiles .wrap > div > *:first-child {
    margin-top: 0px;
  }
  .country-profiles .wrap .search-form {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .country-profiles .wrap > div {
    width: 50%;
  }
}
/* PRIVACY */
.privacy article {
  padding-top: 75px;
  max-width: 768px;
}
/* FOOTER */
footer {
  padding: 25px 0px;
  clear: both;
  margin-top: auto;
}
#map ~ footer {
  display: none;
}
.cafe {
  overflow: hidden;
  text-indent: -1000px;
  background: url('../assets/images/cafe.svg') center center no-repeat;
  display: inline-block;
  width: 46px;
  height: 16px;
  background-size: contain;
  margin-bottom: -1px;
}
/* GENERAL */
.relative {
  position: relative;
}
.center {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex.start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex.justify {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex.distribuido > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flex.acenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex.fwrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ico {
  display: inline-block;
  min-height: 1.1rem;
  width: auto;
  vertical-align: middle;
}
.white {
  background-color: white;
}
.overlay {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  animation-ease: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}
.overlay > div {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
}
.overlay > div > div {
  display: table-cell;
  vertical-align: middle;
  padding: 40px 10px;
}
.overlay > div > div > div {
  display: block;
  margin: 0 auto;
  max-width: 1200px;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  animation-ease: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.overlay.fechando {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.overlay.fechando > div > div > div {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.overlay.aberto {
  display: block;
}
.table {
  display: table;
  width: 100%;
}
.table.fixed {
  table-layout: fixed;
}
.table > div {
  display: table-cell;
  vertical-align: middle;
}
.oh {
  overflow: hidden;
}
/* TYPOGRAPHY */
.c0 {
  color: #7D878B;
}
.c1 {
  color: #03265E;
}
.c2 {
  color: #17B0E4;
}
.cg {
  color: #9B9B9B;
}
.cw {
  color: white;
}
.tl {
  text-align: left;
}
.tc {
  text-align: center;
}
.tr {
  text-align: right;
}
.uc {
  text-transform: uppercase;
}
.nw {
  white-space: nowrap;
}
.w400 {
  font-weight: 400;
}
.w500 {
  font-weight: 500;
}
.w700 {
  font-weight: 700;
}
.w800 {
  font-weight: 800;
}
.fsi {
  font-style: italic;
}
.fs05 {
  font-size: 0.5rem;
}
.fs08 {
  font-size: 0.8rem;
}
.fs085 {
  font-size: 0.85rem;
}
.fs1 {
  font-size: 1rem;
}
.fs115 {
  font-size: 1.15rem;
}
.fs13 {
  font-size: 1.3rem;
}
.fs15 {
  font-size: 1.5rem;
}
.fs17 {
  font-size: 1.7rem;
}
.fs2 {
  font-size: 2rem;
}
.fs25 {
  font-size: 2.5rem;
}
.fs3 {
  font-size: 3rem;
}
.fs35 {
  font-size: 3.5rem;
}
.fs4 {
  font-size: 4rem;
}
small {
  font-size: 0.85em;
}
.lh0 {
  line-height: 0rem;
}
.lh1 {
  line-height: 1rem;
}
.lh125 {
  line-height: 1.25rem;
}
.lh15 {
  line-height: 1.5rem;
}
.lh2 {
  line-height: 2rem;
}
.ls0 {
  letter-spacing: 0px;
}
.ls025 {
  letter-spacing: 0.25px;
}
.ls05 {
  letter-spacing: 0.5px;
}
.ls075 {
  letter-spacing: 0.75px;
}
.ls1 {
  letter-spacing: 1px;
}
.lc {
  text-transform: lowercase;
}
.vam {
  vertical-align: middle;
}
/* MARGINS AND PADDINGS */
.p1 {
  padding: 1em;
}
.mb1 {
  margin-bottom: 1em !important;
}
.mb2 {
  margin-bottom: 2em !important;
}
.mb3 {
  margin-bottom: 3em !important;
}
.mb4 {
  margin-bottom: 4em !important;
}
.mb05 {
  margin-bottom: 0.5em !important;
}
.mb02 {
  margin-bottom: 0.2em !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mt1 {
  margin-top: 1em !important;
}
.mt2 {
  margin-top: 2em !important;
}
.mt3 {
  margin-top: 3em !important;
}
.mt4 {
  margin-top: 4em !important;
}
.mt05 {
  margin-top: 0.5em !important;
}
.mt02 {
  margin-top: 0.2em !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mr1 {
  margin-right: 1em;
}
.mr2 {
  margin-right: 2em;
}
.mr3 {
  margin-right: 3em;
}
.mr05 {
  margin-right: 0.5em;
}
.ml05 {
  margin-left: 0.5em;
}
.ml1 {
  margin-left: 1em;
}
.ml3 {
  margin-left: 3em;
}
/* SIZES */
.mh120 {
  max-height: 120px;
}
/* BUTTONS */
.btn {
  cursor: pointer;
}
.btn.btn-txt {
  color: #17B0E4;
  display: block;
  margin: 20px 0px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn.btn-txt:hover {
  color: #03265E;
}
.highlight .btn.btn-txt:hover,
#cookie_box .btn.btn-txt:hover {
  color: #fcfbfa;
}
.btn.btn-txt-darker {
  color: #03265E;
  display: block;
}
.btn.btn-txt-darker:hover {
  color: #17B0E4;
}
.btn.btn-txt-alternative {
  color: white;
  display: block;
}
.btn.btn-txt-alternative:hover {
  color: #17B0E4;
}
.btn.btn-default {
  color: #03265E;
  padding: 15px 35px;
  background-color: #17B0E4;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.btn.btn-default:hover {
  background-color: white;
}
.btn.btn-download {
  position: relative;
  background-color: #17B0E4;
  color: #03265E;
  text-transform: uppercase;
  /* width: 200px; */
  height: 50px;
  padding: 18px 60px 18px 10px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.85rem;
  font-weight: 500;
}
.btn.btn-download:after {
  content: "\2193";
  position: absolute;
  width: 50px;
  height: 50px;
  color: #fff;
  right: 0;
  top: 0;
  background-color: #03265E;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
}
.btn.btn-expand {
  position: relative;
  height: 15px;
  width: 15px;
  border: 1px solid #03265E;
  display: inline-block;
}
.btn.btn-expand:after {
  content: "+";
  font-size: 1rem;
  line-height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.open .btn.btn-expand:after,
.active .btn.btn-expand:after {
  content: "-";
}
.btn.btn-close {
  position: absolute;
  height: 20px;
  width: 20px;
  right: 10px;
  top: 20px;
  z-index: 99;
}
.btn.btn-close:before,
.btn.btn-close:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  background-color: white;
}
.btn.btn-close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn.btn-close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.btn.btn-inline {
  margin: 0px;
  display: inline;
}
/* BOXES */
.box-outline {
  padding: 3px 5px;
  border: 1px solid #03265E;
  display: inline-block;
  border-radius: 3px;
  min-width: 40px;
  font-weight: 700;
}
/* SELECTORS */
.custom-select {
  position: relative;
  font-family: Arial;
  display: inline-block;
  margin-left: 10px;
}
.custom-select select {
  display: none;
}
.custom-select .select-selected {
  position: relative;
  padding-right: 17px;
  font-weight: 700;
  line-height: 1rem;
  color: #03265E;
  cursor: pointer;
  font-family: 'Libre Franklin', sans-serif;
}
.custom-select .select-selected:after {
  content: "";
  position: absolute;
  right: 4px;
  top: calc(50% - 3px);
  width: 10px;
  height: 6px;
  background-image: url('../assets/images/arrow.svg');
  background-size: cover;
}
@media (max-width: 1024px) {
  .custom-select .select-selected {
    font-size: 1rem;
    line-height: 1rem;
  }
}
.select-items {
  position: absolute;
  background-color: white;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 99;
  visibility: visible;
  opacity: 1;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03), 0 0 20px 3px rgba(0, 0, 0, 0.02);
  min-width: 200px;
  padding: 20px;
  max-height: calc((100vh/5)*3);
  overflow: auto;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform: translatex(-20%);
          transform: translatex(-20%);
}
.select-items div {
  padding: 3px;
  color: #03265E;
  cursor: pointer;
  text-transform: initial;
  font-size: 0.85rem;
  line-height: 21px;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .select-items {
    top: 25px;
    max-height: calc((100vh/10)*4);
    -webkit-transform: translatex(-45%);
            transform: translatex(-45%);
    padding: 10px 20px;
  }
}
.select-hide {
  visibility: hidden;
  opacity: 0;
  top: 50%;
}
.select-items div:hover,
.same-as-selected {
  color: #17B0E4;
}
/* COLORS */
.color-white {
  background-color: white;
  fill: white;
}
.color-base {
  background-color: #03265E;
  fill: #03265E;
}
.color-general {
  background-color: #388E91;
  stroke: #388E91;
}
.color-port {
  background-color: #1695D4;
  stroke: #1695D4;
}
.color-flag {
  background-color: #31CFB5;
  stroke: #31CFB5;
}
.color-coastal {
  background-color: #5FD7FF;
  stroke: #5FD7FF;
}
.color-map {
  background-color: #447087;
  fill: #447087;
}
[data-responsibility="2"] .color-map {
  background-color: #388E91;
  fill: #388E91;
}
[data-responsibility="4"] .color-map {
  background-color: #1695D4;
  fill: #1695D4;
}
[data-responsibility="1"] .color-map {
  background-color: #31CFB5;
  fill: #31CFB5;
}
[data-responsibility="3"] .color-map {
  background-color: #5FD7FF;
  fill: #5FD7FF;
}
.no-color {
  background: url('../assets/images/dot.svg');
  background-size: 2px;
  fill: url("#circles-pattern");
  fill-opacity: 1;
  opacity: 1;
  stroke: #FFF;
}
.active-shape {
  stroke: #03265E;
}
@media all and (-ms-high-contrast: none) {
  .no-color {
    background: #bebebe;
    fill: #bebebe;
  }
  *::-ms-backdrop,
  .no-color {
    background: #bebebe;
    fill: #bebebe;
  }
}
/* COLORS FISH */
.color-fish-base-fill {
  fill: #03265E;
}
.color-fish-base {
  stroke: #03265E;
}
.color-fish-general {
  stroke: #388E91;
}
.color-fish-port {
  stroke: #1695D4;
}
.color-fish-flag {
  stroke: #31CFB5;
}
.color-fish-coastal {
  stroke: #5FD7FF;
}
[data-responsibility="Coastal"] .color-fish-base-fill,
[data-responsibility="3"] .color-fish-base-fill {
  fill: #A6B6BD !important;
}
[data-responsibility="Coastal"] .color-fish-base,
[data-responsibility="3"] .color-fish-base {
  stroke: #A6B6BD !important;
}
[data-responsibility="Coastal"] .color-fish-general,
[data-responsibility="3"] .color-fish-general {
  stroke: #A6B6BD !important;
}
[data-responsibility="Coastal"] .color-fish-flag,
[data-responsibility="3"] .color-fish-flag {
  stroke: #A6B6BD !important;
}
[data-responsibility="Coastal"] .color-fish-port,
[data-responsibility="3"] .color-fish-port {
  stroke: #A6B6BD !important;
}
[data-responsibility="General"] .color-fish-base-fill,
[data-responsibility="2"] .color-fish-base-fill {
  fill: #A6B6BD !important;
}
[data-responsibility="General"] .color-fish-base,
[data-responsibility="2"] .color-fish-base {
  stroke: #A6B6BD !important;
}
[data-responsibility="General"] .color-fish-coastal,
[data-responsibility="2"] .color-fish-coastal {
  stroke: #A6B6BD !important;
}
[data-responsibility="General"] .color-fish-flag,
[data-responsibility="2"] .color-fish-flag {
  stroke: #A6B6BD !important;
}
[data-responsibility="General"] .color-fish-port,
[data-responsibility="2"] .color-fish-port {
  stroke: #A6B6BD !important;
}
[data-responsibility="Flag"] .color-fish-base-fill,
[data-responsibility="1"] .color-fish-base-fill {
  fill: #A6B6BD !important;
}
[data-responsibility="Flag"] .color-fish-base,
[data-responsibility="1"] .color-fish-base {
  stroke: #A6B6BD !important;
}
[data-responsibility="Flag"] .color-fish-general,
[data-responsibility="1"] .color-fish-general {
  stroke: #A6B6BD !important;
}
[data-responsibility="Flag"] .color-fish-coastal,
[data-responsibility="1"] .color-fish-coastal {
  stroke: #A6B6BD !important;
}
[data-responsibility="Flag"] .color-fish-port,
[data-responsibility="1"] .color-fish-port {
  stroke: #A6B6BD !important;
}
[data-responsibility="Port"] .color-fish-base-fill,
[data-responsibility="4"] .color-fish-base-fill {
  fill: #A6B6BD !important;
}
[data-responsibility="Port"] .color-fish-base,
[data-responsibility="4"] .color-fish-base {
  stroke: #A6B6BD !important;
}
[data-responsibility="Port"] .color-fish-general,
[data-responsibility="4"] .color-fish-general {
  stroke: #A6B6BD !important;
}
[data-responsibility="Port"] .color-fish-flag,
[data-responsibility="4"] .color-fish-flag {
  stroke: #A6B6BD !important;
}
[data-responsibility="Port"] .color-fish-coastal,
[data-responsibility="4"] .color-fish-coastal {
  stroke: #A6B6BD !important;
}
/* RESPONSIVE */
.desktoponly,
.tabletonly,
.mobileonly {
  display: none;
}
@media (min-width: 1024px) {
  .desktoponly {
    display: block;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .tabletonly {
    display: block;
  }
}
@media (max-width: 768px) {
  .mobileonly {
    display: block;
  }
}
/* LEAFLET */
.leaflet-container {
  background-color: #fcfbfa;
}
.leaflet-control-zoom {
  position: fixed;
  top: calc(50vh - 60px) !important;
  right: calc((100vw - 1440px)/2) !important;
  margin: 0px !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 1440px) {
  .leaflet-control-zoom {
    right: 0px !important;
  }
}
.leaflet-touch .leaflet-bar {
  border: none;
}
.leaflet-touch .leaflet-bar a {
  border: 1px solid #03265E;
  margin-bottom: 10px;
  margin-right: 10px;
  color: #03265E;
  background-color: white;
  border-radius: 3px 3px 3px 3px !important;
  font-size: 1rem;
  cursor: pointer;
}
.leaflet-touch .leaflet-bar a:hover,
.leaflet-touch .leaflet-bar a:focus {
  background-color: #fcfbfa;
}
.circle,
.line {
  fill: white;
  fill-opacity: 1;
  stroke-width: 1px;
}
[data-responsibility="0"] .circle,
[data-responsibility="0"] .line,
[data-responsibility="false"] .circle,
[data-responsibility="false"] .line {
  stroke: #447087;
}
[data-responsibility="1"] .circle,
[data-responsibility="1"] .line {
  stroke: #31CFB5;
}
[data-responsibility="2"] .circle,
[data-responsibility="2"] .line {
  stroke: #388E91;
}
[data-responsibility="3"] .circle,
[data-responsibility="3"] .line {
  stroke: #5FD7FF;
}
[data-responsibility="4"] .circle,
[data-responsibility="4"] .line {
  stroke: #1695D4;
}
/* SLICK */
.slick-slider {
  margin-bottom: 40px;
  margin-top: 40px;
}
.slick-arrow {
  display: none !important;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:before {
  position: absolute;
  top: 4px;
  left: 4px;
  content: "";
  width: 7px;
  height: 7px;
  text-align: center;
  border: 1.5px solid #03265E;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.slick-dots li.slick-active button:before {
  background-color: #03265E;
}
/* D3 */
.line-chart [stroke="currentColor"] {
  stroke: #bdbdbd;
}
.line-chart [fill="currentColor"] {
  fill: #bdbdbd;
}
.line-chart text {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.8rem;
}
.line-chart .axis-x text {
  fill: #7D878B;
  font-weight: 600;
}
.line-chart .domain {
  display: none;
}
.line-chart .item-area path {
  opacity: 0.5;
}
.line-chart .container-dots circle {
  stroke: white;
}
.line-chart .container-values text {
  fill: #03265E;
  font-weight: 600;
}
.line-chart .item-line path {
  stroke: #447087;
}
.line-chart .item-area path,
.line-chart .container-dots circle {
  fill: #447087;
}
[data-responsibility='0'] .line-chart .item-line path {
  stroke: #447087;
}
[data-responsibility='0'] .line-chart .item-area path,
[data-responsibility='0'] .line-chart .container-dots circle {
  fill: #447087;
}
[data-responsibility='1'] .line-chart .item-line path {
  stroke: #31CFB5;
}
[data-responsibility='1'] .line-chart .item-area path,
[data-responsibility='1'] .line-chart .container-dots circle {
  fill: #31CFB5;
}
[data-responsibility='2'] .line-chart .item-line path {
  stroke: #388E91;
}
[data-responsibility='2'] .line-chart .item-area path,
[data-responsibility='2'] .line-chart .container-dots circle {
  fill: #388E91;
}
[data-responsibility='3'] .line-chart .item-line path {
  stroke: #5FD7FF;
}
[data-responsibility='3'] .line-chart .item-area path,
[data-responsibility='3'] .line-chart .container-dots circle {
  fill: #5FD7FF;
}
[data-responsibility='4'] .line-chart .item-line path {
  stroke: #1695D4;
}
[data-responsibility='4'] .line-chart .item-area path,
[data-responsibility='4'] .line-chart .container-dots circle {
  fill: #1695D4;
}
[data-resp='0'] .line-chart .item-line path {
  stroke: #447087;
}
[data-resp='0'] .line-chart .item-area path,
[data-resp='0'] .line-chart .container-dots circle {
  fill: #447087;
}
[data-resp='1'] .line-chart .item-line path {
  stroke: #31CFB5;
}
[data-resp='1'] .line-chart .item-area path,
[data-resp='1'] .line-chart .container-dots circle {
  fill: #31CFB5;
}
[data-resp='2'] .line-chart .item-line path {
  stroke: #388E91;
}
[data-resp='2'] .line-chart .item-area path,
[data-resp='2'] .line-chart .container-dots circle {
  fill: #388E91;
}
[data-resp='3'] .line-chart .item-line path {
  stroke: #5FD7FF;
}
[data-resp='3'] .line-chart .item-area path,
[data-resp='3'] .line-chart .container-dots circle {
  fill: #5FD7FF;
}
[data-resp='4'] .line-chart .item-line path {
  stroke: #1695D4;
}
[data-resp='4'] .line-chart .item-area path,
[data-resp='4'] .line-chart .container-dots circle {
  fill: #1695D4;
}
