@charset "UTF-8";
.SumoSelect p {
  margin: 0;
}

.SumoSelect {
  width: 100%;
}

.SumoSelect label {
  font-size: 14px;
  font-weight: normal;
}

.SelectBox {
  padding: 5px 8px;
}

.sumoStopScroll {
  overflow: hidden;
}

/* Filtering style */
.SumoSelect .hidden {
  display: none;
}

.SumoSelect .search-txt {
  display: none;
  outline: none;
}

.SumoSelect .no-match {
  display: none;
  padding: 6px;
}

.SumoSelect.open .search-txt {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 5px 8px;
  border: none;
  box-sizing: border-box;
  border-radius: 5px;
}

.SumoSelect.open > .search > label,
.SumoSelect.open > .search > span {
  visibility: hidden;
}

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass,
.SumoUnder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  box-sizing: border-box;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.SelectClass {
  z-index: 1;
}

.SumoSelect .select-all > label,
.SumoSelect > .CaptionCont,
.SumoSelect > .optWrapper > .options li.opt label {
  -ms-user-select: none;
      user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

.SumoSelect {
  display: inline-block;
  position: relative;
  outline: none;
}

.SumoSelect.open > .CaptionCont,
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
  outline: 1px dashed #00A9CE;
}

.SumoSelect > .CaptionCont {
  position: relative;
  min-height: 14px;
  border-radius: 2px;
  margin: 0;
}

.SumoSelect > .CaptionCont > span {
  display: block;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}

/*placeholder style*/
.SumoSelect > .CaptionCont > span.placeholder {
  color: #ccc;
  font-style: italic;
}

.SumoSelect > .CaptionCont > label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
}

.SumoSelect > .CaptionCont > label > i {
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.SumoSelect > .optWrapper {
  display: none;
  z-index: 1000;
  top: 30px;
  width: 100%;
  font-size: 80%;
  font-weight: normal;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
  border-radius: 3px;
  overflow: hidden;
  background: #FFF;
  color: #333;
}

.SumoSelect.open > .optWrapper {
  top: 35px;
  display: block;
}

.SumoSelect.open > .optWrapper.up {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
}

.SumoSelect > .optWrapper ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.SumoSelect > .optWrapper > .options {
  border-radius: 2px;
  position: relative;
  /*Set the height of pop up here (only for desktop mode)*/
  max-height: 250px;
  /*height*/
}

.SumoSelect > .optWrapper.okCancelInMulti > .options {
  border-radius: 2px 2px 0 0;
}

.SumoSelect > .optWrapper.selall > .options {
  border-radius: 0 0 2px 2px;
}

.SumoSelect > .optWrapper.selall.okCancelInMulti > .options {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.group.disabled > label {
  opacity: 0.5;
}

.SumoSelect > .optWrapper > .options li ul li.opt {
  padding-left: 22px;
}

.SumoSelect > .optWrapper.multiple > .options li ul li.opt {
  padding-left: 50px;
}

.SumoSelect > .optWrapper.isFloating > .options {
  max-height: 100%;
  box-shadow: 0 0 100px #595959;
}

.SumoSelect > .optWrapper > .options li.opt {
  padding: 6px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
  margin: 0;
}

.SumoSelect > .optWrapper > .options li.opt a,
.SumoSelect > .optWrapper > .options li.opt span,
.SumoSelect > .optWrapper > .options li.opt label {
  margin: 0;
}

.SumoSelect > .optWrapper > .options > li.opt:first-child {
  border-radius: 2px 2px 0 0;
}

.SumoSelect > .optWrapper.selall > .options > li.opt:first-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options > li.opt:last-child {
  border-radius: 0 0 2px 2px;
  border-bottom: none;
}

.SumoSelect > .optWrapper.okCancelInMulti > .options > li.opt:last-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: #E4E4E4;
}

.SumoSelect .select-all.sel,
.SumoSelect > .optWrapper > .options li.opt.sel {
  background-color: #a1c0e4;
}

.SumoSelect > .optWrapper > .options li label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.SumoSelect > .optWrapper > .options li span {
  display: none;
}

.SumoSelect > .optWrapper > .options li.group > label {
  cursor: default;
  padding: 8px 6px;
  font-weight: bold;
}

/*Floating styles*/
.SumoSelect > .optWrapper.isFloating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  bottom: 0;
  margin: auto;
  max-height: 90%;
}

/*disabled state*/
.SumoSelect > .optWrapper > .options li.opt.disabled {
  background-color: inherit;
  pointer-events: none;
}

.SumoSelect > .optWrapper > .options li.opt.disabled * {
  -moz-opacity: 0.5;
  /* Safari 1.x */
  -khtml-opacity: 0.5;
  /* Good browsers */
  opacity: 0.5;
}

/*styling for multiple select*/
.SumoSelect > .optWrapper.multiple > .options li.opt {
  padding-left: 35px;
  cursor: pointer;
}

.SumoSelect .select-all > span,
.SumoSelect > .optWrapper.multiple > .options li.opt span {
  position: absolute;
  display: block;
  width: 30px;
  top: 0;
  bottom: 0;
  margin-left: -35px;
}

.SumoSelect .select-all > span i,
.SumoSelect > .optWrapper.multiple > .options li.opt span i {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #AEAEAE;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.SumoSelect > .optWrapper > .MultiControls {
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
  border-radius: 0 0 3px 3px;
}

.SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
  display: block;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
  padding: 6px;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p:focus {
  box-shadow: 0 0 2px #a1c0e4;
  border-color: #a1c0e4;
  outline: none;
  background-color: #a1c0e4;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  width: 50%;
  box-sizing: border-box;
  text-align: center;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
  background-color: #f1f1f1;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
  border-right: 1px solid #DBDBDB;
  border-radius: 0 0 0 3px;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
  border-radius: 0 0 3px 0;
}

/*styling for select on popup mode*/
.SumoSelect > .optWrapper.isFloating > .options li.opt {
  padding: 12px 6px;
}

/*styling for only multiple select on popup mode*/
.SumoSelect > .optWrapper.multiple.isFloating > .options li.opt {
  padding-left: 35px;
}

.SumoSelect > .optWrapper.multiple.isFloating {
  padding-bottom: 43px;
}

.SumoSelect .select-all.partial > span i,
.SumoSelect .select-all.selected > span i,
.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i {
  background-color: #11a911;
  box-shadow: none;
  border-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: center center;
}

/*disabled state*/
.SumoSelect.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.SumoSelect.disabled > .CaptionCont {
  border-color: #ccc;
  box-shadow: none;
}

/**Select all button**/
.SumoSelect .select-all {
  border-radius: 3px 3px 0 0;
  position: relative;
  padding: 8px 0 3px 35px;
  height: 20px;
  cursor: pointer;
}

.SumoSelect .select-all > label,
.SumoSelect .select-all > span i {
  cursor: pointer;
}

.SumoSelect .select-all.partial > span i {
  background-color: #ccc;
}

/*styling for optgroups*/
.SumoSelect > .optWrapper > .options li.optGroup {
  padding-left: 5px;
  text-decoration: underline;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[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;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  top: -15px;
  background: red;
  /*to notice it, is white*/
  z-index: 1;
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

@-webkit-keyframes moveArrow {
  0% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes moveArrow {
  0% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: 0 none;
  padding: 0;
  vertical-align: baseline;
}

audio,
canvas,
video {
  display: inline-block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: none;
}

a img {
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

img {
  font-size: 0;
  height: auto;
}

img,
object,
embed {
  max-width: 100%;
}

img.leftAlone {
  display: block;
  margin-bottom: 12px;
}

img.right {
  float: right;
  margin: 6px 6px 12px 16px;
}

img.left {
  float: left;
  margin: 6px 16px 12px 6px;
}

img.center {
  display: block;
  margin: 0 auto 12px;
}

@font-face {
  font-family: "icomoon";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/icomoon.eot?") format("eot"), url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.ttf") format("truetype"), url('../fonts/icomoon.svg#str-replace(icomoon, " ", "_")') format("svg");
}

.container {
  max-width: 100%;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.container:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 53.75em) {
  .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (min-width: 64.0625em) {
  .container {
    margin-left: 70px;
    margin-right: 70px;
  }
}

.row {
  /*  margin-left: - gutter() / 2;
  margin-right: - gutter() / 2;*/
}

.col-1 {
  width: calc(1/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-2 {
  width: calc(2/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-3 {
  width: calc(3/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-4 {
  width: calc(4/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-5 {
  width: calc(5/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-6 {
  width: calc(6/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-7 {
  width: calc(7/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-8 {
  width: calc(8/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-9 {
  width: calc(9/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-10 {
  width: calc(10/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-11 {
  width: calc(11/ 12 * 100%);
  padding: 0 1.0822511%;
}

.col-12 {
  width: calc(12/ 12 * 100%);
  padding: 0 1.0822511%;
}

@media screen and (max-width: 64em) {
  .col--sm-1 {
    width: calc(1/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-2 {
    width: calc(2/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-3 {
    width: calc(3/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-4 {
    width: calc(4/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-5 {
    width: calc(5/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-6 {
    width: calc(6/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-7 {
    width: calc(7/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-8 {
    width: calc(8/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-9 {
    width: calc(9/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-10 {
    width: calc(10/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-11 {
    width: calc(11/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--sm-12 {
    width: calc(12/ 12 * 100%);
    padding: 0 1.0822511%;
  }
}

@media screen and (max-width: 22.4375em) {
  .col--xs-1 {
    width: calc(1/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-2 {
    width: calc(2/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-3 {
    width: calc(3/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-4 {
    width: calc(4/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-5 {
    width: calc(5/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-6 {
    width: calc(6/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-7 {
    width: calc(7/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-8 {
    width: calc(8/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-9 {
    width: calc(9/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-10 {
    width: calc(10/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-11 {
    width: calc(11/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--xs-12 {
    width: calc(12/ 12 * 100%);
    padding: 0 1.0822511%;
  }
}

@media (min-width: 64.0625em) {
  .col--md-1 {
    width: calc(1/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-2 {
    width: calc(2/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-3 {
    width: calc(3/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-4 {
    width: calc(4/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-5 {
    width: calc(5/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-6 {
    width: calc(6/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-7 {
    width: calc(7/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-8 {
    width: calc(8/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-9 {
    width: calc(9/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-10 {
    width: calc(10/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-11 {
    width: calc(11/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--md-12 {
    width: calc(12/ 12 * 100%);
    padding: 0 1.0822511%;
  }
}

@media (min-width: 64.125em) {
  .col--lg-1 {
    width: calc(1/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-2 {
    width: calc(2/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-3 {
    width: calc(3/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-4 {
    width: calc(4/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-5 {
    width: calc(5/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-6 {
    width: calc(6/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-7 {
    width: calc(7/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-8 {
    width: calc(8/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-9 {
    width: calc(9/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-10 {
    width: calc(10/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-11 {
    width: calc(11/ 12 * 100%);
    padding: 0 1.0822511%;
  }
  .col--lg-12 {
    width: calc(12/ 12 * 100%);
    padding: 0 1.0822511%;
  }
}

@media (min-width: 64.0625em) {
  .push--md-2 {
    margin-left: 14.03509%;
  }
}

.gutters-1 {
  padding-left: 3.15789%;
}

[class*="col-"] {
  float: left;
}

.last {
  float: right;
}

.no-padding {
  padding: 0;
}

@media screen and (max-width: 64.0625em) {
  .col--sm-6:nth-child(2n + 1) {
    clear: both;
  }
}

@media (min-width: 64.0625em) {
  .col--md-6:nth-child(2n + 1) {
    clear: both;
  }
}

@media (min-width: 64.0625em) {
  .col--md-2 {
    width: 16.65%;
  }
  .col--md-3 {
    width: 25%;
  }
  .col--md-4 {
    width: 33.32%;
  }
  .col--md-5 {
    width: 41.65%;
  }
  .col--md-6 {
    width: 49.99%;
  }
  .col--md-7 {
    width: 58.32%;
  }
  .col--md-8 {
    width: 66.65%;
  }
  .col--md-9 {
    width: 75%;
  }
}

.row:before, .horizontal-scroll:before, .row:after, .horizontal-scroll:after {
  content: '';
  display: table;
}

.row:after, .horizontal-scroll:after {
  clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
  letter-spacing: -1px;
  margin: 0.5em 0;
}

@media (min-width: 64.0625em) {
  h1 {
    font-size: 3.125rem;
  }
}

h2 {
  font-size: 1.5rem;
  margin: 1em 0 0.5em;
}

@media (min-width: 64.0625em) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  margin: 1em 0 0.5em;
  font-size: 1.25rem;
}

@media (min-width: 64.0625em) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  margin: 1em 0 0.5em;
  font-size: 1.125rem;
}

@media (min-width: 64.0625em) {
  h4 {
    font-size: 1.625rem;
  }
}

h5 {
  margin: 1em 0 0.5em;
  font-size: 1rem;
}

@media (min-width: 64.0625em) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-style: italic;
  margin: 1em 0 0.5em;
  font-size: 0.875rem;
}

@media (min-width: 64.0625em) {
  h6 {
    font-size: 1.125rem;
  }
}


.label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #003347;
}


.small {
  font-size: 1rem;
  opacity: 0.7;
}

a,
.link {
  color: #003347;
  text-decoration: none;
  cursor: pointer;
}

.text--white a,
.link--white {
  color: #fff;
}

.mceContentBody a {
  text-decoration: underline !important;
}

@media (min-width: 64.0625em) {
  p,
  blockquote,
  label,
  ol,
  ul {
    font-size: 1.125rem;
  }
}

p,
blockquote {
  margin: 1em 0;
}

em {
  font-style: italic;
}

b,
strong {
  font-weight: 700;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
}

small {
  font-size: smaller;
}

abbr {
  border-bottom: 1px dotted #003347;
  cursor: help;
  text-decoration: none;
}

tt,
code,
kbd,
samp {
  font-family: monospace;
}

ol,
ul {
  margin-left: 1.25em;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-left: 2.5em;
}

ol ul,
ul ul {
  list-style-type: circle;
}

/*ul {
  list-style-type: disc;
}*/
li {
  margin: 0.3em 0;
}

label {
  font-weight: 600;
  margin-bottom: 7px;
  display: inline-block;
}

iframe,
figure {
  max-width: 100%;
  margin-bottom: 25px;
  margin-top: 25px;
}

iframe:first-child,
figure:first-child {
  margin-top: 0;
}

iframe:last-child,
figure:last-child {
  margin-bottom: 0;
}

figure {
  line-height: 0;
}


.btn,
button,
input[type='submit'] {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
  border-radius: 0.3125rem;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.3;
  min-width: 6.25rem;
  outline: none;
  padding: 1.25rem 5.625rem 1.25rem 0.9375rem;
  text-shadow: none;
  transition: all .3s ease;
  background-color: #fff;
  color: #003347 !important;
  cursor: pointer;
  outline: 0;
  position: relative;
  margin-right: 25px;
  margin-bottom: 16px;
  text-decoration: none !important;
}


.btn:before,
button:before,
input[type='submit']:before,
.btn:after,
button:after,
input[type='submit']:after {
  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;
}

@media (min-width: 64.0625em) {
  
  .btn,
  button,
  input[type='submit'] {
    margin-bottom: 22px;
  }
}


.btn--full {
  display: block;
  margin-right: 0;
}


.btn:after,
button:after,
input[type='submit']:after {
  content: "\e906";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}


.btn:hover,
button:hover,
input[type='submit']:hover,
.btn.hover,
button.hover,
input.hover[type='submit'] {
  background-color: #d9d9d9;
  text-decoration: none;
}


.btn:active,
button:active,
input[type='submit']:active,
.btn.active,
button.active,
input.active[type='submit'] {
  background-color: #FFF5D9;
  color: #003347;
}


.btn--yellow {
  background-color: #FFD768;
}


.btn--yellow:hover,
.btn--yellow.hover {
  background-color: #ffc31c;
}


.btn--teal {
  background-color: #65C7BE;
}


.btn--teal:hover,
.btn--teal.hover {
  background-color: #3ca49a;
}


.btn--blue,
#SearchForm_getSearchResults_action_getSearchResults {
  background-color: #3ABBD7;
}


.btn--blue:hover,
#SearchForm_getSearchResults_action_getSearchResults:hover,
.btn--blue.hover,
.hover#SearchForm_getSearchResults_action_getSearchResults {
  background-color: #218ca3;
}


.btn--beige {
  background-color: #C1B2B6;
}


.btn--beige:hover,
.btn--beige.hover {
  background-color: #9f888e;
}


.btn.no-style,
button.no-style,
input.no-style[type='submit'] {
  line-height: 1.1;
  border-radius: 0;
  min-width: 0;
  box-shadow: none;
  transition: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}


.btn.no-style::after,
button.no-style::after,
input.no-style[type='submit']::after {
  content: "";
  position: relative;
  right: auto;
}

[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-rss:before {
  content: "\e90e";
}

.icon-close:before {
  content: "\e90c";
}

.icon-back:before {
  content: "\e90d";
}

.icon-linkedin:before {
  content: "\e908";
}

.icon-youtube:before {
  content: "\e909";
}

.icon-facebook:before {
  content: "\e90a";
}

.icon-volume:before {
  content: "\e90b";
}

.icon-sub:before {
  content: "\e907";
}

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

.icon-zoom:before {
  content: "\e901";
}

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

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

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

.icon-open:before {
  content: "\e905";
}

.icon-arrow:before {
  content: "\e906";
}

button,
input[type='submit'] {
  padding-right: 15px;
}

input:focus {
  outline: none;
}

input[type='tel'],
.form-url,
.form-search,
.form-email,
.form-text, .form-textarea, #SearchForm_getSearchResults_Search_Holder input.extensible-search {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-radius: 0;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px;
  box-sizing: border-box;
  color: #003347;
  font-size: 1rem;
  font-weight: 400;
  height: 3rem;
  padding: 0.4375rem 1.25rem;
  transition: all .3s ease-in-out;
  width: 100%;
}

input[type='tel']::-ms-clear,
.form-url::-ms-clear,
.form-search::-ms-clear,
.form-email::-ms-clear,
.form-text::-ms-clear, .form-textarea::-ms-clear, #SearchForm_getSearchResults_Search_Holder input.extensible-search::-ms-clear {
  display: none;
}

input[type='tel']::-webkit-input-placeholder,
.form-url::-webkit-input-placeholder,
.form-search::-webkit-input-placeholder,
.form-email::-webkit-input-placeholder,
.form-text::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder, #SearchForm_getSearchResults_Search_Holder input.extensible-search::-webkit-input-placeholder {
  color: #00587a;
  opacity: .6;
}

input[type='tel']::-moz-placeholder,
.form-url::-moz-placeholder,
.form-search::-moz-placeholder,
.form-email::-moz-placeholder,
.form-text::-moz-placeholder, .form-textarea::-moz-placeholder, #SearchForm_getSearchResults_Search_Holder input.extensible-search::-moz-placeholder {
  color: #00587a;
  opacity: .6;
}

input[type='tel']:-ms-input-placeholder,
.form-url:-ms-input-placeholder,
.form-search:-ms-input-placeholder,
.form-email:-ms-input-placeholder,
.form-text:-ms-input-placeholder, .form-textarea:-ms-input-placeholder, #SearchForm_getSearchResults_Search_Holder input.extensible-search:-ms-input-placeholder {
  color: #00587a;
  opacity: .6;
}

input[type='tel']:-moz-placeholder,
.form-url:-moz-placeholder,
.form-search:-moz-placeholder,
.form-email:-moz-placeholder,
.form-text:-moz-placeholder, .form-textarea:-moz-placeholder, #SearchForm_getSearchResults_Search_Holder input.extensible-search:-moz-placeholder {
  color: #00587a;
  opacity: .6;
}

input[type='tel']:focus,
.form-url:focus,
.form-search:focus,
.form-email:focus,
.form-text:focus, .form-textarea:focus, #SearchForm_getSearchResults_Search_Holder input.extensible-search:focus {
  box-shadow: 0 0 0.3125rem #003347;
  outline: 0 none;
}

input.error[type='tel'],
.error.form-url,
.error.form-search,
.error.form-email,
.error.form-text, .error.form-textarea, #SearchForm_getSearchResults_Search_Holder input.error.extensible-search {
  border-color: #D73C4E;
  color: #D73C4E;
}

input.error[type='tel']::-webkit-input-placeholder,
.error.form-url::-webkit-input-placeholder,
.error.form-search::-webkit-input-placeholder,
.error.form-email::-webkit-input-placeholder,
.error.form-text::-webkit-input-placeholder, .error.form-textarea::-webkit-input-placeholder, #SearchForm_getSearchResults_Search_Holder input.error.extensible-search::-webkit-input-placeholder {
  color: #D73C4E;
}

input.error[type='tel']::-moz-placeholder,
.error.form-url::-moz-placeholder,
.error.form-search::-moz-placeholder,
.error.form-email::-moz-placeholder,
.error.form-text::-moz-placeholder, .error.form-textarea::-moz-placeholder, #SearchForm_getSearchResults_Search_Holder input.error.extensible-search::-moz-placeholder {
  color: #D73C4E;
}

input.error[type='tel']:-ms-input-placeholder,
.error.form-url:-ms-input-placeholder,
.error.form-search:-ms-input-placeholder,
.error.form-email:-ms-input-placeholder,
.error.form-text:-ms-input-placeholder, .error.form-textarea:-ms-input-placeholder, #SearchForm_getSearchResults_Search_Holder input.error.extensible-search:-ms-input-placeholder {
  color: #D73C4E;
}

input.error[type='tel']:-moz-placeholder,
.error.form-url:-moz-placeholder,
.error.form-search:-moz-placeholder,
.error.form-email:-moz-placeholder,
.error.form-text:-moz-placeholder, .error.form-textarea:-moz-placeholder, #SearchForm_getSearchResults_Search_Holder input.error.extensible-search:-moz-placeholder {
  color: #D73C4E;
}

input.error[type='tel']:focus,
.error.form-url:focus,
.error.form-search:focus,
.error.form-email:focus,
.error.form-text:focus, .error.form-textarea:focus, #SearchForm_getSearchResults_Search_Holder input.error.extensible-search:focus {
  box-shadow: 0 0 0.3125rem #d73c4e;
  outline: 0 none;
}

input[disabled][type='tel'],
[disabled].form-url,
[disabled].form-search,
[disabled].form-email,
[disabled].form-text, [disabled].form-textarea, #SearchForm_getSearchResults_Search_Holder input[disabled].extensible-search {
  cursor: not-allowed;
}

.form-textarea {
  height: auto;
  min-height: 12.5rem;
  padding: 0.9375rem 1.5625rem;
}

.form-item,
.form-actions {
  margin: 0rem 0rem 1.625rem;
}

.form-item.form-type-checkbox, .form-item.form-type-radio,
.form-actions.form-type-checkbox,
.form-actions.form-type-radio {
  margin-bottom: 0.5rem;
}

.form-type-checkbox label,
.form-type-radio label {
  font-weight: 400;
}

.fieldset-legend {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

select {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
}

.select__wrapper {
  border-radius: 5px;
  background-color: #fff;
  height: 40px;
  min-width: 250px;
  display: inline-block;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 6px 0;
  overflow: hidden;
}

.select__wrapper:before, .select__wrapper:after {
  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;
}

@media screen and (max-width: 64.0625em) {
  .select__wrapper {
    width: 100%;
    min-width: auto;
  }
}

.select__wrapper.white {
  box-shadow: none;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.select__wrapper.white select {
  color: #fff;
}

.select__wrapper.white select option {
  color: #333;
}

.select__wrapper:after {
  content: "\e907";
  position: absolute;
  right: 10px;
  top: 10px;
  pointer-events: none;
}

.select__wrapper select {
  height: 40px;
  padding: 5px;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
  width: 110%;
}

table {
  margin-bottom: 1.125rem;
  width: 100%;
}

@media (min-width: 64.0625em) {
  table {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media (min-width: 64.125em) {
  table {
    min-width: 100%;
  }
}

caption {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1em 0;
  line-height: 1.3;
}

th {
  font-weight: 600;
  background-color: rgba(88, 193, 183, 0.11);
  vertical-align: bottom;
}

tr th:first-of-type {
  vertical-align: top;
}

tr:first-of-type th {
  vertical-align: bottom;
}

td {
  vertical-align: top;
}

td,
th {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  padding: .5rem;
  font-size: 1rem;
}

tbody tr:first-of-type td, tbody tr:first-of-type
th {
  border-top: solid 1px rgba(0, 0, 0, 0.2);
}

td p,
td blockquote,
td label,
td ol,
td ul,
td li,
th p,
th blockquote,
th label,
th ol,
th ul,
th li {
  font-size: 1rem;
}

td p:first-child,
td blockquote:first-child,
td label:first-child,
td ol:first-child,
td ul:first-child,
td li:first-child,
th p:first-child,
th blockquote:first-child,
th label:first-child,
th ol:first-child,
th ul:first-child,
th li:first-child {
  margin-top: 0;
}

td p:last-child,
td blockquote:last-child,
td label:last-child,
td ol:last-child,
td ul:last-child,
td li:last-child,
th p:last-child,
th blockquote:last-child,
th label:last-child,
th ol:last-child,
th ul:last-child,
th li:last-child {
  margin-bottom: 0;
}

.table-responsive {
  margin-bottom: 0.9375rem;
  overflow-x: auto;
  width: 100%;
}

.table-responsive table {
  margin-bottom: 0;
}

.text--center {
  text-align: center;
}

.text--left {
  text-align: left;
}

@media (min-width: 64.0625em) {
  .text--right {
    text-align: right;
  }
}

.text--dark {
  color: #003347;
}

.text--white {
  color: #fff;
}

.text--white a {
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff;
}

.oaic--block {
  padding: 30px 25px;
  margin-bottom: 55px;
  margin-top: 30px;
  border-radius: 5px;
}

.oaic--block p {
  margin-bottom: 15px !important;
}

.oaic--block .btn, .oaic--block button, .oaic--block
input[type='submit'] {
  margin-top: 0;
}

.oaic--block .btn:last-child, .oaic--block button:last-child, .oaic--block
input[type='submit']:last-child {
  margin-bottom: 0;
}

.bg--blue {
  background-color: #002A3A;
}

.bg--red {
  background-color: #D73C4E;
}

.bg--yellow {
  background-color: #FFF5D9;
}

.bg--navy {
  background-color: #003347;
}

.bg--white {
  background-color: #fff;
}

.bg--dot {
  background-image: url("../images/pattern-dot.svg");
}

.bg--call-out {
  padding: 30px;
  position: relative;
}

.bg--call-out:before {
  content: "";
  z-index: -1;
  background-color: rgba(88, 193, 183, 0.11);
  left: -999em;
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  border-radius: 5px;
}

.main-region .block-filter {
  margin-top: 35px;
}

.block--inline {
  display: inline-block;
}

.block-space {
  position: relative;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 64.0625em) {
  .hidden--mobile {
    display: none !important;
  }
}

@media (min-width: 64.125em) {
  .hidden--desktop {
    display: none !important;
  }
}

.update-date {
  margin-bottom: 0px;
  font-size: 13px;
}

@media (min-width: 64.0625em) {
  .update-date {
    margin-bottom: 0px;
    font-size: 16px;
  }
}

.display-date {
  margin-right: 20px;
}

@media screen and (max-width: 64.0625em) {
  .horizontal-scroll {
    width: 775px;
  }
}

/*.show-on-focus {
  height: 0;
  display: block;
  overflow: hidden;
  text-align: center;

  &:focus {
    height: auto;
    padding: 2px;
    background-color: $yellow;
  }

  @include susy-media(mobileTabletOnly) {
    display: none !important;
  }
}*/
a.show-on-focus {
  padding: 20px;
  position: absolute;
  top: -100px;
  left: 0px;
  background: #FFD768;
  color: black;
  font-size: 16px;
  font-weight: bold;
  z-index: 100;
}

a.show-on-focus:focus {
  left: 5px;
  top: 5px;
}

.show-focus-outlines a:focus,
.show-focus-outlines input:focus,
.show-focus-outlines button:focus,
.show-focus-outlines select:focus,
.show-focus-outlines textarea:focus {
  outline: 1px dashed #00A9CE;
}

.show-focus-outlines .text--white a:focus {
  outline: 1px dashed #fff;
}

.block-info img {
  max-width: 130px;
  height: auto;
}

/*.sreenreader-only {
  display: inline-block;
  text-indent: -9999em;
  position: relative;

  &:before,
  &:after {
    text-indent: 0;
    left: 0;
    position: absolute;
  }
}
*/
.card {
  border-radius: 0.3125rem;
  display: block;
  padding: 1.5625rem 2.1875rem;
  padding-left: 1.75rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px 0;
  transition: background .3s;
  background-size: auto;
  background-position: top left;
  background-repeat: repeat-y;
  margin-bottom: 15px;
  background-color: #fff;
  text-decoration: none;
  color: #003347;
  line-height: 1.4;
}

@media (min-width: 64.0625em) {
  .card {
    margin-bottom: 20px;
    font-size: 1rem;
  }
}

.card:hover {
  background-image: url("../images/card-bg-white.svg");
  text-decoration: none;
}

@media screen and (max-width: 64.0625em) {
  .card {
    padding: 0.9375rem;
    padding-bottom: 1.25rem;
    background-position: bottom left;
    background-repeat: repeat-x;
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

.card__title {
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0;
  margin-bottom: 1.3em;
  line-height: 1.3;
}

@media (min-width: 64.0625em) {
  .card__title {
    font-size: 1rem;
  }
}

@media screen and (max-width: 64.0625em) {
  .card__title {
    margin-bottom: .9em;
  }
}

.card__content {
  font-weight: normal;
}

.card--yellow {
  background-image: url("../images/card-bg-yellow.svg");
}

.card--yellow:hover {
  background-color: #FFD768;
}

.card--green {
  background-image: url("../images/card-bg-green.svg");
}

.card--green:hover {
  background-color: #58C1B7;
}

.card--beige {
  background-image: url("../images/card-bg-beige.svg");
}

.card--beige:hover {
  background-color: #C1B2B6;
}

.card--blue {
  background-image: url("../images/card-bg-blue.svg");
}

.card--blue:hover {
  background-color: #00A9CE;
}

.card--navy {
  background-image: url("../images/card-bg-navy.svg");
}

.card--navy:hover {
  background-color: #003347;
  color: #fff;
}

.card-header {
  margin-bottom: 5px;
  margin-top: 25px;
  position: relative;
}

@media (min-width: 64.0625em) {
  .card-header {
    margin-bottom: 20px;
  }
}

.card-header__title {
  display: inline-block;
  margin-right: 10px;
  font-weight: normal;
}

@media screen and (max-width: 64.0625em) {
  .card-header__title {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 64em) {
  .card-header .cta {
    clear: both;
  }
}

.card-update {
  height: 100%;
  background-color: #FFF5D9;
  box-shadow: none;
  -webkit-box-shadow: none;
  font-weight: normal;
  border: none;
  border-radius: 0px;
  margin: 0 1.5rem 2px 2px;
  padding: 1.5rem;
}

@media (min-width: 64.0625em) {
  .card-update {
    background-image: url("../images/card-bg-navy-light.svg");
    padding: 2rem 2.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.card-update:link {
  text-decoration: none;
}

.card-update:hover {
  background-color: #FFD768;
}

.card-update__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.3;
}

.card-update__title:before, .card-update__title:after {
  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;
}

@media (min-width: 64.0625em) {
  .card-update__title {
    margin: 0 2rem 0 2rem;
  }
  .card-update__title:after {
    content: "\e906";
  }
}

.card-update__date {
  font-size: 1rem;
  white-space: nowrap;
  position: relative;
  color: #002A3A;
}

.card-update__date:before, .card-update__date:after {
  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;
}

@media screen and (max-width: 64em) {
  .card-update__date:after {
    content: "\e906";
    display: inline-block;
    position: absolute;
    right: 0;
  }
}

.card-update__icon {
  width: 3.125rem;
  height: 3.125rem;
}

.cta {
  border-bottom: 2px solid #00A9CE;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  margin-right: 30px;
  text-decoration: none;
}

.cta:before, .cta:after {
  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;
}

.cta:after {
  content: "\e906";
  display: inline-block;
  position: absolute;
  bottom: 2px;
  right: -22px;
}

.cta:hover {
  text-decoration: none;
  border-color: #003347;
}

.cta--link {
  text-decoration: none;
}

.cta--link:after {
  -webkit-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg);
}

.cta--link:hover:after {
  -webkit-animation: none;
          animation: none;
}

.cta--no-icon:after {
  display: none;
}

.cta--left {
  margin-left: 30px;
  margin-right: 0;
}

.cta--left:after {
  right: auto;
  left: -25px;
}

.block-message {
  margin: 20px 0;
  font-size: 1rem;
}

@media screen and (max-width: 64.0625em) {
  .block-message {
    font-size: 14px;
  }
}

.block-message a[href]:hover, .block-message a[href]:focus {
  text-decoration: underline;
  -webkit-text-decoration-color: #00A9CE;
          text-decoration-color: #00A9CE;
}

.block-message__inner {
  padding: 8px 15px;
  padding-left: 35px;
  border-radius: 5px;
  overflow: hidden;
  background: #FFF5D9 url("../images/icon-info.svg") 9px 9px no-repeat;
  display: inline-block;
}

@media (min-width: 64.0625em) {
  .block-message__inner {
    padding: 10px 20px 10px 35px;
    background-size: 18px 18px;
    background-position: 10px center;
  }
}

.block-message__text, .block-message__date {
  display: inline-block;
}

.block-message__text {
  font-weight: bold;
  margin-right: 15px;
}

.block-message__date {
  font-size: 0.8125rem;
}

.feature-image {
  display: inline-block;
  position: relative;
  /*&:before {
    left: 0;
    top: 0;
    width: 15px;
    height: 200px;
  }*/
}

.feature-image:after, .feature-image:before {
  content: "";
  background: #fff url("../images/bg-fi.svg") right bottom repeat;
  position: absolute;
}

.feature-image:after {
  left: 0;
  bottom: -2px;
  width: 251px;
  height: 35px;
}

.feature-image__inner:after, .feature-image__inner:before {
  content: "";
  background: #fff url("../images/bg-fi.svg") right top repeat;
  position: absolute;
}

.feature-image__inner:before {
  right: 0;
  top: 0;
  width: 150px;
  height: 35px;
}

.feature-image__inner:after {
  right: 0;
  top: 100%;
  width: 100%;
  height: 50px;
  background-position: right top;
}

.breadcrumb {
  opacity: .7;
}

.breadcrumb a {
  text-decoration: none;
  border: none;
  color: #003347;
}

.breadcrumb a:before {
  display: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 64.0625em) {
  .breadcrumb {
    font-size: 13px;
  }
}

.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
}

.breadcrumb__item:after {
  display: inline-block;
  content: "/";
  color: #003347;
  padding: 0;
}

.breadcrumb__item:last-child:after {
  display: none;
}

/*@media screen and (max-width: 600px) {
  .breadcrumb {
    padding-left: 6px;
  }
}*/
.search-box {
  position: relative;
  display: inline-block;
  min-width: 80px;
}

.search-box__label {
  position: absolute;
  right: 0;
  top: 5px;
  font-weight: bold;
  cursor: pointer;
}

.active .search-box__label {
  left: 0;
  right: auto;
}

.search-box__text {
  margin-left: 5px;
}

.search-box__input {
  width: 180px;
  max-width: 0;
  overflow: hidden;
}

@media (min-width: 64.125em) {
  .search-box__input {
    width: 230px;
  }
}

.active .search-box__input {
  max-width: 100%;
}

.search-box__input:focus {
  outline: none;
}

.search-box__input table,
.search-box__input tr,
.search-box__input tbody,
.search-box__input td {
  margin: 0;
  padding: 0;
  border: none;
}

.search-box__input input {
  box-sizing: border-box;
}

.search-box__input input, .search-box__input input.gsc-input {
  font-size: 16px;
  padding: 5px 10px 5px 25px !important;
  border-width: 0 0 2px 0 !important;
  border-color: transparent !important;
  border-style: solid !important;
  width: 100%;
}

.active .search-box__input input, .active .search-box__input input.gsc-input {
  border-color: #00A9CE !important;
}

.search-box__input input[type="submit"] {
  display: none !important;
}

.search-box__input form.gsc-search-box,
.search-box__input table.gsc-search-box {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  max-width: 100%;
  min-width: auto;
}

.search-box__input form.gsc-search-box tbody,
.search-box__input form.gsc-search-box tr,
.search-box__input form.gsc-search-box td,
.search-box__input table.gsc-search-box tbody,
.search-box__input table.gsc-search-box tr,
.search-box__input table.gsc-search-box td {
  margin: 0;
  padding: 0;
  border: none;
  max-width: 100%;
  width: auto;
  min-width: auto;
}

.search-box__input .gsc-search-button {
  position: absolute;
  left: 0;
  width: 30px !important;
  overflow: hidden;
  opacity: 0;
  bottom: 0;
  top: 0;
  cursor: pointer;
  z-index: 999999;
  padding: 0 !important;
  margin: 0 !important;
  min-width: auto !important;
}

.search-box__input input.gsc-input,
.search-box__input .gsc-input-box,
.search-box__input .gsc-input-box-hover,
.search-box__input .gsc-input-box-focus {
  box-shadow: none !important;
}

.search-box__text {
  pointer-events: none;
}

.active .search-box__text {
  display: none;
  pointer-events: auto;
}

.gsc-content td {
  border: none !important;
}

.gsc-content tr,
.gsc-content th {
  margin-bottom: 30px !important;
  border-bottom: 1px solid #a4a4a4 !important;
  padding-bottom: 15px !important;
}

.gsc-content .gsc-above-wrapper-area {
  border: none !important;
}

.gsc-content .gsc-webResult.gsc-result:hover,
.gsc-content .gsc-imageResult:hover {
  border: none !important;
}

.gsc-content .gsc-table-result,
.gsc-content .gsc-thumbnail-inside,
.gsc-content .gsc-url-top {
  padding: 0 !important;
}

.gsc-content .gsc-control-cse .gsc-table-result {
  margin: 0;
}

.gsc-content .gsc-webResult.gsc-result {
  padding: 20px 0 0;
}

.gsc-content .gsc-results .gsc-cursor-box .gsc-cursor-page {
  padding: 10px;
}

.gsc-content .gsc-results .gsc-cursor-box .gsc-cursor-current-page {
  color: #fff;
}

#SearchForm_getSearchResults_Search:focus {
  background: rgba(50, 115, 220, 0.1);
}

#SearchForm_getSearchResults_Search_Holder input.extensible-search {
  max-width: 320px;
  border-radius: 5px;
  min-height: 56px;
}

.ui-autocomplete.ui-front {
  z-index: 10000;
}

#Sections .checkboxset {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

#Sections .checkboxset li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
}

#Sections .checkboxset li > input {
  position: absolute;
  top: 0.9em;
  left: 0.5rem;
}

@media screen and (max-width: 64em) {
  #Sections .checkboxset li > input {
    top: 0.7em;
  }
}

#Sections .checkboxset li label {
  display: block;
  cursor: pointer;
  padding: 0.25rem 1rem 0.25rem 2rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#Sections .checkboxset li label:hover {
  border: 1px solid #ddd;
}

#Sections .checkboxset li input:checked + label {
  background: #e5eaec;
}

.searchHighlight {
  font-weight: bold;
}

.typeahead {
  border: 0;
  border-radius: 0;
  font-size: 1rem;
  color: #003347;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  border-bottom: 2px solid #00a9ce;
  padding: 0.1rem;
  padding-left: 1.3rem;
}

@media screen and (min-width: 1026px) and (max-width: 1200px) {
  .typeahead.tt-input {
    width: 130px;
  }
}

.typeahead::-webkit-input-placeholder {
  color: rgba(0, 51, 71, 0.75);
}

.typeahead:-ms-input-placeholder {
  color: rgba(0, 51, 71, 0.75);
}

.typeahead::placeholder {
  color: rgba(0, 51, 71, 0.75);
}

#quick-search {
  position: relative;
  top: 9px;
}

#quick-search .icon-magnifier:before {
  content: "\e901";
}

#quick-search .icon-magnifier {
  position: absolute;
  z-index: 1;
  bottom: 0.3rem;
  font-size: 1rem;
}

.tt-menu {
  background-color: #eef9fb;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px 0;
  border-radius: 2px;
}

.tt-suggestion {
  color: #003347;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  padding: 15px 23px;
  background-color: #eef9fb;
}

.tt-suggestion:hover {
  background-color: #3abbd7;
}

.tt-header,
.tt-footer {
  padding: 15px 23px 5px;
  color: #003347;
  font-size: 14px;
}

.tt-footer .btn, .tt-footer button, .tt-footer
input[type='submit'] {
  margin-right: 0;
  font-size: 14px;
  width: 100%;
  padding-right: 10%;
}

.tt-footer span {
  display: block;
  margin-right: 10px;
}

.tt-suggestion-title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.3em;
}

.tt-suggestion-desc {
  min-width: content-box;
  line-height: 1.2;
}

.tt-hint {
  color: rgba(0, 51, 71, 0.75);
}

.tt-cursor {
  background-color: #3abbd7;
}

.PageTotal {
  margin-top: 15px;
}

#SearchResults h2 {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.listen-block {
  opacity: .7;
  margin-left: 0;
  text-decoration: none;
  color: #003347;
}

.listen-block:hover {
  text-decoration: underline;
}

.listen-block__icon {
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 64.0625em) {
  .listen-block {
    font-size: 13px;
  }
}

.readspeaker-holder {
  position: relative;
}

#rsplayer {
  position: absolute;
  top: -2px;
  right: 32px;
  width: auto !important;
}

.readspeaker-hide {
  display: none;
}

.rsbtn .rsbtn_powered {
  display: none;
}

a.rs-help-link {
  background: #e5eaec;
  display: inline-block;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  padding: 0 .5em;
  margin-bottom: 5px;
  font-size: 80%;
  opacity: .7;
  font-weight: bold;
  margin-left: 5px;
}

a.rs-help-link:hover, a.rs-help-link:focus {
  opacity: 1;
  background: #003347;
  color: white;
}

.listen-block__icon {
  margin-right: 5px;
  margin-bottom: .15em;
}

@media screen and (max-width: 64.0625em) {
  a.rs-help-link {
    margin-bottom: 0;
  }
  .readspeaker-holder {
    float: none;
    padding: 5px 0;
  }
  #rsplayer {
    position: absolute;
    top: 8px;
    right: auto;
    left: -1px;
  }
}

blockquote:not([class]) {
  margin: 1.5rem .5rem;
  border-left: 2px solid #E5EAEC;
  padding-left: 20px;
}

@media screen and (max-width: 64.0625em) {
  blockquote:not([class]) {
    margin: 25px 0 25px 20px;
    padding-left: 15px;
  }
}

.blockquote {
  margin: 40px 0;
  padding: 30px 55px 35px 55px;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 64.0625em) {
  .blockquote {
    padding-right: 0;
  }
}

.blockquote:before {
  position: absolute;
  content: "";
  width: 150px;
  top: 0;
  left: 0;
  bottom: 0;
  background-image: url("../images/pattern-dot.svg");
  background-repeat: repeat;
  z-index: -1;
}

.blockquote__content {
  display: inline-block;
  background: #fff;
  padding: 20px;
  position: relative;
  z-index: 2;
  font-size: 15px;
  font-style: italic;
}

@media (min-width: 64.0625em) {
  .blockquote__content {
    font-size: 20px;
  }
}

.blockquote__content:before, .blockquote__content:after {
  display: none;
}

.block-social {
  margin-top: 20px;
  margin-bottom: 20px;
}

.block-social .menu__item {
  display: inline-block;
}

.block-social .menu__item a {
  font-size: 0;
  text-decoration: none;
  padding: 5px;
}

.block-social .menu__item a:before, .block-social .menu__item a:after {
  font-size: 18px;
}

.block-social .menu__item a:hover {
  opacity: .7;
}

.wizard {
  margin: 10px 0;
  font-size: 16px;
}

@media (min-width: 64.0625em) {
  .wizard {
    margin: 20px 0;
  }
}

.wizard__header {
  margin-bottom: 1em;
  position: relative;
  padding-left: 22px;
}

.wizard__link {
  border-bottom: 2px solid #00A9CE;
  text-decoration: none;
  line-height: 24px;
  padding-bottom: 2px;
  position: relative;
  margin-right: 30px;
}

.wizard__link:hover {
  text-decoration: none;
  border-bottom-color: #003347;
}

.wizard__icon {
  color: #00A9CE;
  position: absolute;
  top: 7px;
  left: 3px;
  font-size: 14px;
}

.wizard__content {
  padding: 1rem 2rem;
  display: none;
}

.wizard__highlight {
  background: white;
  padding: 1rem 2rem 1rem;
  margin: 40px 0;
  border-left: solid 10px #D73C4E;
  /*a {
      color: $white;
    }*/
}

.wizard__white {
  background: white;
  padding: 1rem 2rem 1rem;
  margin: 40px 0;
  border-left: solid 10px #65C7BE;
}

.label-question {
  margin-bottom: 20px;
  font-weight: bold;
}

@media (min-width: 64.0625em) {
  .label-question {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

/*p.page-description {
  line-height: 1.5;
  @include susy-media(tablet) {
    font-size: 1.2rem;
  }
  margin-bottom: 63px;
}*/
.WizardQuestionPage .page-title, .WizardResponsePage .page-title {
  font-size: 2.3rem;
}

.WizardQuestionPage .main .btn, .WizardQuestionPage .main button, .WizardQuestionPage .main
input[type='submit'], .WizardResponsePage .main .btn, .WizardResponsePage .main button, .WizardResponsePage .main
input[type='submit'] {
  margin: 1em 0 0;
}

@media (min-width: 64.0625em) {
  .block-intro {
    max-width: 49%;
    margin-top: 78px;
  }
}

.block-intro__content {
  margin-bottom: 42px;
  line-height: 1.3;
  font-size: 1.1rem;
  font-weight: 600;
}

@media (min-width: 64.0625em) {
  .block-intro__content {
    line-height: 1.4;
    font-size: 1.5625rem;
    margin-bottom: 85px;
  }
  .block-intro__title + .block-intro__content {
    margin-bottom: 15px;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .block-intro__content {
    margin-bottom: 75px;
  }
}

.block-intro__title {
  font-size: 40px;
  display: inline;
  margin-right: 20px;
}

@media (min-width: 64.0625em) {
  .block-intro__title {
    font-size: 48px;
  }
}

.block-intro__title + .block-intro__content {
  font-weight: 600;
}

@media (min-width: 64.0625em) {
  .block-intro__title + .block-intro__content {
    margin-bottom: 50px;
  }
}

.block-update {
  margin-bottom: 25px;
}

@media (min-width: 64.0625em) {
  .block-update {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 64.0625em) {
  .block-update {
    width: 245px;
    padding-left: 28px;
    background-image: url(../images/card-bg-beige.svg);
    background-size: auto;
    background-position: top left;
    background-repeat: repeat-y;
    margin-right: 20px;
    float: left;
  }
  .block-update:last-child {
    margin-right: 0;
  }
  .block-update__list {
    width: 100%;
    overflow: auto;
    margin-top: 20px;
    margin-bottom: 15px;
  }
}

.block-update__title {
  font-size: 14px;
  margin-bottom: 5px;
}

.block-update__title a[href]:hover, .block-update__title a[href]:focus {
  /*border-bottom: 2px solid $primary-color;
        padding-bottom: 2px;*/
  text-decoration: underline;
  -webkit-text-decoration-color: #00A9CE;
          text-decoration-color: #00A9CE;
}

@media (min-width: 64.0625em) {
  .block-update__title {
    font-size: 16px;
  }
}

.updates-block {
  margin-top: 60px;
  margin-bottom: 90px;
}

.updates-slider {
  margin-right: -1.25rem;
}

.updates-slider:not(.slick-initialized) .updates-slider__card:not(:first-of-type) {
  display: none;
}

@media (min-width: 53.75em) {
  .updates-slider {
    margin-right: -50px;
  }
}

@media (min-width: 64.0625em) {
  .updates-slider {
    margin-right: -70px;
    position: relative;
  }
  .updates-slider:before, .updates-slider:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 150px;
    top: 0;
    height: 100%;
    pointer-events: none;
  }
  .updates-slider:after {
    right: 0;
    background: linear-gradient(to left, white 20px, transparent);
  }
}

.updates-slider__card {
  width: 85vw;
  height: 100%;
}

@media (min-width: 64.0625em) {
  .updates-slider__card {
    width: 70vw;
  }
}

.updates-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.updates-header__btn {
  border: none;
  box-shadow: none;
  margin: 1px;
  min-width: 0;
  line-height: 0;
  font-size: 0.875rem;
  padding: 10px;
  position: relative;
}

.updates-header__btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 64em) {
  .updates-header__btn-container {
    display: none;
  }
}

.updates-header__btn:after {
  content: none;
}

.updates-header__btn:before {
  display: inline-block;
  content: url("../images/icon-arrow.svg");
}

.updates-header__btn--prev {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.updates-header .slick-disabled:before {
  content: url("../images/icon-arrow-grey.svg");
}

.slick-track {
  margin-top: 1.5rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.slick-slide {
  height: auto;
}

.feature-banner {
  position: relative;
  /*@include susy-media(tablet) {

    .main-region {
      position: relative;
      z-index: 9;

      @media (min-width: 1420px) {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
      }
    }

    .sidebar {
      @media (max-width: 1419px) {
        position: absolute;
        right: 0;
        top: 0;
      }
    }
  }*/
}

.feature-banner .sidebar.col--md-5 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .feature-banner .block-intro {
    margin-top: 0;
    max-width: 60%;
  }
}

.feature-banner .feature-image {
  /*@include susy-media(tablet) {
      right: -70px;
    }*/
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .feature-banner .feature-image__inner:after {
    width: auto;
    left: 100px;
    height: 68px;
  }
}

.feature-banner .btn, .feature-banner button, .feature-banner
input[type='submit'] {
  min-width: 305px;
}

@media screen and (max-width: 64.0625em) {
  .feature-banner .btn, .feature-banner button, .feature-banner
  input[type='submit'] {
    display: block;
    min-width: auto;
    margin-right: 0;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .feature-banner .btn, .feature-banner button, .feature-banner
  input[type='submit'] {
    min-width: auto;
    padding-right: 40px;
    margin-right: 10px;
  }
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .feature-banner .btn, .feature-banner button, .feature-banner
  input[type='submit'] {
    padding-right: 70px;
    min-width: 250px;
  }
}

.feature-banner .block-message {
  margin-top: 38px;
}

@media screen and (max-width: 64.0625em) {
  .feature-banner {
    padding-bottom: 34px;
    z-index: 1;
  }
  .feature-banner:after {
    content: "";
    background-image: url("../images/pattern-dot.svg");
    background-position: center;
    position: absolute;
    left: -15px;
    right: -15px;
    height: 84px;
    bottom: 20px;
    z-index: -1;
    display: block;
  }
}

.block-callout {
  font-weight: 600;
  padding-left: 0;
  margin: 1.5rem 0;
}

.block-callout__title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: .3em 0 1.2em;
}

.block-callout p:first-child, .block-callout blockquote:first-child, .block-callout label:first-child, .block-callout ol:first-child, .block-callout ul:first-child, .block-callout li:first-child {
  margin-top: 0;
}

.block-callout p:last-child, .block-callout blockquote:last-child, .block-callout label:last-child, .block-callout ol:last-child, .block-callout ul:last-child, .block-callout li:last-child {
  margin-bottom: 0;
}

.tag__item {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  border-radius: 8px;
  background-color: #FFF5D9;
  padding: 7px 9px;
  margin-bottom: 8px;
  margin-right: 5px;
  text-decoration: none;
}

.tag__item:hover {
  background-color: #ffe18d;
  text-decoration: none;
}

.tag__item.selected, .tag__item.active, .tag__item.filter-active, .tag__item:active {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0 1px 3px 0;
}

.tag__item.selected:hover, .tag__item.active:hover, .tag__item.filter-active:hover, .tag__item:active:hover {
  background-color: #d9d9d9;
}

.tag__item.filter-active {
  position: relative;
  padding-right: 30px;
}

.tag__item.filter-active::before, .tag__item.filter-active::after {
  content: '';
  position: absolute;
  top: 14px;
  width: 2px;
  height: 10px;
  background: #003347;
  right: 15px;
}

.tag__item.filter-active::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.tag__item.filter-active::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.tag__item--popular {
  background-color: #FFD768;
}

.tag__item--popular:hover {
  background-color: #ffc31c;
}

.tag__item:hover.no-hover {
  background-color: #FFF5D9;
}

.directory-card {
  background-image: url("../images/card-bg-beige.svg");
  border-radius: 0.3125rem;
  display: block;
  padding: 1.5625rem 2.1875rem;
  padding-left: 1.75rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px 0;
  transition: background 0.3s;
  background-size: auto;
  background-position: top left;
  background-repeat: repeat-y;
  margin-bottom: 15px;
}

.directory-card .link {
  background-position: bottom 4px right;
  background-repeat: no-repeat;
  padding-right: 15px;
  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2212%22%3E %3Cpath fill=%22%23fff%22 stroke=%22%2336c%22 d=%22M1.5 4.518h5.982V10.5H1.5z%22/%3E %3Cpath fill=%22%2336c%22 d=%22M5.765 1H11v5.39L9.427 7.937l-1.31-1.31L5.393 9.35l-2.69-2.688 2.81-2.808L4.2 2.544z%22/%3E %3Cpath fill=%22%23fff%22 d=%22M9.995 2.004l.022 4.885L8.2 5.07 5.32 7.95 4.09 6.723l2.882-2.88-1.85-1.852z%22/%3E %3C/svg%3E");
}

.directory-card ol,
.directory-card ul {
  font-family: "Times New Roman", serif;
  font-size: 1rem;
}

.directory-card--teal {
  background-image: url("../images/card-bg-green.svg");
}

@media (min-width: 64.0625em) {
  .directory-card {
    margin-bottom: 30px;
    font-size: 1rem;
  }
  .directory-card p {
    margin-top: 0;
    font-size: 1rem;
  }
  .directory-card li {
    font-size: 1rem;
  }
}

.directory-card__title {
  font-weight: bold;
  margin: 0;
}

@media (min-width: 64.0625em) {
  .directory-card__title {
    font-size: 1rem;
  }
}

.directory-card__item {
  margin-bottom: 10px;
}

@media (min-width: 64.0625em) {
  .directory-card__item {
    margin-bottom: 16px;
    line-height: 1.4;
  }
  .directory-card__item:nth-child(3) {
    clear: both;
  }
}

.directory-card__label {
  margin-bottom: 6px;
  font-weight: bold;
}

.directory-card__tags {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.25;
}

.directory-card__tags span:not(:last-child)::after {
  content: ", ";
}

.ResourcesPage .directory-card__tags {
  margin-top: 1rem;
}

.directory-card__date {
  display: block;
  text-align: right;
}

.directory-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: 0.8125rem;
}

.directory__wrapper {
  margin-top: 40px;
}

@media (min-width: 64.0625em) {
  .directory__wrapper {
    margin-top: 63px;
  }
}

.directory__results {
  font-size: 1rem;
}

.results-show-all {
  border-bottom: 1.5px solid #00a9ce;
  line-height: 1.4;
}

.reset-filters {
  border: 1px solid #003347;
  padding: 0.5rem;
  border-radius: 10px;
  background-image: none;
  margin-top: 1.5rem;
}

.reset-filters:after {
  display: none;
}

.reset-filters:hover {
  background-color: #003347;
  color: white !important;
}

.block-feedback {
  padding: 30px 20px;
  border-radius: 4px;
  margin-top: 60px;
}

@media (min-width: 64.0625em) {
  .block-feedback {
    margin-top: 104px;
  }
}

.block-feedback__label {
  margin-bottom: 26px;
  font-size: 1.3rem;
  border-left: none !important;
  padding-left: unset !important;
  margin-left: unset !important;
  letter-spacing: unset !important;
}

.block-feedback__response {
  display: none;
  max-width: 400px;
  margin: 0 auto;
}

.block-feedback button:after, .block-feedback button:before,
.block-feedback .button:after,
.block-feedback .button:before {
  display: none;
}

.block-feedback button span,
.block-feedback .button span {
  display: inline-block;
  margin-left: 15px;
}

.block-feedback button:last-child,
.block-feedback .button:last-child {
  margin-right: 0;
}

.block-feedback button:first-child.selected,
.block-feedback .button:first-child.selected {
  background-color: #65C7BE;
}

.block-feedback button:last-child.selected,
.block-feedback .button:last-child.selected {
  background-color: #D73C4E;
  color: white !important;
}

.back-link {
  font-size: 14px;
  margin-bottom: 5px;
}

.back-link__link {
  text-decoration: none;
}

.back-link__link:hover {
  text-decoration: underline;
}

.back-link__icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  display: inline-block;
}

.rss-block__link {
  color: #003347 !important;
  display: inline-block;
  margin-bottom: 15px;
  text-decoration: none;
}

.rss-block__link:hover {
  text-decoration: underline;
}

.rss-block__link span {
  margin-left: 8px;
  display: inline-block;
}

.language-block {
  max-width: 280px;
}

.language-block .block__title {
  margin-bottom: 5px;
}

.language__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.language__list li {
  display: inline-block;
}

.language__list li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-right: 5px;
}

.language__list li a:hover {
  text-decoration: underline;
}

#tocHolder {
  display: block;
}

#tocHolder h2 {
  display: inline;
}

#tocHolder button.toc-toggle {
  margin-left: -1.3em;
  width: 1.3em;
  padding: .3em .5em;
  margin-top: .1em;
  vertical-align: top;
}

#tocHolder .tri {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #003347;
  transition: .2s transform;
  opacity: .7;
}

#tocHolder .expanded .tri {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

#toc {
  padding-right: 1em;
  overflow-y: auto;
  font-size: .95em;
  list-style-type: none;
  margin: 0;
}

#toc li.inView > a {
  font-weight: bold;
}

#toc a {
  display: inline-block;
}

#toc a:hover, #toc a:focus {
  text-decoration: underline;
}

#toc a.clickDestination {
  text-decoration: underline;
}

#toc li {
  padding: .1em 0;
  line-height: 1.3;
}

#toc li ul {
  list-style-type: none;
  display: none;
  margin: 0;
  padding: 0 1em;
  font-size: .9em;
}

#toc li ul li {
  padding: .1em 0;
  line-height: 1.2;
}

#toc li[data-has-child='1'] {
  margin-left: 0;
}

#toc::-webkit-scrollbar-track {
  background-color: #edf8f7;
  border-radius: 6px;
}

#toc::-webkit-scrollbar {
  width: 6px;
  background-color: #edf8f7;
  border-radius: 6px;
}

#toc::-webkit-scrollbar-thumb {
  background-color: #e5eaec;
  border: 1px solid #d8dee0;
  border-radius: 6px;
}

.hasToggles #toc {
  padding-left: 1.5em;
}

.back-to-top {
  display: inline-block;
  font-size: .9em;
  padding-top: .5em;
}

.back-to-top::after {
  font-family: 'icomoon' !important;
  speak: none;
  line-height: 1;
  content: "\e906";
  display: inline-block;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-left: .3em;
  font-size: .95em;
}

#showMobileTOC {
  display: none;
}

@media screen and (max-width: 64.0625em) {
  #showMobileTOC {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    padding: 1em 0;
    z-index: 997;
  }
  #tocHolder {
    display: none;
  }
  .showMobileTOC {
    overflow: hidden;
  }
  .showMobileTOC #tocHolder {
    display: block;
  }
  .showMobileTOC #showMobileTOC {
    z-index: 9999;
  }
  .showMobileTOC #toc {
    max-height: none !important;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 9998;
    display: block !important;
    padding-top: 50px;
    padding: 60px 30px;
  }
  .showMobileTOC #toc::before {
    content: 'Contents';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 1rem;
  }
}

[data-accordion-group] button {
  background-color: transparent;
  position: relative;
  all: inherit;
  cursor: pointer;
}

[data-accordion-group] button::before {
  /* width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 5px 0 5px;
      border-color: $primary-color transparent transparent transparent;
      transition: .2s transform;
      content:'';
      float: right;
      margin-top: 10px;
      margin-left: 5px;*/
  content: '− ';
  font-weight: bold;
}

[data-accordion-group] button[aria-expanded="false"]::before {
  content: '+ ';
}

.wysiwyg-content [data-accordion-group] {
  margin: 0;
  padding: .3rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.wysiwyg-content h2[data-accordion-group] {
  border-left: none;
}

[data-expanded="false"] {
  display: none;
}

.wysiwyg-content [data-expanded] *:first-child {
  margin-top: 0;
  padding-top: .3rem;
}

.wysiwyg-content [data-expanded] *:last-child {
  margin-bottom: 0;
  padding-bottom: .3rem;
}

abbr {
  line-height: 1.1;
  display: inline-block;
}

abbr:focus, abbr:hover {
  position: relative;
  border-bottom-style: solid;
  background: #edf8f7;
}

abbr:focus::before, abbr:hover::before {
  content: '';
  position: absolute;
  left: calc(50% - 10px);
  bottom: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #003347 transparent;
}

abbr:focus + aside, abbr:hover + aside {
  display: block;
}

aside.tooltip {
  position: absolute;
  background: #003347;
  color: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  display: none;
  font-size: 1rem;
  line-height: 1.2;
  padding: 1rem;
  border-radius: 0.3125rem;
}

.pagination {
  font-weight: 500;
  font-size: .9rem;
}

.pagination a,
.pagination span {
  padding: .4em .8em .6em;
  border-radius: 0.3125rem;
}

.pagination a:hover,
.pagination a:focus,
.pagination span {
  background-color: #00A9CE;
  color: white;
}

.youtube-player {
  position: relative;
  padding-bottom: 56.23%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 1.5em 0;
}

.youtube-player .load-status {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  display: block;
  margin: 2em;
}

.youtube-player .load-status a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.youtube-player .load-status a:hover, .youtube-player .load-status a:focus {
  color: white;
  text-decoration: underline;
  -webkit-text-decoration-color: white;
          text-decoration-color: white;
}

.youtube-player .youtube-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  background: black;
  padding: 1em;
  display: inline-block;
}

.youtube-player .youtube-link:hover, .youtube-player .youtube-link:focus {
  color: white;
  text-decoration: underline;
  -webkit-text-decoration-color: white;
          text-decoration-color: white;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
  z-index: 1;
  margin-top: 0;
}

.youtube-player .play-btn {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  position: static;
}

.youtube-player .play-btn img {
  display: block;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  z-index: 2;
}

.youtube-player .play-btn:hover .play-icon, .youtube-player .play-btn:focus .play-icon {
  box-shadow: 0px 2px 12px 5px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0.9);
}

.youtube-player .play-btn .play-icon {
  height: 100px;
  width: 100px;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  position: absolute;
  border: solid 4px white;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: .4s all;
  z-index: 3;
  box-sizing: initial;
}

.youtube-player .play-btn .play-icon::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 45px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 26px;
  left: 32px;
  content: '';
}

@viewport {
  zoom: 1;
  width: extend-to-zoom;
}

@-ms-viewport {
  width: extend-to-zoom;
  zoom: 1;
}

html {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #003347;
  font-size: 16px;
  font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.5;
}

body {
  -webkit-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /*@include susy-media(mobileTabletOnly) {
    font-size: 14px;
  }*/
}

.main {
  padding-top: 20px;
  padding-bottom: 50px;
}

@media (min-width: 64.0625em) {
  .main {
    padding-bottom: 110px;
    padding-top: 63px;
  }
}

.home-page .main,
.landing-page .main {
  padding-top: 0;
}

.page-title {
  display: block;
  margin-right: 20px;
}

@media (min-width: 64.0625em) {
  .page-title {
    display: inline-block;
  }
}

@media screen and (max-width: 64.0625em) {
  .ResourcesLandingPage .gutters-1, .DirectoryPage .gutters-1 {
    padding-left: 0;
  }
}

@media (min-width: 64.0625em) {
  #content-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
  }
}

.figure__video {
  margin-top: 1em;
}

html {
  overflow-x: hidden !important;
}

html.is-active,
html.is-active body {
  position: fixed;
  overflow: hidden;
  max-height: 100vh;
  overscroll-behavior-y: none;
}

html.is-active body {
  position: relative;
}

html.is-active body:before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.6);
}

.nav ul {
  margin-bottom: 0.625rem;
}

.menu {
  font-size: 1rem;
}

.menu__toggle {
  border-radius: 0;
  min-width: 0;
  box-shadow: none;
  transition: none;
  padding: 0 20px 0 5px;
  margin: 0 2px 0 0;
  display: none;
  cursor: pointer;
  pointer-events: none;
}

@media (min-width: 64.125em) {
  .menu__toggle {
    display: inline-block;
  }
}

.key-active .menu__toggle, .menu__toggle:focus,
li:hover > .menu__toggle,
a:hover ~ .menu__toggle {
  background-color: #E5EAEC;
}

.menu__toggle:after {
  display: none;
}

.show-for-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
}

.main-menu {
  background-color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 999;
}

@media screen and (max-width: 64.0625em) {
  .main-menu {
    background-color: #fff;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    display: none;
  }
  html.is-active .main-menu {
    display: block;
  }
  .main-menu__wrapper {
    background: #fff;
    padding: 17px 0;
  }
}

.main-menu__button {
  font-weight: normal;
  padding: 14px 18px !important;
  font-size: 13px;
}

.main-menu .icon-back {
  margin-right: 10px;
}

.main-menu ul,
.main-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

.main-menu a {
  display: block;
  padding: 5px 20px;
  text-decoration: none;
  transition: none;
}

@media screen and (max-width: 64.0625em) {
  .main-menu a {
    font-size: 14px;
  }
}

.main-menu a:hover {
  text-decoration: underline;
}

.main-menu a[href=""] {
  font-weight: 400;
  cursor: default;
  pointer-events: none;
  margin-bottom: 15px;
}

.main-menu a[href=""]:hover {
  text-decoration: none;
}

.main-menu > .menu {
  padding: 0 0 20px;
}

@media (min-width: 64.0625em) {
  .main-menu > .menu {
    padding: 0 50px;
  }
}

.main-menu > .menu > li {
  display: block;
}

@media screen and (max-width: 64.0625em) {
  .main-menu > .menu > li a.link-clone {
    padding-bottom: 0.95rem;
  }
}

@media (min-width: 64.0625em) {
  .main-menu > .menu > li {
    display: inline-block;
    vertical-align: middle;
    margin-right: -4px;
  }
}

.main-menu > .menu > li > a {
  padding: 13px 20px;
}

.main-menu > .menu > li > a:hover {
  text-decoration: none;
}

@media (min-width: 64.0625em) {
  .main-menu > .menu > li > a {
    padding: 30px 0 30px 20px;
  }
}

.main-menu > .menu > li.is-active > .item--clone,
.main-menu > .menu > li.is-active > .sub-menu--1 {
  left: 0;
}

@media (min-width: 64.0625em) {
  .main-menu > .menu > li:hover > a, .main-menu > .menu > li.key-active > a {
    background-color: #E5EAEC;
  }
  .main-menu > .menu > li:hover > .sub-menu--1, .main-menu > .menu > li.key-active > .sub-menu--1 {
    visibility: visible;
    transition-delay: 0.2s;
  }
}

@media (min-width: 64.0625em) {
  .main-menu > .menu .sub-menu--1.is-full-width {
    padding-top: 35px;
    padding-bottom: 50px;
    display: block;
  }
}

.main-menu > .menu > .has-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

@media (min-width: 64.125em) {
  .main-menu > .menu > .has-sub {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.main-menu > .menu > .has-sub > a {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /*> .icon-sub {
          position: relative;
          right: auto;
          top: 2px;
          padding: 0;
          margin: 0;
          background: none;
          box-shadow: none;
          pointer-events: none;
          min-width: auto;
          border-radius: 0;
          width: 16px;
          overflow: hidden;
          display: none;

          &:after {
            display: none;
          }

          &:hover {
            text-decoration: none;
          }

          &.active {
            background: #003347;
            color: white;
          }

          @include susy-media(mobileTabletOnly) {
            position: absolute;
            top: 15px;
            right: 20px;
            transform: rotateZ(-90deg);
            display: block;
          }
        }*/
}

.main-menu > .menu > .has-sub > a:before, .main-menu > .menu > .has-sub > a:after {
  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;
}

.main-menu > .menu > .has-sub > a:focus {
  background-color: #E5EAEC;
}

@media screen and (max-width: 64.0625em) {
  .main-menu > .menu > .has-sub > a::after {
    content: '\e90d';
    float: right;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media screen and (max-width: 64.0625em) {
  .main-menu .item--clone {
    width: 100vw;
    padding: 0;
    position: fixed;
    left: 110vw;
    top: 0;
    z-index: 1002;
    transition: all .3s;
    display: block;
    max-height: 100vh;
    overflow: auto;
    background: #fff;
  }
}

.main-menu .item--clone .icon-sub {
  display: none !important;
}

.main-menu .sub-menu--1 {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  padding: 0 50px;
  background-color: rgba(88, 193, 183, 0.05);
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px 0;
  display: none;
  z-index: 1;
}

@media (min-width: 64.0625em) {
  .main-menu .sub-menu--1 {
    border-top: 8px solid #58C1B7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    transition: all 0s;
  }
}

@media screen and (max-width: 64.0625em) {
  .main-menu .sub-menu--1 {
    width: 100vw;
    font-size: 14px;
    position: fixed;
    left: 110vw;
    top: 90px;
    z-index: 1001;
    transition: all .3s;
    display: block;
    max-height: calc(100vh - 200px);
    overflow-y: scroll;
    /* has to be scroll, not auto */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0 0 20px;
  }
  .main-menu .sub-menu--1 > .menu__item:not(.has-sub):first-child {
    border-top: 5px solid #58C1B7;
  }
}

.main-menu .sub-menu--1:before {
  content: "";
  background: #fff;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}

.main-menu .sub-menu--1 > .has-sub {
  vertical-align: top;
  border-top: 5px solid transparent;
  padding-top: 3px;
  padding-bottom: 14px;
}

@media (min-width: 64.0625em) {
  .main-menu .sub-menu--1 > .has-sub {
    padding-bottom: 50px;
    padding-top: 20px;
    min-width: 330px;
    margin-top: -8px;
    border-top: 8px solid transparent;
  }
}

@media screen and (max-width: 64.0625em) {
  .main-menu .sub-menu--1 > .has-sub a {
    padding: 14px 20px;
  }
  .main-menu .sub-menu--1 > .has-sub a[href=""] {
    margin-bottom: 6px;
    padding: 8px 20px;
  }
}

.main-menu .sub-menu--1 > .has-sub:nth-child(1) {
  border-color: #FFD768;
  background-color: #FFFCF4;
  position: relative;
}

@media (min-width: 64.0625em) {
  .main-menu .sub-menu--1 > .has-sub:nth-child(1):after {
    content: "";
    border-top: 8px solid #FFD768;
    background-color: #FFFCF4;
    position: absolute;
    pointer-events: none;
    left: -999px;
    top: -8px;
    bottom: 0;
    right: 100%;
    z-index: 0;
  }
}

.main-menu .sub-menu--1 > .has-sub:nth-child(2) {
  border-color: #00A9CE;
  background-color: #F6FCFD;
}

.main-menu .sub-menu--1 > .has-sub:nth-child(3) {
  border-color: #C1B2B6;
  background-color: #F6F4F4;
}

.main-menu .sub-menu--1 > .has-sub:nth-child(4) {
  border-color: #003347;
  background-color: #003347;
  color: #fff;
  position: relative;
}

@media (min-width: 64.0625em) {
  .main-menu .sub-menu--1 > .has-sub:nth-child(4):after {
    content: "";
    border-top: 8px solid #003347;
    background-color: #003347;
    position: absolute;
    pointer-events: none;
    right: -999px;
    top: -8px;
    bottom: 0;
    left: 100%;
    z-index: 0;
  }
}

.main-menu .sub-menu--1 > .has-sub:nth-child(4) a {
  color: #fff;
}

.navigation {
  position: relative;
}

.navigation .block-search {
  position: absolute;
  right: 13px;
  z-index: 999;
  margin-top: 0;
  top: 20px;
}

@media (min-width: 64.0625em) {
  .navigation .block-search {
    right: 35px;
  }
}

@media screen and (max-width: 64.0625em) {
  .navigation .block-search {
    right: 35px;
    top: 7px;
  }
}

.button-close {
  text-decoration: none;
}

.button-close span {
  margin-right: 5px;
}

.button-open {
  padding: 0 0 0 21px !important;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.button-open .main-menu__bar {
  width: 30px;
  height: 2px;
  background-color: #00A9CE;
  margin: 6px 0;
}

.menu__label {
  display: block;
  padding: 5px 20px;
  font-weight: 400;
  margin-bottom: 0.625rem;
  font-size: 1rem;
}

@media screen and (max-width: 64.0625em) {
  .menu__label {
    margin-bottom: 6px;
    padding: 8px 20px;
  }
}

.menu__toggle.icon-sub:before {
  font-size: 10px;
  line-height: 1.25rem;
}

.menu > li > a {
  font-weight: bold;
}

@media (min-width: 1025px) and (max-width: 1170px) {
  .main-menu > .menu > li > a {
    padding-left: 9px;
  }
  .menu__toggle {
    padding-right: 9px;
  }
}

.header__row {
  background-color: #E5EAEC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__row:before, .header__row:after {
  content: '';
  display: table;
}

.header__row:after {
  clear: both;
}

.header ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header ul.menu li {
  display: inline-block;
  margin: 0 1.5em 0 0;
}

.header ul.menu a {
  font-size: 0.875rem;
  font-weight: bold;
}

.header ul.menu a:hover, .header ul.menu a:focus {
  text-decoration: underline;
}

.header .menu-holder {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
}

@media (min-width: 64.0625em) {
  .header .menu-holder {
    display: block;
  }
}

.header .logo-combined {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.header .logo-combined img, .header .logo-combined a {
  display: block;
  width: 100%;
  max-width: 548px;
}

.alert-banner {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  background: #FFD768;
  line-height: 1.25;
}

.alert-banner p,
.alert-banner h3 {
  margin: 0;
  font-size: 0.875rem;
}

@media screen and (min-width: 48rem) {
  .alert-banner p,
  .alert-banner h3 {
    font-size: 1rem;
  }
}

.alert-banner h3 {
  margin-bottom: 0.25rem;
}

.alert-banner a {
  text-decoration: underline;
}

.alert-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.alert-banner__icon {
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 20px;
  background-image: url("../images/icon-warn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer {
  font-size: 0.8125rem;
  padding-top: 30px;
  line-height: 2rem;
  position: relative;
  z-index: 1;
  word-wrap: break-word;
}

@media (min-width: 64.0625em) {
  .footer {
    padding: 5.9375rem 0rem;
    font-size: 1rem;
    line-height: 1.375rem;
  }
}

@media screen and (max-width: 64.0625em) {
  .footer .block {
    margin-bottom: 45px;
  }
}

.footer h3 {
  font-size: 1.25rem;
  margin-bottom: 1em;
}

.footer p,
.footer li {
  font-size: 1rem;
}

.footer p {
  margin-bottom: 0;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul li {
  list-style: none;
}

.footer li {
  margin-bottom: 6px;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .footer-compact p {
  line-height: 1.375;
  margin: 1em 0;
}

@media screen and (max-width: 64.0625em) {
  .footer .dotted-bg {
    background-image: url(../images/pattern-dot.svg);
    background-position: left top;
    padding: 50px 30px;
    margin-top: 30px;
  }
  .footer .dotted-bg .block--inline {
    display: block;
    padding: 20px 10px;
  }
}

@media (min-width: 64.0625em) {
  .footer .dotted-bg:before {
    content: "";
    z-index: -1;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 66.67%;
    background-image: url(../images/pattern-dot.svg);
    background-position: left top;
  }
}

.footer .block-social {
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 0;
}

.footer .block-accessbility {
  margin-top: 20px;
}

.footer .language-block {
  margin-top: 20px;
}

.footer .bg--blue {
  padding: 40px 20px;
}

@media screen and (max-width: 64em) {
  .footer .col-6:nth-child(2n) {
    margin-right: 0;
  }
  .footer .col-6:nth-child(2n + 1) {
    clear: both;
  }
  .footer .col-12 {
    clear: both;
  }
}

.wysiwyg-content {
  /* Charts and long text description styles */
  /* ----- */
}

.wysiwyg-content h2 {
  letter-spacing: -1px;
}

@media (min-width: 64.0625em) {
  .wysiwyg-content h2 {
    border-left: solid 10px #edf8f7;
    padding-left: 15px;
    margin-left: -30px;
  }
}

.wysiwyg-content h4, .wysiwyg-content h5, .wysiwyg-content h6 {
  color: #79858e;
}

.wysiwyg-content a {
  color: #0059a9;
  text-decoration: underline;
  -webkit-text-decoration-color: #c9cfd5;
          text-decoration-color: #c9cfd5;
}

.wysiwyg-content a:hover, .wysiwyg-content a:focus {
  color: #003347;
  -webkit-text-decoration-color: #003347;
          text-decoration-color: #003347;
}

.wysiwyg-content a[id^="_ftn"], .wysiwyg-content a[id^="ftn"] {
  position: relative;
  top: -0.5em;
  font-size: 80%;
  font-weight: bold;
  text-decoration: none;
}

.wysiwyg-content table h2 {
  border-left: none;
  padding-left: 0;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.wysiwyg-content table h3 {
  font-size: 1.3rem;
  margin: 1em 0 .7em;
}

.wysiwyg-content .ndb-summary-grid div {
  width: 140px;
  height: 140px;
  float: left;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
}

.wysiwyg-content .ndb-summary-grid div span {
  display: block;
  font-size: 1.6em !important;
  margin-bottom: .2em;
}

.wysiwyg-content .ndb-summary-grid div p {
  font-weight: bold;
  margin: 0 5px;
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
  font-size: 95%;
}

.wysiwyg-content .ndb-summary-grid div:nth-child(1) {
  background: #ffd768;
}

.wysiwyg-content .ndb-summary-grid div:nth-child(2) {
  background: #C1B2B6;
}

.wysiwyg-content .ndb-summary-grid div:nth-child(3) {
  background: #D73D4E;
}

.wysiwyg-content .ndb-summary-grid div:nth-child(4) {
  background: #58c1b7;
}

.wysiwyg-content .gov-figure-box {
  border: solid 2px #f4f4f4;
  padding: 1em;
  display: block;
  margin: 1em 0;
}

.wysiwyg-content .gov-figure-box > *:last-child {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.wysiwyg-content .gov-figure-box .small-text p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.wysiwyg-content .gov-figure-box p:first-child {
  line-height: 1.2;
  margin-top: 0;
}

.wysiwyg-content div.small-text p {
  font-size: 90%;
}

.wysiwyg-content .gov-longdesc-link {
  text-align: right;
  font-size: 0.938em !important;
}

.wysiwyg-content .th-style {
  background-color: #f4f4f4;
  border-bottom: solid 2px #ccc;
  border-top: solid 2px #ccc;
}

.wysiwyg-content kbd {
  background-color: #eee;
  border: solid 1px #bbb;
  border-radius: 3px;
  padding: .1em .3em;
  margin: 0 .3em;
  font-weight: bold;
  font-family: sans-serif;
}

.wysiwyg-content .callout {
  background-color: rgba(88, 193, 183, 0.11);
  padding: 15px;
  min-height: 60px;
  margin: 1.5em 0;
}

.wysiwyg-content .iconFloat {
  float: left;
  width: 60px;
}

.wysiwyg-content .iconTextFloat {
  margin: 0 0 10px 70px;
}

.wysiwyg-content .iconTextFloat p {
  margin-top: .5em;
  line-height: 1.4;
}

.wysiwyg-content a.open-new-win {
  background-position: bottom 4px right;
  background-repeat: no-repeat;
  padding-right: 15px;
  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2212%22%3E %3Cpath fill=%22%23fff%22 stroke=%22%2336c%22 d=%22M1.5 4.518h5.982V10.5H1.5z%22/%3E %3Cpath fill=%22%2336c%22 d=%22M5.765 1H11v5.39L9.427 7.937l-1.31-1.31L5.393 9.35l-2.69-2.688 2.81-2.808L4.2 2.544z%22/%3E %3Cpath fill=%22%23fff%22 d=%22M9.995 2.004l.022 4.885L8.2 5.07 5.32 7.95 4.09 6.723l2.882-2.88-1.85-1.852z%22/%3E %3C/svg%3E");
}

.wysiwyg-content a[data-file-ext] {
  /* keep this in separate block to stop underline in IE 8-11 */
}

.wysiwyg-content a[data-file-ext]::after {
  text-decoration: underline;
}

.wysiwyg-content a[data-file-ext]::after {
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  margin: 0 .36em .36em .4em;
  padding: 0 .2em .15em;
  text-align: center;
  background-color: #fff;
  font-size: .7em;
  line-height: 1.1em;
  border: 1px solid;
  border-radius: 2px;
  content: attr(data-file-ext);
  text-decoration: none;
  text-transform: uppercase;
}

.wysiwyg-content a[data-file-ext='pdf']::after {
  color: #e12024;
}

.wysiwyg-content a[data-file-ext='doc']::after {
  color: #101eda;
}

.wysiwyg-content a[data-file-ext='docx']::after {
  color: #101eda;
}

.wysiwyg-content a[data-file-ext='rtf']::after {
  color: #101eda;
}

.wysiwyg-content a[data-file-ext='xls']::after {
  color: #007133;
}

.wysiwyg-content a[data-file-ext='xlsx']::after {
  color: #007133;
}

.wysiwyg-content a[data-file-ext='xlsm']::after {
  color: #007133;
}

.wysiwyg-content a[data-file-ext='ppt']::after {
  color: #d04423;
}

.wysiwyg-content a[data-file-ext='pptx']::after {
  color: #d04423;
}

.wysiwyg-content a[data-file-ext='zip']::after {
  color: #222;
}

.wysiwyg-content a[data-file-ext='eps']::after {
  color: #1976d2;
}

.wysiwyg-content a[data-file-ext='png']::after {
  color: #1976d2;
}

.wysiwyg-content a[data-file-ext='jpg']::after {
  color: #1976d2;
}

.wysiwyg-content a[data-file-ext='mp4']::after {
  color: #1976d2;
}

/* 
class: ".gov-numbered-paragraphs"
This makes numbered paragraphs look like lists.
".gov-is-numbered-paragraph" is automatically applied with jQuery
Only apply if device width > 415 (wider than iPhone 6/7/8 plus) -- otherwise it's a little too narrow
*/
@media only screen and (min-width: 415px) {
  .gov-is-numbered-paragraph {
    padding-left: 3.5rem !important;
    text-indent: -3.5rem !important;
  }
  .gov-is-numbered-paragraph span:not([id]) {
    float: left;
    min-width: 3.5rem;
    height: 1.5rem;
    /* This seems to be necessary for numbered paras inside callout boxes. Has to be slightly less than the line-height */
  }
  .gov-is-numbered-paragraph-part {
    /* Add this manually to paragraphs that aren't picked up (eg, the ones following lists) */
    padding-left: 3.5rem;
  }
  .gov-numbered-paragraphs > ul, .gov-numbered-paragraphs > ol {
    padding-left: 4rem !important;
    /* For some reason this needs to be .5 more than width. Possibly related to list-position:outside; */
  }
  .gov-numbered-paragraphs > blockquote {
    padding-left: 2rem;
  }
  .gov-numbered-paragraphs-indent {
    /* Add this to manually indent nested numbered paragraphs, eg: 5.4.1 of Passenger Name Records: Implementation of Recommendations — Audit report */
    margin-left: 3.5rem;
  }
}

@media only screen and (max-width: 414px) {
  .gov-is-numbered-paragraph span:not([id]) {
    display: inline-block;
    min-width: 2rem;
  }
}

@media screen and (max-width: 64.0625em) {
  .sidebar,
  .main-region {
    float: none;
  }
  .sidebar {
    margin-top: 30px;
  }
}

.main-region.col--md-5 {
  padding-top: 20px;
}

@media (min-width: 64.0625em) {
  .main-region.col--md-5 {
    padding-top: 45px;
  }
}

.main-region.col--md-5 h4 {
  margin-top: 30px;
  margin-bottom: 10px;
}

@media (min-width: 64.0625em) {
  .main-region.col--md-5 h4 {
    margin-top: 55px;
  }
}

.main-region.col--md-5 .block-filter .select__wrapper {
  min-width: 300px;
  width: auto;
  max-width: 100%;
}

.main-region.col--md-5 .block-filter .select__wrapper:after {
  font-size: 11px;
  top: 13px;
  right: 15px;
}

.main-region.col--md-5 .block-filter .select__wrapper select {
  font-size: 16px;
}

.page-subtitle {
  margin-bottom: 25px;
  font-weight: bold;
}

@media (min-width: 64.0625em) {
  .page-subtitle {
    font-size: 1.2rem;
  }
}

@media print {
  @page {
    margin: .8cm;
  }
  .main {
    margin: 0;
  }
  /* Hide unnecessary navigation */
  .navigation,
  .footer,
  .feature-image,
  .block-feedback,
  .listen-block,
  .rss-block__link,
  #readspeaker_button1,
  .ribbon-wrapper,
  .menu-holder,
  #tocHolder,
  [data-accordion-group] button::before {
    display: none !important;
  }
  /* Numbered paragraphs */
  .gov-numbered-paragraphs > ul,
  .gov-numbered-paragraphs > ol,
  .gov-numbered-paragraphs > blockquote {
    margin-left: 1.7cm !important;
  }
  .gov-is-numbered-paragraph {
    padding-left: 1.2cm !important;
    text-indent: -1.2cm !important;
  }
  .gov-is-numbered-paragraph span:not([id]) {
    float: left;
    min-width: 1.2cm;
    height: .3cm;
  }
  /* Prevent table rows from breaking across pages */
  table {
    page-break-inside: auto;
  }
  tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  thead {
    display: table-header-group;
  }
  tfoot {
    display: table-footer-group;
  }
  /* Put border around callout boxes */
  .block-callout {
    padding: 1em;
    background: #fff;
    border: solid 1px #ccc;
    font-weight: normal;
    font-size: inherit;
    margin-bottom: 0.5cm;
    margin-top: 0.5cm;
  }
  .block-callout::before {
    display: none;
  }
  .block-callout .block-callout__title {
    margin-top: 0;
  }
  /* Remove styles from cards in 'In this section'  */
  .card {
    padding: 0;
    box-shadow: none;
    background: none;
    font-size: 10pt;
    height: auto !important;
    margin-bottom: 5pt;
    color: black !important;
    pointer-events: none;
  }
  .card__title {
    margin: 0;
    font-size: 10pt;
  }
  .block-callout__content .row > div {
    margin: 0;
    padding: 0;
  }
  .block-callout__title {
    font-size: 10pt;
  }
  /* 'Related' */
  [data-accordion-group] button {
    color: black !important;
  }
  /* Make side-by-side cols stack */
  [class*="col-"] {
    width: 100%;
    float: none;
    margin-left: 0;
  }
  /* Directory pages */
  .gutters-1 {
    padding-left: 0;
  }
  .directory__wrapper {
    margin-top: 1cm;
  }
  .directory-card {
    background: none;
    box-shadow: none;
    margin-bottom: .4cm;
    padding: 0;
  }
  .directory-card__item {
    margin: .15cm 0;
    padding: 0;
    font-size: 10pt;
  }
  .directory-card__title {
    font-size: 11pt;
    color: black;
  }
  .directory-card__tags, .update-date {
    font-size: 7pt;
  }
  .pagination,
  .ResourcesLandingPage .main-region label,
  .ResourcesLandingPage .main-region label + div,
  .ResourcesLandingPage .directory-card .row:last-child,
  .DirectoryPage .main-region h4,
  .DirectoryPage .main-region h4 + div,
  .block-filter, .reset-filters,
  .directory-card .cta {
    display: none;
  }
  /* Smaller breadcrumbs */
  .breadcrumb {
    font-size: 7pt;
  }
  /* Logo */
  .header__row {
    background-color: white;
  }
  .logo-combined {
    max-width: 6cm;
  }
  /* Typography */
  body {
    font-size: 10pt !important;
    line-height: 1.3;
    background-color: white !important;
    background-image: none;
    color: black !important;
  }
  h1, h2, h3, h4, h5, h6 {
    color: black !important;
  }
  h1 {
    font-size: 18pt !important;
    margin: 10pt 0 6pt;
    display: block !important;
    letter-spacing: 0;
  }
  .wysiwyg-content h2, .page-subtitle {
    font-size: 14pt !important;
    font-weight: 600;
    margin: 14pt 0 7pt;
    letter-spacing: 0;
    border-left: none;
    padding-left: 0;
  }
  .wysiwyg-content h3 {
    font-size: 11pt !important;
    margin: 10pt 0 5pt;
  }
  .wysiwyg-content h4 {
    font-size: 10pt !important;
    font-style: italic;
  }
  .wysiwyg-content h5 {
    font-size: 9pt !important;
  }
  .wysiwyg-content h6 {
    font-size: 8pt !important;
    font-style: italic;
  }
  .wysiwyg-content p,
  .wysiwyg-content blockquote,
  .wysiwyg-content label,
  .wysiwyg-content ol,
  .wysiwyg-content ul,
  td p, td blockquote, td label, td ol, td ul, td li, th p, th blockquote, th label, th ol, th ul, th li {
    font-size: 10pt !important;
  }
  .wysiwyg-content p,
  .wysiwyg-content blockquote,
  .wysiwyg-content label {
    margin: 5pt 0 5pt;
  }
  .wysiwyg-content a {
    color: blue;
    text-decoration: none;
    border-bottom: solid 1px #ccc;
  }
  .wysiwyg-content a[target='_blank']:not([class*='btn']) {
    padding-right: 0;
    background-image: none;
  }
  .wysiwyg-content a[href*='//']::after {
    content: " <" attr(href) ">";
    font-size: 8pt;
    font-weight: normal;
    text-decoration: none !important;
    border: none;
    border-bottom: solid 3px white;
    color: #666;
    display: inline;
    text-transform: none;
    padding: 0;
    margin: 0;
    margin-bottom: -1px;
    /* Try to wrap long URLs */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  .wysiwyg-content a[id^="ftn"]::after,
  .wysiwyg-content .breadcrumb a::after {
    content: "";
  }
  .wysiwyg-content a[id^="ftn"] {
    color: black;
    font-weight: normal;
    border-bottom: none;
  }
  .wysiwyg-content abbr {
    border-bottom: none;
  }
}
