@charset "UTF-8";
/**
 * CSS for the RTE is a bit different than the CSS for regular components.
 * The RTE can't be customized easily, for example it's hard to add a CSS
 * class "theme--color" to a link. Instead of adding the class, we address
 * the <a> tag directly – without a CSS class.
 *
 * The RTE allows to create text wrapped in the following HTML tags:
 *  <p>
 *  <a>
 *  <h2>, <h3> (not h1, h4, h5)
 *  <ol>, <ul>, <li>
 *  <span.inline-code>
 */
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
/*------------------------------------*    $SVG URL Encode - Function
\*------------------------------------*/
/*
   Based on https://codepen.io/tigt/post/optimizing-svgs-in-data-uris

   tl;dr
   IE 10,11/Edge needs encoded URI strings for SVG CSS background images
*/
/*------------------------------------*    $INLINE SVG USING DATA URI
\*------------------------------------*/
/*
  Method to inline SVG using data:uri
  Benefits include being able to set the fill color of an SVG background image

  Example:

  @include inline-svg(rgba(255,255,255, 1), '<path d="M46.5 3v16a3 3 0 0 1-6 0v-8.76L25 25.74a3 3 0 1 1-4.24-4.24L36.26 6H27.5a3 3 0 0 1 0-6h16a3 3 0 0 1 3 3z"/>');

  rgba value / <path>
*/
.c01-rich-text-editor .introduction {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.015rem;
  margin: 0;
  padding: 0 0 0rem 0;
  color: #657786;
  line-height: 1.5em; }

.c01-rich-text-editor h1, .c01-rich-text-editor h1 > span {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.025rem;
  margin: 0;
  padding: 0 0 0rem 0;
  padding-bottom: 1.5rem; }

.c01-rich-text-editor h2, .c01-rich-text-editor h2 > span {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.25rem;
  letter-spacing: -0.025rem;
  margin: 0;
  padding: 0 0 0rem 0;
  padding: 1.5rem 0; }

.c01-rich-text-editor h3, .c01-rich-text-editor h3 > span {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0rem;
  margin: 0;
  padding: 0 0 0rem 0;
  padding-bottom: 1.5rem; }

.c01-rich-text-editor h4 {
  font-weight: 700;
  font-size: 0.9975rem;
  line-height: 1.5rem;
  letter-spacing: 0.025rem;
  margin: 0;
  padding: 0 0 0rem 0;
  color: #657786; }
  .c01-rich-text-editor h4 > span {
    font-weight: 700;
    font-size: 0.9975rem;
    line-height: 1.5rem;
    letter-spacing: 0.025rem;
    margin: 0;
    padding: 0 0 0rem 0; }

.c01-rich-text-editor p {
  padding-bottom: 1.5rem; }

.c01-rich-text-editor a {
  position: relative; }
  .c01-rich-text-editor a > * {
    color: #794BC4; }
  .c01-rich-text-editor a .with-caret:after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 0.75em;
    background-repeat: no-repeat;
    margin-left: 0.25em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 46.5 46.5'%3E%3Cdefs%3E%3Cstyle%3Epath %7Bfill:%23794BC4; %7D%3C/style%3E%3C/defs%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 37'%3E%3Ctitle%3Echevron-forward%3C/title%3E%3Cpath d='M15,18.5.73,4.27A2.5,2.5,0,0,1,.73.74h0a2.5,2.5,0,0,1,3.53,0h0l16,16a2.5,2.5,0,0,1,0,3.53h0l-16,16A2.5,2.5,0,0,1,.73,32.74h0Z'/%3E%3C/svg%3E%3C/svg%3E"); }

.c01-rich-text-editor .smaller-h1 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.25rem;
  letter-spacing: -0.025rem;
  margin: 0;
  padding: 0 0 0rem 0;
  padding: 1.5rem 0;
  color: #14171A; }

.c01-rich-text-editor .code-inline {
  display: inline-block;
  font-size: 1em;
  padding: 0.25em 0.5em;
  background-color: #F5F8FA;
  color: #E0245E;
  border-radius: 4px;
  font-family: "Courier New", Courier, monospace; }

.c01-rich-text-editor .payload {
  display: block;
  font-size: 1em;
  background-color: #F5F8FA;
  color: #14171A;
  padding: 1.5rem;
  margin: 1.5rem auto;
  font-family: "Courier New", Courier, monospace; }

.c01-rich-text-editor table {
  border: none;
  margin: 0.75rem 0;
  color: #657786;
  overflow-x: scroll; }
  .c01-rich-text-editor table tr {
    border: none;
    vertical-align: top; }
    .c01-rich-text-editor table tr td {
      border: none;
      border-top: 1px solid #F5F8FA;
      padding: 1.5rem !important; }
      .c01-rich-text-editor table tr td, .c01-rich-text-editor table tr td p {
        font-weight: 300;
        font-size: 0.87rem;
        line-height: 1.125rem;
        letter-spacing: 0rem;
        margin: 0;
        padding: 0 0 0rem 0; }
      .c01-rich-text-editor table tr td b, .c01-rich-text-editor table tr td strong {
        font-weight: 700;
        font-size: 0.87rem;
        line-height: 1.5rem;
        letter-spacing: 0rem;
        margin: 0;
        padding: 0 0 0rem 0; }
      .c01-rich-text-editor table tr td:first-child {
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    .c01-rich-text-editor table tr th {
      border: none;
      padding: 0.75rem !important;
      text-align: right; }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c02-image .image__container {
  background-size: cover;
  background-position: center;
  height: 12rem; }
  @media (min-width: 768px) {
    .c02-image .image__container {
      height: 22.5rem; } }

.c02-image .image--single {
  width: 100%; }
  .c02-image .image--single img {
    max-width: 100%;
    max-height: 100%;
    display: block; }
    .c02-image .image--single img.centered {
      margin: 0 auto; }

.c02-image .image--twelve-column {
  max-width: 89.6%;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto; }
  @media (min-width: 768px) {
    .c02-image .image--twelve-column .image__container {
      height: 39.75rem; } }

.c02-image .image--two-column {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }
  @media (min-width: 768px) {
    .c02-image .image--two-column {
      width: 100%;
      float: left;
      margin-left: 0;
      margin-right: 0;
      margin-left: -68.96552%; } }
  .c02-image .image--two-column:last-child {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .c02-image .image--two-column:last-child {
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        margin-left: 34.48276%;
        float: none; } }

.c02-image .image--full-bleed {
  margin-bottom: 3.75rem;
  max-width: 1600px;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto; }
  @media (min-width: 768px) {
    .c02-image .image--full-bleed {
      margin-bottom: 6rem;
      margin-top: 2.25rem; }
      .c02-image .image--full-bleed .image__container {
        height: 39.75rem; } }

.c02-image .image__footer {
  padding: 1.5rem 0;
  border-bottom-style: solid;
  border-bottom-width: 1px; }

.c02-image .image__caption {
  line-height: 1rem; }
  @media (min-width: 768px) {
    .c02-image .image__caption {
      line-height: 1.5rem; } }

.c02-image .image.greyscale img {
  filter: gray;
  filter: grayscale(1);
  opacity: 0.8;
  transition: all 0.2s; }
  .c02-image .image.greyscale img:hover {
    filter: none;
    opacity: 1; }

.c02-image .image__placeholder {
  height: 26.25rem; }
  @media (min-width: 768px) {
    .c02-image .image__placeholder {
      height: 39.75rem; } }

.c02-image::after {
  content: " ";
  display: block;
  clear: both; }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c04-link-button {
  font-size: 1rem;
  display: inline-block; }
  .c04-link-button a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center; }
  .c04-link-button svg {
    height: 1.25em;
    margin-left: -0.25em;
    fill: #794BC4; }
  .c04-link-button--button {
    font-weight: 700;
    font-size: 0.87rem;
    line-height: 1.5rem;
    letter-spacing: 0rem;
    margin: 0;
    padding: 0 0 0rem 0;
    margin: 0 1em 1em 0;
    padding: 0.25em 0.5em 0.2em 1em;
    border-radius: 3rem;
    text-align: center;
    color: #FFFFFF !important; }
    .c04-link-button--button svg {
      fill: #FFFFFF; }
  .c04-link-button--link {
    padding: 0.5em 0.25em; }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c05-video .video_player {
  margin-bottom: 4.5rem;
  color: #FFFFFF;
  position: relative; }
  .c05-video .video_player video {
    width: 100%;
    margin-right: auto;
    margin-left: auto; }
  .c05-video .video_player .plyrCustomControls {
    display: none; }
  .c05-video .video_player__wrapper {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden; }
    .c05-video .video_player__wrapper:hover .plyr--video .plyr__controls {
      bottom: 0; }
  .c05-video .video_player.twelve {
    width: 89.6%;
    max-width: 1600px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute; }
    .c05-video .video_player.twelve__wrapper {
      height: 39.75rem; }
      .c05-video .video_player.twelve__wrapper .plyr {
        position: absolute;
        top: 0;
        left: 0; }
  .c05-video .video_player.six {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    position: relative; }

.c05-video .plyr--video .plyr__controls {
  transition: all 0.25s ease;
  height: 4.5rem;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  padding: 1.5rem; }

.c05-video .plyr__controls .plyr__progress,
.c05-video .plyr--video .plyr__controls button {
  padding: 0;
  margin-left: 0;
  margin-right: 1.5rem; }

.c05-video .plyr--video .plyr__controls button svg {
  width: 30px;
  height: 30px;
  margin-left: -10px; }

.c05-video .plyr__controls > button:first-child,
.c05-video .plyr__controls > button:nth-child(2) {
  margin-right: 18px; }

.c05-video .plyr__controls .plyr__time {
  margin-left: 0;
  margin-right: 0.375rem;
  vertical-align: bottom; }

.c05-video .plyr__controls .plyr__time:nth-of-type(2) {
  margin-right: 0.375rem; }

.c05-video .plyr__progress--played,
.c05-video .plyr__volume--display {
  color: #FFFFFF; }

.c05-video .plyr__progress--buffer,
.c05-video .plyr__progress--played,
.c05-video .plyr__volume--display {
  height: 2px;
  margin: 0; }

.c05-video .plyr__time span {
  font-weight: 700;
  font-size: 0.87rem;
  line-height: 1.5rem;
  letter-spacing: 0rem;
  margin: 0;
  padding: 0 0 0rem 0;
  color: #FFFFFF; }

.c05-video .plyr__time + .plyr__time {
  vertical-align: baseline; }

.c05-video .plyr__time + .plyr__time::before {
  color: #FFFFFF;
  margin-right: 0.375rem; }

.c05-video .plyr__controls .plyr__time {
  margin-left: 0;
  margin-right: 0; }

.c05-video .plyr--video .plyr__controls button.fullscreen {
  width: 26px;
  margin-right: -8px;
  margin-left: 0; }

.c05-video .plyr .volWrap {
  color: #FFFFFF;
  margin-left: 15px;
  margin-right: 19px;
  padding-top: 10px;
  padding-bottom: 10px; }
  .c05-video .plyr .volWrap:hover {
    margin-bottom: 0px; }
  .c05-video .plyr .volWrap button {
    width: 31px;
    margin-right: 0;
    margin-left: -2px; }
    .c05-video .plyr .volWrap button svg {
      margin-left: 0; }
  .c05-video .plyr .volWrap .plyr__volume {
    display: none;
    max-width: 3rem;
    -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    position: absolute;
    right: 56px;
    bottom: 75px; }
  .c05-video .plyr .volWrap:hover .plyr__volume {
    display: block; }
    .c05-video .plyr .volWrap:hover .plyr__volume:hover {
      display: block; }

.c05-video .plyr.plyr--muted .plyr__volume {
  display: none; }

.c05-video .plyr__play-large {
  border: 0;
  box-shadow: 0 0 0 transparent; }
  .c05-video .plyr__play-large svg {
    width: 130px;
    height: 130px; }

.c05-video .plyr--audio .plyr__controls button.tab-focus:focus,
.c05-video .plyr--audio .plyr__controls button:hover,
.c05-video .plyr__play-large,
.c05-video .plyr__play-large .plyr--video .button.tab-focus:focus,
.c05-video .plyr--video .plyr__controls button:hover {
  background: none; }

.c05-video .video__placeholder {
  height: 26.25rem; }
  @media (min-width: 768px) {
    .c05-video .video__placeholder {
      height: 39.75rem; } }

.c05-video::after {
  content: " ";
  display: block;
  clear: both; }

.c05-video .hide {
  display: none;
  visibility: hidden; }

.plyr input[type=range]::-webkit-slider-thumb {
  width: 0px;
  height: 0px;
  opacity: 0; }

.plyr input[type=range]::-moz-range-thumb {
  width: 0px;
  height: 0px;
  opacity: 0; }

.plyr input[type=range]::-ms-thumb {
  width: 0px;
  height: 0px;
  opacity: 0; }

.plyr input[type=range]:active::-webkit-slider-thumb {
  width: 0px;
  height: 0px;
  opacity: 0; }

.plyr input[type=range]:active::-moz-range-thumb {
  width: 0px;
  height: 0px;
  opacity: 0; }

.plyr input[type=range]:active::-ms-thumb {
  width: 0px;
  height: 0px;
  opacity: 0; }
.plyr input[type=range]:focus,.plyr:focus{outline:0}.plyr .plyr__video-embed iframe,.plyr__tooltip{pointer-events:none}@keyframes plyr-progress{to{background-position:25px 0}}.plyr{position:relative;max-width:100%;min-width:200px;font-family:Avenir,'Avenir Next','Helvetica Neue','Segoe UI',Helvetica,Arial,sans-serif;direction:ltr}.plyr,.plyr *,.plyr ::after,.plyr ::before{box-sizing:border-box}.plyr a,.plyr button,.plyr input,.plyr label{-ms-touch-action:manipulation;touch-action:manipulation}.plyr audio,.plyr video{width:100%;height:auto;vertical-align:middle;border-radius:inherit}.plyr input[type=range]{display:block;height:20px;width:100%;margin:0;padding:0;vertical-align:middle;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;border:none;background:0 0}.plyr input[type=range]::-webkit-slider-runnable-track{height:8px;background:0 0;border:0;border-radius:4px;-webkit-user-select:none;user-select:none}.plyr input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;margin-top:-4px;position:relative;height:16px;width:16px;background:#fff;border:2px solid transparent;border-radius:100%;transition:background .2s ease,border .2s ease,transform .2s ease;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);box-sizing:border-box}.plyr input[type=range]::-moz-range-track{height:8px;background:0 0;border:0;border-radius:4px;-moz-user-select:none;user-select:none}.plyr input[type=range]::-moz-range-thumb{position:relative;height:16px;width:16px;background:#fff;border:2px solid transparent;border-radius:100%;transition:background .2s ease,border .2s ease,transform .2s ease;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);box-sizing:border-box}.plyr input[type=range]::-ms-track{height:8px;background:0 0;border:0;color:transparent}.plyr input[type=range]::-ms-fill-upper{height:8px;background:0 0;border:0;border-radius:4px;-ms-user-select:none;user-select:none}.plyr input[type=range]::-ms-fill-lower{height:8px;border:0;border-radius:4px;-ms-user-select:none;user-select:none;background:#3498db}.plyr input[type=range]::-ms-thumb{position:relative;height:16px;width:16px;background:#fff;border:2px solid transparent;border-radius:100%;transition:background .2s ease,border .2s ease,transform .2s ease;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);box-sizing:border-box;margin-top:0}.plyr input[type=range]::-ms-tooltip{display:none}.plyr input[type=range]::-moz-focus-outer{border:0}.plyr input[type=range].tab-focus:focus{outline-offset:3px}.plyr input[type=range]:active::-webkit-slider-thumb{background:#3498db;border-color:#fff;transform:scale(1.25)}.plyr input[type=range]:active::-moz-range-thumb{background:#3498db;border-color:#fff;transform:scale(1.25)}.plyr input[type=range]:active::-ms-thumb{background:#3498db;border-color:#fff;transform:scale(1.25)}.plyr--video input[type=range].tab-focus:focus{outline:rgba(255,255,255,.5) dotted 1px}.plyr--audio input[type=range].tab-focus:focus{outline:rgba(86,93,100,.5) dotted 1px}.plyr__sr-only{clip:rect(1px,1px,1px,1px);overflow:hidden;position:absolute!important;padding:0!important;border:0!important;height:1px!important;width:1px!important}.plyr__video-wrapper{position:relative;background:#000;border-radius:inherit}.plyr__video-embed{padding-bottom:56.25%;height:0;border-radius:inherit;overflow:hidden;z-index:0}.plyr__video-embed iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.plyr__video-embed>div{position:relative;padding-bottom:200%;transform:translateY(-35.95%)}.plyr video::-webkit-media-text-track-container{display:none}.plyr__captions{display:none;position:absolute;bottom:0;left:0;width:100%;padding:20px;transform:translateY(-40px);transition:transform .3s ease;color:#fff;font-size:16px;text-align:center;font-weight:400}.plyr__captions span{border-radius:2px;padding:3px 10px;background:rgba(0,0,0,.7);-webkit-box-decoration-break:clone;box-decoration-break:clone;line-height:150%}.plyr__captions span:empty{display:none}@media (min-width:768px){.plyr__captions{font-size:24px}}.plyr--captions-active .plyr__captions{display:block}.plyr--hide-controls .plyr__captions{transform:translateY(-15px)}@media (min-width:1024px){.plyr--fullscreen-active .plyr__captions{font-size:32px}}.plyr ::-webkit-media-controls{display:none}.plyr__controls{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;line-height:1;text-align:center}.plyr__controls .plyr__progress,.plyr__controls .plyr__time,.plyr__controls>button{margin-left:5px}.plyr__controls .plyr__progress:first-child,.plyr__controls .plyr__time:first-child,.plyr__controls>button:first-child{margin-left:0}.plyr__controls .plyr__volume{margin-left:5px}.plyr__controls [data-plyr=pause]{margin-left:0}.plyr__controls button{position:relative;display:inline-block;-ms-flex-negative:0;flex-shrink:0;overflow:visible;vertical-align:middle;padding:7px;border:0;background:0 0;border-radius:3px;cursor:pointer;transition:background .3s ease,color .3s ease,opacity .3s ease;color:inherit}.plyr__controls button svg{width:18px;height:18px;display:block;fill:currentColor}.plyr__controls button:focus{outline:0}.plyr__controls .icon--captions-on,.plyr__controls .icon--exit-fullscreen,.plyr__controls .icon--muted{display:none}@media (min-width:480px){.plyr__controls .plyr__progress,.plyr__controls .plyr__time,.plyr__controls>button{margin-left:10px}}.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none}.plyr--video .plyr__controls{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:50px 10px 10px;background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;color:#fff;transition:opacity .3s ease}.plyr--video .plyr__controls button.tab-focus:focus,.plyr--video .plyr__controls button:hover{background:#3498db;color:#fff}.plyr--audio .plyr__controls{padding:10px;border-radius:inherit;background:#fff;border:1px solid #dbe3e8;color:#565D64}.plyr--audio .plyr__controls button.tab-focus:focus,.plyr--audio .plyr__controls button:hover,.plyr__play-large{background:#3498db;color:#fff}.plyr__play-large{display:none;position:absolute;z-index:1;top:50%;left:50%;transform:translate(-50%,-50%);padding:10px;border:4px solid currentColor;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15);transition:all .3s ease}.plyr__play-large svg{position:relative;left:2px;width:20px;height:20px;display:block;fill:currentColor}.plyr__play-large:focus{outline:rgba(255,255,255,.5) dotted 1px}.plyr .plyr__play-large{display:inline-block}.plyr--audio .plyr__play-large,.plyr--playing .plyr__controls [data-plyr=play],.plyr__controls [data-plyr=pause]{display:none}.plyr--playing .plyr__play-large{opacity:0;visibility:hidden}.plyr--playing .plyr__controls [data-plyr=pause]{display:inline-block}.plyr--captions-active .plyr__controls .icon--captions-on,.plyr--fullscreen-active .icon--exit-fullscreen,.plyr--muted .plyr__controls .icon--muted{display:block}.plyr [data-plyr=captions],.plyr [data-plyr=fullscreen],.plyr--captions-active .plyr__controls .icon--captions-on+svg,.plyr--fullscreen-active .icon--exit-fullscreen+svg,.plyr--muted .plyr__controls .icon--muted+svg{display:none}.plyr--captions-enabled [data-plyr=captions],.plyr--fullscreen-enabled [data-plyr=fullscreen]{display:inline-block}.plyr__tooltip{position:absolute;z-index:2;bottom:100%;margin-bottom:10px;padding:5px 7.5px;opacity:0;background:rgba(0,0,0,.7);border-radius:3px;color:#fff;font-size:14px;line-height:1.3;transform:translate(-50%,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s .1s ease,opacity .2s .1s ease}.plyr__tooltip::before{content:'';position:absolute;width:0;height:0;left:50%;transform:translateX(-50%);bottom:-4px;border-right:4px solid transparent;border-top:4px solid rgba(0,0,0,.7);border-left:4px solid transparent;z-index:2}.plyr button.tab-focus:focus .plyr__tooltip,.plyr button:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;transform:translate(-50%,0) scale(1)}.plyr button:hover .plyr__tooltip{z-index:3}.plyr__controls button:first-child .plyr__tooltip{left:0;transform:translate(0,10px) scale(.8);transform-origin:0 100%}.plyr__controls button:first-child .plyr__tooltip::before{left:16px}.plyr__controls button:last-child .plyr__tooltip{right:0;transform:translate(0,10px) scale(.8);transform-origin:100% 100%}.plyr__controls button:last-child .plyr__tooltip::before{left:auto;right:16px;transform:translateX(50%)}.plyr__controls button:first-child .plyr__tooltip--visible,.plyr__controls button:first-child.tab-focus:focus .plyr__tooltip,.plyr__controls button:first-child:hover .plyr__tooltip,.plyr__controls button:last-child .plyr__tooltip--visible,.plyr__controls button:last-child.tab-focus:focus .plyr__tooltip,.plyr__controls button:last-child:hover .plyr__tooltip{transform:translate(0,0) scale(1)}.plyr__progress{position:relative;display:none;-ms-flex:1;flex:1}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress input[type=range]::-webkit-slider-runnable-track{background:0 0}.plyr__progress input[type=range]::-moz-range-track{background:0 0}.plyr__progress input[type=range]::-ms-fill-upper{background:0 0}.plyr__progress .plyr__tooltip{left:0}.plyr .plyr__progress{display:inline-block}.plyr__progress--buffer,.plyr__progress--played,.plyr__volume--display{position:absolute;left:0;top:50%;width:100%;height:8px;margin:-4px 0 0;padding:0;vertical-align:top;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;border-radius:100px}.plyr__progress--buffer::-webkit-progress-bar,.plyr__progress--played::-webkit-progress-bar,.plyr__volume--display::-webkit-progress-bar{background:0 0}.plyr__progress--buffer::-webkit-progress-value,.plyr__progress--played::-webkit-progress-value,.plyr__volume--display::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:8px}.plyr__progress--buffer::-moz-progress-bar,.plyr__progress--played::-moz-progress-bar,.plyr__volume--display::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:8px}.plyr__progress--buffer::-ms-fill,.plyr__progress--played::-ms-fill,.plyr__volume--display::-ms-fill{border-radius:100px}.plyr__progress--played,.plyr__volume--display{z-index:1;color:#3498db;background:0 0;transition:none}.plyr__progress--played::-webkit-progress-value,.plyr__volume--display::-webkit-progress-value{min-width:8px;max-width:99%;border-top-right-radius:0;border-bottom-right-radius:0;transition:none}.plyr__progress--played::-moz-progress-bar,.plyr__volume--display::-moz-progress-bar{min-width:8px;max-width:99%;border-top-right-radius:0;border-bottom-right-radius:0;transition:none}.plyr__progress--played::-ms-fill,.plyr__volume--display::-ms-fill{display:none}.plyr__progress--buffer::-webkit-progress-value{transition:width .2s ease}.plyr__progress--buffer::-moz-progress-bar{transition:width .2s ease}.plyr__progress--buffer::-ms-fill{transition:width .2s ease}.plyr--video .plyr__progress--buffer,.plyr--video .plyr__volume--display{background:rgba(255,255,255,.25)}.plyr--video .plyr__progress--buffer{color:rgba(255,255,255,.25)}.plyr--audio .plyr__progress--buffer,.plyr--audio .plyr__volume--display{background:rgba(198,214,219,.66)}.plyr--audio .plyr__progress--buffer{color:rgba(198,214,219,.66)}.plyr--loading .plyr__progress--buffer{animation:plyr-progress 1s linear infinite;background-size:25px 25px;background-repeat:repeat-x;background-image:linear-gradient(-45deg,rgba(0,0,0,.15) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.15) 50%,rgba(0,0,0,.15) 75%,transparent 75%,transparent);color:transparent}.plyr--video.plyr--loading .plyr__progress--buffer{background-color:rgba(255,255,255,.25)}.plyr--audio.plyr--loading .plyr__progress--buffer{background-color:rgba(198,214,219,.66)}.plyr__time{display:inline-block;vertical-align:middle;font-size:14px}.plyr__time+.plyr__time{display:none}@media (min-width:768px){.plyr__time+.plyr__time{display:inline-block}}.plyr__time+.plyr__time::before{content:'\2044';margin-right:10px}.plyr__volume{display:none}.plyr .plyr__volume{-ms-flex:1;flex:1;position:relative}.plyr .plyr__volume input[type=range]{position:relative;z-index:2}@media (min-width:480px){.plyr .plyr__volume{display:block;max-width:60px}}@media (min-width:768px){.plyr .plyr__volume{max-width:100px}}.plyr--is-ios .plyr__volume,.plyr--is-ios [data-plyr=mute]{display:none!important}.plyr--fullscreen-active{position:fixed;top:0;left:0;right:0;bottom:0;height:100%;width:100%;z-index:10000000;background:#000;border-radius:0!important}.plyr--fullscreen-active video{height:100%}.plyr--fullscreen-active .plyr__video-wrapper{height:100%;width:100%}.plyr--fullscreen-active .plyr__video-embed{overflow:visible}.plyr--fullscreen-active .plyr__controls{position:absolute;bottom:0;left:0;right:0}.plyr--fullscreen-active.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;transform:translateY(-50%)}/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c09-content-module__container {
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 3rem; }

.c09-content-module__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0rem;
  margin: 0;
  padding: 0 0 0rem 0; }

.c09-content-module__title__underline {
  display: block;
  height: 0.375rem;
  width: 6rem;
  margin: 1.5rem 0; }

.c09-content-module__description {
  font-weight: 300;
  font-size: 0.87rem;
  line-height: 1.125rem;
  letter-spacing: 0rem;
  margin: 0;
  padding: 0 0 0rem 0;
  color: #AAB8C2; }

.c09-content-module__links {
  margin-top: 1.5rem; }
  .c09-content-module__links-link {
    display: block; }
  .c09-content-module__links a {
    font-size: 1rem;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center;
    line-height: 1.5em; }
    .c09-content-module__links a svg {
      height: 1.25em;
      margin-left: -0.25em;
      fill: #794BC4; }
    .c09-content-module__links a.c09-content-module__link--button {
      font-weight: 700;
      font-size: 0.87rem;
      line-height: 1.5rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0;
      margin: 0 1em 1em 0;
      padding: 0.25em 1em;
      border-radius: 3rem;
      text-align: center;
      color: #FFFFFF !important; }
      .c09-content-module__links a.c09-content-module__link--button svg {
        fill: #FFFFFF;
        display: none; }

.c09-content-module__image {
  margin-bottom: 1.5rem;
  height: 120px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .c09-content-module__image img {
    max-width: 100%;
    max-height: 100%;
    width: auto; }

@media (min-width: 768px) {
  .c09-content-module__container {
    padding-top: 0;
    padding-bottom: 1.5rem; } }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c10-testimonial {
  margin: 4.5rem auto; }
  .c10-testimonial__inner {
    padding: 0 1.5rem; }
    @media (min-width: 768px) {
      .c10-testimonial__inner {
        padding: 0 5rem; } }
  .c10-testimonial__quotation {
    display: block;
    position: absolute;
    color: #AAB8C2;
    font-size: 5rem; }
    .c10-testimonial__quotation--left {
      left: -2rem; }
    .c10-testimonial__quotation--right {
      right: -2rem;
      bottom: -1rem; }
    @media (min-width: 768px) {
      .c10-testimonial__quotation {
        font-size: 10rem; }
        .c10-testimonial__quotation--left {
          top: 0;
          left: -5rem; }
        .c10-testimonial__quotation--right {
          bottom: -2rem;
          right: -5rem; } }
  .c10-testimonial__quote {
    position: relative; }
    .c10-testimonial__quote p {
      font-weight: 400;
      font-size: 0.9975rem;
      line-height: 1.5rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0;
      line-height: 1.5em;
      color: #AAB8C2; }
      @media (min-width: 768px) {
        .c10-testimonial__quote p {
          font-weight: 400;
          font-size: 1.5rem;
          line-height: 1.5rem;
          letter-spacing: 0.015rem;
          margin: 0;
          padding: 0 0 0rem 0;
          line-height: 1.5em; } }
  .c10-testimonial__footer {
    padding: 1.5rem 0; }
    .c10-testimonial__footer__name {
      position: relative;
      font-weight: 700;
      font-size: 0.9975rem;
      line-height: 1.5rem;
      letter-spacing: 0.025rem;
      margin: 0;
      padding: 0 0 0rem 0;
      padding-bottom: 0.75rem; }
      .c10-testimonial__footer__name:before {
        content: '\2014';
        position: absolute;
        left: -1.25em; }
      @media (min-width: 768px) {
        .c10-testimonial__footer__name {
          font-weight: 700;
          font-size: 1.5rem;
          line-height: 1.5rem;
          letter-spacing: 0rem;
          margin: 0;
          padding: 0 0 0rem 0;
          padding-bottom: 0.75rem; } }
    .c10-testimonial__footer__title, .c10-testimonial__footer__handle {
      font-weight: 300;
      font-size: 0.87rem;
      line-height: 1.125rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0; }
    .c10-testimonial__footer__title {
      color: #AAB8C2; }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c11-masthead {
  position: relative; }
  .c11-masthead:after {
    content: " ";
    display: block;
    clear: both; }
  .c11-masthead__bgColorWrapper {
    min-height: 0;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    position: relative;
    overflow: auto; }
    .c11-masthead__bgColorWrapper.remove-padding {
      padding-bottom: 0; }
    @media (min-width: 768px) {
      .c11-masthead__bgColorWrapper {
        min-height: 37.5rem;
        padding-top: 8.25rem;
        padding-bottom: 3rem;
        padding-left: 0;
        padding-right: 0; } }
    .c11-masthead__bgColorWrapper.no-tabs {
      margin-bottom: 6rem; }
  .c11-masthead__contentWrapper {
    min-height: 0; }
    @media (min-width: 768px) {
      .c11-masthead__contentWrapper {
        min-height: 21rem;
        padding-bottom: 6rem; } }
  .c11-masthead__eyebrow {
    font-weight: 700;
    font-size: 0.9975rem;
    line-height: 1.5rem;
    letter-spacing: 0.025rem;
    margin: 0;
    padding: 0 0 0rem 0;
    margin-bottom: 1.5rem;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .c11-masthead__eyebrow {
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1.5rem;
        letter-spacing: 0rem;
        margin: 0;
        padding: 0 0 0rem 0;
        margin-bottom: 1.5rem; } }
  .c11-masthead__headline {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.25rem;
    letter-spacing: -0.025rem;
    margin: 0;
    padding: 0 0 0rem 0;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .c11-masthead__headline {
        font-weight: 700;
        font-size: 4.5rem;
        line-height: 4.5rem;
        letter-spacing: -0.025rem;
        margin: 0;
        padding: 0 0 0rem 0; } }
    .c11-masthead__headline.text {
      color: #14171A; }
  .c11-masthead__button {
    font-weight: 700;
    font-size: 0.87rem;
    line-height: 1.5rem;
    letter-spacing: 0rem;
    margin: 0;
    padding: 0 0 0rem 0;
    margin: 2.25rem 0;
    padding: 0.25em 0.5em 0.2em 1em;
    border-radius: 3rem;
    text-align: center;
    color: #FFFFFF !important; }
  .c11-masthead__tabs {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 950px) {
      .c11-masthead__tabs {
        width: 83.05085%;
        float: left;
        margin-right: 1.69492%;
        margin-left: 8.47458%;
        position: relative;
        top: calc(-3rem - 4px); } }
    .c11-masthead__tabs.color .c32__tabs {
      border-bottom: none; }
      .c11-masthead__tabs.color .c32__tabs ul li a {
        color: #FFFFFF; }
        .c11-masthead__tabs.color .c32__tabs ul li a.c32__tabs-tab--active {
          border-bottom: 4px solid #FFFFFF; }
  .c11-masthead .text.c11-masthead__bgColorWrapper {
    min-height: 3.75rem; }
  .c11-masthead .text .c11-masthead__contentWrapper {
    padding-bottom: 0.75rem; }
    @media (min-width: 768px) {
      .c11-masthead .text .c11-masthead__contentWrapper {
        max-width: 70%;
        min-height: 3.75rem; } }
  .c11-masthead .image {
    background-size: cover; }
    .c11-masthead .image.c11-masthead__bgColorWrapper {
      min-height: 22.5rem; }
    .c11-masthead .image .c11-masthead__contentWrapper {
      z-index: 1; }
    .c11-masthead .image .c11-masthead__overlay {
      position: absolute;
      z-index: 0;
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: #FFFFFF;
      opacity: 0.1; }

.theme--orange .c11-masthead__tabs.color .c32__tabs ul li a.c32__tabs-tab--active {
  color: #FF8D57; }

.theme--yellow .c11-masthead__tabs.color .c32__tabs ul li a.c32__tabs-tab--active {
  color: #FFD03F; }

.theme--green .c11-masthead__tabs.color .c32__tabs ul li a.c32__tabs-tab--active {
  color: #68E090; }

.theme--blue .c11-masthead__tabs.color .c32__tabs ul li a.c32__tabs-tab--active {
  color: #71C9F8; }

.theme--purple .c11-masthead__tabs.color .c32__tabs ul li a.c32__tabs-tab--active {
  color: #A37CED; }

.theme--pink .c11-masthead__tabs.color .c32__tabs ul li a.c32__tabs-tab--active {
  color: #F6809A; }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c12 {
  padding: 1.5rem 0;
  text-align: center; }
  .c12__copy {
    display: inline-block; }
  .c12__button {
    display: inline-block; }
    .c12__button a {
      text-decoration: none;
      padding-left: 0.5em;
      color: #FFFFFF; }
      .c12__button a:hover {
        color: #FFFFFF !important; }
    .c12__button--chevron svg {
      margin-left: -0.5em;
      display: inline-block;
      -ms-transform: translateY(0.25em);
          transform: translateY(0.25em);
      height: 1.25em; }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c13-cta-billboard .c11-masthead__bgColorWrapper {
  padding-bottom: 8.25rem; }

.c13-cta-billboard .c11-masthead__contentWrapper {
  padding-right: 8.25rem; }

.c13-cta-billboard .c11-masthead__eyebrow {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.25rem;
  letter-spacing: -0.025rem;
  margin: 0;
  padding: 0 0 0rem 0; }

.c13-cta-billboard .text.c11-masthead__bgColorWrapper {
  min-height: 3.75rem;
  padding-bottom: 8.25rem; }

.c13-cta-billboard .text .c11-masthead__contentWrapper {
  padding-bottom: 0.75rem;
  padding-right: 8.25rem;
  min-height: 3.75rem; }

.c13-cta-billboard .c11-masthead__bgColorWrapper {
  min-height: 37.5rem;
  padding-top: 8.25rem;
  position: relative;
  overflow: auto; }
  @media (min-width: 768px) {
    .c13-cta-billboard .c11-masthead__bgColorWrapper {
      padding-left: 0;
      padding-right: 0; } }
  .c13-cta-billboard .c11-masthead__bgColorWrapper.no-tabs {
    margin-bottom: 6rem; }

.c13-cta-billboard .c11-masthead__contentWrapper {
  min-height: 21rem;
  padding-bottom: 6rem; }

.c13-cta-billboard .c11-masthead__eyebrow {
  font-weight: 700;
  font-size: 0.9975rem;
  line-height: 1.5rem;
  letter-spacing: 0.025rem;
  margin: 0;
  padding: 0 0 0rem 0;
  margin-bottom: 1.5rem;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }
  @media (min-width: 768px) {
    .c13-cta-billboard .c11-masthead__eyebrow {
      font-weight: 700;
      font-size: 2.25rem;
      line-height: 2.25rem;
      letter-spacing: -0.025rem;
      margin: 0;
      padding: 0 0 0rem 0;
      margin-bottom: 1.5rem; } }

.c13-cta-billboard .c11-masthead__headline {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.25rem;
  letter-spacing: -0.025rem;
  margin: 0;
  padding: 0 0 0rem 0;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }
  @media (min-width: 768px) {
    .c13-cta-billboard .c11-masthead__headline {
      font-weight: 700;
      font-size: 4.5rem;
      line-height: 4.5rem;
      letter-spacing: -0.025rem;
      margin: 0;
      padding: 0 0 0rem 0; } }
  .c13-cta-billboard .c11-masthead__headline.text {
    color: #14171A; }

.c13-cta-billboard .text.c11-masthead__bgColorWrapper {
  min-height: 3.75rem;
  padding-bottom: 8.25rem; }

.c13-cta-billboard .text .c11-masthead__contentWrapper {
  padding-bottom: 0.75rem;
  min-height: 3.75rem; }
  @media (min-width: 768px) {
    .c13-cta-billboard .text .c11-masthead__contentWrapper {
      max-width: 75%; } }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c14-info-billboard {
  position: relative;
  overflow-x: hidden; }
  .c14-info-billboard:after {
    content: " ";
    display: block;
    clear: both; }
  .c14-info-billboard__bgColorWrapper {
    padding-top: 9rem;
    position: relative;
    overflow-x: hidden; }
    @media (min-width: 768px) {
      .c14-info-billboard__bgColorWrapper {
        padding-left: 0;
        padding-right: 0; } }
  .c14-info-billboard__contentWrapper {
    min-height: 21rem;
    padding-bottom: 6rem;
    position: relative; }
  .c14-info-billboard__shadow {
    position: absolute;
    opacity: 0.3;
    z-index: 0;
    font-weight: 900;
    font-size: 10rem;
    margin-left: 5.2%; }
    @media (min-width: 768px) {
      .c14-info-billboard__shadow {
        font-size: 15rem; } }
  .c14-info-billboard__headline {
    z-index: 1; }
    .c14-info-billboard__headline * {
      font-weight: 700;
      font-size: 2.25rem;
      line-height: 2.25rem;
      letter-spacing: -0.025rem;
      margin: 0;
      padding: 0 0 0rem 0;
      color: #FFFFFF !important; }
    @media (min-width: 768px) {
      .c14-info-billboard__headline * {
        font-weight: 700;
        font-size: 4.5rem;
        line-height: 4.5rem;
        letter-spacing: -0.025rem;
        margin: 0;
        padding: 0 0 0rem 0; } }
  .c14-info-billboard .btn-container {
    margin: 3rem 0; }
    .c14-info-billboard .btn-container .link {
      font-weight: 700;
      font-size: 0.9975rem;
      line-height: 1.5rem;
      letter-spacing: 0.025rem;
      margin: 0;
      padding: 0 0 0rem 0;
      display: block;
      color: #FFFFFF !important; }
      .c14-info-billboard .btn-container .link--chevron {
        display: inline-block;
        vertical-align: middle;
        line-height: 1em;
        margin-left: -0.5em; }
        .c14-info-billboard .btn-container .link--chevron svg {
          height: 1.25em; }
    @media (min-width: 768px) {
      .c14-info-billboard .btn-container .link {
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1.5rem;
        letter-spacing: 0rem;
        margin: 0;
        padding: 0 0 0rem 0;
        display: inline-block;
        margin-right: 1.5rem; } }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c16-featured-content {
  width: 40%;
  display: inline-block; }
  .c16-featured-content__container {
    position: relative;
    max-width: 305px; }
    .c16-featured-content__container--inner img {
      width: 100%;
      height: auto; }
  .c16-featured-content__inner-content {
    position: absolute;
    top: 2.625rem;
    left: 0;
    padding: 1.5rem; }
  .c16-featured-content__eyebrow {
    font-weight: 700;
    font-size: 0.87rem;
    line-height: 1.5rem;
    letter-spacing: 0rem;
    margin: 0;
    padding: 0 0 0rem 0;
    color: #657786; }
  .c16-featured-content__title h2 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.5rem;
    letter-spacing: 0rem;
    margin: 0;
    padding: 0 0 0rem 0; }
  .c16-featured-content__description {
    font-weight: 300;
    font-size: 0.87rem;
    line-height: 1.125rem;
    letter-spacing: 0rem;
    margin: 0;
    padding: 0 0 0rem 0;
    color: #AAB8C2; }
  .c16-featured-content__links {
    text-align: center;
    margin-bottom: 1.5rem; }
    .c16-featured-content__links * {
      color: #794BC4; }
    .c16-featured-content__links a {
      font-size: 1rem;
      display: inline-block;
      line-height: 2em; }
    .c16-featured-content__links svg {
      height: 1.25em;
      margin-left: -0.5em;
      -ms-transform: translateY(0.25em);
          transform: translateY(0.25em);
      fill-color: #794BC4; }
  @media (max-width: 479px) {
    .c16-featured-content {
      width: 80%;
      margin: 0 auto; } }
  @media (min-width: 768px) {
    .c16-featured-content__container {
      padding-top: 0;
      padding-bottom: 1.5rem; } }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c17-cta-tile {
  margin-top: 2.25rem; }
  .c17-cta-tile__container {
    padding-top: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 3rem; }
  .c17-cta-tile__title {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.25rem;
    letter-spacing: -0.025rem;
    margin: 0;
    padding: 0 0 0rem 0; }
  .c17-cta-tile__description {
    font-weight: 300;
    font-size: 0.87rem;
    line-height: 1.125rem;
    letter-spacing: 0rem;
    margin: 0;
    padding: 0 0 0rem 0;
    color: #AAB8C2; }
  .c17-cta-tile__links {
    margin-top: 1.5rem; }
    .c17-cta-tile__links a {
      font-size: 1rem;
      display: inline-block;
      line-height: 2em; }
      .c17-cta-tile__links a span {
        color: #FFFFFF; }
    .c17-cta-tile__links svg {
      height: 1.25em;
      margin-left: -0.5em;
      -ms-transform: translateY(0.25em);
          transform: translateY(0.25em); }
  @media (min-width: 768px) {
    .c17-cta-tile__container {
      padding-top: 0;
      padding-bottom: 1.5rem; } }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c20-modal {
  padding-top: 1.5rem; }
  @media (min-width: 768px) {
    .c20-modal {
      margin-bottom: 3rem;
      padding-top: 0; } }
  .c20-modal .hidden {
    display: none; }
  .c20-modal__editor {
    min-height: 3rem;
    display: block; }
  .c20-modal.editor-mode .module-modal {
    position: relative !important;
    top: auto;
    left: auto;
    opacity: 1;
    width: 500px;
    height: 500px; }
  @media (min-width: 768px) {
    .c20-modal__headline {
      font-weight: 700;
      font-size: 3rem;
      line-height: 3rem;
      letter-spacing: -0.025rem;
      margin: 0;
      padding: 0 0 0rem 0; } }
  .c20-modal__copy {
    margin-top: 0.25rem; }
  .c20-modal i {
    font-style: italic; }
  .c20-modal u {
    text-decoration: underline; }
  .c20-modal b {
    font-weight: 700; }
  .theme--orange .c20-modal a {
    color: #F45D22;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--orange .c20-modal a:active,
  .theme--orange .c20-modal a:hover {
    color: #D82E18;
    cursor: pointer; }
  .theme--orange .c20-modal ol li::before,
  .theme--orange .c20-modal ul li::before {
    color: #F45D22; }
  .theme--orange .c20-modal *::-moz-selection {
    background-color: #FFBE78;
    color: inherit; }
  .theme--orange .c20-modal *::selection {
    background-color: #FFBE78;
    color: inherit; }
  .theme--yellow .c20-modal a {
    color: #FFAD1F;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--yellow .c20-modal a:active,
  .theme--yellow .c20-modal a:hover {
    color: #F98E00;
    cursor: pointer; }
  .theme--yellow .c20-modal ol li::before,
  .theme--yellow .c20-modal ul li::before {
    color: #FFAD1F; }
  .theme--yellow .c20-modal *::-moz-selection {
    background-color: #FFE76E;
    color: inherit; }
  .theme--yellow .c20-modal *::selection {
    background-color: #FFE76E;
    color: inherit; }
  .theme--green .c20-modal a {
    color: #1FB650;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--green .c20-modal a:active,
  .theme--green .c20-modal a:hover {
    color: #008951;
    cursor: pointer; }
  .theme--green .c20-modal ol li::before,
  .theme--green .c20-modal ul li::before {
    color: #1FB650; }
  .theme--green .c20-modal *::-moz-selection {
    background-color: #A5F2AA;
    color: inherit; }
  .theme--green .c20-modal *::selection {
    background-color: #A5F2AA;
    color: inherit; }
  .theme--blue .c20-modal a {
    color: #1DA1F2;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--blue .c20-modal a:active,
  .theme--blue .c20-modal a:hover {
    color: #005FD1;
    cursor: pointer; }
  .theme--blue .c20-modal ol li::before,
  .theme--blue .c20-modal ul li::before {
    color: #1DA1F2; }
  .theme--blue .c20-modal *::-moz-selection {
    background-color: #97E3FF;
    color: inherit; }
  .theme--blue .c20-modal *::selection {
    background-color: #97E3FF;
    color: inherit; }
  .theme--purple .c20-modal a {
    color: #794BC4;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--purple .c20-modal a:active,
  .theme--purple .c20-modal a:hover {
    color: #4F0299;
    cursor: pointer; }
  .theme--purple .c20-modal ol li::before,
  .theme--purple .c20-modal ul li::before {
    color: #794BC4; }
  .theme--purple .c20-modal *::-moz-selection {
    background-color: #C7B4FA;
    color: inherit; }
  .theme--purple .c20-modal *::selection {
    background-color: #C7B4FA;
    color: inherit; }
  .theme--pink .c20-modal a {
    color: #E0245E;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--pink .c20-modal a:active,
  .theme--pink .c20-modal a:hover {
    color: #A01744;
    cursor: pointer; }
  .theme--pink .c20-modal ol li::before,
  .theme--pink .c20-modal ul li::before {
    color: #E0245E; }
  .theme--pink .c20-modal *::-moz-selection {
    background-color: #FFB8C2;
    color: inherit; }
  .theme--pink .c20-modal *::selection {
    background-color: #FFB8C2;
    color: inherit; }
  .c20-modal__head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    padding-bottom: 3rem;
    border-bottom: 2px solid #CCD6DD;
    margin-bottom: 3rem; }
  .c20-modal__head__column {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column; }
    .c20-modal__head__column--left {
      margin-right: 1.5rem;
      /*padding-top: 0.25rem;*/
      width: 5.25rem;
      display: block; }
      @media (min-width: 768px) {
        .c20-modal__head__column--left {
          padding-top: 0.5rem;
          width: 6rem; } }
    .c20-modal__head__column--right {
      width: 100%; }
      .c20-modal__head__column--right h1 {
        padding-bottom: 0.75rem; }
  .c20-modal__image {
    max-width: 100%;
    max-height: 100%;
    height: auto; }
    .c20-modal__image-container {
      width: 5.25rem;
      height: 5.25rem;
      overflow: hidden;
      position: relative;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center; }
    .c20-modal__image--round {
      border-radius: 50%; }
  .c20-modal__headline {
    margin-top: 0; }
  .c20-modal__linklist li {
    display: inline; }
    .c20-modal__linklist li:not(:last-of-type) {
      margin-right: 4px;
      padding-right: 6px;
      position: relative; }
      .c20-modal__linklist li:not(:last-of-type)::after {
        background-color: #AAB8C2;
        content: '';
        display: block;
        height: 100%;
        left: 100%;
        position: absolute;
        top: -1px;
        width: 1px; }
  .c20-modal__detail {
    margin-top: 1.5rem; }
    @media (min-width: 768px) {
      .c20-modal__detail {
        padding: 0; } }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }

.dtc01-livetype-masthead {
  margin: 0 auto; }
  .dtc01-livetype-masthead .livetype-masthead {
    position: relative;
    padding: 1.5rem 0;
    padding-top: 8.25rem;
    padding-bottom: 6rem; }
    .dtc01-livetype-masthead .livetype-masthead__copy.typed .livetype-masthead__eyebrow {
      opacity: .6; }
    .dtc01-livetype-masthead .livetype-masthead__copy.typed + .livetype-masthead__down-arrow svg {
      animation-name: bounce;
      animation-duration: 1.5s;
      animation-timing-function: linear;
      animation-delay: 0s;
      animation-direction: alternate;
      animation-iteration-count: 2;
      animation-fill-mode: none;
      animation-play-state: running; }
    @media (min-width: 768px) {
      .dtc01-livetype-masthead .livetype-masthead__copy {
        float: none; } }
    .dtc01-livetype-masthead .livetype-masthead__eyebrow {
      opacity: .6;
      transition: opacity .3s linear;
      padding-bottom: 0.75rem; }
      @media (min-width: 768px) {
        .dtc01-livetype-masthead .livetype-masthead__eyebrow {
          font-weight: 700;
          font-size: 1.5rem;
          line-height: 1.5rem;
          letter-spacing: 0rem;
          margin: 0;
          padding: 0 0 0rem 0;
          padding-bottom: 0.75rem; } }
    .dtc01-livetype-masthead .livetype-masthead__headline {
      font-weight: 700;
      font-size: 3rem;
      line-height: 3rem;
      letter-spacing: -0.025rem;
      margin: 0;
      padding: 0 0 0rem 0;
      padding-top: 0; }
      .dtc01-livetype-masthead .livetype-masthead__headline--static {
        padding-top: 0.25em; }
      @media (min-width: 768px) {
        .dtc01-livetype-masthead .livetype-masthead__headline {
          font-weight: 700;
          font-size: 4.5rem;
          line-height: 4.5rem;
          letter-spacing: -0.025rem;
          margin: 0;
          padding: 0 0 0rem 0;
          padding-top: 0.25em; } }
    .dtc01-livetype-masthead .livetype-masthead__subheadline {
      padding: 0.75rem 0 4.5rem 0; }
    .dtc01-livetype-masthead .livetype-masthead__down-arrow {
      cursor: pointer;
      width: 2.25rem;
      height: 0.75rem;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 1.5rem;
      margin: auto; }
      .dtc01-livetype-masthead .livetype-masthead__down-arrow svg {
        position: absolute;
        bottom: 0;
        display: block;
        margin: 0 auto;
        height: 0.75rem;
        transition: transform .3s ease-out; }
      .dtc01-livetype-masthead .livetype-masthead__down-arrow:hover svg {
        -ms-transform: translateY(10px);
            transform: translateY(10px); }
    @media (min-width: 768px) {
      .dtc01-livetype-masthead .livetype-masthead {
        padding-left: 0;
        padding-right: 0; } }

.tlt {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.025rem;
  margin: 0;
  padding: 0 0 0rem 0;
  padding-top: 0;
  color: #FFFFFF;
  visibility: hidden; }
  .tlt span {
    font-size: inherit;
    color: inherit;
    font-weight: inherit; }
  @media (min-width: 768px) {
    .tlt {
      font-weight: 700;
      font-size: 4.5rem;
      line-height: 4.5rem;
      letter-spacing: -0.025rem;
      margin: 0;
      padding: 0 0 0rem 0;
      padding-top: 0.25em; } }

.animateIn {
  animation: animationIn;
  animation-duration: 0.5s !important;
  transform-style: preserve-3d;
  -ms-transform-origin: 0px 0px -0.5em;
      transform-origin: 0px 0px -0.5em; }

.animateOut {
  animation: animationOut;
  animation-duration: 0.25s !important;
  transform-style: preserve-3d;
  -ms-transform-origin: 0px 0px -0.5em;
      transform-origin: 0px 0px -0.5em; }

@keyframes animationIn {
  0% {
    transform: rotateX(-95deg);
    opacity: 0; }
  50% {
    transform: rotateX(0deg);
    opacity: 1; }
  65% {
    transform: rotateX(-5deg); }
  80% {
    transform: rotateX(0deg); } }

@keyframes animationOut {
  0% {
    transform: rotateX(0deg);
    opacity: 1; }
  100% {
    transform: rotateX(90deg);
    opacity: 0; } }
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.dtc02-pricing-table__table {
  width: 100%;
  position: relative; }

.dtc02-pricing-table__row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-direction: row;
      flex-direction: row; }

.dtc02-pricing-table__column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0.75rem;
  -ms-flex: 1 1 0px;
      flex: 1 1 0;
  text-align: center;
  border-bottom: 2px solid #FFFFFF; }
  @media (min-width: 768px) {
    .dtc02-pricing-table__column {
      padding: 1.5rem; } }
  .dtc02-pricing-table__column h2, .dtc02-pricing-table__column span, .dtc02-pricing-table__column a {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.9975rem;
    line-height: 1.5rem;
    letter-spacing: 0.025rem;
    margin: 0;
    padding: 0 0 0rem 0;
    line-height: 1em; }
  .dtc02-pricing-table__column svg {
    height: 24px; }
  .dtc02-pricing-table__column__rollover {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    .dtc02-pricing-table__column__rollover__text {
      display: none; }
    .dtc02-pricing-table__column__rollover a {
      -ms-flex-align: center;
          align-items: center; }
      .dtc02-pricing-table__column__rollover a:hover {
        color: #FFFFFF; }
    .dtc02-pricing-table__column__rollover a > svg {
      height: 1em;
      margin-left: -0.5em; }
  .dtc02-pricing-table__column--left {
    -ms-flex: 1 1 10rem;
        flex: 1 1 10rem;
    -ms-flex-pack: start;
        justify-content: flex-start;
    text-align: left;
    border-bottom: 2px solid #AAB8C2; }
    .dtc02-pricing-table__column--left h2, .dtc02-pricing-table__column--left span {
      color: #657786;
      font-weight: 700;
      font-size: 0.9975rem;
      line-height: 1.5rem;
      letter-spacing: 0.025rem;
      margin: 0;
      padding: 0 0 0rem 0; }
    @media (min-width: 768px) {
      .dtc02-pricing-table__column--left h2, .dtc02-pricing-table__column--left span {
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1.5rem;
        letter-spacing: 0rem;
        margin: 0;
        padding: 0 0 0rem 0; } }
  .dtc02-pricing-table__column--standard {
    background-color: #71C9F8; }
  .dtc02-pricing-table__column--premium {
    background-color: #1DA1F2; }
  .dtc02-pricing-table__column--enterprise {
    background-color: #005FD1; }

.dtc02-pricing-table__row:hover .dtc02-pricing-table__column--left h2 {
  color: #14171A; }

.dtc02-pricing-table__row:hover .dtc02-pricing-table__column__rollover__checkmark {
  display: none; }
  .dtc02-pricing-table__row:hover .dtc02-pricing-table__column__rollover__checkmark--static {
    display: block; }

.dtc02-pricing-table__row:hover .dtc02-pricing-table__column__rollover__text {
  display: -ms-flexbox;
  display: flex; }

.dtc02-pricing-table__row--header .dtc02-pricing-table__column__rollover__checkmark {
  display: none; }

.dtc02-pricing-table__row--header .dtc02-pricing-table__column__rollover__text {
  display: block; }

.dtc02-pricing-table__row--sub:last-of-type .dtc02-pricing-table__column {
  border-bottom: none;
  padding-bottom: 3.75rem; }

.dtc02-pricing-table__row--sub .dtc02-pricing-table__column {
  padding: 0.75rem; }
  .dtc02-pricing-table__row--sub .dtc02-pricing-table__column--left h2 {
    font-weight: 400;
    font-size: 0.9975rem;
    line-height: 1.5rem;
    letter-spacing: 0rem;
    margin: 0;
    padding: 0 0 0rem 0;
    padding-left: 1.5rem; }

@media (min-width: 768px) {
  .dtc02-pricing-table__row--sub {
    padding-left: 2.25rem; }
    .dtc02-pricing-table__row--sub .dtc02-pricing-table__column--left {
      margin-right: -2.25rem;
      padding-left: 0;
      -ms-flex: 1 1 8.5rem;
          flex: 1 1 8.5rem; }
      .dtc02-pricing-table__row--sub .dtc02-pricing-table__column--left h2 {
        padding-left: 0; } }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.dtc03-filter-collection {
  position: relative;
  transform: translateX(0) translate3d(0, 0, 0);
  transition: 300ms ease all;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow-x: hidden; }
  @media (min-width: 768px) {
    .dtc03-filter-collection .mobile-nav-toggle {
      display: none; } }
  .dtc03-filter-collection .sidebar-content {
    width: 40.67797%;
    float: left;
    margin-right: 1.69492%;
    background-color: #FFFFFF;
    -ms-flex-order: 1;
        order: 1;
    position: absolute;
    height: auto;
    top: auto;
    left: -50%;
    z-index: 100;
    transition: all 1s; }
    .dtc03-filter-collection .sidebar-content.nav-visible {
      left: 5.2%; }
    @media (min-width: 768px) {
      .dtc03-filter-collection .sidebar-content {
        width: 15.25424%;
        float: left;
        margin-right: 1.69492%;
        position: relative;
        top: auto;
        left: auto; } }
    .dtc03-filter-collection .sidebar-content.hidden {
      display: none; }
  .dtc03-filter-collection .main-content {
    transition: all 1s; }
    .dtc03-filter-collection .main-content.nav-visible {
      -ms-transform: translateX(50%);
          transform: translateX(50%); }
    .dtc03-filter-collection .main-content.column-12 {
      width: 100%; }
    .dtc03-filter-collection .main-content__header {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      margin-bottom: 3rem; }
      .dtc03-filter-collection .main-content__header span {
        padding-right: 0.75rem; }
      .dtc03-filter-collection .main-content__header h1 {
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1.5rem;
        letter-spacing: 0rem;
        margin: 0;
        padding: 0 0 0rem 0; }
      .dtc03-filter-collection .main-content__header svg {
        height: 1em;
        width: 1em; }
      @media (min-width: 768px) {
        .dtc03-filter-collection .main-content__header {
          display: none; } }
    @media (min-width: 768px) {
      .dtc03-filter-collection .main-content {
        width: 83.05085%;
        float: left;
        margin-right: 1.69492%;
        -ms-flex-order: 2;
            order: 2; } }
  .dtc03-filter-collection__filters {
    list-style: none;
    padding: 0; }
    .dtc03-filter-collection__filters li {
      padding: 0; }
    .dtc03-filter-collection__filters__filter a {
      font-weight: 400;
      font-size: 0.87rem;
      line-height: 1.5rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0;
      color: #657786; }
      .dtc03-filter-collection__filters__filter a:hover, .dtc03-filter-collection__filters__filter a.active {
        cursor: pointer;
        color: #794BC4; }
    .dtc03-filter-collection__filters__filter--title {
      margin-top: 1.5rem; }
      .dtc03-filter-collection__filters__filter--title a {
        font-weight: 700;
        font-size: 0.87rem;
        line-height: 1.5rem;
        letter-spacing: 0rem;
        margin: 0;
        padding: 0 0 0rem 0; }
        .dtc03-filter-collection__filters__filter--title a:hover {
          cursor: default; }
  .dtc03-filter-collection__item {
    min-height: 250px;
    padding: 0 0.75rem;
    margin-bottom: 1.5rem; }
    @media (min-width: 768px) {
      .dtc03-filter-collection__item {
        width: 23.72881%;
        float: left;
        margin-right: 1.69492%; }
        .dtc03-filter-collection__item:nth-child(4) {
          width: 23.72881%;
          float: right;
          margin-right: 0; } }
    @media (min-width: 480px) and (max-width: 767px) {
      .dtc03-filter-collection__item {
        width: 49.15254%;
        float: left;
        margin-right: 1.69492%; }
        .dtc03-filter-collection__item:nth-child(even) {
          width: 49.15254%;
          float: right;
          margin-right: 0; } }
    .dtc03-filter-collection__item__image {
      margin-bottom: 1.5rem;
      width: 120px;
      height: 120px;
      overflow: hidden;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center; }
      .dtc03-filter-collection__item__image img {
        width: 100%;
        height: auto;
        max-height: 120px;
        filter: gray;
        filter: grayscale(1);
        transition: all 0.2s; }
        .dtc03-filter-collection__item__image img:hover {
          filter: none; }
    .dtc03-filter-collection__item__title {
      font-weight: 700;
      font-size: 1.5rem;
      line-height: 1.5rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0; }
    .dtc03-filter-collection__item__description {
      font-weight: 400;
      font-size: 0.87rem;
      line-height: 1.5rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0;
      color: #AAB8C2;
      padding: 1.5rem 0 0 0;
      min-height: 5rem; }
    .dtc03-filter-collection__item__link {
      font-weight: 400;
      font-size: 0.87rem;
      line-height: 1.5rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0;
      padding-top: 0.75rem;
      display: inline-block; }
      .dtc03-filter-collection__item__link a {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
            align-items: center; }
      .dtc03-filter-collection__item__link svg {
        height: 1.25em;
        margin-left: -0.25em;
        fill: #794BC4; }
  .dtc03-filter-collection > .s01-section__container .s01-section__left {
    display: block; }
    .dtc03-filter-collection > .s01-section__container .s01-section__left h2 {
      -ms-flex-order: 1 !important;
          order: 1 !important; }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.dtc04 {
  position: relative;
  transform: translateX(0) translate3d(0, 0, 0);
  transition: 300ms ease all;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow-x: hidden; }
  @media (min-width: 768px) {
    .dtc04 .mobile-nav-toggle {
      display: none; } }
  .dtc04 .sidebar-content {
    width: 40.67797%;
    float: left;
    margin-right: 1.69492%;
    background-color: #FFFFFF;
    -ms-flex-order: 1;
        order: 1;
    position: absolute;
    height: auto;
    top: auto;
    left: -50%;
    z-index: 100;
    transition: all 1s; }
    .dtc04 .sidebar-content.nav-visible {
      left: 5.2%; }
    @media (min-width: 768px) {
      .dtc04 .sidebar-content {
        width: 15.25424%;
        float: left;
        margin-right: 1.69492%;
        position: relative;
        top: auto;
        left: auto; }
        .dtc04 .sidebar-content.nav-visible {
          left: 0; } }
    .dtc04 .sidebar-content.hidden {
      display: none; }
  .dtc04 .main-content {
    transition: all 1s; }
    .dtc04 .main-content > .list {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .dtc04 .main-content.nav-visible {
      -ms-transform: translateX(50%);
          transform: translateX(50%); }
    .dtc04 .main-content.column-12 {
      width: 100%; }
    .dtc04 .main-content__header {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      margin-bottom: 3rem; }
      .dtc04 .main-content__header span {
        padding-right: 0.75rem; }
      .dtc04 .main-content__header h1 {
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1.5rem;
        letter-spacing: 0rem;
        margin: 0;
        padding: 0 0 0rem 0; }
      .dtc04 .main-content__header svg {
        height: 1em;
        width: 1em; }
      @media (min-width: 768px) {
        .dtc04 .main-content__header {
          display: none; } }
    @media (min-width: 768px) {
      .dtc04 .main-content {
        width: 83.05085%;
        float: right;
        margin-right: 0;
        -ms-flex-order: 2;
            order: 2; }
        .dtc04 .main-content.nav-visible {
          -ms-transform: translateX(0);
              transform: translateX(0); } }
  .dtc04__filter-container {
    -ms-flex-order: 2;
        order: 2; }
  .dtc04__filters {
    list-style: none;
    padding: 0; }
    .dtc04__filters li {
      padding: 0; }
    .dtc04__filters__filter a {
      font-weight: 400;
      font-size: 0.87rem;
      line-height: 1.5rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0;
      color: #657786; }
      .dtc04__filters__filter a:hover, .dtc04__filters__filter a.active {
        cursor: pointer;
        color: #794BC4; }
    .dtc04__filters__filter--title {
      margin-top: 1.5rem; }
      .dtc04__filters__filter--title a {
        font-weight: 700;
        font-size: 0.87rem;
        line-height: 1.5rem;
        letter-spacing: 0rem;
        margin: 0;
        padding: 0 0 0rem 0; }
        .dtc04__filters__filter--title a:hover {
          cursor: default; }
  .dtc04__item {
    min-height: 250px;
    padding: 0 0.75rem;
    margin-bottom: 1.5rem; }
    @media (min-width: 768px) {
      .dtc04__item {
        width: 23.72881%;
        float: left;
        margin-right: 1.69492%; }
        .dtc04__item:nth-child(4) {
          width: 23.72881%;
          float: right;
          margin-right: 0; } }
    @media (min-width: 480px) and (max-width: 767px) {
      .dtc04__item {
        width: 49.15254%;
        float: left;
        margin-right: 1.69492%; }
        .dtc04__item:nth-child(even) {
          width: 49.15254%;
          float: right;
          margin-right: 0; } }
    .dtc04__item__image {
      margin-bottom: 1.5rem;
      width: 120px;
      height: 120px;
      overflow: hidden; }
      .dtc04__item__image img {
        width: 100%;
        height: auto;
        max-height: 120px;
        filter: gray;
        filter: grayscale(1);
        transition: all 0.2s; }
        .dtc04__item__image img:hover {
          filter: none; }
    .dtc04__item__title {
      font-weight: 700;
      font-size: 1.5rem;
      line-height: 1.5rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0; }
    .dtc04__item__description {
      font-weight: 400;
      font-size: 0.87rem;
      line-height: 1.5rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0;
      color: #AAB8C2;
      padding: 1.5rem 0 0 0;
      min-height: 5rem; }
    .dtc04__item__link {
      font-weight: 400;
      font-size: 0.87rem;
      line-height: 1.5rem;
      letter-spacing: 0rem;
      margin: 0;
      padding: 0 0 0rem 0;
      padding-top: 0.75rem;
      display: inline-block; }
      .dtc04__item__link a {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
            align-items: center; }
      .dtc04__item__link svg {
        height: 1.25em;
        margin-left: -0.25em;
        fill: #794BC4; }
  .dtc04 > .s01-section__container .s01-section__left {
    display: block; }
    .dtc04 > .s01-section__container .s01-section__left h2 {
      -ms-flex-order: 1 !important;
          order: 1 !important; }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.dtc05 {
  padding-top: 1.5rem; }
  @media (min-width: 768px) {
    .dtc05 {
      margin-bottom: 3rem;
      padding-top: 0; } }
  .dtc05-community-leader {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
    float: none;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    -ms-flex-pack: start;
        justify-content: flex-start; }
    @media (max-width: 479px) {
      .dtc05-community-leader:nth-child(2n) {
        width: 49.15254%;
        float: right;
        margin-right: 0; } }
    @media (min-width: 480px) and (max-width: 767px) {
      .dtc05-community-leader:nth-child(2n) {
        width: 49.15254%;
        float: right;
        margin-right: 0; } }
    @media (min-width: 768px) {
      .dtc05-community-leader {
        width: 23.72881%;
        float: left;
        margin-right: 1.69492%; }
        .dtc05-community-leader:nth-child(4n) {
          width: 23.72881%;
          float: right;
          margin-right: 0; } }
  .dtc05__tags {
    display: none; }
  .dtc05 p {
    font-weight: 400;
    font-size: 0.87rem;
    line-height: 1.5rem;
    letter-spacing: 0rem;
    margin: 0;
    padding: 0 0 0rem 0;
    color: #AAB8C2; }
  .dtc05 p.dtc05__copy {
    font-weight: 400;
    font-size: 0.9975rem;
    line-height: 1.5rem;
    letter-spacing: 0rem;
    margin: 0;
    padding: 0 0 0rem 0;
    margin-top: 0.75rem;
    padding-bottom: 0; }
  .dtc05 i {
    font-style: italic; }
  .dtc05 u {
    text-decoration: underline; }
  .dtc05 b {
    font-weight: 700; }
  .theme--orange .dtc05 a {
    color: #F45D22;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--orange .dtc05 a:active,
  .theme--orange .dtc05 a:hover {
    color: #D82E18;
    cursor: pointer; }
  .theme--orange .dtc05 ol li::before,
  .theme--orange .dtc05 ul li::before {
    color: #F45D22; }
  .theme--orange .dtc05 *::-moz-selection {
    background-color: #FFBE78;
    color: inherit; }
  .theme--orange .dtc05 *::selection {
    background-color: #FFBE78;
    color: inherit; }
  .theme--yellow .dtc05 a {
    color: #FFAD1F;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--yellow .dtc05 a:active,
  .theme--yellow .dtc05 a:hover {
    color: #F98E00;
    cursor: pointer; }
  .theme--yellow .dtc05 ol li::before,
  .theme--yellow .dtc05 ul li::before {
    color: #FFAD1F; }
  .theme--yellow .dtc05 *::-moz-selection {
    background-color: #FFE76E;
    color: inherit; }
  .theme--yellow .dtc05 *::selection {
    background-color: #FFE76E;
    color: inherit; }
  .theme--green .dtc05 a {
    color: #1FB650;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--green .dtc05 a:active,
  .theme--green .dtc05 a:hover {
    color: #008951;
    cursor: pointer; }
  .theme--green .dtc05 ol li::before,
  .theme--green .dtc05 ul li::before {
    color: #1FB650; }
  .theme--green .dtc05 *::-moz-selection {
    background-color: #A5F2AA;
    color: inherit; }
  .theme--green .dtc05 *::selection {
    background-color: #A5F2AA;
    color: inherit; }
  .theme--blue .dtc05 a {
    color: #1DA1F2;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--blue .dtc05 a:active,
  .theme--blue .dtc05 a:hover {
    color: #005FD1;
    cursor: pointer; }
  .theme--blue .dtc05 ol li::before,
  .theme--blue .dtc05 ul li::before {
    color: #1DA1F2; }
  .theme--blue .dtc05 *::-moz-selection {
    background-color: #97E3FF;
    color: inherit; }
  .theme--blue .dtc05 *::selection {
    background-color: #97E3FF;
    color: inherit; }
  .theme--purple .dtc05 a {
    color: #794BC4;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--purple .dtc05 a:active,
  .theme--purple .dtc05 a:hover {
    color: #4F0299;
    cursor: pointer; }
  .theme--purple .dtc05 ol li::before,
  .theme--purple .dtc05 ul li::before {
    color: #794BC4; }
  .theme--purple .dtc05 *::-moz-selection {
    background-color: #C7B4FA;
    color: inherit; }
  .theme--purple .dtc05 *::selection {
    background-color: #C7B4FA;
    color: inherit; }
  .theme--pink .dtc05 a {
    color: #E0245E;
    text-decoration: none;
    transition: color 0.3s ease-in-out; }
  .theme--pink .dtc05 a:active,
  .theme--pink .dtc05 a:hover {
    color: #A01744;
    cursor: pointer; }
  .theme--pink .dtc05 ol li::before,
  .theme--pink .dtc05 ul li::before {
    color: #E0245E; }
  .theme--pink .dtc05 *::-moz-selection {
    background-color: #FFB8C2;
    color: inherit; }
  .theme--pink .dtc05 *::selection {
    background-color: #FFB8C2;
    color: inherit; }
  .dtc05__summary__image {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 1.5rem; }
    .dtc05__summary__image img {
      max-height: 100%;
      width: auto;
      height: 100%;
      border-radius: 0; }
  .dtc05__summary__name {
    margin-bottom: 0.75rem; }
  .dtc05__summary p > a {
    line-height: 1.2em;
    display: inline-block;
    margin-bottom: 0.375rem; }
  .dtc05__summary__community {
    line-height: 1.2em; }
  .dtc05__head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #CCD6DD; }
  .dtc05__head__column {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column; }
    .dtc05__head__column--left {
      margin-right: 1.125rem;
      display: block;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }
    .dtc05__head__column--right {
      width: 100%; }
  .dtc05__headline {
    margin-top: 0;
    margin-bottom: 0.75rem; }
    .dtc05__headline > a {
      color: #14171A !important; }
  .dtc05__linklist li {
    display: inline; }
    .dtc05__linklist li:not(:last-of-type) {
      margin-right: 4px;
      padding-right: 6px;
      position: relative; }
      .dtc05__linklist li:not(:last-of-type)::after {
        background-color: #AAB8C2;
        content: '';
        display: block;
        height: 100%;
        left: 100%;
        position: absolute;
        top: -1px;
        width: 1px; }
  .dtc05__detail {
    margin-top: 1.5rem; }
    .dtc05__detail, .dtc05__detail * {
      color: #657786; }
/*

  color(yellow) single argument defaults to dark colors
  color(light, yellow) returns light yellow

*/
/*

respond-to mixin
$size: breakpoint key (ex. full or large-screens)

*/
/*

font mixin
$key: type style key (ex. bold-24 or roman-24). See typography.json for options.

@include font(bold-24);

*/
.c02-image-single .image--single {
  width: 100%;
  margin: 0.75rem;
  display: block; }
  .c02-image-single .image--single img {
    max-width: 100%;
    max-height: 100%;
    display: block; }

.c02-image-single .image__footer {
  padding: 1.5rem 0;
  border-bottom-style: solid;
  border-bottom-width: 1px; }

.c02-image-single .image__caption {
  line-height: 1rem; }
  @media (min-width: 768px) {
    .c02-image-single .image__caption {
      line-height: 1.5rem; } }

.c02-image-single .image.greyscale img {
  filter: gray;
  filter: grayscale(1);
  opacity: 0.8;
  transition: all 0.2s; }
  .c02-image-single .image.greyscale img:hover {
    filter: none;
    opacity: 1; }

.c02-image-single .image.centered {
  text-align: center; }
  .c02-image-single .image.centered img {
    margin: 0 auto; }

.c02-image-single .image.vertically-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }

.c02-image-single .image__placeholder {
  height: 26.25rem; }
  @media (min-width: 768px) {
    .c02-image-single .image__placeholder {
      height: 39.75rem; } }

.c02-image-single::after {
  content: " ";
  display: block;
  clear: both; }

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