.cc--big-picture .c--big-picture .text-wrapper .f--link .button, .cc--big-picture .c--big-picture .location-link-list > li a {
  font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700; }

/*  Centering an element within its parent element
*
*   @param {Axis} $axis - x: centers horizontally, y: centers vertically, null: centers both axis
*
*   Example Usage:
*
*   // Center on both x and y axis
*   .container {
*     .link {
*       @include centered;
*     }
*   }
*
*   // Center on the X axis
*   .container {
*     .link {
*       @include centered(x);
*     }
*   }
*
*   // Center on the Y axis
*   .container {
*     .link {
*       @include centered(y);
*     }
*   }
*
*/
/*  Centering within an flex container
*
*   @param {Display} $display - inline: display set to inline-flex, else display set to flex
*
*
*   Example Usage:
*
*   .container {
*     @include vertical-align-flex;
*   }
*
*/
/* Chevron mixin for creating chevrons
*
*  @param {Size} $size - the size of the chevron
*  @param {Thickness} $thickness - thickness
*  @param {Color} $color - color
*  @param {Direction} $direction - direction chevron faces
*
*  Example Usage:
*
*     .chevron {
*       @include chevron(12px, 12px, #000, 'down');
*     }
*
*/
/*  Clearfix for clearing floats within a container
*
*   No Params
*
*   Example Usage:
*
*     .container {
*       @include clearfix;
*
*       .link {
*          float: left;
*       }
*     }
*
*/
/*  Set font-size and optionally leading
*
*   @param {Font Size} $fontSize - Unit-less font size
*   @param {Leading}   $leading  - (default: null) - Optional- Unit-less leading from Photoshop or Sketch
*
*   Example Usage:
*
*     p {
*       @include font-size(12,14);
*     }
*
*/
/**
* Hide Text
*/
/* Hover mixin for hover states
*
*  Note: This mixin has a dependency on what-intent plugin which detects the current input method
*        https://github.com/ten1seven/what-input
*
*  @param {Transition Duration} $transition-duration - the duration of transitions on hover states
*
*  Example Usage:
*
*     a {
*       @include hover() {
*         background-color: red
*       }
*     }
*
*/
/**
 * Returns a percentage width based on the number and total number of columns
 *
 * @param 	int 	$num 	Number of columns (e.g. 4)
 * @param 	int 	$total 	Total number of columns (e.g. 24)
 * @return 	float 			 Total width (%)
 */
/*  Unitless line-height
*
*   @param {Font Size} $fontSize - Unit-less font size
*   @param {Leading}   $leading  - Unit-less leading from Photoshop or Sketch
*
*   Example Usage:
*
*     @include line-height(16, 20);
*
*/
/*  Remove List Styles
*
*   No Params
*
*   Example Usage:
*
*     ul {
*       @include no-bullet;
*     }
*
*/
/*
  Maintain ratio mixin.
  @param {List} [$ratio] Ratio the element needs to maintain. A 16:9 ratio would look like this:
    .element { @include maintain-ratio(16 9); }
*/
/*  Media Query Mixin
*
*   @param {Media Query} $mq - Media query in single quotes: eg. 'screen and (min-width: 480px)'
*
*   Example Usage:
*
*     .selector {
*       property: value;
*
*       @include mq($bp768) {
*         property: value;
*       }
*     }
*
*/
/*  Overflow Scroll
*   Allows you to set overflow scrolling on the x and y axis
*
*   @param {axix} $axis - the axis on which to set scroll
*/
/*  Placeholder Mixin
*
*   No Params
*
*   Example Usage:
*
*     input[placeholder] {
*       @include placeholder {
*         color: red;
*       }
*     }
*
*/
/*  PX to REM Conversion
*
*   @param {Pixel} $px - Unitless pixel value to be converted into rems.
*
*   Example Usage:
*
*     margin-bottom: rem(20);
*
*/
/*  Triangle helper mixin
*
*   @param {Direction} $direction - Triangle direction, either `top`, `right`, `bottom` or `left`
*   @param {Color} $color [currentcolor] - Triangle color
*   @param {Length} $size [1em] - Triangle size
*
*/
/*  Visually hide text within an element
*   Used mostly for accessibility reasonse
*
*   No Params
*
*   Example Usage:
*
*     button {
*       span {
*         @include visuallyhidden;
*       }
*     }
*
*/
.cc--big-picture .c--big-picture {
  position: relative;
  height: auto; }
  @media screen and (min-width: 768px) {
    .cc--big-picture .c--big-picture {
      height: 56.25rem; } }
  @media screen and (min-width: 1024px) {
    .cc--big-picture .c--big-picture {
      height: 63.4375rem; } }
  .cc--big-picture .c--big-picture .background-image {
    display: none; }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .background-image {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: right -6.25rem;
        background-size: cover; }
        .cc--big-picture .c--big-picture .background-image::before {
          content: '';
          width: 100%;
          height: 100%;
          background: linear-gradient(180deg, rgba(204, 0, 51, 0.8) 56%, #CC0033 70%);
          position: absolute;
          top: 0;
          left: 0;
          z-index: 1; }
        .cc--big-picture .c--big-picture .background-image .map-mask {
          position: absolute;
          top: 0;
          width: 100%;
          height: 100%;
          background-image: inherit;
          background-size: cover;
          background-position: right -6.25rem;
          z-index: 2;
          mask-image: url("map-mask.svg");
          mask-repeat: no-repeat;
          mask-size: 23.125rem;
          mask-position: 100% 70px;
          -webkit-mask-image: url("map-mask.svg");
          -webkit-mask-repeat: no-repeat;
          -webkit-mask-size: 23.125rem;
          -webkit-mask-position: 100% 70px; } }
    @media screen and (min-width: 768px) and (min-width: 1024px) {
      .cc--big-picture .c--big-picture .background-image .map-mask {
        mask-size: 33.75rem;
        -webkit-mask-size: 33.75rem; } }
    @media screen and (min-width: 768px) {
        .cc--big-picture .c--big-picture .background-image .text-pin {
          position: absolute;
          top: 0;
          width: 100%;
          height: 100%;
          background-image: url("text.svg");
          background-repeat: no-repeat;
          background-size: 23.125rem;
          background-position: 100% 70px;
          z-index: 3; } }
    @media screen and (min-width: 768px) and (min-width: 1024px) {
      .cc--big-picture .c--big-picture .background-image .text-pin {
        background-size: 33.75rem; } }
  .cc--big-picture .c--big-picture .text-wrapper {
    background-color: #C03;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%; }
    .cc--big-picture .c--big-picture .text-wrapper .f--description,
    .cc--big-picture .c--big-picture .text-wrapper .f--text,
    .cc--big-picture .c--big-picture .text-wrapper .f--category {
      color: #FFF; }
      .cc--big-picture .c--big-picture .text-wrapper .f--description p,
      .cc--big-picture .c--big-picture .text-wrapper .f--description li,
      .cc--big-picture .c--big-picture .text-wrapper .f--description a,
      .cc--big-picture .c--big-picture .text-wrapper .f--text p,
      .cc--big-picture .c--big-picture .text-wrapper .f--text li,
      .cc--big-picture .c--big-picture .text-wrapper .f--text a,
      .cc--big-picture .c--big-picture .text-wrapper .f--category p,
      .cc--big-picture .c--big-picture .text-wrapper .f--category li,
      .cc--big-picture .c--big-picture .text-wrapper .f--category a {
        color: #FFF; }
      html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--description a, html[data-whatintent="mouse"]
      .cc--big-picture .c--big-picture .text-wrapper .f--text a, html[data-whatintent="mouse"]
      .cc--big-picture .c--big-picture .text-wrapper .f--category a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--description a:hover, html[data-whatintent="mouse"]
        .cc--big-picture .c--big-picture .text-wrapper .f--text a:hover, html[data-whatintent="mouse"]
        .cc--big-picture .c--big-picture .text-wrapper .f--category a:hover {
          color: #FFF; }
    .cc--big-picture .c--big-picture .text-wrapper .f--section-title h2,
    .cc--big-picture .c--big-picture .text-wrapper .f--section-title h2 p {
      color: #FFF; }
      .cc--big-picture .c--big-picture .text-wrapper .f--section-title h2 a,
      .cc--big-picture .c--big-picture .text-wrapper .f--section-title h2 p a {
        color: #FFF; }
        html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--section-title h2 a, html[data-whatintent="mouse"]
        .cc--big-picture .c--big-picture .text-wrapper .f--section-title h2 p a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--section-title h2 a:hover, html[data-whatintent="mouse"]
          .cc--big-picture .c--big-picture .text-wrapper .f--section-title h2 p a:hover {
            color: #FFF; }
    .cc--big-picture .c--big-picture .text-wrapper .f--sub-title h3 {
      color: #FFF; }
      .cc--big-picture .c--big-picture .text-wrapper .f--sub-title h3 p {
        color: #FFF; }
      .cc--big-picture .c--big-picture .text-wrapper .f--sub-title h3 a,
      .cc--big-picture .c--big-picture .text-wrapper .f--sub-title h3 a p {
        color: #FFF; }
        html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--sub-title h3 a, html[data-whatintent="mouse"]
        .cc--big-picture .c--big-picture .text-wrapper .f--sub-title h3 a p {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--sub-title h3 a:hover, html[data-whatintent="mouse"]
          .cc--big-picture .c--big-picture .text-wrapper .f--sub-title h3 a p:hover {
            color: #FFF; }
    .cc--big-picture .c--big-picture .text-wrapper .f--page-title h1,
    .cc--big-picture .c--big-picture .text-wrapper .f--page-title h1 p {
      color: #FFF; }
    .cc--big-picture .c--big-picture .text-wrapper .stat-item .f--text,
    .cc--big-picture .c--big-picture .text-wrapper .stat-item .f--stat-prefix,
    .cc--big-picture .c--big-picture .text-wrapper .stat-item .f--stat-suffix {
      color: #FFF; }
      .cc--big-picture .c--big-picture .text-wrapper .stat-item .f--text p,
      .cc--big-picture .c--big-picture .text-wrapper .stat-item .f--stat-prefix p,
      .cc--big-picture .c--big-picture .text-wrapper .stat-item .f--stat-suffix p {
        color: #FFF; }
    .cc--big-picture .c--big-picture .text-wrapper .f--stat-subheading,
    .cc--big-picture .c--big-picture .text-wrapper .f--description,
    .cc--big-picture .c--big-picture .text-wrapper .f--stat-headline {
      color: #FFF; }
      .cc--big-picture .c--big-picture .text-wrapper .f--stat-subheading p,
      .cc--big-picture .c--big-picture .text-wrapper .f--description p,
      .cc--big-picture .c--big-picture .text-wrapper .f--stat-headline p {
        color: #FFF; }
    .cc--big-picture .c--big-picture .text-wrapper .f--link .button {
      font-size: 1rem;
      line-height: 1.1875;
      padding-right: 1.25rem;
      padding-left: 1.25rem;
      position: relative;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      text-align: center;
      width: 100%;
      height: 3.75rem;
      border-radius: 0;
      white-space: normal;
      color: #000;
      background-color: #FFF;
      border: 0.125rem solid #C03;
      transition: background-color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      background-color: transparent;
      color: #FFF;
      border: 0.125rem solid #FFF; }
      @media screen and (min-width: 768px) {
        .cc--big-picture .c--big-picture .text-wrapper .f--link .button {
          padding-right: 2.5rem;
          padding-left: 2.5rem;
          width: auto; } }
      html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--link .button {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--link .button:hover {
          transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
          background-color: #C03;
          color: #FFF;
          text-decoration: none; }
      html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--link .button {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--link .button:hover {
          transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
          background-color: #FFF;
          color: #000;
          text-decoration: none; }
      html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--link .button.disabled {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .f--link .button.disabled:hover {
          background-color: transparent;
          color: #FFF; }
    html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .swiper-button-prev, html[data-whatintent="mouse"]
    .cc--big-picture .c--big-picture .text-wrapper .swiper-button-next {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .text-wrapper .swiper-button-prev:hover svg, html[data-whatintent="mouse"]
      .cc--big-picture .c--big-picture .text-wrapper .swiper-button-next:hover svg {
        fill: #FFF; }
    .cc--big-picture .c--big-picture .text-wrapper .swiper-button-prev svg,
    .cc--big-picture .c--big-picture .text-wrapper .swiper-button-next svg {
      fill: #FFF; }
    .cc--big-picture .c--big-picture .text-wrapper .swiper-button-wrapper::before {
      background-color: rgba(255, 255, 255, 0.3); }
    .cc--big-picture .c--big-picture .text-wrapper .swiper-pagination-bullet {
      background: transparent;
      border: 0.0625rem solid #FFF;
      opacity: 1; }
      .cc--big-picture .c--big-picture .text-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #FFF; }
    .cc--big-picture .c--big-picture .text-wrapper .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link,
    .cc--big-picture .c--big-picture .text-wrapper .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link p {
      color: #FFF; }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .text-wrapper .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link::after {
        background-image: url("../images/icons/icon-arrow-right-white.svg"); } }
    @media screen and (max-width: 767px) {
      .cc--big-picture .c--big-picture .text-wrapper {
        padding-top: 3.75rem;
        padding-right: 8%;
        padding-bottom: 1.25rem;
        padding-left: 8%; } }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .text-wrapper {
        padding-right: 2%;
        padding-left: 2%;
        justify-content: flex-start;
        padding-top: 15%;
        background-color: transparent;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3; } }
    @media screen and (min-width: 1024px) {
      .cc--big-picture .c--big-picture .text-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%); } }
    @media screen and (min-width: 1440px) {
      .cc--big-picture .c--big-picture .text-wrapper {
        padding-top: 15%;
        padding-right: calc(((100vw - (100vw - 1440px)) / 50) * 1 null);
        padding-bottom: 15%;
        padding-left: calc(((100vw - (100vw - 1440px)) / 50) * 1 null); } }
  .cc--big-picture .c--big-picture .locations-wrapper {
    background-color: #C03;
    flex-direction: column;
    width: 100%; }
    @media screen and (max-width: 767px) {
      .cc--big-picture .c--big-picture .locations-wrapper {
        padding-top: 0;
        padding-right: 8%;
        padding-bottom: 3.75rem;
        padding-left: 8%; } }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .locations-wrapper {
        padding-right: 2%;
        padding-left: 2%;
        background-color: transparent;
        position: absolute;
        bottom: 4.0625rem;
        left: 0;
        z-index: 3;
        justify-content: center; } }
    @media screen and (min-width: 1024px) {
      .cc--big-picture .c--big-picture .locations-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%); } }
    @media screen and (min-width: 1440px) {
      .cc--big-picture .c--big-picture .locations-wrapper {
        padding-right: calc(((100vw - (100vw - 1440px)) / 50) * 1);
        padding-left: calc(((100vw - (100vw - 1440px)) / 50) * 1); } }
    .cc--big-picture .c--big-picture .locations-wrapper .f--section-title h2 p {
      font-size: 2rem;
      line-height: 1.25;
      margin-bottom: 2.5rem;
      color: #FFF;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .cc--big-picture .c--big-picture .locations-wrapper .f--section-title h2 p {
          font-size: 2.5rem;
          line-height: 1.5;
          text-align: left; } }
    .cc--big-picture .c--big-picture .locations-wrapper .location-link-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem; }
      @media screen and (min-width: 768px) {
        .cc--big-picture .c--big-picture .locations-wrapper .location-link-list {
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: space-between;
          gap: 1.25rem; } }
      @media screen and (min-width: 1024px) {
        .cc--big-picture .c--big-picture .locations-wrapper .location-link-list {
          flex-wrap: nowrap; } }
      @media screen and (min-width: 768px) {
        .cc--big-picture .c--big-picture .locations-wrapper .location-link-list li {
          flex: 0 0 48%; } }
      @media screen and (min-width: 1024px) {
        .cc--big-picture .c--big-picture .locations-wrapper .location-link-list li {
          flex: 0 0 23%; } }
      @media screen and (min-width: 1200px) {
        .cc--big-picture .c--big-picture .locations-wrapper .location-link-list li {
          flex: 0 0 24%; } }
      .cc--big-picture .c--big-picture .locations-wrapper .location-link-list li a {
        width: 100%; }
  .cc--big-picture .c--big-picture .f--section-title {
    text-align: center; }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .f--section-title {
        text-align: left; } }
    .cc--big-picture .c--big-picture .f--section-title h2,
    .cc--big-picture .c--big-picture .f--section-title h2 p {
      margin-bottom: 0;
      font-size: 2rem;
      line-height: 1.25;
      color: #FFF; }
      @media screen and (min-width: 768px) {
        .cc--big-picture .c--big-picture .f--section-title h2,
        .cc--big-picture .c--big-picture .f--section-title h2 p {
          font-size: 3.5rem;
          line-height: 1; } }
      @media screen and (min-width: 1024px) {
        .cc--big-picture .c--big-picture .f--section-title h2,
        .cc--big-picture .c--big-picture .f--section-title h2 p {
          font-size: 5.5rem;
          line-height: 1; } }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .f--section-title h2 {
        max-width: 60%; } }
  .cc--big-picture .c--big-picture .f--description {
    margin-top: 1.25rem; }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .f--description {
        margin-top: 2.5rem;
        max-width: 60%; } }
    .cc--big-picture .c--big-picture .f--description p {
      color: #FFF;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .cc--big-picture .c--big-picture .f--description p {
          text-align: left; } }
  .cc--big-picture .c--big-picture .video-link-list-wrapper {
    margin-top: 1.875rem;
    margin-bottom: 2.1875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem; }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .video-link-list-wrapper {
        margin-top: 3.125rem;
        margin-bottom: 0;
        flex-direction: row;
        max-width: 56%;
        gap: 0; } }
    @media screen and (min-width: 1024px) {
      .cc--big-picture .c--big-picture .video-link-list-wrapper {
        max-width: 60%; } }
    .cc--big-picture .c--big-picture .video-link-list-wrapper .f--link {
      width: 100%; }
      @media screen and (min-width: 768px) {
        .cc--big-picture .c--big-picture .video-link-list-wrapper .f--link {
          width: auto; } }
  .cc--big-picture .c--big-picture .icon-play {
    display: flex;
    flex-shrink: 0;
    color: #FFF; }
    html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .icon-play {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .icon-play:hover svg {
        fill: #000; }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .icon-play {
        border-right: 0; } }
    .cc--big-picture .c--big-picture .icon-play svg {
      margin-left: 0.625rem;
      width: 0.75rem;
      height: 0.75rem;
      fill: #FFF; }
  .cc--big-picture .c--big-picture .location-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-basis: auto;
    flex-shrink: 0; }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .location-link-list {
        display: flex; } }
    @media screen and (max-width: 767px) {
      .cc--big-picture .c--big-picture .location-link-list.more-than-one {
        display: none; } }
    .cc--big-picture .c--big-picture .location-link-list > li a {
      font-size: 1rem;
      line-height: 1.1875;
      padding-right: 1.25rem;
      padding-left: 1.25rem;
      position: relative;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      text-align: center;
      width: 100%;
      height: 3.75rem;
      border-radius: 0;
      white-space: normal;
      color: #000;
      background-color: #FFF;
      border: 0.125rem solid #C03;
      transition: background-color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
      background-color: transparent;
      color: #FFF;
      border: 0.125rem solid #FFF;
      font-size: 1.625rem;
      line-height: 1;
      height: 5.625rem;
      font-family: 'PT Serif', Georgia, serif;
      font-style: normal;
      font-weight: 700; }
      @media screen and (min-width: 768px) {
        .cc--big-picture .c--big-picture .location-link-list > li a {
          padding-right: 2.5rem;
          padding-left: 2.5rem;
          width: auto; } }
      html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .location-link-list > li a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .location-link-list > li a:hover {
          transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
          background-color: #C03;
          color: #FFF;
          text-decoration: none; }
      html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .location-link-list > li a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--big-picture .c--big-picture .location-link-list > li a:hover {
          transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
          background-color: #FFF;
          color: #000;
          text-decoration: none; }
  .cc--big-picture .c--big-picture .icon-close {
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #FFF;
    border-radius: 100%; }
    @media screen and (min-width: 768px) {
      .cc--big-picture .c--big-picture .icon-close {
        display: none; } }
    .cc--big-picture .c--big-picture .icon-close svg {
      width: 0.75rem;
      height: 0.75rem;
      fill: #FFF; }
