html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a {
  background-color: transparent;
  outline: 0;
  text-decoration: none;
}
a:hover,
a:focus,
a:active,
a:visited {
  outline: 0;
  text-decoration: none;
}

figcaption {
  color: #404040;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  font-style: normal;
  font-weight: 600;
  padding-top: 10px;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

img {
  height: auto;
  /* Make sure images are scaled correctly.*/
  max-width: 100%;
  /* Adhere to container width.*/
  -ms-interpolation-mode: bicubic;
  /* scaling help for IE rendering resized images */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area.*/
}

/* Make sure embeds and iframes fit their containers.*/
embed,
iframe,
object {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-width: 100%;
}

.page-overlay {
  display: none;
  height: 100vh;
  opacity: 0.91;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 201;
}

.no-scroll {
  overflow: hidden;
}

iframe {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  max-width: none;
}

/* Video popup controls for Landing Page video*/
.image-container {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  left: -200vw;
  position: absolute;
  width: 100vw;
  z-index: 10000;
}
@media screen and (max-width: 767px) {
  .image-container {
    height: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    top: 34vh;
  }
}
.image-container.visible-video {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  left: 22px;
  /* Total width of close button*/
}
@media screen and (max-width: 800px) {
  .image-container.visible-video {
    left: 14px;
  }
}
@media screen and (max-width: 767px) {
  .image-container.visible-video {
    left: 0;
  }
  .image-container.visible-video .close-arrow {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    left: 0;
  }
}
.image-container .home-close {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  cursor: pointer;
  margin-left: 23px;
  opacity: 0.55;
}
@media screen and (max-width: 800px) {
  .image-container .home-close {
    margin-left: 14px;
  }
}
@media screen and (max-width: 767px) {
  .image-container .home-close {
    display: none;
  }
}
.image-container .home-close:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
.image-container .close-arrow {
  display: none;
}
@media screen and (max-width: 767px) {
  .image-container .close-arrow {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    border: solid rgba(0, 0, 0, 0.55);
    border-width: 0 2px 2px 0;
    height: 0;
    left: -100vw;
    margin: 20px 0 0 20px;
    padding: 8px;
    position: fixed;
    top: 0;
    -webkit-transform: rotate(135deg) skew(-2deg, -2deg);
    -ms-transform: rotate(135deg) skew(-2deg, -2deg);
    transform: rotate(135deg) skew(-2deg, -2deg);
    width: 0;
  }
}

/* Bubble Chart */
#bubbleContainer {
  background-color: #6e6e6e;
  padding: 30px;
}
#bubbleContainer #bubbleChart {
  margin-top: -160px;
  text-align: center;
}
#bubbleContainer input[type="radio"] {
  display: none;
}
#bubbleContainer .btn-group {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 5%;
  width: 100%;
}
#bubbleContainer .btn-group .btn {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 2px solid #303030;
  -webkit-border-radius: 14px;
  border-radius: 14px;
  color: #000;
  cursor: pointer;
  font-size: 14px;
  margin: 5px;
  padding: 7px 14px;
  text-align: center;
}
#bubbleContainer .btn-group .btn.active {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: rgba(255, 255, 255, 0.65) !important;
}
#bubbleContainer .btn-group .btn:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Story Pages
--------------------------------------------------------------*/
.story-page_society {
  background-color: #f2f5f6;
}

.story-page_society .page-overlay {
  background-color: #f2f5f6;
  opacity: 0.91;
}
@media screen and (max-width: 767px) {
  .story-page_society .page-overlay {
    opacity: 0.97;
  }
}

.story-page .image-container {
  -webkit-transition: left 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: fixed;
  z-index: 206;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .story-page .image-container {
    z-index: -1;
  }
  .story-page .image-container.move-in {
    z-index: 206;
  }
}
@media screen and (max-width: 767px) {
  .story-page .image-container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.story-page .image-container img {
  max-height: 100%;
}
.story-page .image-container.move-out {
  -webkit-transition: left 0.35s ease-in-out;
  -o-transition: left 0.35s ease-in-out;
  transition: left 0.35s ease-in-out;
  height: 100vh;
  padding: 80px 130px 80px 175px;
  top: 0;
  width: 100vw;
}
@media screen and (min-width: 1441px) {
  .story-page .image-container.move-out {
    padding: 100px 160px 100px 205px;
  }
}
@media screen and (max-width: 1210px) {
  .story-page .image-container.move-out {
    padding: 80px 100px 80px 145px;
  }
}
@media screen and (max-width: 1024px) {
  .story-page .image-container.move-out {
    padding: 100px 50px 100px 95px;
  }
}
@media screen and (max-width: 900px) {
  .story-page .image-container.move-out {
    padding: 60px 30px 60px 65px;
  }
  .story-page .image-container.move-out .main-image {
    max-width: 98%;
  }
}
@media screen and (max-width: 767px) {
  .story-page .image-container.move-out {
    -webkit-transition: left 0.15s ease-in-out, top 0.2s ease-in-out;
    -o-transition: left 0.15s ease-in-out, top 0.2s ease-in-out;
    transition: left 0.15s ease-in-out, top 0.2s ease-in-out;
    height: auto;
    padding: 0;
    top: 34vh;
  }
  .story-page .image-container.move-out .main-image {
    max-width: 100vw;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .story-page .image-container.move-out:not(.move-in)[style*="left:"] {
    left: -150vw !important;
  }
}
.story-page .image-container.move-in {
  -webkit-transition: left 0.55s ease-in-out;
  -o-transition: left 0.55s ease-in-out;
  transition: left 0.55s ease-in-out;
  height: 100vh;
  left: 0 !important;
  padding: 80px 100px 80px 145px;
  top: 0;
  width: 100vw;
  position: fixed;
}
@media screen and (max-width: 1366px) {
  .story-page .image-container.move-in {
    padding: 70px 50px 70px 95px;
  }
}
@media screen and (max-width: 1024px) {
  .story-page .image-container.move-in {
    padding: 60px 30px 60px 65px;
  }
  .story-page .image-container.move-in .main-image {
    max-width: 98%;
  }
}
@media screen and (max-width: 767px) {
  .story-page .image-container.move-in {
    -webkit-transition: left 0.35s ease-in-out, top 0.2s ease-in-out;
    -o-transition: left 0.35s ease-in-out, top 0.2s ease-in-out;
    transition: left 0.35s ease-in-out, top 0.2s ease-in-out;
    height: auto;
    padding: 0;
    top: 34vh;
  }
  .story-page .image-container.move-in .main-image {
    max-width: 100vw;
  }
}
.story-page .image-container .main-image.ie11 {
  width: 92.5%;
}
.story-page .image-container .caption,
.story-page .image-container .dcaption {
  color: rgba(0, 0, 0, 0.55);
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
  margin-top: 0;
  position: absolute;
  width: 100vw;
}
@media screen and (max-width: 767px) {
  .story-page .image-container .caption,
  .story-page .image-container .dcaption {   
    padding: 0 10px;
    position: initial;
  }
}
.story-page .image-container .special-share {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 40px 0 0 23px;
  width: 22px;
}
@media screen and (max-width: 1024px) {
  .story-page .image-container .special-share {
    margin: 40px 0 0 11px;
  }
}
@media screen and (max-width: 767px) {
  .story-page .image-container .special-share {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: auto !important;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    margin: 0 5px 0 0;
    position: fixed;
    right: 100vw;
    top: 0;
    width: auto;
  }
}
.story-page .image-container .special-share a {
  width: 22px;
}
@media screen and (max-width: 767px) {
  .story-page .image-container .special-share a {
    margin-right: 5px;
    width: 35px;
  }
}
.story-page .image-container .special-share .facebook,
.story-page .image-container .special-share .twitter,
.story-page .image-container .special-share .linkedin {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  margin: 10px 0;
  opacity: 0.55;
  padding: 0;
  width: 22px;
}
@media screen and (max-width: 767px) {
  .story-page .image-container .special-share .facebook,
  .story-page .image-container .special-share .twitter,
  .story-page .image-container .special-share .linkedin {
    margin: 17px 0;
  }
}
.story-page .image-container .special-share .facebook:hover,
.story-page .image-container .special-share .twitter:hover,
.story-page .image-container .special-share .linkedin:hover {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
.story-page .image-container .special-share .facebook {
  padding: 0 4px;
}
@media screen and (max-width: 767px) {
  .story-page .image-container .special-share .facebook {
    padding: 0 5px;
  }
}
.story-page .image-container .special-share .linkedin {
  padding: 0 1px;
}
.story-page .image-container .close-button {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  cursor: pointer;
  opacity: 0.55;
  margin: 0 0 0 -20px;
}
@media screen and (max-width: 767px) {
  .story-page .image-container .close-button {
    margin: 18px;
    opacity: 0.75;
  }
}
.story-page .image-container .close-button:hover {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
.story-page .contains-video .close-button {
  margin: 0 0 0 23px;
}
@media screen and (max-width: 800px) {
  .story-page .contains-video .close-button {
    margin: 0 0 0 18px;
  }
}
@media screen and (max-width: 767px) {
  .story-page .contains-video .close-button {
    margin: 0;
  }
}
.story-page .mobile-bar {
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  background-color: transparent;
  height: 57px;
  position: fixed;
  top: 0;
  width: 100vw;
}
.story-page .mobile-bar .close-arrow {
  -webkit-transition: left 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
  border: solid rgba(0, 0, 0, 0.55);
  border-width: 0 2px 2px 0;
  height: 0;
  left: -100vw;
  margin: 20px 0 0 20px;
  padding: 8px;
  -webkit-transform: rotate(135deg) skew(-2deg, -2deg);
  -ms-transform: rotate(135deg) skew(-2deg, -2deg);
  transform: rotate(135deg) skew(-2deg, -2deg);
  width: 0;
}

.graph-popup-source {
  color: rgba(0, 0, 0, 0.55);
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
  margin-top: 10px;
  position: absolute;
  width: 100%;
}
.graph-popup-source > div{
  margin-top: 10px;
}

.graph-popup-source p{
  color: rgba(0, 0, 0, 0.55);
}

@media screen and (max-width: 767px) {
  .graph-popup-source {
    margin-top: 12px;
    padding: 0 20px;
    position: initial;
  }
}

@media screen and (min-width: 767px) {
  .story-page .mobile-bar {
    display: none;
  }
}
.story-page .image-container {
  left: -200vw !important;
}
.story-page .image-container.move-in {
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  padding: 0 !important;
}
@media screen and (max-width: 767px) {
  .story-page .image-container.move-in {
    align-items: flex-start;
  }
}
.story-page .image-container .image-inner {
  display: flex;
  flex-direction: column;
  max-width: 1213px;
}
@media screen and (max-width: 1217px) {
  .story-page .image-container .image-inner {
    width: calc(100% - 20px);
    padding: 0 20px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .story-page .image-container .image-inner {
    align-items: center;
    justify-content: center;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .story-page .image-container .image-inner {
    max-width: auto;
  }
}
.story-page .image-container .image-inner .image-inner-top {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .story-page .image-container .image-inner .image-inner-top {
    max-width: 1213px;
    height: 0%;
  }
}
.story-page .image-container .image-inner .image-inner-top-left {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .story-page .image-container .image-inner .image-inner-top-left {
    margin-right: 0;
  }
}
.story-page .image-container .image-inner .image-inner-top-left img {
  width: 100%;
}
.story-page .image-container .image-inner .image-inner-top-right {
  width: 22px;
}
@media screen and (max-width: 767px) {
  .story-page .image-container .image-inner .image-inner-top-right {
    width: 0;
  }
}
.story-page
  .image-container
  .image-inner
  .image-inner-top
  .close-button[style] {
  margin-top: auto !important;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .story-page .image-container .image-inner .image-inner-top .close-button {
    display: none;
  }
}
.story-page .image-container .image-inner .image-inner-top .special-share {
  height: auto !important;
  margin: 40px 0 0 0px !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .story-page .image-container .image-inner .image-inner-top .special-share {
    height: auto !important;
    margin: 40px 0 0 23px !important;
  }
}
@media screen and (max-width: 767px) {
  .story-page
    .image-container
    .image-inner
    .image-inner-top
    .opioid-special-share {
    margin: 0 5px 0 0 !important;
  }
}
.story-page
  .image-container
  .image-inner
  .image-inner-top
  .opioid-special-share {
  height: auto !important;
  margin: 40px 0 0 0px !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .story-page
    .image-container
    .image-inner
    .image-inner-top
    .opioid-special-share {
    height: auto !important;
    margin: 40px 0 0 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .story-page .image-container .image-inner .image-inner-top .special-share {
    margin: 0 5px 0 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .story-page .image-container .image-inner-bottom {
    max-width: 1213px;
    width: 100%;    
  }
}

.story-page .image-container .image-inner .dcaption {
  position: relative !important;
  width: calc(100% - 50px);
  display: none; 
}

/* .story-page .image-container .image-inner .dcaption:first-child {
  display: block;
} */

.story-page .image-container .image-inner .dcaption {
  display: block;
  max-width: 780px; 
  margin-top: 10px;
} 

.story-page .image-container .image-inner .caption {
  display: none;
}
.story-page .image-container.contains-video .image-inner {
  width: auto;
}

@media screen and (max-width: 767px) {
  .story-page.story-page_society
    .image-container.move-in
    .image-inner
    .image-inner-top
    .special-share {
    right: 0 !important;
    left: initial !important;
  }

  .story-page.story-page_society .image-container .image-inner .dcaption {
    word-break: normal;
    width: 100%;
  }

  .story-page.story-page_society .image-container .image-inner .dcaption a{
    word-break: break-all;    
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .story-page.story-page_health .special-share img {
    height: 22px;
  }

  .story-page.story-page_society
    .image-container
    .image-inner
    .image-inner-top
    [style].close-button {
    margin-top: 0 !important;
    margin-left: 30px;
    height: 22px;
  }
  .story-page.story-page_society
    .image-container
    .image-inner
    .image-inner-top-right {
    margin-left: -20px;
  }
}

@media all and (min--moz-device-pixel-ratio: 0) and (min-resolution: 30dpcm) {
  .main {
    overflow: hidden !important;
  }
}
.iphone .graph-popup-foreground {
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

/*--------------------------------------------------------------
# Browser Hacks IE
--------------------------------------------------------------*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .special-share a {
    display: block;
  }
}

@media screen and (-ms-high-contrast: active) and (max-width: 767px),
  screen and (-ms-high-contrast: none) and (max-width: 767px) {
  .story-page
    .image-container
    .image-inner
    .image-inner-top
    .special-share
    .facebook {
    height: 23.094px;
  }
  .story-page
    .image-container
    .image-inner
    .image-inner-top
    .special-share
    .linkedin {
    height: 19.938px;
  }
}
/*--------------------------------------------------------------
# Infographics page
--------------------------------------------------------------*/
.norc-infographics {
  background-color: #f6f8f9;
}

.norc-infographics {
  display: flex;
  flex-wrap: wrap;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .norc-infographics {
    padding: 0 20px;
  }
  .rb-custom-vizhub-projectpg .norc-infographics {
    padding: 0;
  }
}
.norc-infographics .result-item {
  margin: 0;
  margin-bottom: 50px;
  /* padding: 0 20px 50px 0; */
  display: inline;
  float: left;
}

.norc-infographics .result-item a {
  color: #303030;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.norc-infographics .result-item a figure {
  padding: 0;
  margin: 0;
  position: relative;
  display: inline-block;
  max-width: 374px;
  width: 100%;
}
.norc-infographics .result-item a figure div {
  padding-bottom: 56.356%;
  background: no-repeat center center;
  background-size: cover;
  max-width: 374px;
  height: 0;
  overflow: hidden;
}
.norc-infographics .result-item a figure img {
  width: 100%;
  max-width: 374px;
  max-height: 222px;
  object-fit: cover;
}
.norc-infographics .result-item a figure figcaption:before {
  content: "";
  display: block;
  background: url(/PublishingImages/vizhub/zoom-white.svg) no-repeat center center;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.75;
  transition: opacity 0.2s ease-in-out;
}
.norc-infographics .result-item a figure figcaption.norc-light-image:before {
  background: url(/PublishingImages/vizhub/zoom.svg) no-repeat center center;
}

.norc-infographics .result-item a figure figcaption.norc-play-video:before {
  background: url(/PublishingImages/vizhub/play-button-text.svg) no-repeat center center;
  background-size: 25%;
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  opacity: .8;
  padding-bottom: 59.356%; }

.norc-infographics .result-item a:hover figure figcaption:before {
  opacity: 1;
}

.close-button {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  cursor: pointer;
  opacity: 0.55;
  margin: 0 0 0 -20px;
  width: 22px;
}

.special-share {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 60px 0 0 23px;
  width: 22px;
  display: none;
}
.special-share a img {
  width: 22px;
  padding: 0 1px;
}
.special-share a img.facebook {
  padding: 0 4px;
}
.special-share a img.twitter {
  margin: 20px 0 22px;
  padding: 0;
}

.norc-infographics .result-item .image-container {
  position: relative;
  left: 0;
  align-items: flex-start;
  height: auto;
  width: auto;
}
@media screen and (max-width: 767px) {
  .norc-infographics .result-item .image-container {
    top: auto;
    justify-content: center;
  }
}

.vizhub-result-list .margin-bottom-10{
  margin-bottom: -10px;
}

.rb-custom-vizhub-projectpg .result-item{
  margin-bottom: 0px;
}

.ms-ref-refiner[refinername="NORCTopicTags"] .checkbox i{ 
  display: none;
}

.ms-ref-refiner[refinername="NORCTopicTags"] .collapse, .ms-ref-refiner[refinername="NORCTopicTags"] .collapse.in, .ms-ref-refiner[refinername="NORCTopicTags"]  .collapsing{ 
  display: none;
}

.ms-ref-refiner[refinername="NORCTopicTags"] .checkbox-link {
  text-decoration: none !important;
}

.refiner-section .refiner-box .filter-refiners .checkbox-link:hover {
  text-decoration: underline !important;
}