﻿@charset "UTF-8";
/**
 * Table of Contents
 *
 * - Reset
 * - Utilities
 * - General
 * - Content
 * - Modules
 */
.visuallyhidden, .sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active, .focusable.sr-only:active,
.visuallyhidden.focusable:focus, .focusable.sr-only:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.landing-modular-cct .highlight {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: '';
  display: table;
  line-height: 0;
}

.clearfix:after {
  clear: both;
}

/* Module Container */
.une-mod {
  background: #fff;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.une-mod input:focus,
.une-mod button:focus,
.une-mod a:focus {
  border-color: #4286f4;
  box-shadow: 0 0 5px 2px #4286f4 inset;
  /* IE9, Chrome 10+, FF4.0+, Opera 10.9+ */
  -webkit-box-shadow: 0 0 5px 2px #4286f4 inset;
  /* Saf3.0+, Chrome */
  -moz-box-shadow: 0 0 5px 2px #4286f4 inset;
  /* FF3.5+ */
}

@media (max-width: 1140px) {
  .une-mod--no-gutter {
    padding: 0;
  }
}

/* Slick Slider Styles */
.slick-prev,
.slick-next {
    position: absolute;
    top: 40%;
    padding: unset;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-indent: -9999px;
    /*background-color: unset !important;*/
    z-index: 1;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  display: none !important;
}

.slick-prev {
    left: 0;
    background-position: -52px -6291px;
}

    .slick-prev:hover {
        background-position: -52px -6145px;
    }

.slick-next {
    right: 0;
    background-position: -52px -439px;
}

    .slick-next:hover {
        background-position: -52px -523px;
    }

ul.slick-dots {
  position: absolute;
  z-index: 1;
  text-align: center;
  width: 100%;
  bottom: 1.875rem;
  /* Using !important to avoid inheriting ul margin from existing UNE CSS. Safe to remove in Phase 2 */
  margin-left: 0 !important;
  margin-right: 0 !important;
}

ul.slick-dots li {
  display: inline-block;
  margin: 0 0.125rem;
}

ul.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 1.1875rem;
  height: 1.1875rem;
  padding: 0;
  cursor: pointer;
  color: transparent;
  background: transparent;
  border: 0;
  border-radius: 100%;
}

ul.slick-dots li button:before {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  content: "";
  display: block;
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: 100%;
  margin: auto;
  background: rgba(255, 255, 255, 0.4);
}

ul.slick-dots li button:hover:before, ul.slick-dots li button:focus:before {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  background: white;
}

ul.slick-dots li.slick-active button {
  border: 2px solid rgba(255, 255, 255, 0.4);
}

ul.slick-dots li.slick-active button:before {
  background: white;
}

ul.slick-dots--colored li button:before {
  background: #cbb9c9;
}

ul.slick-dots--colored li button:hover:before, ul.slick-dots--colored li button:focus:before {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  background: #7c5276;
}

ul.slick-dots--colored li.slick-active button {
  border: 2px solid #cbb9c9;
}

ul.slick-dots--colored li.slick-active button:before {
  background: #7c5276;
}

@media (min-width: 576px) {
    .slick-prev,
    .slick-next {
        background-color: unset !important;
    }
}

@media (max-width: 575.98px) {
    .slick-prev,
    .slick-next {
        top: unset;
        bottom: 0;
        z-index: 2;
    }

    ul.slick-dots {
        bottom: 0;
        height: 40px;
        background-color: #ccc9c3;
    }

        ul.slick-dots li {
            margin: 0.65rem 0.125rem 0;
        }


}

.spinner {
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.split-col__item {
  position: relative;
}

.split-col .content-block--inverse.content-block--bg-image .content-block__container {
  background: none;
  z-index: 2;
  position: relative;
}

@media only screen and (max-width: 1169px) {
  .split-col {
    margin: auto;
  }
}

@media only screen and (min-width: 1170px) {
  .no-js .split-col,
  .no-flexbox .split-col {
    display: table;
  }
  .flexbox .split-col {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .split-col__item {
    width: 50%;
    flex-basis: 50%;
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
  }
  .split-col__item:first-child > div {
    justify-content: flex-end;
  }
  .no-js .split-col__item:first-child > div,
  .no-flexbox .split-col__item:first-child > div {
    display: table;
  }
  .flexbox .split-col__item:first-child > div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .split-col__item:first-child > div > div {
    max-width: 420px;
    margin: 0;
  }
  .split-col__item:last-child {
    border-left: 1px solid #d3d3d3;
  }
  .split-col__item:last-child > div {
    justify-content: flex-start;
  }
  .no-js .split-col__item:last-child > div,
  .no-flexbox .split-col__item:last-child > div {
    display: table;
  }
  .flexbox .split-col__item:last-child > div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .split-col__item:last-child > div > div {
    max-width: 420px;
    margin-left: 0;
  }
  .split-col__item .gallery,
  .split-col__item .testimonial,
  .split-col__item .content-block,
  .split-col__item .search,
  .split-col__item .list {
    height: 100%;
    padding: 0 5rem;
  }
  .split-col__item .list--plain {
    height: auto;
  }
  .split-col__item .testimonial {
    align-items: center;
    height: 100%;
  }
  .no-js .split-col__item .testimonial,
  .no-flexbox .split-col__item .testimonial {
    display: table;
  }
  .flexbox .split-col__item .testimonial {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .split-col__item .testimonial__item-container {
    /* override module CSS */
    display: block !important;
  }
  .split-col__item .testimonial__image {
    margin-bottom: 2rem !important;
  }
  .split-col__item .testimonial__text {
    min-width: auto !important;
  }
  .split-col__item .testimonial__text p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .split-col__item .gallery__title {
    text-align: left;
    margin-bottom: 2rem;
  }
  .split-col__item .content-block {
    align-items: center;
    height: 100% !important;
  }
  .no-js .split-col__item .content-block,
  .no-flexbox .split-col__item .content-block {
    display: table;
  }
  .flexbox .split-col__item .content-block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .split-col__item .content-block--inverse {
    background: #1d7980;
  }
  .split-col__item .content-block__title, .split-col__item .content-block__text {
    text-align: left;
  }
  .split-col__item .content-block__images {
    display: block !important;
  }
  .split-col__item .content-block__image {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1rem !important;
  }
  .split-col__item .search {
    align-items: center;
  }
  .no-js .split-col__item .search,
  .no-flexbox .split-col__item .search {
    display: table;
  }
  .flexbox .split-col__item .search {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .split-col__item .search--find-a-course .search__body {
    display: block;
  }
  .split-col__item .search--find-a-course .search__content {
    margin-bottom: 0.625rem;
  }
}

@media only screen and (max-width: 736px) {
  /* following fixes overlapping of back top button and social widget */
  .landing-modular-cct .footer {
    margin-top: 50px;
  }
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../mysource_files/fontawesome-webfont.eot?v=4.7.0");
  src: url("../mysource_files/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../mysource_files/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../mysource_files/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../mysource_files/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../mysource_files/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

@font-face {
  font-family: "icomoon";
  src: url("../mysource_files/icomoon.eot?ioj4ih");
  src: url("../mysource_files/icomoon.eot?ioj4ih#iefix") format("embedded-opentype"), url("../mysource_files/icomoon.ttf?ioj4ih") format("truetype"), url("../mysource_files/icomoon.woff?ioj4ih") format("woff"), url("../mysource_files/icomoon.svg?ioj4ih#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-une-laptop:before {
  content: "\e900";
}

.icon-une-line-chart:before {
  content: "\e901";
}

.icon-une-pencil:before {
  content: "\e902";
}

.icon-une-shuffle:before {
  content: "\e903";
}

.icon-une-target:before {
  content: "\e904";
}

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.12 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  .featherlight {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    background: #333;
    background: rgba(0, 0, 0, 0);
  }
  .featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8);
  }
  .featherlight:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  .featherlight .featherlight-content {
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    background: #fff;
    cursor: auto;
    white-space: normal;
  }
  .featherlight .featherlight-inner {
    display: block;
  }
  .featherlight link.featherlight-inner,
  .featherlight script.featherlight-inner,
  .featherlight style.featherlight-inner {
    display: none;
  }
  .featherlight .featherlight-close-icon {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    z-index: 9999;
    top: -43px;
    right: 0;
    line-height: 25px;
    width: 60px;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
    background: transparent;
    color: #fff;
    border: 0;
    padding: 0;
  }
  .featherlight .featherlight-close-icon:hover {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    color: #f0f0f0;
  }
  .featherlight .featherlight-close-icon span {
    display: inline-block;
    padding-right: 0.625rem;
  }
  .featherlight .featherlight-close-icon::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  .featherlight .featherlight-image {
    width: 100%;
  }
  .featherlight-iframe .featherlight-content {
    border-bottom: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }
  .featherlight iframe {
    border: 0;
  }
  .featherlight * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 640px) and (max-width: 960px) {
  .featherlight-inner {
    width: 31.25rem;
    height: 17.5rem;
  }
}

@media only screen and (min-width: 960px) {
  .featherlight-inner {
    width: 42.75rem;
    height: 21.75rem;
  }
}

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
  }
}

@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none;
  }
}

/*
--------------------
Reset (normalize.css)
--------------------
*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*
--------------------
Utilities
--------------------
*/
.hidden {
  display: none !important;
  visibility: hidden;
}

.invisible {
  visibility: hidden;
}

.pull-left {
  float: left;
}

img.pull-left {
  margin-right: 1em;
}

.pull-right {
  float: right;
}

img.pull-right {
  margin-left: 1em;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 1em;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dimmer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/*
--------------------
General
--------------------
*/
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

.landing-modular-cct *,
.landing-modular-cct *:before,
.landing-modular-cct *:after,
.une-mod *,
.une-mod *:before,
.une-mod *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.landing-modular-cct .header-wrapper * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.landing-modular-cct .header-toggle-block {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

.landing-modular-cct {
  height: 100%;
  overflow-y: scroll;
  line-height: 1.4;
  padding: 0;
  margin: 0;
  font-family: "Open Sans";
  /* MIGRATION CSS (safe to remove in phase 2) */
}

.landing-modular-cct img {
  max-width: 100%;
}

.landing-modular-cct .breadcrumbs {
  display: none;
}

.landing-modular-cct .nm-breadcrumbs {
  max-width: 67.75rem;
  margin: auto;
}

.landing-modular-cct.nm-page .breadcrumbs {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}

.landing-modular-cct.nm-page .breadcrumbs li {
  margin-bottom: 0;
}

.landing-modular-cct.nm-page .breadcrumbs li + li {
  background-position: 0 -135px;
}

.landing-modular-cct #main,
.landing-modular-cct.no-sub-nav.no-sidebar #main-content,
.landing-modular-cct #main-content > .content {
  margin: 0;
  padding: 0;
}

.landing-modular-cct.nm-page .content {
  background: transparent !important;
}

.landing-modular-cct #main-wrapper {
  width: 100%;
}

.landing-modular-cct .top-wrapper {
  overflow: hidden;
  clear: both;
  position: absolute;
  right: 1rem;
  margin-top: 0;
}

.landing-modular-cct a.top {
  margin-top: 0 !important;
}

.landing-modular-cct .social-hub .panel-inner {
  height: auto;
}

.landing-modular-cct #site-search-field,
.landing-modular-cct #staff-site-search-field {
  height: 27px;
}

.landing-modular-cct h1 {
  position: relative;
  left: auto;
  top: auto;
}

.landing-modular-cct .h1-wrapper {
  background-color: #000;
  height: 0;
  display: none;
}

@-ms-viewport {
  width: device-width;
}

@page {
  margin: 0.5cm;
}

/*
--------------------
Content
--------------------
*/
/* safe escape new styles */
.landing-modular-cct {
  /* Tables */
  /* Buttons */
  /* Quotes */
  /* Highlight */
}

.landing-modular-cct table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5em 0;
}

.landing-modular-cct caption {
  font-size: 12.8px;
  font-size: 0.8rem;
  font-style: italic;
}

.landing-modular-cct th {
  background: #222;
  color: #dddddd;
}

.landing-modular-cct td {
  border: 1px solid #222;
}

.landing-modular-cct .button {
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: #222;
  color: #dddddd;
  display: inline-block;
  border: 0;
  padding: 0.5em 1em;
}

.landing-modular-cct .button, .landing-modular-cct .button:visited {
  text-decoration: none;
}

.landing-modular-cct .button:focus, .landing-modular-cct .button:hover {
  background-color: black;
}

.landing-modular-cct .button--large {
  font-size: 24px;
  font-size: 1.5rem;
}

.landing-modular-cct .button--small {
  font-size: 12.8px;
  font-size: 0.8rem;
}

.landing-modular-cct blockquote {
  position: relative;
  padding-left: 3em;
  margin: 2em 0;
}

.landing-modular-cct blockquote:before {
  font-size: 80px;
  font-size: 5rem;
  color: #222;
  content: "\201C";
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1em;
}

.landing-modular-cct .pull-quote {
  border-top: 1px solid #222;
  padding: 1em 0.5em 0 0.5em;
  margin: 1em;
}

.landing-modular-cct .highlight {
  background: #cccccc;
  padding: 0.1em 0.5em;
}

/*
--------------------
Modules
--------------------
*/
.sidebar .widget.find-a-course #find-course-submit {
  margin-top: 0;
}

/* Module: S */
.alumni-slider {
  /* slick styles */
}

.alumni-slider__container {
  padding: 64px 20px;
}

.alumni-slider__title {
  font-family: "Open Sans";
  font-size: 1.75rem;
  color: #292929;
  margin-bottom: 2.8125rem;
  text-align: center;
  font-weight: 600;
}

.alumni-slider__items {
  display: none;
}

.alumni-slider__items.slick-slider.slick-initialized {
  display: block;
}

.alumni-slider__item {
  width: 8.3125rem;
  text-align: center;
  margin: 0 0.4375rem;
}

.alumni-slider__item:focus {
  outline: none;
}

.alumni-slider__item:focus img {
  border-color: #4286f4;
  box-shadow: 0 0 5px 2px #4286f4 inset;
  /* IE9, Chrome 10+, FF4.0+, Opera 10.9+ */
  -webkit-box-shadow: 0 0 5px 2px #4286f4 inset;
  /* Saf3.0+, Chrome */
  -moz-box-shadow: 0 0 5px 2px #4286f4 inset;
  /* FF3.5+ */
}

.alumni-slider__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.alumni-slider__text {
  position: absolute;
  margin-top: 0.625rem;
  margin-left: -5.9375rem;
  width: 20rem;
}

.alumni-slider__name {
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #000;
  font-weight: 700;
}

.alumni-slider__award {
  font-size: 0.8125rem;
  color: #7d5177;
  font-weight: 600;
  font-style: italic;
  margin-top: 0.4375rem;
}

.alumni-slider .slick-list {
  max-width: 45.5rem;
  margin: auto;
}

.alumni-slider .slick-arrow {
  top: 22%;
}

.alumni-slider .slick-dots {
  position: static;
  margin-top: 1.25rem;
}

.alumni-slider .slick-slide {
  height: 14.375rem;
}

.alumni-slider .slick-slide .alumni-slider__text {
  display: none;
}

.alumni-slider .slick-slide img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  filter: saturate(0);
  opacity: 0.4;
  display: inline-block;
}

.alumni-slider .slick-current.slick-center img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  filter: saturate(1);
  opacity: 1;
}

/* Module: S */
.banner--compact .banner__title {
  font-family: "PT Sans";
  letter-spacing: 0.0875rem;
}

.banner--compact .banner__content {
  height: 17.8125rem;
}

.banner--compact .banner__content--slim {
  height: 12.5rem;
}

.banner--compact .banner__description {
  display: none;
}

.banner__item {
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner__cta {
  margin-top: 2.125rem;
  margin-bottom: 2.125rem;
}

.banner__content {
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 0 1.875rem;
  height: 31.125rem;
}

.no-js .banner__content,
.no-flexbox .banner__content {
  display: table;
}

.flexbox .banner__content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.banner__title, .banner__description, .banner__subtitle {
  font-family: "PT Sans";
  color: #fff;
}

.banner__title {
  font-family: "Open Sans";
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 auto;
  /* 
      The following styles override current UNE styles.
      Safe to be removed in Phase 2
    */
  display: block;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}

.banner__subtitle {
  font-size: 1.125rem;
  margin-top: 0.9375rem;
}

.banner__description {
  margin-top: 1.25rem;
}

.banner__description p {
  font-family: "Open Sans";
  font-weight: 600;
  margin: auto;
  margin-bottom: 0;
  max-width: 29.875rem;
  line-height: 1.5rem;
}

.banner__items.banner__items--slick {
  display: none;
}

.banner__items.slick-initialized {
  display: block;
}

/* Module: S */
a.btn,
.btn {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #1d7980;
  background-image: none;
  padding: 0.75rem 1.125rem;
  border-radius: 0;
  font-size: 0.875rem;
  font-family: "PT Sans";
  font-weight: 600;
  line-height: 1.2rem;
  text-transform: uppercase;
  height: auto;
  color: #fff;
  display: inline-block;
  text-decoration: none;
}

a.btn:hover, a.btn:focus,
.btn:hover,
.btn:focus {
  outline: 0 !important;
  border-color: transparent !important;
  box-shadow: transparent !important;
  /* IE9, Chrome 10+, FF4.0+, Opera 10.9+ */
  -webkit-box-shadow: none !important;
  /* Saf3.0+, Chrome */
  -moz-box-shadow: none !important;
  /* FF3.5+ */
  background-color: #1f8991;
  color: #fff;
}

a.btn--green,
.btn--green {
  background-color: #7ab800;
  color: #000;
}

a.btn--green:hover, a.btn--green:focus,
.btn--green:hover,
.btn--green:focus {
  background-color: #6aa002;
  color: #000;
}

a.btn--outline,
.btn--outline {
  background-color: transparent;
  color: #1d7980;
  border: 2px solid #1d7980;
  line-height: 1rem;
}

a.btn--outline:hover, a.btn--outline:focus,
.btn--outline:hover,
.btn--outline:focus {
  background-color: #1f8991;
  border: 2px solid #1f8991;
}

a.btn--outline:hover .spinner > div, a.btn--outline:focus .spinner > div,
.btn--outline:hover .spinner > div,
.btn--outline:focus .spinner > div {
  background: #fff;
}

a.btn--outline .spinner > div,
.btn--outline .spinner > div {
  background: #1d7980;
}

a.btn--chevron,
.btn--chevron {
  font-size: 0;
  line-height: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 100%;
  background: #ede6ec;
}

a.btn--chevron svg,
.btn--chevron svg {
  margin-left: 0.1875rem;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

a.btn--chevron:hover, a.btn--chevron:focus,
.btn--chevron:hover,
.btn--chevron:focus {
  background: #7d5177;
}

a.btn--chevron:hover svg, a.btn--chevron:focus svg,
.btn--chevron:hover svg,
.btn--chevron:focus svg {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  transform: scale(1.4);
}

a.btn--chevron:hover svg path, a.btn--chevron:focus svg path,
.btn--chevron:hover svg path,
.btn--chevron:focus svg path {
  fill: #fff;
}

a.btn--chevron-inverse,
.btn--chevron-inverse {
  background: rgba(255, 255, 255, 0.4);
}

a.btn--chevron-inverse svg path,
.btn--chevron-inverse svg path {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  fill: #fff;
}

a.btn--chevron-inverse:hover, a.btn--chevron-inverse:focus,
.btn--chevron-inverse:hover,
.btn--chevron-inverse:focus {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
}

a.btn--chevron-inverse:hover svg, a.btn--chevron-inverse:focus svg,
.btn--chevron-inverse:hover svg,
.btn--chevron-inverse:focus svg {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

a.btn--chevron-inverse:hover svg path, a.btn--chevron-inverse:focus svg path,
.btn--chevron-inverse:hover svg path,
.btn--chevron-inverse:focus svg path {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  fill: #7d5177;
}

a.btn--chevron-inverse.btn--chevron-left,
.btn--chevron-inverse.btn--chevron-left {
  transform: rotate(180deg);
}

a.btn--chevron-left,
.btn--chevron-left {
  transform: rotate(180deg);
}

/* Module: S */
.contact {
  background: #ebf3f5;
}

.contact__container {
  max-width: 65.3125rem;
  margin: auto;
  padding: 64px 20px;
}

.contact__heading {
  text-align: center;
  color: #292929;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03125rem;
  padding-bottom: 2.125rem;
  margin-bottom: 0;
}

.contact__item {
  /* Override existing UNE css. Safe to remove in Phase 2 */
  margin-bottom: 1.5rem !important;
}

.no-js .contact__item,
.no-flexbox .contact__item {
  display: table;
}

.flexbox .contact__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.contact__content {
  font-size: 0.875rem;
  margin-left: 1.25rem;
  margin-top: 0.4375rem;
  line-height: 1.375rem;
  color: #000;
}

.contact__icon {
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  background: #fff;
  display: inline-block;
  /* using min/max to force 1:1 with display:flex */
  min-width: 2.5rem;
  min-height: 2.5rem;
  max-width: 2.5rem;
  max-height: 2.5rem;
  border-radius: 100%;
}

.no-js .contact__icon,
.no-flexbox .contact__icon {
  display: table;
}

.flexbox .contact__icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.contact__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375rem;
  margin-bottom: 0.4375rem;
}

.contact__title--semibold {
  font-weight: 600;
}

.contact__link {
  /* Override existing UNE css. Safe to remove in Phase 2 */
  color: #1d7980 !important;
  font-weight: 600;
  /* Override existing UNE css. Safe to remove in Phase 2 */
  text-decoration: none !important;
}

.contact__link:hover, .contact__link:focus {
  color: #1d7980;
  /* Override existing UNE css. Safe to remove in Phase 2 */
  text-decoration: underline !important;
}

.contact__footer {
  padding: 1.5rem;
  padding-bottom: 0;
  color: #fff;
  background: #1d7980;
}

.contact__footer-item {
  display: inline-block;
  vertical-align: top;
  font-size: 0.875rem;
  /* Override existing UNE css. Safe to remove in Phase 2 */
  margin-right: 1.6875rem !important;
  margin-bottom: 1.5rem !important;
  font-weight: 600;
}

.contact__footer-item:last-right {
  /* Override existing UNE css. Safe to remove in Phase 2 */
  margin-right: 0 !important;
}

.no-js .contact__footer-item-container,
.no-flexbox .contact__footer-item-container {
  display: table;
}

.flexbox .contact__footer-item-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.contact__footer-item img {
  margin-right: 0.53125rem;
  max-height: 1rem;
}

.contact__footer-link {
  align-items: center;
  /* Override existing UNE css. Safe to remove in Phase 2 */
  text-decoration: none !important;
  color: #fff !important;
}

.no-js .contact__footer-link,
.no-flexbox .contact__footer-link {
  display: table;
}

.flexbox .contact__footer-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.contact__footer-link img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.contact__footer-link:hover, .contact__footer-link:focus {
  color: #fff;
  /* Override existing UNE css. Safe to remove in Phase 2 */
  text-decoration: underline !important;
}

.contact__footer-link:hover img, .contact__footer-link:focus img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.6;
}

.contact__footer-icon-social-media {
  margin-left: 1rem;
}

/* Module: S */
.content-block__container {
  padding: 64px 20px;
  margin: auto;
}

.content-block__title {
  font-size: 1.75rem;
  color: #292929;
  text-align: center;
  margin: 0;
  font-weight: 600;
  font-family: "Open Sans";
}

.content-block__body {
  margin-top: 1.625rem;
}

.content-block__text {
  text-align: center;
  color: #000;
  font-weight: 300;
  line-height: 1.5rem;
  max-width: 50.5rem;
  margin: auto;
}

.content-block__text p {
  color: #000;
  line-height: 1.5rem;
}

.content-block__text p:last-child {
  margin-bottom: 0;
}

.content-block__text img {
  margin-bottom: 1.5rem;
}

.content-block__text img.right, .content-block__text img.left {
  float: none;
  display: block;
  margin: auto;
  margin-bottom: 1rem;
  padding: 0;
}

.content-block--inverse .content-block__container {
  padding: 64px 20px;
  background: #1d7980;
}

.content-block--inverse .content-block__title,
.content-block--inverse .content-block__text {
  color: #fff;
}

.content-block--inverse .content-block__text {
  font-weight: 600;
}

.content-block--inverse .content-block__text p {
  color: #fff;
  margin-bottom: 1.875rem;
}

.content-block--inverse .content-block__text p:last-child {
  margin-bottom: 0;
}

.content-block--inverse .btn--outline {
  color: #fff;
  border: 2px solid #fff;
}

.content-block--inverse .highlight {
  background: #fff !important;
  /* override other styles */
}

.content-block--bg-image {
  background-position: center;
  background-size: cover;
  position: relative;
}

.content-block--bg-image .content-block__container {
  background-color: rgba(0, 0, 0, 0.4);
}

.content-block__images {
  flex-direction: column;
  margin-bottom: 1.6875rem;
}

.no-js .content-block__images,
.no-flexbox .content-block__images {
  display: table;
}

.flexbox .content-block__images {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.content-block__image {
  width: 100%;
  max-width: 12.5rem;
  margin: auto;
}

.content-block__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Module: S */
.content-grid__container {
  max-width: 67.75rem;
  padding: 64px 20px;
  margin: auto;
}

.content-grid__section-title {
  font-family: "Open Sans";
  font-size: 1.75rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 2.6875rem;
  margin-top: 0;
}

.content-grid__column {
  flex-direction: column;
}

.content-grid__item {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  font-family: "Open Sans";
  background-color: #1d7980;
  color: #fff;
  height: 12.4375rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  /* override existing UNE stylesheet. Safe to remove !important phase 2*/
  text-decoration: none !important;
}

.no-js .content-grid__item,
.no-flexbox .content-grid__item {
  display: table;
}

.flexbox .content-grid__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.content-grid__item--adaptive-height {
  height: auto !important;
}

.content-grid__item--adaptive-height div.content-grid__content {
  margin-top: 2rem;
}

.content-grid__item--adaptive-height.content-grid__item--tall div.content-grid__content {
  margin-top: 12rem;
}

.content-grid__item--event {
  justify-content: flex-start;
}

.content-grid__item--event .content-grid__date {
  position: relative;
}

.content-grid__item--event .content-grid__title {
  padding: 0 1.4375rem;
}

.content-grid__item--event .content-grid__content {
  position: absolute;
  bottom: 0;
}

.content-grid__item--event .content-grid__description {
  display: block;
}

.content-grid__item:hover, .content-grid__item:focus {
  outline: 0 !important;
  border-color: transparent !important;
  box-shadow: transparent !important;
  /* IE9, Chrome 10+, FF4.0+, Opera 10.9+ */
  -webkit-box-shadow: none !important;
  /* Saf3.0+, Chrome */
  -moz-box-shadow: none !important;
  /* FF3.5+ */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #18676d;
}

.content-grid__item:hover .content-grid__title, .content-grid__item:focus .content-grid__title {
  /* override existing UNE stylesheet. Safe to remove !important phase 2*/
  text-decoration: underline !important;
}

.content-grid__item:hover .content-grid__image, .content-grid__item:focus .content-grid__image {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.content-grid__item--purple {
  background: #7d5177;
}

.content-grid__item--purple:hover, .content-grid__item--purple:focus {
  outline: 0 !important;
  border-color: transparent !important;
  box-shadow: transparent !important;
  /* IE9, Chrome 10+, FF4.0+, Opera 10.9+ */
  -webkit-box-shadow: none !important;
  /* Saf3.0+, Chrome */
  -moz-box-shadow: none !important;
  /* FF3.5+ */
  background-color: #694464;
}

.content-grid__item--has-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80%;
  z-index: 2;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.43) 30%, #000000);
}

.content-grid__item--social .content-grid__description {
  font-weight: 400;
  display: block;
}

.content-grid__item--youtube .content-grid__image {
  height: 140%;
  top: -2.1875rem;
}

.content-grid__item--light {
  background: #ebf3f5;
}

.content-grid__item--light .content-grid__date,
.content-grid__item--light .content-grid__title,
.content-grid__item--light .content-grid__description,
.content-grid__item--light .content-grid_social-info-icon {
  color: #1d7980;
}

.content-grid__item--light .content-grid__social-info-username {
  color: #000;
}

.content-grid__item--light .content-grid__title {
  font-size: 1.25rem;
}

.content-grid__item--light:hover, .content-grid__item--light:focus {
  outline: 0 !important;
  border-color: transparent !important;
  box-shadow: transparent !important;
  /* IE9, Chrome 10+, FF4.0+, Opera 10.9+ */
  -webkit-box-shadow: none !important;
  /* Saf3.0+, Chrome */
  -moz-box-shadow: none !important;
  /* FF3.5+ */
  background-color: #d9f0f7;
}

.content-grid__item--light:hover .content-grid__date,
.content-grid__item--light:hover .content-grid__title,
.content-grid__item--light:hover .content-grid__description,
.content-grid__item--light:hover .content-grid__social-info-username,
.content-grid__item--light:hover .content-grid_social-info-icon, .content-grid__item--light:focus .content-grid__date,
.content-grid__item--light:focus .content-grid__title,
.content-grid__item--light:focus .content-grid__description,
.content-grid__item--light:focus .content-grid__social-info-username,
.content-grid__item--light:focus .content-grid_social-info-icon {
  color: #1d7980;
}

.content-grid__image {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  max-width: 67.75rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.content-grid__date {
  position: absolute;
  z-index: 2;
  color: #fff;
  top: 0;
  padding: 1.25rem 1.4375rem;
  font-size: 0.75rem;
  letter-spacing: 0.03125rem;
  font-weight: 700;
}

.content-grid__featured-tag {
  position: absolute;
  z-index: 2;
  color: #fff;
  right: 0;
  top: 0;
  font-size: 0.6875rem;
  background: #1a7b82;
  padding: 0.3125rem 0.625rem;
  font-weight: 700;
  letter-spacing: 0.03125rem;
}

.content-grid__content {
  padding: 1.4375rem;
  z-index: 3;
}

.content-grid__tag span {
  display: inline-block;
  font-family: "Open Sans";
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
  background: #1d7980;
  color: #fff;
  padding: 0.1875rem 0.3125rem;
  margin-bottom: 1.0625rem;
}

.content-grid__tag--purple span {
  background: #7d5177;
}

.content-grid__tag--purple-darker span {
  background: #1a7b82;
}

.content-grid__title {
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.content-grid__description {
  display: none;
  font-family: "Open Sans";
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.375rem;
  margin-top: 0.6875rem;
  margin-bottom: 0rem;
}

.content-grid__social-info {
  margin-top: 0.75rem;
  justify-content: space-between;
}

.no-js .content-grid__social-info,
.no-flexbox .content-grid__social-info {
  display: table;
}

.flexbox .content-grid__social-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.content-grid__social-info-username {
  color: #fff;
  font-size: 0.75rem;
}

/* Module: S */
.event-slider {
  position: relative;
}

.event-slider__container {
  max-width: 67.75rem;
  padding: 64px 20px;
  margin: auto;
}

.event-slider__title {
  font-family: "Open Sans";
  font-size: 1.75rem;
  color: #292929;
  margin-bottom: 2.8125rem;
  text-align: center;
  font-weight: 600;
}

.event-slider__items {
  position: static !important;
}

.event-slider__items.event-slider__items--slick {
  display: none;
}

.event-slider__items.slick-initialized {
  display: block;
}

.event-slider__item {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  /* override exisint UNE css. Safe to remove in Phase 2 */
  text-decoration: none !important;
}

.event-slider__item-container {
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background: #ebf3f5;
  padding: 1.375rem;
  height: 12.5rem;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}

.no-js .event-slider__item-container,
.no-flexbox .event-slider__item-container {
  display: table;
}

.flexbox .event-slider__item-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.event-slider__item-container:hover, .event-slider__item-container:focus {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #d9f0f7;
}

.event-slider__event-content {
  padding-top: 1.375rem;
}

.event-slider__event-date {
  font-family: "Open Sans";
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03125rem;
  color: #1d7980;
  position: absolute;
  top: 1.375rem;
}

.event-slider__event-title {
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.33;
  color: #000;
  margin-bottom: 0.875rem;
}

.event-slider__event-description {
  display: none;
  font-family: "Open Sans";
  font-size: 0.875rem;
  line-height: 1.57;
  font-weight: 600;
  line-height: 1.57;
  color: #000;
  margin-bottom: 1.875rem;
}

.event-slider__event-location {
  align-items: center;
  font-family: "Open Sans";
  font-size: 0.875rem;
  line-height: 1.57;
  color: #000;
}

.no-js .event-slider__event-location,
.no-flexbox .event-slider__event-location {
  display: table;
}

.flexbox .event-slider__event-location {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.event-slider__event-location:before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.875rem;
  background: url(../mysource_files/icon-event-location.svg) no-repeat;
  margin-right: 0.625rem;
}

.event-slider__cta {
  margin-top: 1.875rem;
  text-align: center;
}

.event-slider .slick-dots {
  position: static;
  margin-top: 1.875rem;
  bottom: 0;
}

.event-slider .slick-prev,
.event-slider .slick-next {
  top: 43%;
}

/* Module: S */
.faq__container {
  padding: 64px 0;
  max-width: 50rem;
  margin: auto;
}

.faq__title {
  font-family: "Open Sans";
  color: #292929;
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5625rem;
}

.faq__item {
  padding: 2.5rem 0;
  border-bottom: 1px solid #D8CAD6;
}

.no-js .faq__question,
.no-flexbox .faq__question {
  display: table;
}

.flexbox .faq__question {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.faq__question:before {
  content: "Q.";
  text-decoration: none;
  margin-right: 1.25rem;
  color: #7d5177;
  font-weight: 700;
}

.faq__question-text,
.faq a.faq__question-text {
  color: #7d5177;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
}

.faq__question-text:hover,
.faq a.faq__question-text:hover {
  text-decoration: underline;
}

.faq__question-text:hover:before,
.faq a.faq__question-text:hover:before {
  text-decoration: none;
}

.faq__answer {
  line-height: 1.5rem;
}

.no-js .faq__answer,
.no-flexbox .faq__answer {
  display: table;
}

.flexbox .faq__answer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.faq__answer:before {
  content: "A.";
  display: block;
  margin-right: 1.25rem;
}

.faq__cta {
  text-align: center;
  margin-top: 2.4375rem;
}

/* Module: S */
.gallery {
  background: #ebf3f5;
}

.gallery__container {
  padding: 64px 20px;
}

.gallery__items.gallery__items--slick {
  display: none;
}

.gallery__items.slick-initialized {
  display: block;
}

.gallery__title {
  font-family: "Open Sans";
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  color: #000;
  margin-bottom: 4.0625rem;
}

.gallery__slider-wrapper {
  position: relative;
}

.gallery__item-container {
  position: relative;
  max-width: 50.5rem;
  margin: auto;
}

.gallery__item-image img {
  margin: auto;
}

.gallery__item-responsive-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.gallery__item-responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery .slick-dots {
  position: static;
  margin-top: 2rem;
}

.gallery__thumbnails-container {
  max-width: 28.4375rem;
  width: 100%;
  margin: auto;
  margin-top: 1.875rem;
  /* 
      Override inline styling from slick.
      Hack for centering when # of thumbnails is less than 5
    */
}

.gallery__thumbnails-container .btn {
  background: transparent;
  border-radius: 0;
  /* override existing UNE CSS. Safe to remove in Phase 2 */
  border: none !important;
}

.gallery__thumbnails-container .btn svg path {
  fill: #000;
}

.gallery__thumbnails-container .btn:hover svg path, .gallery__thumbnails-container .btn:focus svg path {
  fill: #7d5177;
}

.gallery__thumbnails-container .slick-dots {
  position: static;
}

.gallery__thumbnails-container .slick-next,
.gallery__thumbnails-container .slick-prev {
  top: 2%;
}

.gallery__thumbnails-container .slick-prev {
  left: -10%;
}

.gallery__thumbnails-container .slick-next {
  left: 100%;
}

.gallery__thumbnails-container .gallery__thumbnails--force-center {
  justify-content: center;
}

.no-js .gallery__thumbnails-container .gallery__thumbnails--force-center,
.no-flexbox .gallery__thumbnails-container .gallery__thumbnails--force-center {
  display: table;
}

.flexbox .gallery__thumbnails-container .gallery__thumbnails--force-center {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.gallery__thumbnails-container .gallery__thumbnails--force-center .slick-track {
  transform: translate3d(0, 0, 0) !important;
  width: auto !important;
}

.gallery__thumbnails-container .gallery__thumbnails--force-center .slick-list {
  padding: 0 !important;
}

.gallery__thumbnails.gallery__thumbnails--slick {
  visibility: hidden;
}

.gallery__thumbnails.slick-initialized {
  visibility: visible;
}

.gallery__thumbnail {
  margin: 0 0.125rem;
  opacity: 0.5;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.gallery__thumbnail img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  width: 5.4375rem;
  height: 3.25rem;
  visibility: hidden;
}

.gallery__thumbnail.slick-current, .gallery__thumbnail:hover, .gallery__thumbnail:focus {
  opacity: 1;
}

.gallery__thumbnail--video::before {
  content: "";
  background: url(../mysource_files/icon-video-thumb.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  margin-left: 30px;
  margin-top: 15px;
}

.gallery__tag span {
  display: inline-block;
  font-family: "Open Sans";
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  background: #7d5177;
  color: #fff;
  padding: 0.3125rem 0.5rem;
  margin-top: 1.4375rem;
}

.gallery__heading {
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.5rem;
  margin-top: 12px;
  margin-bottom: 0;
}

.gallery__description {
  width: 100%;
}

.gallery__description p {
  line-height: 1.5rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.gallery--inverse {
  background: #000;
}

.gallery--inverse .gallery__title,
.gallery--inverse .gallery__heading,
.gallery--inverse .gallery__description {
  color: #fff;
}

.gallery--inverse .gallery__thumbnails-container .btn svg path {
  fill: #fff;
}

.gallery--alternate-thumbs .gallery__slider-wrapper {
  position: relative;
}

.gallery--alternate-thumbs .gallery__item-image img {
  max-height: 28.4375rem;
}

.gallery--alternate-thumbs .gallery__description--alternate-thumbs {
  padding-top: 4.375rem;
}

.gallery--alternate-thumbs .gallery__thumbnails-container--alternate-thumbs {
  position: absolute;
  top: 28.4375rem;
  left: 0;
  right: 0;
  margin-top: 1.25rem;
  -webkit-transition: 0.1s all;
  -moz-transition: 0.1s all;
  transition: 0.1s all;
}

.gallery--compact .gallery__description {
  font-size: 0.875rem;
  max-width: 100%;
}

.gallery--compact .gallery__description .gallery__heading {
  margin-top: 1.375rem;
}

.gallery--compact .gallery__description p {
  margin-top: 0.625rem;
}

.gallery .slick-arrow-btn--image-only {
  background: transparent;
  padding: 5px;
  line-height: 0;
  margin-top: 0;
}

.gallery .slick-arrow-btn--image-only.slick-prev {
  left: 0.4rem;
}

.gallery .slick-arrow-btn--image-only.slick-next {
  right: 0.4rem;
}

/* Module: S */
.list__container {
  padding: 64px 20px;
  margin: auto;
}

.list__section-title {
  font-family: "Open Sans";
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  color: #292929;
  margin-bottom: 3.875rem;
}

.list__heading {
  font-size: 1.75rem;
  font-family: "Open Sans";
  color: #292929;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 2.8125rem;
}

.list__items {
  /* !important to use override UNE CSS. Safe to remove in Phase 2 */
  margin: 0 !important;
}

.no-js .list__item,
.no-flexbox .list__item, .no-js .list__link,
.no-flexbox .list__link {
  display: table;
}

.flexbox .list__item, .flexbox .list__link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.list__link {
  width: 100%;
  /* !important to use override UNE CSS. Safe to remove in Phase 2 */
  text-decoration: none !important;
}

.list__link .fa,
.list__link .icon-une {
  margin: auto;
  font-size: 1.5rem;
  color: #7d5177;
}

.list__link .fa {
  font-size: 1.1rem;
}

.list__link .icon-une {
  font-size: 1rem;
}

.list__link .icon-une-line-chart {
  font-size: 0.7rem;
}

.list__link .icon-une-target {
  font-size: 1.5rem;
}

.list__link:hover, .list__link:focus {
  outline: 0 !important;
  border-color: transparent !important;
  box-shadow: transparent !important;
  /* IE9, Chrome 10+, FF4.0+, Opera 10.9+ */
  -webkit-box-shadow: none !important;
  /* Saf3.0+, Chrome */
  -moz-box-shadow: none !important;
  /* FF3.5+ */
}

.list__link:hover .list__title, .list__link:focus .list__title {
  color: #7d5177;
  /* !important to use override UNE CSS. Safe to remove in Phase 2 */
  text-decoration: underline !important;
}

.list__link:hover .list__icon img,
.list__link:hover .list__icon .icon-une,
.list__link:hover .list__icon .fa, .list__link:focus .list__icon img,
.list__link:focus .list__icon .icon-une,
.list__link:focus .list__icon .fa {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  transform: scale(1.2);
}

.list__link--green .list__icon {
  background: rgba(122, 184, 0, 0.1);
}

.list__link--green .list__icon .fa,
.list__link--green .list__icon .icon-une {
  color: #7ab800;
}

.list__link--green:hover .list__title,
.list__link--green:focus .list__title {
  color: #7ab800;
}

.list__link--teal .list__icon {
  background: rgba(29, 121, 128, 0.1);
}

.list__link--teal .list__icon .fa,
.list__link--teal .list__icon .icon-une {
  color: #1d7980;
}

.list__link--teal:hover .list__title,
.list__link--teal:focus .list__title {
  color: #1d7980;
}

.list__item {
  border-bottom: 0.0625rem solid #b3d4d6;
  padding-bottom: 0.875rem;
  /* !important to use override UNE CSS. Safe to remove in Phase 2 */
  margin-bottom: 0.875rem !important;
}

.list__item:last-child {
  border-bottom: none;
}

.list__cta {
  margin-top: 0.625rem;
  text-align: center;
}

.list__icon {
  padding: 0.625rem;
  background: #f5f1f5;
  /* using min/max to force 1:1 with display:flex */
  min-width: 2.6875rem;
  min-height: 2.6875rem;
  max-width: 2.6875rem;
  max-height: 2.6875rem;
  margin-right: 0.75rem;
  border-radius: 100%;
}

.no-js .list__icon,
.no-flexbox .list__icon {
  display: table;
}

.flexbox .list__icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.list__icon img,
.list__icon .icon-une,
.list__icon .fa {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.list__content {
  margin-top: 0.1875rem;
}

.list__stat {
  font-size: 2rem;
  line-height: 2rem;
  margin-top: 0.3125rem;
  color: #7d5177;
  font-weight: 700;
  letter-spacing: 0.05rem;
}

.list__title {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 600;
}

.list__subtitle {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 600;
  margin: 0.3125rem 0;
  color: #000;
}

.list__description {
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  line-height: 1.375rem;
}

.list--plain .list__item,
.list--plain .list__link {
  color: #000;
}

.list--plain .list__item {
  border-bottom: 0.0625rem solid #D8CAD5;
  width: 100%;
  text-align: left;
  padding: 1.375rem 0;
  padding-left: 1.25rem;
  margin: 0;
}

.list--plain .list__item:before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.8125rem;
  position: absolute;
  margin-left: -1.0625rem;
  margin-right: 0.9375rem;
  margin-top: 0.1875rem;
  background: url("../mysource_files/icon-chevron-right.svg") no-repeat;
}

.list--plain--2col .list__items {
  display: block;
}

.list--plain--2col .list__items .list__item {
  width: 100%;
  /* !important to use override UNE CSS. Safe to remove in Phase 2 */
  margin-left: 0rem;
  margin-right: 0;
}

.list--plain .list__link:hover {
  text-decoration: underline;
  color: #7d5177;
}

/* Module: S */
.page {
  font-family: "Open Sans";
}

.page--inside {
  background: #eaeaea;
}

.page__main-content {
  background: #fff;
  margin: 1.25rem;
  padding: 1.875rem 1.25rem;
}

.page__heading-h1 {
  position: relative;
  color: #000;
  font-family: "Open Sans";
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.875rem;
  margin: 0;
  top: 0;
  left: 0;
  margin-bottom: 1.375rem;
}

.page__publishing-info {
  font-family: "Open Sans";
  font-size: 0.8125rem;
  color: #7d5177;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0.9375rem;
}

.page__featured-text {
  font-family: "Open Sans";
  font-size: 0.875rem;
  color: #000;
  font-weight: 300;
  line-height: 1.57;
  margin-bottom: 1.75rem;
}

.page__featured-image-src {
  margin-bottom: 1.875rem;
  width: 100%;
}

.page__featured-image-caption {
  font-family: "Open Sans";
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-style: italic;
  color: #444;
  padding-bottom: 1.6875rem;
  margin-bottom: 1.875rem;
  border-bottom: 1px solid #d8cad5;
}

.page__featured-image-caption strong {
  font-style: normal;
  font-weight: 700;
  color: #000;
}

.page__article-body,
.page p {
  font-family: "Open Sans";
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.page__article-body {
  border-bottom: 1px solid #d8cad5;
  padding-bottom: 2rem;
  margin-bottom: 1.875rem;
}

.page__article-body .highlight {
  /* Override existing UNE CSS. Safe to remove in Phase 2 */
  background: transparent !important;
  padding: 0 !important;
}

.page__article-body .wp-caption img {
  width: 100%;
}

.page__article-body .wp-caption-text {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.page__article-body .alignright,
.page__article-body .alignleft {
  margin: 1rem auto;
  display: block;
}

.page__article-body .alignleft .wp-caption-text {
  margin-right: 18px;
}

.page__article-body .alignright .wp-caption-text {
  margin-left: 18px;
}

.page__author-contact {
  font-family: "Open Sans";
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: #7d5177;
  clear: both;
  /* Using !important to override default UNE CSS. Safe to remove in Phase 2 */
}

.page__author-contact-list {
  margin: 0 !important;
  list-style: none !important;
}

.page__author-contact a {
  color: #7d5177;
  /* Using !important to override default UNE CSS. Safe to remove in Phase 2 */
  text-decoration: underline !important;
}

.page__author-contact a:hover {
  /* Using !important to override default UNE CSS. Safe to remove in Phase 2 */
  text-decoration: none !important;
}

.page__in-this-story {
  /* Using !important to override default UNE CSS. Safe to remove in Phase 2 */
}

.page__in-this-story-list {
  margin-left: 0 !important;
}

.page__in-this-story-title {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #000;
  margin-bottom: 0.625rem;
}

.page__in-this-story-person-item, .page__in-this-story-person-item-link {
  /* Using !important to override default UNE CSS. Safe to remove in Phase 2 */
  margin-bottom: 1.875rem !important;
}

.no-js .page__in-this-story-person-item,
.no-flexbox .page__in-this-story-person-item, .no-js .page__in-this-story-person-item-link,
.no-flexbox .page__in-this-story-person-item-link {
  display: table;
}

.flexbox .page__in-this-story-person-item, .flexbox .page__in-this-story-person-item-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.page__in-this-story-person-item-link {
  /* Using !important to override default UNE CSS. Safe to remove in Phase 2 */
  margin-bottom: 0rem !important;
  text-decoration: none !important;
}

.page__in-this-story-person-img {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  margin-right: 0.75rem;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page__in-this-story-person-name {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #000;
}

.page__in-this-story-person-position {
  font-family: "Open Sans";
  font-size: 0.75rem;
  color: #7d5177;
  font-weight: 600;
  font-style: italic;
}

.no-js .page__share-widget,
.no-flexbox .page__share-widget {
  display: table;
}

.flexbox .page__share-widget {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.page__share-widget-title {
  font-family: "Open Sans";
  font-size: 0.875rem;
  font-weight: 100;
  color: #000;
  margin-right: 0.75rem;
}

.no-js .page__share-widget-list,
.no-flexbox .page__share-widget-list {
  display: table;
}

.flexbox .page__share-widget-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.page__share-widget-item {
  align-items: center;
  padding: 0 0.5rem;
}

.no-js .page__share-widget-item,
.no-flexbox .page__share-widget-item {
  display: table;
}

.flexbox .page__share-widget-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.page__share-widget-item a.offset-top {
  margin-top: -5px;
}

.page__share-widget-item a svg {
  transition: 0.3s all;
}

.page__share-widget-item a:hover svg,
.page__share-widget-item a:hover .fa {
  transition: 0.3s all;
  opacity: 0.75;
}

.page__share-widget-item a .fa {
  font-size: 1.1rem;
  color: #7d5177;
}

.page--has-sidebar .page__sidebar {
  /* Override existing UNE CSS so it can be used with new modules */
}

.page--has-sidebar .page__sidebar .widget {
  margin-bottom: 1.2rem !important;
}

.page--has-sidebar .page__sidebar .widget h2 {
  font-size: 1.2rem !important;
}

.page--has-sidebar .page__sidebar .widget p {
  margin-bottom: 0 !important;
  line-height: 1.2rem;
  font-size: 0.8125rem;
}

.page--has-sidebar .page__sidebar .widget.call-to-action {
  height: 189px;
  border-top: 6px solid #16747b;
}

.page--has-sidebar .page__sidebar .widget.call-to-action img {
  width: 100%;
  min-height: 100%;
}

.page--has-sidebar .page__sidebar .widget.linked-buttons {
  padding: 0;
  background-color: transparent;
}

.page--has-sidebar .page__sidebar .widget.linked-buttons .linked-buttons__list {
  list-style: none;
  margin: 0;
}

.page--has-sidebar .page__sidebar .widget.linked-buttons .linked-buttons__link {
  position: relative;
  display: block;
  border: 4px solid #e9e8e6;
  padding: 21px 32px 20px 67px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.25em;
  line-height: 1.2em;
  font-weight: bold;
  text-decoration: none;
  background-color: #fff;
  height: 83px;
  box-sizing: border-box;
  border-radius: 10px;
  color: #1d7980;
  -webkit-transition: background-color 500ms ease;
  -moz-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
}

.page--has-sidebar .page__sidebar .widget.linked-buttons .linked-buttons__link::before {
  background-position: left -6850px;
  content: "";
  display: block;
  position: absolute;
  left: 13px;
  top: 50%;
  margin: -21px 0 0;
  width: 42px;
  height: 42px;
  background: url(../mysource_files/une-old-sprite.png) transparent no-repeat left -6850px;
}

.page--has-sidebar .page__sidebar .widget.linked-buttons .linked-buttons__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  margin: -8px 0 0;
  width: 11px;
  height: 18px;
  background: url(../mysource_files/une-old-sprite.png) transparent no-repeat -77px -5935px;
}

.page--has-sidebar .page__sidebar .widget.linked-buttons .linked-buttons__link:hover {
  border: 4px solid #7d5177;
  background-color: #f6f9fa;
}

.page--has-sidebar .page__sidebar .widget.linked-buttons .link-buttons__helper {
  display: block;
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page--has-sidebar .page__sidebar .widget.quick-links {
  padding: 28px 19px 18px 19px;
  border-top: 6px solid #96c03d;
}

.page--has-sidebar .page__sidebar .widget.quick-links h2 {
  font-size: 1.846em !important;
  color: #1b1b1b;
  font-weight: normal;
  margin: 0 0 10px 0;
}

.page--has-sidebar .page__sidebar .widget.quick-links li a {
  text-decoration: underline;
}

.page--has-sidebar .page__sidebar .widget.quick-links li a:hover {
  text-decoration: none;
}

.page--has-sidebar .page__sidebar .widget .call-to-action-type-2__details {
  padding: 1rem !important;
}

.page--has-sidebar .page__sidebar .widget .call-to-action-type-2__details .call-to-action-type-2__heading,
.page--has-sidebar .page__sidebar .widget .call-to-action-type-2__details .call-to-action-type-2__description {
  text-align: left !important;
}

.page--has-sidebar .page__sidebar .widget.apply-to-une .links-wrapper,
.page--has-sidebar .page__sidebar .widget.find-a-course .links-wrapper {
  position: relative !important;
  margin-top: 1rem !important;
}

.page--has-sidebar .page__sidebar .widget.apply-to-une h2 {
  font-size: 1.846em !important;
}

.page--has-sidebar .page__sidebar .widget.apply-to-une p {
  font-size: 0.8125rem;
  text-align: center !important;
  line-height: 1.2rem;
}

.page--has-sidebar .page__sidebar .widget.video {
  border-top: 6px solid #16747b !important;
  padding: 0;
  height: 183px !important;
}

.page--has-sidebar .page__sidebar .widget.video p.video-desc {
  margin: 0;
  padding: 10px;
  color: #7d5177;
  text-align: center;
  font-size: 1.5385em;
  font-weight: bold;
}

.page--has-sidebar .page__sidebar .widget.quick-links.staffDirectory {
  padding: 28px 19px 18px 19px !important;
  border-top: 6px solid #96c03d;
}

.page--has-sidebar .page__sidebar .widget.quick-links.staffDirectory p {
  margin-top: 1rem;
  font-size: 0.8125rem;
}

.page--has-sidebar .page__sidebar .widget.quick-links.staffDirectory fieldset {
  border: none;
}

.page--has-sidebar .page__sidebar .widget.quick-links.staffDirectory .label-input-wrapper {
  float: none;
}

.page--has-sidebar .page__sidebar .widget.quick-links.staffDirectory input[type="submit"],
.page--has-sidebar .page__sidebar .widget.quick-links.staffDirectory input[type="text"] {
  width: 100%;
}

.page--has-sidebar .page__sidebar .widget.quick-links.staffDirectory h2 {
  color: #1b1b1b;
  font-weight: normal;
  font-size: 1.846em;
  margin: 0 0 10px 0 !important;
}

.page--has-sidebar .page__sidebar .widget.quick-links.staffDirectory fieldset {
  padding: 1.5em 0 0;
}

.breadcrumbs__wrapper {
  max-width: 67.75rem;
  margin: auto;
}

.breadcrumbs__wrapper .breadcrumbs {
  margin-bottom: 0;
  padding-bottom: 0;
}

.breadcrumbs__wrapper .breadcrumbs li {
  margin-bottom: 5px;
  background-position: 0 -135px;
}

/* Module: S */
.search-filter__container {
  max-width: 67.75rem;
  padding-top: 2.0625rem;
  padding-bottom: 1.5rem;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}

.search-filter__refine-results {
  margin-top: 0 !important;
}

.search-filter__filter-set {
  justify-content: flex-start;
  border-bottom: #d8cad5 1px solid;
  margin-bottom: 0.3125rem;
  align-items: center;
  cursor: pointer;
}

.no-js .search-filter__filter-set,
.no-flexbox .search-filter__filter-set {
  display: table;
}

.flexbox .search-filter__filter-set {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.search-filter__filter-set .search-filter__daterangepicker {
  order: 0;
  margin-left: 0 !important;
}

.search-filter__filter-set .search-filter__daterangepicker::-ms-clear {
  display: none !important;
}

.search-filter__filter-set .search-filter__daterangepicker-icon {
  min-width: 1.25rem;
  min-height: 1.25rem;
  order: 1;
}

.search-filter__title {
  font-size: 1.25rem;
  font-family: "Open Sans";
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.25rem !important;
}

.search-filter__keywords {
  /* using override exiting UNE stylesheet*/
  border: none !important;
  background: #ebf3f5 !important;
  height: 2.8125rem !important;
  color: #000 !important;
  font-size: 0.875rem !important;
  width: 100% !important;
  margin: 1.5rem 0 !important;
  padding: 10px !important;
}

.search-filter__keywords::-webkit-input-placeholder {
  color: #000;
}

.search-filter__daterangepicker {
  margin-bottom: 0 !important;
  padding: 0 !important;
  height: 2.8125rem !important;
  border: none !important;
  font-size: 0.875rem !important;
  width: 100% !important;
  background-color: transparent !important;
  background: url(../mysource_files/icon-calendar.svg) no-repeat right center !important;
  cursor: pointer;
}

.search-filter__daterangepicker::-webkit-input-placeholder {
  color: #000;
}

.search-filter__daterangepicker:focus {
  outline: 0 !important;
  border-color: transparent !important;
  box-shadow: transparent !important;
  /* IE9, Chrome 10+, FF4.0+, Opera 10.9+ */
  -webkit-box-shadow: none !important;
  /* Saf3.0+, Chrome */
  -moz-box-shadow: none !important;
  /* FF3.5+ */
}

.search-filter__category {
  width: 100%;
  height: 2.8125rem !important;
  background-color: #fff;
  background: url(../mysource_files/icon-dropdown-black.svg) no-repeat right;
  padding-right: 1.25rem;
  font-size: 0.875rem !important;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none !important;
  border-bottom: #d8cad5 1px solid !important;
  border-radius: 0 !important;
}

.search-filter__category::-ms-expand {
  display: none;
}

.date-picker-wrapper {
  position: absolute;
  z-index: 5;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  font-size: 12px;
  line-height: 20px;
  color: #aaa;
  box-sizing: initial;
  width: 310px;
  font-family: "Open Sans";
}

.dp-clearfix {
  clear: both;
  height: 0;
  font-size: 0;
}

.date-picker-wrapper.inline-wrapper {
  position: relative;
  box-shadow: none;
  display: inline-block;
}

.date-picker-wrapper.single-date {
  width: auto;
}

.date-picker-wrapper .footer {
  font-size: 11px;
  padding-top: 3px;
  display: none;
}

.date-picker-wrapper b {
  color: #666;
  font-weight: 700;
}

.date-picker-wrapper a {
  color: #6bb4d6;
  text-decoration: underline;
}

.date-picker-wrapper .select-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  width: auto !important;
  font-weight: 400;
  font-family: "Open Sans";
  text-transform: capitalize;
  padding: 7px 15px !important;
  padding-right: 30px !important;
  margin: 0 3px !important;
  background: transparent;
  border: 1px solid #e0e0e0;
}

.date-picker-wrapper .select-wrapper:after {
  content: "";
  background: url(../mysource_files/icon-chevron-down-small.svg) no-repeat;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  right: 12px;
  top: 12px;
  pointer-events: none;
}

.date-picker-wrapper .month-name {
  text-transform: uppercase;
  width: 220px !important;
}

.date-picker-wrapper .month-element {
  display: inline-block;
  vertical-align: middle;
}

.date-picker-wrapper .select-wrapper select {
  position: absolute;
  margin: 0;
  padding-right: 30px;
  left: 0;
  top: -1px;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  text-transform: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=1);
  opacity: 0.01;
  height: auto;
}

.date-picker-wrapper .month-wrapper {
  background-color: #fff;
  cursor: default;
  position: relative;
  overflow: hidden;
  /* override incorrect width assigned by JS */
  width: 290px !important;
  margin: 10px auto;
}

.date-picker-wrapper .month-wrapper table {
  width: 100%;
  float: left;
  margin: 0 !important;
  border: none !important;
}

.date-picker-wrapper .month-wrapper table.month2 {
  width: 190px;
  float: left;
}

.date-picker-wrapper .month-wrapper table th,
.date-picker-wrapper .month-wrapper table td {
  text-align: center;
  line-height: 14px;
  margin: 0px;
  padding: 0px;
  display: inline-block;
  clip: auto;
  width: 40px;
  height: auto;
  position: relative;
  border: none !important;
  background: #fff;
  color: #000;
  vertical-align: top;
}

.date-picker-wrapper .month-wrapper table th:before, .date-picker-wrapper .month-wrapper table th:after,
.date-picker-wrapper .month-wrapper table td:before,
.date-picker-wrapper .month-wrapper table td:after {
  display: none !important;
}

.date-picker-wrapper .month-wrapper table tr:before, .date-picker-wrapper .month-wrapper table tr:after {
  display: none !important;
}

.date-picker-wrapper .month-wrapper table .day {
  line-height: 1;
  font-size: 12px;
  color: #ccc;
  cursor: default;
  width: 40px;
  height: 30px;
  margin: 1px 0;
  align-items: center;
  justify-content: center;
}

.no-js .date-picker-wrapper .month-wrapper table .day,
.no-flexbox .date-picker-wrapper .month-wrapper table .day {
  display: table;
}

.flexbox .date-picker-wrapper .month-wrapper table .day {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.date-picker-wrapper .month-wrapper table div.day.lastMonth, .date-picker-wrapper .month-wrapper table div.day.nextMonth {
  color: #999;
  cursor: default;
}

.date-picker-wrapper .month-wrapper table .day.checked {
  background-color: #d8d8d8;
}

.date-picker-wrapper .month-wrapper table .week-name {
  height: 20px;
  line-height: 20px;
  font-weight: 100;
  text-transform: uppercase;
}

.date-picker-wrapper .month-wrapper table .week-name th {
  font-size: 12px;
  font-weight: 400;
}

.date-picker-wrapper .month-wrapper table .week-name:before, .date-picker-wrapper .month-wrapper table .week-name:after {
  display: none;
}

.date-picker-wrapper .month-wrapper table .day.has-tooltip {
  cursor: help !important;
}

.date-picker-wrapper .month-wrapper table .day.has-tooltip .tooltip {
  white-space: nowrap;
}

.date-picker-wrapper .time label {
  white-space: nowrap;
}

.date-picker-wrapper .month-wrapper table .day.toMonth.valid {
  color: #333;
  cursor: pointer;
}

.date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
  background-color: #d8d8d8;
}

.date-picker-wrapper .month-wrapper table .day.nextMonth, .date-picker-wrapper .month-wrapper table .day.lastMonth {
  display: none;
}

.date-picker-wrapper .month-wrapper table .day.real-today {
  background-color: #ffe684;
}

.date-picker-wrapper .month-wrapper table .day.real-today.checked, .date-picker-wrapper .month-wrapper table .day.real-today.hovering {
  background-color: #ffe684;
}

.date-picker-wrapper table .caption {
  height: 50px;
}

.date-picker-wrapper table .caption:before, .date-picker-wrapper table .caption:after {
  display: none;
}

.date-picker-wrapper table .caption > th:first-of-type, .date-picker-wrapper table .caption > th:last-of-type {
  width: 27px;
}

.date-picker-wrapper table .caption .next,
.date-picker-wrapper table .caption .prev {
  cursor: pointer;
}

.date-picker-wrapper table .caption .next svg,
.date-picker-wrapper table .caption .prev svg {
  margin-top: 8px;
}

.date-picker-wrapper .gap {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 100%;
  background-color: red;
  font-size: 0;
  line-height: 0;
  float: left;
  top: -5px;
  margin: 0 10px -10px;
  visibility: hidden;
  height: 0;
}

.date-picker-wrapper .gap .gap-lines {
  height: 100%;
  overflow: hidden;
}

.date-picker-wrapper .gap .gap-line {
  height: 15px;
  width: 15px;
  position: relative;
}

.date-picker-wrapper .gap .gap-line .gap-1 {
  z-index: 1;
  height: 0;
  border-left: 8px solid white;
  border-top: 8px solid #eee;
  border-bottom: 8px solid #eee;
}

.date-picker-wrapper .gap .gap-line .gap-2 {
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 2;
  height: 0;
  border-left: 8px solid transparent;
  border-top: 8px solid white;
}

.date-picker-wrapper .gap .gap-line .gap-3 {
  position: absolute;
  right: 0;
  top: 8px;
  z-index: 2;
  height: 0;
  border-left: 8px solid transparent;
  border-bottom: 8px solid white;
}

.date-picker-wrapper .gap .gap-top-mask {
  width: 6px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 1px;
  background-color: #eee;
  z-index: 3;
}

.date-picker-wrapper .gap .gap-bottom-mask {
  width: 6px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 7px;
  background-color: #eee;
  z-index: 3;
}

.date-picker-wrapper .selected-days {
  display: none;
}

.date-picker-wrapper .drp_top-bar {
  line-height: 1.4;
  position: relative;
  padding: 10px 40px 10px 0;
}

.date-picker-wrapper .drp_top-bar .error-top,
.date-picker-wrapper .drp_top-bar .normal-top {
  display: none;
}

.date-picker-wrapper .drp_top-bar .default-top {
  display: block;
}

.date-picker-wrapper .drp_top-bar.error .default-top {
  display: none;
}

.date-picker-wrapper .drp_top-bar.error .error-top {
  display: block;
  color: red;
}

.date-picker-wrapper .drp_top-bar.normal .default-top {
  display: none;
}

.date-picker-wrapper .drp_top-bar.normal .normal-top {
  display: block;
}

.date-picker-wrapper .drp_top-bar.normal .normal-top .selection-top {
  color: #333;
}

.date-picker-wrapper .drp_top-bar .apply-btn {
  position: absolute;
  right: 0px;
  top: 6px;
  padding: 3px 5px;
  margin: 0;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  color: #d9eef7;
  border: solid 1px #0076a3;
  background: #0095cd;
  background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
  background: -moz-linear-gradient(top, #00adee, #0078a5);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00adee", endColorstr="#0078a5" );
  color: white;
  line-height: initial;
}

.date-picker-wrapper .drp_top-bar .apply-btn.disabled {
  cursor: pointer;
  color: #606060;
  border: solid 1px #b7b7b7;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  background: -moz-linear-gradient(top, #fff, #ededed);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ededed" );
}

.date-picker-wrapper .time {
  position: relative;
}

.date-picker-wrapper.single-month .time {
  display: block;
}

.date-picker-wrapper .time input[type="range"] {
  vertical-align: middle;
  width: 129px;
  padding: 0;
  margin: 0;
  height: 20px;
}

.date-picker-wrapper .time1 {
  width: 180px;
  padding: 0 5px;
  text-align: center;
}

/*time styling*/
.time2 {
  width: 180px;
  padding: 0 5px;
  text-align: center;
}

.date-picker-wrapper .time1 {
  float: left;
}

.date-picker-wrapper .time2 {
  float: right;
}

.date-picker-wrapper .hour {
  text-align: right;
}

.minute {
  text-align: right;
}

.date-picker-wrapper .hide {
  display: none;
}

.date-picker-wrapper .first-date-selected,
.date-picker-wrapper .last-date-selected {
  background-color: #7d5177 !important;
  color: white !important;
}

.date-picker-wrapper .date-range-length-tip {
  position: absolute;
  margin-top: -4px;
  margin-left: -8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  display: none;
  background-color: yellow;
  padding: 0 6px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 16px;
  -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -ms-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -o-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}

.date-picker-wrapper .date-range-length-tip:after {
  content: "";
  position: absolute;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid yellow;
  left: 50%;
  margin-left: -4px;
  bottom: -4px;
}

.date-picker-wrapper.two-months.no-gap .month1 .next,
.date-picker-wrapper.two-months.no-gap .month2 .prev {
  display: none;
}

.date-picker-wrapper .week-number {
  padding: 5px 0;
  line-height: 1;
  font-size: 12px;
  margin-bottom: 1px;
  color: #999;
  cursor: pointer;
}

.date-picker-wrapper .week-number.week-number-selected {
  color: #49e;
  font-weight: bold;
}

/* Module: S */
.search-results {
  /* using important to override existing UNE css. Safe to remove in Phase 2 */
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.search-results__container {
  max-width: 67.75rem;
  padding: 0 20px;
  padding-bottom: 2rem;
  margin: auto;
}

.search-results__tools {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.no-js .search-results__tools,
.no-flexbox .search-results__tools {
  display: table;
}

.flexbox .search-results__tools {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.search-results__pagination-info {
  font-size: 0.875rem;
  color: #000;
}

.search-results__clear-filters {
  background: transparent;
  color: #000;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  right: 1.5625rem;
  margin-top: -3.3125rem;
}

.search-results__clear-filters svg {
  margin-left: 0.875rem;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}

.search-results__clear-filters:hover, .search-results__clear-filters:focus {
  background: #fff;
  color: #1d7980;
}

.search-results__clear-filters:hover svg, .search-results__clear-filters:focus svg {
  margin-left: 0.875rem;
  fill: #1d7980;
  transform: rotate(90deg);
}

.search-results__list .content-grid__container {
  padding: 0;
}

.search-results__list .content-grid__loadmore {
  text-align: center;
  margin-top: 3.125rem;
}

.search-results__list .content-grid__loadmore .spinner {
  margin: 0 auto;
  display: none;
}

.search-results__list .content-grid__loadmore .spinner.search-ajax-loading {
  display: inline-block;
}

.search-results__list .content-grid__loadmore .spinner > div {
  background: #1d7980;
}

.search-results__modal {
  display: none;
}

.search-results .btn--search-loadmore.search-ajax-loading {
  display: none;
}

.search-results .content-grid__container--masonry {
  opacity: 0;
}

.search-results .content-grid__container--masonry .grid-sizer,
.search-results .content-grid__container--masonry .content-grid__item-container {
  width: 100%;
}

/* Module: S */
.une-mod .search {
  background: #ebf3f5;
}

.une-mod .search__container {
  max-width: 67.75rem;
  margin: auto;
  padding: 64px 20px;
}

.une-mod .search__title {
  color: #292929;
  font-family: "Open Sans";
  font-size: 1.125rem;
  letter-spacing: 0.03125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5625rem;
}

.une-mod .search__form {
  width: 100%;
}

.une-mod .search__input {
  justify-content: center;
}

.no-js .une-mod .search__input,
.no-flexbox .une-mod .search__input {
  display: table;
}

.flexbox .une-mod .search__input {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.une-mod .search__dropdown {
  font-size: 0.875rem;
  font-weight: 600;
  color: #292929;
  text-align: center;
  margin-bottom: 1.8125rem;
}

.une-mod .search__dropdown-field {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  background-color: red;
  border: 0;
  border-bottom: 1px dashed #292929;
  border-radius: 0;
  margin-left: 0.3125rem;
  padding-right: 1.875rem;
  padding-bottom: 0.3125rem;
  margin-bottom: 0;
  background: url(../mysource_files/icon-dropdown-black.svg) no-repeat right;
}

.une-mod .search__dropdown-field::-ms-expand {
  display: none;
}

.une-mod .search__input-field,
.une-mod .search input[type="text"] {
  font-size: 1rem;
  border: none;
  color: #292929;
  background-color: #c3e1e5;
  width: 100%;
  height: 2.8125rem;
  margin: 0;
  padding: 0.8125rem 1.125rem;
}

.une-mod .search__input-field::-webkit-input-placeholder,
.une-mod .search input[type="text"]::-webkit-input-placeholder {
  color: #292929;
}

.une-mod .search__submit-btn {
  background: #c3e1e5;
  height: 2.8125rem;
  width: 3.4375rem;
  margin: 0;
  padding: 0 0.9375rem;
  border-radius: 0;
  text-align: right;
  line-height: 1rem;
}

.une-mod .search__submit-btn svg path {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.une-mod .search__submit-btn:hover, .une-mod .search__submit-btn:focus {
  background: #c3e1e5;
}

.une-mod .search__submit-btn:hover svg path, .une-mod .search__submit-btn:focus svg path {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  fill: #1a7b82;
}

.une-mod .search__content {
  font-family: "Open Sans";
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0.9375rem;
  color: #292929;
}

.une-mod .search__actions {
  margin-top: 0.9375rem;
  justify-content: space-between;
}

.no-js .une-mod .search__actions,
.no-flexbox .une-mod .search__actions {
  display: table;
}

.flexbox .une-mod .search__actions {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.une-mod .search__actions .btn {
  width: 49%;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.no-js .une-mod .search__actions .btn,
.no-flexbox .une-mod .search__actions .btn {
  display: table;
}

.flexbox .une-mod .search__actions .btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.une-mod .search--inverse {
  background: #1a7b82;
}

.une-mod .search--inverse .search__title,
.une-mod .search--inverse .search__content {
  color: #fff;
}

.une-mod .search--inverse .search__input-field,
.une-mod .search--inverse input[type="text"],
.une-mod .search--inverse .search__submit-btn {
  color: #292929;
  background: #fff;
}

.une-mod .search--inverse .search__input-field svg path,
.une-mod .search--inverse input[type="text"] svg path,
.une-mod .search--inverse .search__submit-btn svg path {
  fill: #1a7b82;
}

.une-mod .search--inverse .search__input-field:hover svg path, .une-mod .search--inverse .search__input-field:focus svg path,
.une-mod .search--inverse input[type="text"]:hover svg path,
.une-mod .search--inverse input[type="text"]:focus svg path,
.une-mod .search--inverse .search__submit-btn:hover svg path,
.une-mod .search--inverse .search__submit-btn:focus svg path {
  fill: #292929;
}

.une-mod .search--inverse .search__submit-btn:hover, .une-mod .search--inverse .search__submit-btn:focus {
  color: #fff;
  background: #fff;
}

.une-mod .search--inverse input.search__input-field::-webkit-input-placeholder {
  color: #292929;
}

.une-mod .search--inverse .search__actions .btn {
  background: #ebf3f5;
  color: #1a7b82;
}

.une-mod .search--inverse .search__actions .btn:hover, .une-mod .search--inverse .search__actions .btn:focus {
  background: #fff;
  color: #fff;
}

.une-mod .search--find-course .search__body {
  flex-direction: column;
  align-items: center;
}

.une-mod .search--find-course .search__form {
  max-width: 48.75rem;
}

.une-mod .search--find-course .search__input-field,
.une-mod .search--find-course input[type="text"],
.une-mod .search--find-course .search__submit-btn {
  height: 3.875rem;
}

.une-mod .search--find-course .search__input-field,
.une-mod .search--find-course input[type="text"] {
  padding-left: 1.5625rem;
}

.une-mod .search--find-course .search__submit-btn {
  width: 3.875rem;
  text-align: center;
}

.une-mod .search--find-course .search__actions {
  margin-top: 1.5625rem;
  justify-content: center;
}

.une-mod .search--find-course .search__link {
  color: #fff;
  text-decoration: underline;
  font-family: "Open Sans";
  font-weight: bold;
  font-size: 0.8125rem;
  margin: 0 0.875rem;
  text-align: center;
}

.une-mod .search--find-course .search__link:hover {
  text-decoration: none !important;
}

.une-mod .search--alternative div.search__body {
  display: block;
}

.une-mod .search--alternative .search__form {
  margin: auto;
  margin-top: 1.3125rem;
}

.une-mod .search--alternative .search__content {
  padding-top: 0;
}

.une-mod .search--alternative.search--inverse .search__dropdown,
.une-mod .search--alternative.search--inverse .search__dropdown-field {
  color: #fff;
}

.une-mod .search--alternative.search--inverse .search__dropdown-field {
  border-bottom: 1px dashed #fff;
  background: url(../mysource_files/icon-dropdown-white.svg) no-repeat right;
}

.une-mod .search--alternative.search--inverse .search__dropdown-field option {
  background: #1a7b82;
}

/* Module: S */
.sidebar-section {
  background: #fff;
  padding: 1.25rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
}

.sidebar-section__header {
  align-items: center;
  margin-bottom: 0.9375rem;
}

.no-js .sidebar-section__header,
.no-flexbox .sidebar-section__header {
  display: table;
}

.flexbox .sidebar-section__header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.sidebar-section__header-icon {
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 100%;
  margin-right: 0.9375rem;
}

.no-js .sidebar-section__header-icon,
.no-flexbox .sidebar-section__header-icon {
  display: table;
}

.flexbox .sidebar-section__header-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.sidebar-section__header-text {
  font-family: "Open Sans";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.875rem;
  letter-spacing: 0.025rem;
  color: #000;
}

.sidebar-section__link {
  /* Using !important to override default UNE CSS. Safe to remove in Phase 2 */
  text-decoration: none !important;
}

.sidebar-section__link-list {
  margin: 0 !important;
  list-style: none !important;
}

.sidebar-section__link-item {
  border-top: 1px solid #bee1e3;
  padding: 0.625rem 0;
}

.sidebar-section__link-item:last-child {
  padding-bottom: 0;
}

.sidebar-section__link-date {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.33;
  margin: 0.3125rem 0;
}

.sidebar-section__link-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.375rem;
}

.sidebar-section__link-icon {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  line-height: 1.375rem;
  font-weight: 100;
  color: #000;
}

.no-js .sidebar-section__link-icon,
.no-flexbox .sidebar-section__link-icon {
  display: table;
}

.flexbox .sidebar-section__link-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.sidebar-section-events .sidebar-section__header-icon {
  background: #ebf3f5;
}

.sidebar-section-events .sidebar-section__link {
  transition: 0.3s all;
}

.sidebar-section-events .sidebar-section__link:hover {
  color: #1d7980;
  transition: 0.3s all;
}

.sidebar-section-events .sidebar-section__link-date {
  color: #1d7980;
  margin: 0.3125rem 0;
}

.sidebar-section-events .sidebar-section__link-icon:before {
  content: "";
  display: block;
  background: url(../mysource_files/icon-event-location.svg) no-repeat center;
  width: 17px;
  height: 15px;
  margin-right: 10px;
  margin-top: 3px;
}

.sidebar-section-news .sidebar-section__header-icon {
  background: #eee9ed;
}

.sidebar-section-news .sidebar-section__link-item {
  border-top: 1px solid #dccfda;
}

.sidebar-section-news .sidebar-section__link {
  transition: 0.3s all;
}

.sidebar-section-news .sidebar-section__link:hover {
  color: #7d5177;
  transition: 0.3s all;
}

.sidebar-section-news .sidebar-section__link-date {
  color: #7d5177;
  margin: 0.3125rem 0;
}

.sidebar-section-related .sidebar-section__header {
  margin-bottom: 0.625rem;
}

.sidebar-section-related .sidebar-section__link-item {
  border-top: none;
}

.sidebar-section-related .sidebar-section__link-item:first-child {
  border-top: 1px solid #dccfda;
}

.sidebar-section-related .sidebar-section__link {
  align-items: top;
  transition: 0.3s all;
}

.no-js .sidebar-section-related .sidebar-section__link,
.no-flexbox .sidebar-section-related .sidebar-section__link {
  display: table;
}

.flexbox .sidebar-section-related .sidebar-section__link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.sidebar-section-related .sidebar-section__link:hover {
  color: #7d5177;
  transition: 0.3s all;
}

.sidebar-section-related .sidebar-section__link-title {
  font-weight: 600;
}

.sidebar-section-related a.sidebar-section__link:before {
  content: "";
  display: block;
  background: url(../mysource_files/icon-sidebar-chevron.svg) no-repeat center;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  margin-top: 5px;
}

.sidebar-section-related a.sidebar-section__link[target="_blank"]:before {
  content: "";
  display: block;
  background: url(../mysource_files/icon-sidebar-external-link.svg) no-repeat center;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.sidebar-section-related a.sidebar-section__link[href$=".doc"]:before,
.sidebar-section-related a.sidebar-section__link[href$=".docx"]:before,
.sidebar-section-related a.sidebar-section__link[href$=".pdf"]:before,
.sidebar-section-related a.sidebar-section__link[href$=".xls"]:before,
.sidebar-section-related a.sidebar-section__link[href$=".xlsx"]:before,
.sidebar-section-related a.sidebar-section__link[href$=".pptx"]:before,
.sidebar-section-related a.sidebar-section__link[href$=".ppt"]:before {
  content: "";
  display: block;
  background: url(../mysource_files/icon-sidebar-file.svg) no-repeat center;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

/* Module: S */
/* css for this module located in styles/imports/module.scss */
/* Module: S */
.staff-listing__container {
  padding: 1.5rem 0;
  margin: auto;
}

.staff-listing__title-heading {
  font-family: "Open Sans";
  font-size: 1.5rem;
  color: #292929;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.staff-listing__item {
  padding: 1.875rem 0;
  border-bottom: 1px solid #e1d6e0;
}

.staff-listing__image {
  width: 3.25rem;
  height: 3.25rem;
  min-width: 3.25rem;
  min-height: 3.25rem;
  margin-right: 1.3125rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100%;
}

.staff-listing__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3125rem;
  /* Override existing UNE CSS. Safe to remove in Phase 2 */
  color: #000 !important;
}

.staff-listing__position {
  color: #7d5177;
  font-style: italic;
  font-weight: 600;
  font-size: 0.8125rem;
}

.staff-listing__details {
  /* Override existing UNE CSS. Safe to remove in Phase 2 */
  text-decoration: none !important;
}

.no-js .staff-listing__details,
.no-flexbox .staff-listing__details {
  display: table;
}

.flexbox .staff-listing__details {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.staff-listing__details:hover .staff-listing__name {
  /* Override existing UNE CSS. Safe to remove in Phase 2 */
  color: #7d5177 !important;
  text-decoration: underline !important;
}

.staff-listing__contact {
  margin-left: 4.3125rem;
  min-width: 13.125rem;
}

.staff-listing__email {
  display: block;
  margin-bottom: 0.3125rem;
  text-decoration: underline;
  color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}

.staff-listing__email:hover {
  text-decoration: none;
}

.staff-listing__phone {
  color: #000000;
  font-weight: 400;
  font-size: 0.875rem;
}

.staff-listing ul.staff-listing__tags {
  display: none;
  /* override existing UNE styles. Safe to remove !important in Phase 2 */
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 4.5rem;
  padding: 0;
  list-style: none;
}

.staff-listing li.staff-listing__tag-item {
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
}

.staff-listing li.staff-listing__tag-item h1,
.staff-listing li.staff-listing__tag-item h2,
.staff-listing li.staff-listing__tag-item h3,
.staff-listing li.staff-listing__tag-item h4,
.staff-listing li.staff-listing__tag-item h5,
.staff-listing li.staff-listing__tag-item h6 {
  margin-top: 0;
}

.staff-listing__tag-type {
  font-weight: 700;
}

/* Module: S */
.testimonial__container {
  padding: 64px 20px;
  margin: auto;
}

.testimonial__items.testimonial__items--slick {
  display: none;
}

.testimonial__items.slick-initialized {
  display: block;
}

.testimonial__title {
  height: 4.5625rem;
  font-family: "Open Sans";
  letter-spacing: 0.03125rem;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #292929;
  text-align: center;
  background: url(../mysource_files/icon-quote.svg) no-repeat center;
  margin-bottom: 2.75rem;
  padding-top: 2.1875rem;
}

.testimonial__text {
  font-family: "Open Sans";
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  text-align: left;
  color: #000;
}

.testimonial__text p {
  line-height: 1.5rem;
  margin-bottom: 0;
}

.testimonial__cite, .testimonial__cite-link {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 600;
  /* using !important to override screen.css on existing UNE website. Safe to remove in Phase 2 */
  color: #7d5177 !important;
  margin-top: 1.6875rem;
}

.testimonial__cite-link {
  text-decoration: underline !important;
}

.testimonial__cite-link:hover {
  color: #000 !important;
  text-decoration: none !important;
}

.testimonial--has-image .testimonial__image {
  width: 100%;
  margin: auto;
  margin-bottom: 1.6875rem;
  background-size: cover;
  background-position: center;
}

.testimonial--has-image-circle .testimonial__image {
  width: 15.3125rem;
  height: 15.3125rem;
  background-position: center;
  background-size: cover;
  border-radius: 100%;
}

.testimonial .slick-prev,
.testimonial .slick-next {
  top: 20%;
}

.testimonial .slick-dots {
  position: static;
  margin-top: 2.1875rem;
}

.testimonial--has-image .slick-prev,
.testimonial--has-image .slick-next {
  top: 35%;
}

/* Module: S */
.tiled-gallery__container {
  padding: 1.5rem 0;
  margin: auto;
}

.tiled-gallery__masonry {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  display: none;
}

.tiled-gallery__masonry-container {
  opacity: 0;
}

.tiled-gallery__title-heading {
  font-family: "Open Sans";
  font-size: 1.5rem;
  color: #292929;
  font-weight: 700;
  margin-bottom: 2.0625rem;
}

.tiled-gallery .grid-sizer, .tiled-gallery__masonry-item {
  width: 33.3%;
  margin-bottom: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.875rem;
}

.tiled-gallery .grid-sizer img, .tiled-gallery__masonry-item img {
  width: 100%;
  max-width: 100%;
}

.tiled-gallery__slider-container {
  display: none;
}

.tiled-gallery__slider-container.slick-initialized {
  display: block;
}

.tiled-gallery__slider-container .slick-dots {
  position: relative;
  margin-top: 1rem;
  bottom: auto;
}

.tiled-gallery__slider-item img {
  width: 100%;
}

/* Module: S */
.une-accordion {
  padding: 1.5rem 0;
  margin: auto;
}

.une-accordion .tmp_accordions-wrapper {
  margin-bottom: 1rem;
}

.une-accordion .tmp_accordions-top-content h1,
.une-accordion .tmp_accordions-top-content h2,
.une-accordion .tmp_accordions-top-content h3,
.une-accordion .tmp_accordions-top-content h4,
.une-accordion .tmp_accordions-top-content h5,
.une-accordion .tmp_accordions-top-content h6 {
  font-family: "Open Sans";
  color: #292929;
  font-weight: 600;
}

.une-accordion .tmp_accordions-top-content h2 {
  font-size: 1.5rem;
}

.une-accordion .tmp_accordions-top-content p {
  font-size: 0.875rem;
}

.une-accordion .tmp_accordion {
  border-bottom: 1px solid #dccfda;
}

.une-accordion .tmp_accordion.active .tmp_accordions-title {
  padding-bottom: 1rem;
  font-size: 1rem;
  color: #7d5177;
}

.une-accordion .tmp_accordion.active .tmp_accordions-title:after {
  transition: 0.5s all;
  transform: rotate(180deg);
}

.une-accordion .tmp_accordions-title {
  position: relative;
  font-size: 0.875rem;
  color: #000;
  font-weight: 700;
  line-height: 1rem;
  display: block;
  cursor: pointer;
  padding: 1.5625rem 0;
  padding-right: 1.3rem;
  margin-bottom: 0;
  font-family: "Open Sans";
  transition: 0.25s all;
}

.une-accordion .tmp_accordions-title:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 9px;
  right: 0;
  top: 2.1875rem;
  transition: 0.5s all;
  background: url(../mysource_files/icon-chevron-right-down.svg) no-repeat;
}

.une-accordion .tmp_accordions-title:hover,
.une-accordion .tmp_accordions-title:focus {
  color: #7d5177;
}

.une-accordion .tmp_accordions-content {
  display: none;
  font-size: 0.875rem;
  padding-right: 1.3rem;
}

body:not(.landing-modular-cct) .une-accordion .tmp_accordions-top-content p {
  font-size: 0.8125rem;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: initial;
  color: #4f4f4f;
}

@media (min-width: 37.5em) {
  /*
--------------------
Modules
--------------------
*/
  /* Module: S */
  .banner--compact .banner__content {
    height: 25.4375rem;
  }
  .banner--compact .banner__content--slim {
    height: 15.625rem;
  }
  .banner--compact .banner__title {
    font-size: 3.5rem;
  }
  .banner--compact .banner__description {
    display: block;
  }
  .banner__title {
    font-size: 2.25rem;
  }
  .banner__subtitle {
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  /* Module: S */
  .contact__items {
    justify-content: space-between;
  }
  .no-js .contact__items,
  .no-flexbox .contact__items {
    display: table;
  }
  .flexbox .contact__items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .contact__item {
    flex-direction: column;
    width: 25%;
    /* Override existing UNE css. Safe to remove in Phase 2 */
    margin: 0 0.625rem !important;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    /* Override existing UNE css. Safe to remove in Phase 2 */
    margin-bottom: 0 !important;
  }
  .contact__icon {
    margin: 0 auto;
    /* using min/max to force 1:1 with display:flex */
    min-width: 3.75rem;
    min-height: 3.75rem;
    max-width: 3.75rem;
    max-height: 3.75rem;
    height: 3.75rem;
    margin-bottom: 1.125rem;
    padding: 0.3125rem;
  }
  .contact__icon img {
    transform: scale(1.2);
  }
  .contact__title {
    font-size: 1.125rem;
  }
  .contact__content {
    width: 100%;
    margin-left: 0;
  }
  .contact__footer {
    padding: 1.5rem 0;
  }
  .contact__footer-items {
    justify-content: center;
    align-items: center;
    /* using min/max to force 1:1 with display:flex */
    margin: 0 !important;
  }
  .no-js .contact__footer-items,
  .no-flexbox .contact__footer-items {
    display: table;
  }
  .flexbox .contact__footer-items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .contact__footer-item {
    /* using min/max to force 1:1 with display:flex */
    margin: 0 2.5rem !important;
  }
  /* Module: S */
  .content-block--inverse .content-block__container {
    padding: 64px 20px;
  }
  .content-block__text--2col {
    margin-top: 3.125rem;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 4.375rem;
    -moz-column-gap: 4.375rem;
    column-gap: 4.375rem;
    -moz-column-fill: balance;
    column-fill: balance;
    text-align: left;
  }
  .content-block__text--2col p {
    margin-bottom: 0;
  }
  .content-block__text img.right {
    float: right;
    margin-left: 1rem;
  }
  .content-block__text img.left {
    float: left;
    margin-right: 1rem;
  }
  .content-block__images {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 3.5rem;
  }
  .content-block__image {
    max-width: 10.5rem;
    margin: 0 1.5625rem;
  }
  .content-block__cta {
    margin-top: 5rem;
  }
  /* Module: S */
  .content-grid__columns {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .no-js .content-grid__columns,
  .no-flexbox .content-grid__columns {
    display: table;
  }
  .flexbox .content-grid__columns {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .content-grid__column {
    width: 48.75%;
  }
  .content-grid__item--tall {
    height: 26.125rem;
  }
  .content-grid__item--taller {
    height: 30.1875rem;
  }
  .content-grid__description {
    display: block;
  }
  /* Module: S */
  .event-slider__item-container {
    margin: 0 0.625rem;
  }
  .event-slider__event-description {
    display: block;
  }
  /* Module: S */
  .gallery--compact .gallery__description {
    justify-content: flex-end;
    flex-direction: column;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 40%);
    height: 100%;
    position: absolute;
    top: 0;
    padding: 1.75rem;
    color: #fff;
  }
  .no-js .gallery--compact .gallery__description,
  .no-flexbox .gallery--compact .gallery__description {
    display: table;
  }
  .flexbox .gallery--compact .gallery__description {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .gallery--compact .gallery__description .gallery__heading,
  .gallery--compact .gallery__description p {
    color: #fff;
  }
  .gallery .slick-arrow-btn--image-only {
    background: transparent;
    padding: 5px;
    line-height: 0;
  }
  .gallery .slick-arrow-btn--image-only.slick-prev {
    left: 1.5rem;
  }
  .gallery .slick-arrow-btn--image-only.slick-next {
    right: 1.5rem;
  }
  /* Module: S */
  .list__items {
    flex-wrap: wrap;
    justify-content: center;
  }
  .no-js .list__items,
  .no-flexbox .list__items {
    display: table;
  }
  .flexbox .list__items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .list__item, .list__link {
    flex-direction: column;
  }
  .list__link .icon-une {
    font-size: 2.3rem;
  }
  .list__link .icon-une-line-chart {
    font-size: 1.7rem;
  }
  .list__link .icon-une-target {
    font-size: 3rem;
  }
  .list__link .fa {
    font-size: 2.5rem;
  }
  .list__item {
    width: 25%;
    border-bottom: none;
    text-align: center;
    /* !important to use override UNE CSS. Safe to remove in Phase 2 */
    margin: 0 0.625rem !important;
  }
  .list__content {
    margin-top: 0;
  }
  .list__icon {
    margin: auto;
    margin-bottom: 1.0625rem;
    width: 5.4375rem;
    height: 5.4375rem;
    /* using min/max to force 1:1 with display:flex */
    min-width: 5.4375rem;
    min-height: 5.4375rem;
    max-width: 5.4375rem;
    max-height: 5.4375rem;
    /* explicit height definition for alignitems:center to work correctly on IE11 (Win7) */
    height: 5.4375rem;
    align-items: center;
  }
  .list__icon img {
    margin: auto;
  }
  .list__title {
    font-size: 1.0625rem;
  }
  .list__subtitle {
    margin-bottom: 0.625rem;
  }
  .list__description {
    margin-top: 0.9375rem;
  }
  .list--plain .list__items {
    display: block;
  }
  .list--plain .list__item {
    max-width: 100%;
    flex-direction: row;
  }
  .list--plain--2col .list__items {
    flex-direction: row;
    justify-content: flex-start;
  }
  .no-js .list--plain--2col .list__items,
  .no-flexbox .list--plain--2col .list__items {
    display: table;
  }
  .flexbox .list--plain--2col .list__items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .list--plain--2col .list__items .list__item {
    width: 40%;
    /* !important to use override UNE CSS. Safe to remove in Phase 2 */
    margin-right: 2.5rem !important;
    margin-left: 0rem !important;
  }
  .list--plain--3col .list__items {
    flex-direction: row;
    justify-content: flex-start;
  }
  .no-js .list--plain--3col .list__items,
  .no-flexbox .list--plain--3col .list__items {
    display: table;
  }
  .flexbox .list--plain--3col .list__items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .list--plain--3col .list__items .list__item {
    width: 26%;
    margin-right: 2.5rem !important;
    /* !important to use override UNE CSS. Safe to remove in Phase 2 */
    margin-left: 0rem !important;
  }
  /* Module: S */
  .page__main-content {
    padding: 2.625rem 2.5rem;
  }
  .page__article-body {
    /* WP image */
  }
  .page__article-body .wp-caption {
    margin-top: 0;
  }
  .page__article-body .alignright {
    margin-top: 0;
    margin-right: 0;
    float: right;
  }
  .page__article-body .alignleft {
    margin-top: 0;
    margin-left: 0;
    float: left;
  }
  .page__heading-h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .page__publishing-info {
    margin-bottom: 2.5rem;
  }
  .page__featured-image-src {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .page__featured-image-caption {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .page__author-contact {
    margin-top: 2.5rem;
  }
  .no-js .page__author-contact-list,
  .no-flexbox .page__author-contact-list {
    display: table;
  }
  .flexbox .page__author-contact-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .page__author-contact-item {
    border-right: 2px solid #7d5177;
    padding: 0 0.625rem;
    line-height: 1;
  }
  .page__author-contact-item:first-child {
    padding-left: 0;
    border-right: none;
  }
  .page__author-contact-item:last-child {
    padding-right: 0;
    border-right: none;
  }
  .page__in-this-story-list {
    flex-wrap: wrap;
  }
  .no-js .page__in-this-story-list,
  .no-flexbox .page__in-this-story-list {
    display: table;
  }
  .flexbox .page__in-this-story-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .page__in-this-story-person-item {
    margin-right: 1.5625rem;
    width: 45%;
  }
  .page__in-this-story-person-item:last-child {
    margin-right: 0;
  }
  .page__share-widget {
    margin-top: 0.625rem;
  }
  /* Module: S */
  .search-filter__title {
    flex-basis: 30%;
  }
  /* Module: S */
  .search-results__tools {
    min-height: 3.75rem;
  }
  .search-results .content-grid__container--search-featured .content-grid__columns {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
    flex-wrap: nowrap;
  }
  .search-results .content-grid__container--search-featured .content-grid__columns .content-grid__column {
    flex-grow: 1;
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .search-results .content-grid__container--masonry {
    margin: -0.625rem;
  }
  .search-results .content-grid__container--masonry .grid-sizer,
  .search-results .content-grid__container--masonry .content-grid__item-container {
    width: 50%;
    padding: 0.625rem;
  }
  .search-results .content-grid__container--masonry .content-grid__item {
    margin-bottom: 0;
  }
  /* Module: S */
  .une-mod .search__form {
    max-width: 20rem;
    margin: auto;
  }
  .une-mod .search__actions .btn {
    width: 49.5%;
  }
  /* Module: S */
  .no-js .staff-listing__item-container,
  .no-flexbox .staff-listing__item-container {
    display: table;
  }
  .flexbox .staff-listing__item-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .staff-listing__details {
    width: 60%;
    margin-right: 10%;
  }
  .staff-listing__contact {
    margin-left: 0;
  }
  .staff-listing__email {
    word-break: break-all;
  }
  .staff-listing ul.staff-listing__tags {
    display: block;
  }
  /* Module: S */
  .no-js .testimonial__item-container,
  .no-flexbox .testimonial__item-container {
    display: table;
  }
  .flexbox .testimonial__item-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .testimonial__text {
    max-width: 50.5rem;
    margin: auto;
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
  .testimonial__text p {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
  .testimonial__cite, .testimonial__cite-link {
    font-size: 1rem;
  }
  .testimonial--has-image .testimonial__image {
    max-width: 15.625rem;
    margin: 0;
    margin-right: 2.1875rem;
  }
  .testimonial--has-image .testimonial__cite {
    text-align: left;
  }
  .testimonial--has-image-circle .testimonial__image {
    min-width: 15.625rem;
    min-height: 15.625rem;
    margin-right: 0;
  }
  .testimonial--has-image-circle .testimonial__text {
    max-width: 100%;
    margin-top: 1.875rem;
    margin-left: 2.1875rem;
  }
  .testimonial--has-image-right div.testimonial__image {
    order: 2;
    margin-right: 0;
    margin-left: 2.1875rem;
  }
  /* Module: S */
  .tiled-gallery__masonry {
    display: block;
  }
  .tiled-gallery__slider {
    display: none;
  }
  /* Module: S */
}

@media (min-width: 60em) {
  /*
--------------------
Modules
--------------------
*/
  /* Module: S */
  .content-grid__column {
    width: 23.75%;
  }
  .content-grid__column:last-child {
    margin-bottom: 0;
  }
  /* Module: S */
  /* Module: S */
  .list__container {
    max-width: 65.3125rem;
  }
  .list__items {
    justify-content: space-around;
    margin: auto;
  }
  .list__item {
    border-bottom: none;
    text-align: center;
    max-width: 10.5rem;
  }
  .list__description {
    margin-top: 0.625rem;
    margin-bottom: 0;
  }
  .list__cta {
    margin-top: 2.5rem;
  }
  .list--plain--3col .list__items .list__item {
    width: 28%;
  }
  /* Module: S */
  .page--inside {
    max-width: 67.75rem;
    margin: auto;
  }
  .page__main-content {
    width: 49.25rem;
    margin-left: 0;
    margin-bottom: 3.5625rem;
  }
  .no-js .page--has-sidebar,
  .no-flexbox .page--has-sidebar {
    display: table;
  }
  .flexbox .page--has-sidebar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .page--has-sidebar .page__sidebar {
    width: 16rem;
    margin: 1.25rem;
    margin-left: 0;
  }
  /* Module: S */
  .search-filter__container {
    align-items: center;
    justify-content: space-between;
  }
  .no-js .search-filter__container,
  .no-flexbox .search-filter__container {
    display: table;
  }
  .flexbox .search-filter__container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .search-filter__title {
    margin-bottom: 0 !important;
    padding-right: 1.25rem;
    flex-basis: 40%;
  }
  .search-filter__filter-set {
    justify-content: flex-start;
    align-items: center;
    border-bottom: none;
    margin-bottom: 0 !important;
    min-width: 8.4375rem;
    margin-right: 1.25rem;
  }
  .no-js .search-filter__filter-set,
  .no-flexbox .search-filter__filter-set {
    display: table;
  }
  .flexbox .search-filter__filter-set {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .search-filter__filter-set .search-filter__daterangepicker {
    order: 1;
    height: 2.8125rem !important;
  }
  .search-filter__filter-set .search-filter__daterangepicker-icon {
    margin-right: 0.625rem;
    order: 2;
  }
  .search-filter__category {
    height: 2.8125rem !important;
    border-bottom: none !important;
    padding: 0 !important;
    padding-right: 1.6875rem !important;
    max-width: 10.625rem;
  }
  .search-filter__form {
    padding-bottom: 0 !important;
    justify-content: flex-end;
    width: 100%;
  }
  .no-js .search-filter__form,
  .no-flexbox .search-filter__form {
    display: table;
  }
  .flexbox .search-filter__form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .search-filter__form button {
    padding: 0 1.25rem;
    min-width: 8.875rem;
    text-align: center;
    height: 2.8125rem;
  }
  .search-filter__keywords {
    margin: 0 20px !important;
    max-width: 15rem;
    height: 2.8125rem !important;
  }
  /* Module: S */
  .search-results__tools {
    border-top: #d8cad5 1px solid !important;
    margin-bottom: 0;
  }
  .search-results__clear-filters {
    position: relative;
    right: 0;
    margin-top: 0;
    height: 3.75rem;
  }
  .search-results .content-grid__container--masonry .grid-sizer,
  .search-results .content-grid__container--masonry .content-grid__item-container {
    width: 25%;
  }
  .search-results .content-grid__column--featured-in-search .content-grid__item--tall {
    max-height: 21.125rem;
  }
  /* Module: S */
  .une-mod .search__form {
    margin: 0;
  }
  .une-mod .search__body {
    justify-content: center;
  }
  .no-js .une-mod .search__body,
  .no-flexbox .une-mod .search__body {
    display: table;
  }
  .flexbox .une-mod .search__body {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .une-mod .search__content {
    font-size: 1rem;
    margin: 0 1.625rem;
    padding-top: 0.625rem;
  }
  .une-mod .search__actions {
    margin-top: 0;
  }
  .une-mod .search__actions .btn {
    width: auto;
    margin-right: 0.9375rem;
  }
  .une-mod .search__actions .btn:last-child {
    margin-right: 0;
  }
  .une-mod .search__dropdown {
    font-size: 1rem;
  }
  .une-mod .search__dropdown-field {
    font-size: 1rem;
  }
  .une-mod .search--alternative .search__form {
    max-width: 100%;
    width: 100%;
  }
  .une-mod .search--alternative .search__input {
    max-width: 20rem;
    margin: auto;
  }
  /* Module: S */
  .sidebar-section {
    margin-left: 0;
    margin-right: 0;
  }
  /* Module: S */
  .testimonial__container {
    width: 100%;
  }
  .testimonial__item-container {
    max-width: 61rem;
    margin: auto;
  }
  .testimonial__text {
    min-width: 28.75rem;
  }
  .testimonial__cite, .testimonial__cite-link {
    margin-top: 2.25rem;
    text-align: center;
  }
  .testimonial--has-image .testimonial__image {
    max-width: 28.4375rem;
    margin-right: 4.5rem;
    flex: 1 0 auto;
  }
  .testimonial--has-image-circle .testimonial__image {
    min-width: 20.1875rem;
    min-height: 20.1875rem;
    margin-left: 3.4375rem;
    margin-right: 3.125rem;
  }
  .testimonial--has-image-circle .testimonial__text {
    min-width: 28.125rem;
    margin-left: 0.9375rem;
  }
  .testimonial--has-image-right div.testimonial__image {
    margin-left: 3.125rem;
  }
  .testimonial--has-image-right.testimonial--has-image-circle div.testimonial__image {
    margin-right: 3.125rem;
  }
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*# sourceMappingURL=main.css.map */
/* -- */
body {
    -webkit-overflow-scrolling: touch;
}
.kavram-slider {
    position: relative;
    /*top: 110px;
    padding-top: 110px;*/
    width: 100%;
    /*height: 100%;*/
    z-index: 9;
}
@media (max-width: 575.98px) {
    .kavram-slider {
        padding-bottom: 40px;
    }
}
.kavram-slider picture img {
    width: 100%;
    height: auto;
}

.slick-list.draggable {
    height: 100%;
}

@media only screen and (min-width: 1140px) {
    .w-custom-card {
        width: 835px;
        margin-left: -40px;
    }
}

.scroll-top {
    /*display: none;*/
    /*position: fixed;
    right: 20px;
    bottom: 60px;
    width: 3rem;
    height: 3rem;
    text-indent: -9999px;
    font-size: .75rem;
    line-height: 3rem;
    text-align: center;
    color: #fff;
    cursor: pointer;*/
    /*background: url(../mysource_files/une-old-sprite.png) transparent no-repeat left -6850px;*/
    /*background: #323531 url(sprite.png) no-repeat -54px -258px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;*/
}

    .scroll-top:hover {
        /*background-color: #dc0032;*/
    }