/*css varibales*/
:root {
  --primary-color: #1cabe2;
  --primary-hover:#0e95ca;
  --regular-gray1:#333;
  --regular-gray2:#404040;
  --regular-gray3:#595959;
  --regular-gray4:#757575;
  --regular-gray5:#c1c1c1;
  --regular-gray6:#f1f1f1;
  --regular-gray7:#f8f8f8;
  --regular-gray8:#d8d8d8;
  --regular-gray9:#ced4da;
  --regular-accent-action: #e34e09;
  --regular-accent-action-hover: #c94304;
  --white:#fff;
  --black:#000;
  --primary-light:#c5effc;
  --blue1:#2159a8;
  --blue2:#1a4b8f;
  --regular-bkgd:#d3dbdf;
  --hc-color:#0f5c85;
  --hc-hover: #0c4462;
  --hc-color-secondary:#2159a5;
  --hc-regular-accent-action: #9c350d;
  --hc-regular-accent-action-hover: #822500;
  --hc-accent-alert: #a12e26;
  --primary-font: 'Roboto',sans-serif;
  --primary-regular: 400;
  --primary-medium: 500;
  --primary-bold: 700;
  --primary-black: 900;
  --secondary-font: 'PT Serif',serif;
  --secondary-regular: 400;
  --secondary-bold: 800;
  --shadow-hover: 0 3px 3px -2px rgba(0, 0, 0, 0.1),0 3px 4px 0 rgba(0, 0, 0, 0.14),0 1px 8px 0 rgba(0, 0, 0, 0.12);
  --shadow-active: 0 5px 5px -3px rgba(0, 0, 0, 0.12),0 8px 10px 1px rgba(0, 0, 0, 0.14),0 3px 14px 2px rgba(0, 0, 0, 0.12);
  --outline-btn-shadow-hover: 0px 1px 8px 0px rgba(0, 0, 0, 0.12),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 3px 3px -2px rgba(0, 0, 0, 0.10);
  --outline-btn-shadow-active: 0px 3px 14px 2px rgba(0, 0, 0, 0.25),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 5px 5px -3px rgba(0, 0, 0, 0.12);
  --card-hover-shadow: 0px 3px 14px 2px rgba(0, 0, 0, 0.12), 0px 3px 4px 1px rgba(0, 0, 0, 0.14), 0px 5px 5px -3px rgba(0, 0, 0, 0.12);
  --drop-shadow: drop-shadow(0px 1px 8px rgba(0, 0, 0, 0.12)) drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.14)) drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.10));
  --inset-shadow: inset 0 1px 3px 0 rgba(0,0,0,0.25);
  --box-shadow2: 0 1px 3px 0 rgba(0,0,0,0.25);
  --box-shadow3: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  --box-shadow4: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  --box-shadow5: 2px -3px 3px 0px rgba(0, 0, 0, 0.15);
  --box-shadow6: 0px 1px 2px -1px rgba(0, 0, 0, 0.25);
  --box-shadow7: 2px 2px 4px -1px rgba(0, 0, 0, 0.75);
  --drop-shadow1:drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  --drop-shadow2:drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
  --card-height: 525px;
  --bg-tint1: rgba(33, 89, 168, 90%);
  --bg-tint2: rgba(0, 0, 0, 0.6);
  /*survey colors*/
  --sc1: #a3e7f5;
  --sc2: #ffee00;
  --sc3: #ffc20e;
  --sc4: #80bd41;
  --sc5: #c9c9c9;
  /*dataset colors*/
  --ds1:#d9e3f2;
  --ds-h1:var(--blue1);
  --ds2:#d9f2e5;
  --ds-h2:#42b577;
  --ds3:#fcd5d3;
  --ds-h3:#bd605b;
  --ds4:#fcd5d3;
  --ds-h4:#ee9058;
  --ds5:#fff3cf;
  --ds-h5:var(--sc3);
  --ds6:#e1d2e3;
  --ds-h6:#884b90;
  --ds7:#d2eef9;
  --ds-h7:#1cabe2;
  --light-blue:#0e95Ca33; }

.high-contrast-mode {
  --primary-color:var(--hc-color);
  --primary-hover:var(--hc-hover);
  --blue1: var(--hc-color-secondary);
  --regular-accent-action:var(--hc-regular-accent-action);
  --regular-accent-action-hover:var(--hc-regular-accent-action-hover); }

.content-type-block {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 50px;
  padding-right: 50px; }
  @media (max-width: 767px) {
    .content-type-block {
      padding-top: 50px;
      padding-bottom: 50px; } }

.content-type-view {
  --grid-count:5; }
  .content-type-view .view-content {
    display: grid;
    grid-template-columns: repeat(var(--grid-count), 1fr);
    grid-column-gap: 12.5px;
    grid-row-gap: 10px; }
  .content-type-view .views-row {
    border: 2px solid var(--blue1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in-out; }
    .content-type-view .views-row > div, .content-type-view .views-row > div > span {
      width: 100%;
      height: 100%;
      display: block; }
    .content-type-view .views-row:hover {
      box-shadow: var(--outline-btn-shadow-hover); }
  .content-type-view .tools-link-wrap {
    padding: 25px 16px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; }
  .content-type-view .content-type-inner {
    display: flex;
    align-items: center; }
  .content-type-view .content-type-icon {
    flex-shrink: 0;
    margin-right: 15px; }
  .content-type-view .content-type-label {
    font-weight: var(--primary-bold);
    color: var(--blue1);
    font-size: 1.375rem;
    line-height: 1.27; }

@media (min-width: 1400px) {
  .content-type-view {
    max-width: 1500px;
    margin: 0 auto; }
    .content-type-view .views-row {
      max-width: 290px; } }
.news-letter-block {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--regular-accent-action); }
  @media (max-width: 767px) {
    .news-letter-block {
      padding-top: 50px;
      padding-bottom: 50px; } }

.news-letter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.news-letter-title {
  font-size: 2.125rem;
  line-height: 1.23;
  font-weight: var(--primary-regular);
  color: var(--regular-gray1);
  margin-bottom: 50px;
  text-align: center;
  margin: 0;
  text-align: left;
  color: var(--white); }
  @media (max-width: 767px) {
    .news-letter-title {
      font-size: 1.625rem;
      line-height: 1.26;
      margin-bottom: 40px; } }

.news-letter-desc {
  max-width: 590px;
  padding: 0 15px;
  text-align: center;
  color: var(--white);
  font-size: 1.375rem;
  line-height: 1.36;
  font-family: var(--secondary-font);
  font-weight: var(--secondary-regular);
  font-style: italic; }

.map-area.ploting {
  opacity: 0; }

.map-tab {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
  display: flex;
  justify-content: center; }
  .map-tab li:not(:last-child) {
    border-right: 1px solid var(--regular-gray5);
    margin-right: 20px;
    padding-right: 20px; }
  .map-tab .tab-link {
    font-size: 1.5rem;
    line-height: 1.33;
    color: var(--regular-gray1);
    border-bottom: 5px solid transparent;
    min-height: 44px;
    display: flex;
    align-items: end;
    padding-bottom: 3px; }
    .map-tab .tab-link.active-tab {
      border-bottom-color: var(--primary-color);
      cursor: default;
      pointer-events: none; }
    .map-tab .tab-link:hover:not(.active-tab) {
      color: var(--primary-color); }

.tab-wrapper {
  padding-top: 50px; }
  @media (max-width: 767px) {
    .tab-wrapper {
      padding-top: 30px; } }

.county-has-data.active-country {
  fill: var(--sc3) !important; }

.map-detail-wrap {
  display: flex;
  align-items: center;
  --contet-area-width:175px; }
  .map-detail-wrap .detail-area {
    width: var(--contet-area-width); }
  .map-detail-wrap .map-area {
    flex-shrink: 0;
    width: calc(100% - var(--contet-area-width));
    padding-right: 10px; }
  .map-detail-wrap .popup-area {
    display: none;
    width: var(--contet-area-width);
    background: var(--white);
    box-shadow: var(--outline-btn-shadow-hover);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 496px; }
  .map-detail-wrap.counry-pop-visible {
    --contet-area-width:370px; }
    .map-detail-wrap.counry-pop-visible .popup-area {
      display: block; }
    .map-detail-wrap.counry-pop-visible .detail-area {
      display: none; }

.top-area {
  padding-bottom: 50px; }
  @media (max-width: 767px) {
    .top-area {
      padding-bottom: 30px; } }

.top-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 15px; }
  .top-section .dropdown-menu-map:not(:last-child) {
    margin-right: 20px; }

.highcharts-container {
  height: 446px !important; }

.county-has-data {
  cursor: pointer; }

.pop-inner {
  padding: 10px 12px; }

.pop-close {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 10px;
  right: 12px; }

.country-detail {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--regular-gray8);
  padding-bottom: 10px;
  margin: 22px 0 20px; }

.country-flag {
  margin-right: 16px; }

.country-name {
  font-weight: var(--primary-bold);
  font-size: 0.875rem;
  line-height: 1.28; }

.value-detail {
  display: flex;
  flex-direction: column;
  color: var(--primary-color); }
  .value-detail .value-no {
    font-size: 2.625rem;
    line-height: 1.19;
    font-weight: var(--primary-bold); }
  .value-detail .value-label {
    font-size: 1.375rem;
    line-height: 1.27; }
    @media (max-width: 767px) {
      .value-detail .value-label {
        font-size: 1.25rem;
        line-height: 1.35; } }

.map-item {
  display: flex;
  align-items: center; }
  .map-item .icon {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 10px;
    flex-shrink: 0; }
  .map-item.country .icon {
    background-image: url("/sites/mics/themes/custom/mics/components/images/icons/map/icon-countries.svg"); }
  .map-item.survery .icon {
    background-image: url("/sites/mics/themes/custom/mics/components/images/icons/map/surveys.svg"); }
  .map-item.reports .icon {
    background-image: url("/sites/mics/themes/custom/mics/components/images/icons/map/survey_report.svg"); }
  .map-item.data-set .icon {
    background-image: url("/sites/mics/themes/custom/mics/components/images/icons/map/datasets.svg"); }
  .map-item:not(:last-child) {
    margin-bottom: 30px; }

.popup-tab {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 0 -5px; }
  .popup-tab li {
    margin: 0 5px;
    min-width: 100px; }
  .popup-tab a {
    padding: 5px 10px;
    color: var(--regular-gray1);
    border-bottom: 1px solid var(--regular-gray8);
    display: block;
    border-top: 5px solid transparent;
    text-align: center;
    line-height: 1.375;
    height: 100%; }
    .popup-tab a.active {
      border-color: var(--primary-color);
      border-bottom-color: var(--regular-gray6);
      background-color: var(--regular-gray6);
      cursor: default;
      pointer-events: none; }
    .popup-tab a:hover:not(.active) {
      color: var(--primary-color); }

.tab-content-area {
  background-color: var(--regular-gray6);
  padding: 10px 10px;
  margin-bottom: 30px; }

.count-wrap {
  padding-bottom: 30px; }
  .count-wrap .each {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .count-wrap .count {
    font-weight: var(--primary-bold);
    color: var(--primary-color);
    font-size: 2.5rem;
    line-height: 0.775;
    margin-bottom: 6px; }
  .count-wrap .count-label {
    font-size: 1.188rem;
    line-height: 1.63;
    text-align: center; }

.tab-inner {
  padding-top: 20px; }

.table-type-inner-wrap {
  display: flex;
  --fixed-left: 100px; }
  .table-type-inner-wrap .static-item {
    width: var(--fixed-left); }
  .table-type-inner-wrap .each-wrapper {
    width: calc(100% - var(--fixed-left)); }

.static-item > div, .each-item > div {
  font-size: 0.875rem;
  line-height: 1.28;
  padding: 6px 0;
  border-bottom: 1px solid var(--white);
  min-height: 30px; }
  .static-item > div:first-child, .each-item > div:first-child {
    border-top: 1px solid var(--white); }
  .static-item > div:not(:first-child), .each-item > div:not(:first-child) {
    height: 30px; }

.each-item {
  width: 80px; }

.popup-area .slick-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0;
  border: 0;
  width: 15px;
  height: 15px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain; }
  .popup-area .slick-arrow.slick-disabled {
    pointer-events: none;
    opacity: .5; }
.popup-area .slick-prev {
  background-image: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/lft.svg");
  right: 20px; }
  .popup-area .slick-prev:hover {
    background-image: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/lft-hover.svg"); }
.popup-area .slick-next {
  background-image: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/ryt.svg"); }
  .popup-area .slick-next:hover {
    background-image: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/ryt-hover.svg"); }

.each-wrapper.slick-slider {
  padding-bottom: 21px; }
.each-wrapper .slick-track {
  min-width: 100%; }
.each-wrapper .status-indicator {
  font-size: 0; }
  .each-wrapper .status-indicator:after {
    content: '';
    width: 16px;
    height: 16px;
    font-size: 0;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: inline-block; }
.each-wrapper .each-title {
  font-weight: var(--primary-bold); }

.map-info {
  text-align: center;
  font-style: italic;
  font-size: 0.75rem;
  line-height: 1.33;
  color: var(--regular-gray4);
  margin-top: 30px; }

.legend-wrap ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 0 0 -5px;
  display: flex;
  flex-wrap: wrap; }
.legend-wrap li {
  margin-bottom: 5px;
  display: flex;
  align-items: center; }
  .legend-wrap li:not(:last-child) {
    margin-right: 15px; }
.legend-wrap .legend-inidcator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: inline-block;
  margin: 0 3px 2px 0; }
.legend-wrap .legend-value {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.16; }

.blue-round-btn:after, .legend-inidcator.blue-round-btn {
  background-color: var(--sc1); }

.green-round-btn:after, .legend-inidcator.green-round-btn {
  background-color: var(--sc4); }

.yellow-round-btn:after, .legend-inidcator.yellow-round-btn {
  background-color: var(--sc2); }

.orange-round-btn:after, .legend-inidcator.orange-round-btn {
  background-color: var(--sc3); }

.gray-round-btn:after, .legend-inidcator.gray-round-btn {
  background-color: var(--sc5); }

.purple-round-btn:after, .legend-inidcator.purple-round-btn {
  background-color: var(--ds-h6); }

.dark-blue-round-btn:after, .legend-inidcator.dark-blue-round-btn {
  background-color: var(blue1); }

.country-link {
  margin-top: 20px;
  position: absolute;
  bottom: 10px; }

.map-info-mob {
  display: none; }

.extra-filters {
  display: none; }

.top-section[data-active="tab-0"] .mics-round,
.top-section[data-active="tab-0"] .mics-status {
  display: block; }

.top-section[data-active="tab-1"] .mics-plus-status {
  display: block; }

.map-noresult {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  background: #fff;
  padding: 25px;
  max-width: 350px;
  margin: 0 auto; }

.show-msg {
  display: block; }

.map-area {
  position: relative; }

.top-area .value-selected {
  padding-bottom: 40px; }

.top-area .select-style-multi {
  position: relative; }
  .top-area .select-style-multi label {
    position: absolute;
    left: 10px;
    font-size: 0.875rem;
    font-weight: var(--primary-regular);
    color: var(--regular-gray1);
    top: 8px;
    z-index: 1;
    pointer-events: none; }
.top-area .select-style-multi:has(.select2-container--focus) label {
  display: none; }

.map-container:not(:has(.tab-wrapper)) {
  min-height: 200px;
  position: relative; }
  .map-container:not(:has(.tab-wrapper)):after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/sites/mics/themes/custom/mics/components/images/icons/loader/Loader_01.gif") no-repeat center center;
    z-index: 1;
    display: block; }

.high-contrast-mode .map-item.survery .icon {
  background-image: url("/sites/mics/themes/custom/mics/components/images/icons/map/dark/surveys.svg"); }
.high-contrast-mode .map-item.reports .icon {
  background-image: url("/sites/mics/themes/custom/mics/components/images/icons/map/dark/survey_report.svg"); }
.high-contrast-mode .map-item.data-set .icon {
  background-image: url("/sites/mics/themes/custom/mics/components/images/icons/map/dark/datasets.svg"); }
.high-contrast-mode .each-wrapper .slick-prev {
  background-image: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/dark/lft.svg"); }
  .high-contrast-mode .each-wrapper .slick-prev:hover {
    background-image: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/dark/lft-hover.svg"); }
.high-contrast-mode .each-wrapper .slick-next {
  background-image: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/dark/ryt.svg"); }
  .high-contrast-mode .each-wrapper .slick-next:hover {
    background-image: url("/sites/mics/themes/custom/mics/components/images/icons/arrows/dark/ryt-hover.svg"); }

.work-shop-block {
  background-image: url("/sites/mics/themes/custom/mics/components/images/home/workshop-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative; }
  .work-shop-block:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    pointer-events: none; }
  .work-shop-block .work-shop-graphic {
    height: 200px; }
  .work-shop-block .view-header .view .view-content {
    display: block; }

.work-shop-wrapper {
  position: relative;
  z-index: 1; }
  .work-shop-wrapper .back-img {
    display: none; }

.workshop-card-full {
  display: flex;
  --left-card-width:370px;
  --card-height: 550px; }

.work-shop-left {
  width: var(--left-card-width);
  flex-shrink: 0;
  margin-right: 30px; }
  .work-shop-left > .work-shop-left-inner {
    border-radius: 15px 15px 0 0;
    margin-bottom: 2px;
    position: relative; }
    .work-shop-left > .work-shop-left-inner:after {
      content: '';
      position: absolute;
      width: 25px;
      height: 25px;
      right: -13px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      background-color: var(--blue1); }
  .work-shop-left .left-inner-bottom .work-shop-left-inner {
    border-radius: 0 0 15px 15px; }

.work-shop-right {
  width: calc(100% - var(--left-card-width)); }

.work-shop-left-inner {
  background-color: var(--blue1);
  min-height: 274px;
  display: flex;
  justify-content: center;
  padding: 15px;
  flex-direction: column; }
  .work-shop-left-inner .work-shop-location,
  .work-shop-left-inner .event-date {
    color: var(--white);
    font-size: 0.75rem; }
  .work-shop-left-inner div + .work-shop-title {
    margin-top: 15px; }

.work-shop-title,
.work-shop-title a {
  font-size: 1.375rem;
  line-height: 1.27;
  color: var(--white); }
  @media (max-width: 767px) {
    .work-shop-title,
    .work-shop-title a {
      font-size: 1.25rem;
      line-height: 1.35; } }

.work-shop-title a:hover {
  text-decoration: underline; }

.work-shop-info {
  font-size: 0.875rem;
  line-height: 1.28;
  margin-bottom: 10px;
  color: var(--white); }

.work-shop-card-title a {
  color: var(--regular-gray1); }
  .work-shop-card-title a:hover {
    text-decoration: underline; }

.work-shop-cards .views-row {
  min-height: auto; }

.publication-view-home {
  --publication-count:3; }
  .publication-view-home .view-content {
    display: grid;
    grid-template-columns: repeat(var(--publication-count), 1fr);
    grid-gap: 50px;
    margin-top: 50px; }
  .publication-view-home .views-row a:hover img {
    transform: scale(1.06); }
  .publication-view-home .views-row a:hover .publication-title {
    color: var(--primary-hover); }
  .publication-view-home .publication-img {
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden; }
    .publication-view-home .publication-img img {
      border-radius: 50%;
      transition: transform 1s ease; }
  .publication-view-home .publication-title {
    text-align: center;
    font-size: 1.375rem;
    line-height: 1.27;
    color: var(--regular-gray1); }
    @media (max-width: 767px) {
      .publication-view-home .publication-title {
        font-size: 1.25rem;
        line-height: 1.35; } }
  .publication-view-home .view-footer {
    padding-top: 50px; }

.youtube-icon-rq {
  position: relative; }
  .youtube-icon-rq:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 70px;
    margin: 0 auto;
    left: 0;
    right: 0;
    background: url("/sites/mics/themes/custom/mics/components/images/icons/social-share/youtube.png") no-repeat center center; }

.pagenav-block {
  right: 10px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 5px;
  border-radius: 10px;
  transition: all .25s;
  width: 22px;
  box-shadow: var(--outline-btn-shadow-hover);
  display: block;
  position: fixed;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%); }
  .pagenav-block:hover span {
    width: 100%;
    opacity: 1;
    overflow: visible;
    height: auto; }

.page-menu {
  list-style: none;
  margin: 0;
  text-align: right;
  position: relative;
  padding: 0; }
  .page-menu li:not(:last-child) {
    position: relative;
    padding-bottom: 32px; }
    .page-menu li:not(:last-child):after {
      content: '';
      position: absolute;
      top: 14px;
      right: 5px;
      height: calc(100% - 16px);
      width: 1px;
      background: var(--primary-color); }
  .page-menu a {
    text-transform: uppercase;
    position: relative;
    color: var(--regular-gray1);
    font-size: 0.75rem;
    line-height: 1;
    display: block; }
    .page-menu a:after {
      content: '';
      border: 2px solid var(--primary-color);
      width: 12px;
      height: 12px;
      border-radius: 50%;
      display: block;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%); }
    .page-menu a.active:after {
      background: var(--primary-color); }
    @media (hover: hover) {
      .page-menu a:hover {
        color: var(--primary-color); } }
    .page-menu a span {
      display: inline-block;
      padding-right: 18px;
      overflow: hidden;
      opacity: 0;
      height: 0;
      white-space: nowrap;
      transition: all .25s .15s; }

@media (pointer: coarse) {
  .pagenav-block:not(.touch-nav) .page-menu a {
    pointer-events: none; } }

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