.pcdevice{
  width: 100%;
  height: 100%;
  background-color: #228EC8;
  margin: auto;
  text-align: center;
  padding: 100px;
}
.creditsimg{
  width: 100%;
}
/* REGULAR */
@font-face {
  font-family: 'SF Pro Rounded Regular';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/SF-Pro-Rounded-Regular.woff2") format("woff2"); }
/* BOLD */
@font-face {
  font-family: 'SF Pro Rounded Bold';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/SF-Pro-Rounded-Bold.woff2") format("woff2"); }
/* BLACK */
@font-face {
  font-family: 'SF Pro Rounded Black';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/fonts/SF-Pro-Rounded-Black.woff2") format("woff2"); }
html {
  box-sizing: border-box;
  width: 100%;
  height: 100svh;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  font-optical-sizing: auto;
  user-select: none; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  margin: 0;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  min-height: -webkit-fill-available;
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
  touch-action: manipulation;
  font-family: 'SF Pro Rounded Regular';
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  background-color: #228EC8;
  -ms-overflow-style: none !important;
  /* IE and Edge */
  scrollbar-width: none !important;
  /* Firefox */
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar for Chrome, Safari and Opera */ }
  body::-webkit-scrollbar {
    display: none !important; }
  body.default {
    padding: 20px; }
    body.default main {
      background-color: #fff;
      width: 100%;
      height: 100%;
      padding: 20px;
      border-radius: 40px;
      color: #000; }

b {
  font-family: 'SF Pro Rounded Bold';
  font-weight: 700;
  color: #228EC8; }

strong {
  font-family: 'SF Pro Rounded Black';
  font-weight: 900;
  color: #228EC8; }

form label {
  font-family: 'SF Pro Rounded Black';
  font-weight: 900;
  color: #228EC8;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  row-gap: calc(20px / 2); }
  form label input[type="text"] {
    font-family: 'SF Pro Rounded Bold';
    font-weight: 700;
    width: 100%;
    height: 64px;
    border-radius: 32px;
    padding: 0 20px;
    color: #000;
    background-color: #EFEFEF;
    border: none;
    outline: none; }
    form label input[type="text"]::-webkit-input-placeholder {
      color: #808080;
      font-family: 'SF Pro Rounded Regular';
      font-weight: 400; }
    form label input[type="text"]:-moz-placeholder {
      color: #808080;
      font-family: 'SF Pro Rounded Regular';
      font-weight: 400; }
    form label input[type="text"]::-moz-placeholder {
      color: #808080;
      font-family: 'SF Pro Rounded Regular';
      font-weight: 400; }
    form label input[type="text"]::placeholder {
      color: #808080;
      font-family: 'SF Pro Rounded Regular';
      font-weight: 400; }
    form label input[type="text"]::-ms-input-placeholder {
      color: #808080;
      font-family: 'SF Pro Rounded Regular';
      font-weight: 400; }

.floating-menu-btn {
  position: absolute;
  z-index: 1000;
  top: calc(20px / 2);
  right: calc(20px / 2);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #228EC8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  padding: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease-out; }
  .floating-menu-btn span {
    border: 2px solid #fff;
    border-radius: 2px;
    transition: all 0.5s ease-out; }
    .floating-menu-btn span:nth-child(1) {
      width: 24px; }
    .floating-menu-btn span:nth-child(2) {
      width: 18px; }
    .floating-menu-btn span:nth-child(3) {
      width: 12px; }

body.menu_open {
  overflow: hidden; }
  body.menu_open .floating-menu-btn {
    background-color: #fff;
    box-shadow: none;
    top: calc(20px * 2);
    right: calc(20px * 2);
    align-items: center; }
    body.menu_open .floating-menu-btn span {
      border: 2px solid #228EC8;
      position: absolute; }
      body.menu_open .floating-menu-btn span:nth-child(1) {
        width: 18px;
        transform: rotate(45deg); }
      body.menu_open .floating-menu-btn span:nth-child(2) {
        width: 0;
        opacity: 0; }
      body.menu_open .floating-menu-btn span:nth-child(3) {
        width: 18px;
        transform: rotate(-45deg); }
  body.menu_open .menu-container {
    opacity: 1;
    pointer-events: all; }

.menu-container {
  opacity: 0;
  pointer-events: none;
  background-color: rgba(34, 142, 200, 0.5);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  padding: 20px;
  transition: all 0.5s ease-out; }
  .menu-container .menu-background {
    background-color: #228EC8;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .menu-container .menu-background .menu-title {
      background-image: url("/img/discoveringBovino.svg");
      background-size: calc(100% - (64px + 32px));
      background-repeat: no-repeat;
      background-position: 0 50%;
      width: 100%;
      height: 64px; }
    .menu-container .menu-background .menu-items {
      display: flex;
      flex-direction: column;
      justify-content: flex-start; }
      .menu-container .menu-background .menu-items a {
        display: flex;
        height: 96px;
        position: relative;
        column-gap: 20px;
        align-items: center;
        text-decoration: none;
        color: #fff;
        font-size: 24px;
        font-family: 'SF Pro Rounded Bold';
        font-style: normal;
        font-weight: 700; }
        .menu-container .menu-background .menu-items a:not(:last-of-type)::after {
          content: '';
          display: block;
          width: 100%;
          height: 2px;
          border-radius: 1px;
          background-color: #fff;
          opacity: 0.2;
          position: absolute;
          bottom: 2px; }

#map {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0; }

.btn {
  color: #fff;
  background-color: #228EC8;
  font-family: 'SF Pro Rounded Black';
  font-style: normal;
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
  outline: none;
  border: 0; }
  .btn.btn-small {
    height: 32px;
    line-height: 32px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 14px; }
  .btn.btn-medium {
    height: 64px;
    line-height: 64px;
    padding: 0 32px;
    border-radius: 32px;
    font-size: 18px; }
  .btn.btn-fullwidth {
    display: block;
    width: 100%;
    text-align: center; }
  .btn .icon.very-small {
    margin: 4px 6px -3px 0; }

button.btn {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  outline: none; }

.icon {
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%; }
  .icon.very-small {
    width: 16px;
    height: 16px; }
  .icon.small {
    width: 24px;
    height: 24px; }
  .icon.medium {
    width: 32px;
    height: 32px; }
  .icon.big {
    width: 48px;
    height: 48px; }
  .icon.very-big {
    width: 64px;
    height: 64px; }
  .icon.icon-about {
    background-image: url("/img/icons/about.svg"); }
  .icon.icon-collection {
    background-image: url("/img/icons/collection.svg"); }
  .icon.icon-map {
    background-image: url("/img/icons/map.svg"); }
  .icon.icon-medal {
    background-image: url("/img/icons/medal.svg"); }

.gm-style-iw {
  color: #000;
  overflow: visible !important;
  padding: 16px !important;
  border-radius: 46px 0 46px 46px !important;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.67) 2.5%) !important;
  backdrop-filter: blur(4px);
  -webkit-box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.18), inset 0 0 7px #fff !important;
  box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.18), inset 0 0 7px #fff !important;
  -ms-overflow-style: none !important;
  /* IE and Edge */
  scrollbar-width: none !important;
  /* Firefox */
  -webkit-overflow-scrolling: touch; }
  .gm-style-iw::-webkit-scrollbar {
    display: none !important; }
  .gm-style-iw .gm-style-iw-chr {
    height: 12px; }
  .gm-style-iw button.gm-ui-hover-effect {
    color: #fff !important;
    background-color: #228EC8 !important;
    opacity: 1 !important;
    border-radius: 50%;
    position: absolute;
    top: -32px;
    right: -36px;
    outline: none; }
    .gm-style-iw button.gm-ui-hover-effect span {
      background-color: #fff !important; }

.gm-style-iw-d {
  -ms-overflow-style: none !important;
  /* IE and Edge */
  scrollbar-width: none !important;
  /* Firefox */
  -webkit-overflow-scrolling: touch; }
  .gm-style-iw-d::-webkit-scrollbar {
    display: none !important; }

.iw_content {
  font-family: 'SF Pro Rounded Regular';
  -ms-overflow-style: none !important;
  /* IE and Edge */
  scrollbar-width: none !important;
  /* Firefox */
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar for Chrome, Safari and Opera */ }
  .iw_content::-webkit-scrollbar {
    display: none !important; }
  .iw_content h1 {
    margin: 0 0 20px 0;
    font-family: 'SF Pro Rounded Black';
    font-weight: 900;
    font-size: 18px;
    color: #228EC8; }
  .iw_content .image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #e5e5e5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin: 0 0 20px 0;
    border-radius: 10px;
    position: relative; }
    .iw_content .image .btn {
      position: absolute;
      bottom: 10px;
      right: 10px; }
  .iw_content .description {
    max-height: 126px;
    overflow-y: auto;
    margin: 0 0 20px 0; }
    .iw_content .description p {
      margin: 0;
      font-size: 14px;
      -ms-overflow-style: none !important;
      /* IE and Edge */
      scrollbar-width: none !important;
      /* Firefox */
      -webkit-overflow-scrolling: touch;
      /* Hide scrollbar for Chrome, Safari and Opera */ }
      .iw_content .description p::-webkit-scrollbar {
        display: none !important; }
    .iw_content .description b {
      font-family: 'SF Pro Rounded Bold';
      font-weight: 700;
      color: #228EC8; }

body.splash {
  background-image: url("/img/splash-background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%; }
  body.splash main {
    width: 100%;
    height: 100%;
    position: relative; }
    body.splash main .animated-logo {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      background-image: url("/img/discoveringBovino-animated.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      aspect-ratio: 4 / 1;
      width: 75%; }
    body.splash main .btnstart {
      padding: 14px 38px;
      display: inline-block;
      font-size: 150%;
      margin: auto;
      position: absolute;
      border-radius: 26px;
      bottom: 25%;
      cursor: pointer;
      left: 0;
      right: 0;
      max-width: 200px;
      text-align: center;
      color: #228EC8;
      background: #fff; }
    body.splash main .pnrr {
      position: absolute;
      right: 0;
      bottom: 20px;
      left: 0;
      margin-left: auto;
      margin-right: auto;
      padding: 20px;
      display: flex;
      column-gap: calc(20px * 2); }
      body.splash main .pnrr div {
        width: 50%;
        height: 52px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%; }
        body.splash main .pnrr div.mic {
          background-image: url("/img/PNRR/mic.png"); }
        body.splash main .pnrr div.eu {
          background-image: url("/img/PNRR/eu.png"); }

#gps-check-overlay {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1002;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.9); }
  #gps-check-overlay .gps-alert {
    font-size: 16px;
    color: #fff;
    text-align: center; }

body.gpscheck_open #gps-check-overlay {
  display: flex; }

.lds-ripple {
  color: #fff;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  box-sizing: border-box; }
  .lds-ripple div {
    box-sizing: border-box;
    position: absolute;
    border: 6px solid currentColor;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite; }
    .lds-ripple div:nth-child(2) {
      animation-delay: -0.5s; }

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0; }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0; }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1; }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0; } }
.back-btn {
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  background-image: url("/img/back-btn.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  cursor: pointer; }

.header {
  display: flex;
  width: 100%;
  height: 64px;
  justify-content: flex-start;
  align-items: center; }
  .header h1 {
    margin: 0;
    font-size: 21px;
    line-height: 18px;
    font-family: 'SF Pro Rounded Black';
    font-style: normal;
    font-weight: 900;
    color: #228EC8; }

footer .pnrr {
  padding: 20px;
  display: flex;
  column-gap: calc(20px * 4); }
  footer .pnrr div {
    width: 50%;
    height: 52px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%; }
    footer .pnrr div.mic {
      background-image: url("/img/PNRR/mic.png"); }
    footer .pnrr div.eu {
      background-image: url("/img/PNRR/eu.png"); }

.collection-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  overflow-y: auto;
  padding: 20px 0;
  overflow-x: hidden;}

body.collection main {
  display: flex;
  flex-direction: column; }
  body.collection main .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow: hidden; }

.item {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #EFEFEF;
  border-radius: 12px;
  background-size: 66.67%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
  text-decoration: none; }
  .item.collected {
    box-shadow: inset 0 0 0 6px #228EC8; }
    .item.collected::before {
      content: '';
      position: absolute;
      width: 33.33%;
      aspect-ratio: 6 / 5;
      background-image: url("/img/item-check.svg");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      top: -8px;
      right: -3px; }
  .item.item-1 {
    background-image: url("/img/gmap/icon-01.svg"); }
  .item.item-2 {
    background-image: url("/img/gmap/icon-02.svg"); }
  .item.item-3 {
    background-image: url("/img/gmap/icon-03.svg"); }
  .item.item-4 {
    background-image: url("/img/gmap/icon-04.svg"); }
  .item.item-5 {
    background-image: url("/img/gmap/icon-05.svg"); }
  .item.item-6 {
    background-image: url("/img/gmap/icon-06.svg"); }
  .item.item-7 {
    background-image: url("/img/gmap/icon-07.svg"); }
  .item.item-8 {
    background-image: url("/img/gmap/icon-08.svg"); }
  .item.item-9 {
    background-image: url("/img/gmap/icon-09.svg"); }
  .item.item-10 {
    background-image: url("/img/gmap/icon-10.svg"); }
  .item.item-11 {
    background-image: url("/img/gmap/icon-11.svg"); }
  .item.item-12 {
    background-image: url("/img/gmap/icon-12.svg"); }
  .item.item-13 {
    background-image: url("/img/gmap/icon-13.svg"); }

body.item-menu main {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto; }
body.item-menu .content {
  height: 100%; }
  body.item-menu .content .item-view {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 20px; }
    body.item-menu .content .item-view .item {
      position: relative;
      background-position: 50% 66.67%; }
      body.item-menu .content .item-view .item span.name {
        position: absolute;
        display: block;
        width: 100%;
        left: 0;
        top: 14px;
        text-align: center;
        font-size: 21px;
        font-family: 'SF Pro Rounded Black';
        font-style: normal;
        font-weight: 900;
        color: #000; }
      body.item-menu .content .item-view .item span.collected {
        width: 0;
        display: none;
        visibility: hidden;
        opacity: 0; }
      body.item-menu .content .item-view .item.collected {
        box-shadow: inset 0 0 0 8px #228EC8;
        background-position: 50% 50%; }
        body.item-menu .content .item-view .item.collected::before {
          width: 0;
          height: 0;
          display: none;
          visibility: hidden;
          opacity: 0; }
        body.item-menu .content .item-view .item.collected span.collected {
          left: 0;
          right: 0;
          width: 100%;
          visibility: visible;
          opacity: 1;
          display: block;
          margin-left: auto;
          margin-right: auto;
          position: absolute;
          text-align: center;
          bottom: 20px;
          font-size: 18px;
          font-family: 'SF Pro Rounded Bold';
          font-style: normal;
          font-weight: 700;
          color: #999; }
          body.item-menu .content .item-view .item.collected span.collected span {
            position: relative; }
            body.item-menu .content .item-view .item.collected span.collected span::before {
              content: '';
              position: absolute;
              height: 24px;
              aspect-ratio: 6 / 5;
              background-image: url("/img/item-check.svg");
              background-size: cover;
              background-repeat: no-repeat;
              background-position: 50% 50%;
              top: -2px;
              left: -30px; }

.buttons-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 20px; }

.award-preview {
  width: 100%;
  height: 44%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%; }

body.award-input-name main {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto; }
  body.award-input-name main .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 20px; }
    body.award-input-name main .content p.info {
      font-size: 16px;
      margin: 0; }

body.award-result main {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto; }
  body.award-result main .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 20px; }
    body.award-result main .content .award-preview {
      height: 50%; }

body.pdi main {
  height: 100%;
  padding: 20px 0; }
  body.pdi main .header {
    padding: 0 20px; }
  body.pdi main .content {
    height: calc(100% - 64px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 20px 20px; }
    body.pdi main .content .img {
      width: 100%;
      aspect-ratio: 16 / 9;
      background-color: #EFEFEF;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      position: relative; }
      body.pdi main .content .img .round-btn {
        position: absolute;
        right: 20px;
        bottom: 20px;
        background-color: #228EC8;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center; }
    body.pdi main .content .text {
      height: 100%;
      overflow-y: auto;
      padding: 0 20px 20px 20px;
      border-radius: 0 0 40px 40px; }
      body.pdi main .content .text h2 {
        font-size: 24px;
        line-height: 21px;
        font-family: 'SF Pro Rounded Bold';
        font-style: normal;
        font-weight: 700;
        color: #000; }
      body.pdi main .content .text p {
        font-size: 18px; }
      body.pdi main .content .text ul, body.pdi main .content .text ol {
        font-size: 18px; }
      body.pdi main .content .text img.content-img {
        width: 100%;
        margin: 20px 0; }
body.pdi.intro main {
  padding: 0;
  overflow: hidden; }
  body.pdi.intro main .content {
    height: 100%; }

body.textual main .content {
  height: calc(100% - 64px);
  border-radius: 0 0 20px 20px;
  overflow: auto; }

.text h2 {
  font-size: 24px;
  line-height: 21px;
  font-family: 'SF Pro Rounded Bold';
  font-style: normal;
  font-weight: 700;
  color: #000; }
.text h3 {
  font-size: 21px;
  line-height: 18px;
  font-family: 'SF Pro Rounded Bold';
  font-style: normal;
  font-weight: 700;
  color: #444; }
.text p {
  font-size: 18px; }
  .text p:last-of-type {
    margin-bottom: 0; }
.text ul, .text ol {
  font-size: 18px; }
.text ul {
  padding-left: 20px; }
  .text ul li {
    list-style: square; }
    .text ul li::marker {
      color: #228EC8;
      font-size: 21px; }
.text a {
  color: #DD7137;
  font-family: 'SF Pro Rounded Black';
  font-style: normal;
  font-weight: 900; }

.float-right {
  float: right !important; }

.float-left {
  float: left !important; }

.clearfix {
  clear: both !important; }

.d-none {
  display: none !important; }

.d-none-soft {
  opacity: 0 !important;
  pointer-events: none !important; }

.d-block {
  display: block !important; }

.d-inline {
  display: inline !important; }

.d-flex {
  display: flex !important; }

.align-items-center {
  align-items: center !important; }

.position-relative {
  position: relative !important; }

.text-left {
  text-align: left !important; }

.text-center {
  text-align: center !important; }

.text-right {
  text-align: right !important; }

.color-fff {
  color: #fff !important; }

.pe-cursor {
  cursor: pointer !important; }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

/* SPACERS */
.space {
  display: block; }
  .space.h5 {
    height: 5px; }
  .space.h10 {
    height: 10px; }
  .space.h20 {
    height: 20px; }
  .space.h30 {
    height: 30px; }
  .space.h32 {
    height: 32px; }
  .space.h40 {
    height: 40px; }
  .space.h50 {
    height: 50px; }
  .space.h80 {
    height: 80px; }
  .space.w10 {
    weight: 10px; }
  .space.w20 {
    weight: 20px; }
  .space.nh5 {
    margin-top: -5px; }
  .space.nh10 {
    margin-top: -10px; }
  .space.nh20 {
    margin-top: -20px; }
  .space.nh30 {
    margin-top: -30px; }
  .space.nh40 {
    margin-top: -40px; }
  .space.nh50 {
    margin-top: -50px; }
  .space.nw10 {
    margin-left: -10px; }
  .space.nw20 {
    margin-left: -20px; }

/* SPACERS */
.padding_bottom_none {
  padding-bottom: 0 !important; }
