.cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link strong,
.cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link sup,
.cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link sub, .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link, .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs.swiper-pagination-customs-active .side-nav-link {
  font-family: 'PT Serif', Georgia, serif;
  font-style: normal;
  font-weight: 700; }

.cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link em, .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link em sup,
.cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link em sub {
  font-family: 'PT Serif', Georgia, serif;
  font-style: italic;
  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--user-choice {
  position: relative; }
  @media screen and (max-width: 767px) {
    .cc--user-choice.background-image, .cc--user-choice.with-bg-image {
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; } }
  @media screen and (max-width: 767px) {
    .cc--user-choice.background-image::after, .cc--user-choice.with-bg-image::after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      content: '';
      z-index: 0; } }
  @media screen and (max-width: 767px) {
    .cc--user-choice.background-image .left-container, .cc--user-choice.with-bg-image .left-container {
      height: 31.125rem; } }
  @media screen and (max-width: 767px) {
    .cc--user-choice .left-container {
      padding-top: 3.125rem;
      padding-right: 8%;
      padding-bottom: 3.125rem;
      padding-left: 8%;
      display: flex;
      align-items: center;
      justify-content: center; } }
  @media screen and (min-width: 768px) {
    .cc--user-choice .left-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
      background-color: rgba(204, 0, 51, 0.8);
      z-index: 2; } }
  @media screen and (min-width: 1024px) {
    .cc--user-choice .left-container {
      width: 36%; } }
  @media screen and (min-width: 768px) {
    .cc--user-choice .left-container .left-container-inner {
      padding-right: calc((100vw / 50) * 2);
      padding-left: calc((100vw / 50) * 2);
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%; } }
  @media screen and (min-width: 1440px) {
    .cc--user-choice .left-container .left-container-inner {
      padding-right: calc(((100vw - (100vw - 1440px)) / 50) * 2);
      padding-left: calc(((100vw - (100vw - 1440px)) / 50) * 2);
      margin-left: calc((100vw - 1440px) / 2); } }
  .cc--user-choice .right-container {
    height: 100%;
    width: 100%; }
    @media screen and (max-width: 767px) {
      .cc--user-choice .right-container {
        display: none; } }
    @media screen and (max-width: 767px) {
      .cc--user-choice .right-container.is-visible {
        display: flex;
        position: absolute;
        top: 0;
        z-index: 4; } }
  .cc--user-choice .side-nav .swiper-pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 768px) {
      .cc--user-choice .side-nav .swiper-pagination {
        text-align: left; } }
    .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs:not(:last-child) {
      margin-bottom: 1.25rem; }
      @media screen and (min-width: 768px) {
        .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs:not(:last-child) {
          margin-bottom: 1.5625rem; } }
    .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link {
      text-align: center;
      cursor: pointer; }
      @media screen and (min-width: 768px) {
        .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link {
          text-align: left; } }
  .cc--user-choice .f--section-title h2,
  .cc--user-choice .f--section-title h2 p {
    color: #FFF;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .cc--user-choice .f--section-title h2,
      .cc--user-choice .f--section-title h2 p {
        text-align: left; } }
  .cc--user-choice .f--section-title h2 {
    margin-bottom: 3.125rem; }
    @media screen and (min-width: 768px) {
      .cc--user-choice .f--section-title h2 {
        margin-bottom: 2.5rem; } }
  @media screen and (max-width: 767px) {
    .cc--user-choice .left-container {
      padding-top: 3.125rem;
      padding-bottom: 1.25rem;
      align-items: flex-start; } }
  @media screen and (max-width: 767px) {
    .cc--user-choice .left-container .left-container-inner {
      display: flex;
      flex-direction: column;
      height: 100%; } }
  @media screen and (max-width: 767px) {
    .cc--user-choice .side-nav {
      display: flex;
      flex-grow: 1; } }
  .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link {
    position: relative;
    padding-right: 2rem;
    font-size: 1.25rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.5); }
    @media screen and (min-width: 768px) {
      .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link {
        color: #FFF; } }
    html[data-whatintent="mouse"] .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link:hover {
        color: #FFF;
        text-decoration: underline; }
        html[data-whatintent="mouse"] .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link:hover::after {
          right: -1rem; }
    .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs .side-nav-link::after {
      content: "";
      position: absolute;
      width: 1rem;
      height: 1rem;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      background-image: url("images/icon-arrow-right-white.svg");
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 24px 14px;
      transition: right 0.3s ease-in-out; }
  .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs.swiper-pagination-customs-active .side-nav-link {
    text-decoration: underline; }
    @media screen and (min-width: 768px) {
      .cc--user-choice .side-nav .swiper-pagination .swiper-pagination-customs.swiper-pagination-customs-active .side-nav-link {
        color: #FFF; } }
