@import url("../../../fast.fonts.net/t/10b53.css?apiType=css&amp;projectid=8499c928-5c98-4265-9f29-9ea9caa1ac58");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,600;1,400;1,600&amp;display=swap");
@font-face {
  font-family: "icomoon";
  src: url("../assets/fonts/icomoon-20fdc9172a.eot");
  src: url("../assets/fonts/icomoon-20fdc9172a.eot") format("embedded-opentype"),
    url("../assets/fonts/icomoon-aac6d8798e.ttf") format("truetype"),
    url("../assets/fonts/icomoon-ffab616030.woff") format("woff"),
    url("../../fonts/icomoon.html#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media print, screen and (min-width: 40em) {
  .reveal,
  .reveal.tiny,
  .reveal.small,
  .reveal.large {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
} /*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("../assets/fonts/fontawesome-webfont-674f50d2873e6e.eot?v=4.7.0");
  src: url("../assets/fonts/fontawesome-webfont-674f50d287d41d.eot?#iefix&v=4.7.0")
      format("embedded-opentype"),
    url("../assets/fonts/fontawesome-webfont-af7ae505a93e6e.woff2?v=4.7.0")
      format("woff2"),
    url("../assets/fonts/fontawesome-webfont-fee66e712a3e6e.woff?v=4.7.0")
      format("woff"),
    url("../assets/fonts/fontawesome-webfont-b06871f2813e6e.ttf?v=4.7.0")
      format("truetype"),
    url("../../fonts/fontawesome-webfont3e6e.html?v=4.7.0#fontawesomeregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
.sticky-container {
  position: sticky;
  top: 0;
  width: 100%;
  background: white; /* Adjust as needed */
  z-index: 1000; /* Ensures it stays above other content */
}
.off-canvas {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}
.off-canvas.is-open {
  transform: translateX(0);
}
aside {
  background: #1a1d23;
  width: 250px;
  height: 100vh;
  position: fixed;
  transition: 0.3s;
  left: -250px;
  top: 0;
  transition-timing-function: cubic-bezier(0.9, 0, 1, 1);
}
aside.open {
  left: 0;
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.9, 0, 1, 1);
}
nav a {
  display: block;
  color: #ddd;
  text-decoration: none;
  padding: 10px;
}
nav a:hover {
  background: #313640;
}
aside button {
  border: none;
  background: none;
  position: absolute;
  right: -40px;
  top: 20px;
  font-size: 30px;
  transform: rotate(90deg);
  display: inline-block;
  cursor: pointer;
  color: #fff;
}

.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-times-thin:before {
  content: "\00d7";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-user-doctor:before,
.fa-user-md:before {
  content: "\f0f0";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth
  .flatpickr-days
  .dayContainer:nth-child(n + 1)
  .flatpickr-day.inRange:nth-child(7n + 7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.flatpickr-calendar.multiMonth
  .flatpickr-days
  .dayContainer:nth-child(n + 2)
  .flatpickr-day.inRange:nth-child(7n + 1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  line-height: 16px;
  height: 28px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}
.flatpickr-months .flatpickr-prev-month.disabled,
.flatpickr-months .flatpickr-next-month.disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  left: 0;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  right: 0;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 6.16px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #000;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #000;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f3f3f3;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
.flatpickr-input[readonly].form-control {
  border-bottom-width: 0;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider:not(.slick-initialized) {
  display: none;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  width: 100%;
}
.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;
}
.slick-loading .slick-list {
  background: #fff center center no-repeat;
}
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("../../fonts/slick.html");
  src: url("../../fonts/slickd41d.html?#iefix") format("embedded-opentype"),
    url("../assets/fonts/slick-b7c9e1e479.woff") format("woff"),
    url("../../fonts/slick-2.html") format("truetype"),
    url("../../fonts/slick-3.html#slick") format("svg");
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  z-index: 11;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
  z-index: 10;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "FontAwesome";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: 3%;
}
[dir="rtl"] .slick-prev {
  right: 3%;
  left: auto;
}
.slick-prev:before {
  content: "\f104";
}
[dir="rtl"] .slick-prev:before {
  content: "\f104";
}
.slick-next {
  right: 3%;
}
[dir="rtl"] .slick-next {
  right: auto;
  left: 3%;
}
.slick-next:before {
  content: "\f105";
}
[dir="rtl"] .slick-next:before {
  content: "\f105";
}
.slick-dots {
  position: absolute;
  bottom: 15px;
  right: 7%;
  display: block;
  width: auto;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .slick-dots {
    right: 23.5%;
  }
}
@media screen and (max-width: 48.063em) {
  .slick-dots {
    width: 100%;
    right: initial;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6.5px;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 48.063em) {
  .slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0 10px;
  }
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.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 {
  font-family: "slick";
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  border: 5px solid #fefefe;
  text-align: center;
  opacity: 0.6;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 48.063em) {
  .slick-dots li button:before {
    width: 16px;
    height: 16px;
    border: 8px solid #fefefe;
  }
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: black;
}
.slick-dots.black li button:before {
  border: 5px solid #0a0a0a;
}
@media screen and (max-width: 48.063em) {
  .slick-dots.black li button:before {
    border: 8px solid #0a0a0a;
  }
}
.slick-arrow {
  position: absolute;
  z-index: 5;
  top: 42%;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 22px;
  cursor: pointer;
}
.slide-next {
  right: -12%;
}
.slide-prev {
  left: -12%;
}
@media screen and (max-width: 639px) {
  .slick-arrow {
    padding: 5px 10px;
    top: 30%;
  }
}
@media screen and (max-width: 320px) {
  .slick-arrow {
    top: 18%;
  }
}
.slick-item:not(:first-of-type) {
  display: none;
}
.slick-slider.slick-initialized .slick-item:not(:first-of-type) {
  display: block;
} /*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */ /*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}
.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../assets/images/default-skin/default-skin-e3f799c6de.png) 0 0
    no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}
@media (-webkit-min-device-pixel-ratio: 1.1),
  (-webkit-min-device-pixel-ratio: 1.09375),
  (min-resolution: 105dpi),
  (min-resolution: 1.1dppx) {
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(../assets/images/default-skin/default-skin-b257fa9c5a.svg);
  }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}
.pswp__button--share {
  background-position: -44px -44px;
}
.pswp__button--fs {
  display: none;
}
.pswp--supports-fs .pswp__button--fs {
  display: block;
}
.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}
.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}
.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}
.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}
.pswp__button--arrow--left {
  left: 0;
}
.pswp__button--arrow--right {
  right: 0;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}
.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}
.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}
.pswp__share-modal--hidden {
  display: none;
}
.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #fff;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}
.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}
.pswp__share-tooltip a:first-child {
  border-radius: 2px 2px 0 0;
}
.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}
.pswp__share-modal--fade-in {
  opacity: 1;
}
.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}
a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid rgba(0, 0, 0, 0);
  border-bottom-color: #fff;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}
a.pswp__share--facebook:hover {
  background: #3e5c9a;
  color: #fff;
}
a.pswp__share--facebook:hover:before {
  border-bottom-color: #3e5c9a;
}
a.pswp__share--twitter:hover {
  background: #55acee;
  color: #fff;
}
a.pswp__share--pinterest:hover {
  background: #ccc;
  color: #ce272d;
}
a.pswp__share--download:hover {
  background: #ddd;
}
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #fff;
  opacity: 0.75;
  padding: 0 10px;
}
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}
.pswp__caption small {
  font-size: 11px;
  color: #bbb;
}
.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #ccc;
}
.pswp__caption--empty {
  display: none;
}
.pswp__caption--fake {
  visibility: hidden;
}
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}
.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}
.pswp__preloader--active {
  opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
  background: url(../assets/images/default-skin/preloader-e34aafbb48.gif) 0 0
    no-repeat;
}
.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}
.pswp--css_animation .pswp__preloader__cut {
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}
.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}
.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}
.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  opacity: 0.001;
}
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}
.pswp__element--disabled {
  display: none !important;
}
.pswp--minimal--dark .pswp__top-bar {
  background: none;
}
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: none;
}
.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pswp img {
  max-width: none;
}
.pswp--animate_opacity {
  opacity: 0.001;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--open {
  display: block;
}
.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.pswp--zoomed-in .pswp__img {
  cursor: -webkit-grab;
  cursor: grab;
}
.pswp--dragging .pswp__img {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}
.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1),
    -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp__bg {
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}
.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}
.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}
.pswp__img--placeholder--blank {
  background: #222;
}
.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #ccc;
}
.pswp__error-msg a {
  color: #ccc;
  text-decoration: underline;
} /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
h1,
.font-h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em&xxxlarge=98.75em";
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
}
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}
button {
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput="mouse"] button {
  outline: 0;
}
pre {
  overflow: auto;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}
.is-visible {
  display: block !important;
}
.is-hidden {
  display: none !important;
}
[type="text"],
[type="password"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="month"],
[type="week"],
[type="email"],
[type="number"],
[type="search"],
[type="tel"],
[type="time"],
[type="url"],
[type="color"],
textarea {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
[type="text"]:focus,
[type="password"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="week"]:focus,
[type="email"]:focus,
[type="number"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="time"]:focus,
[type="url"]:focus,
[type="color"]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  -webkit-box-shadow: 0 0 5px #cacaca;
  box-shadow: 0 0 5px #cacaca;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
}
textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}
input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
[type="submit"],
[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
::-webkit-input-placeholder {
  color: #cacaca;
}
:-ms-input-placeholder {
  color: #cacaca;
}
::-ms-input-placeholder {
  color: #cacaca;
}
::placeholder {
  color: #cacaca;
}
[type="file"],
[type="checkbox"],
[type="radio"] {
  margin: 0 0 1rem;
}
[type="checkbox"] + label,
[type="radio"] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
[type="checkbox"] + label[for],
[type="radio"] + label[for] {
  cursor: pointer;
}
label > [type="checkbox"],
label > [type="radio"] {
  margin-right: 0.5rem;
}
[type="file"] {
  width: 100%;
}
label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}
.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a;
}
.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.input-group > :first-child,
.input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group > :last-child,
.input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group-label,
.input-group-field,
.input-group-button,
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap;
}
.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}
.input-group-field {
  border-radius: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  min-width: 0;
}
.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}
.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}
select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
}
@media screen and (min-width: 0\0) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  -webkit-box-shadow: 0 0 5px #cacaca;
  box-shadow: 0 0 5px #cacaca;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #f9ecea;
}
.is-invalid-input:not(:focus)::-webkit-input-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus):-ms-input-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::-ms-input-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}
.is-invalid-label {
  color: #cc4b37;
}
.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
.font-h1,
h2,
.font-h2,
h3,
.font-h3,
h4,
.font-h4,
h5,
.font-h5,
h6,
.font-h6,
pre,
form,
p,
.font-p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
p,
.font-p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
em,
i {
  font-style: italic;
  line-height: inherit;
}
strong,
b {
  font-weight: bold;
  line-height: inherit;
}
small {
  font-size: 80%;
  line-height: inherit;
}
h1,
.font-h1,
.h1,
h2,
.font-h2,
.h2,
h3,
.font-h3,
.h3,
h4,
.font-h4,
.h4,
h5,
.font-h5,
.h5,
h6,
.font-h6,
.h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small,
.font-h1 small,
.h1 small,
h2 small,
.font-h2 small,
.h2 small,
h3 small,
.font-h3 small,
.h3 small,
h4 small,
.font-h4 small,
.h4 small,
h5 small,
.font-h5 small,
.h5 small,
h6 small,
.font-h6 small,
.h6 small {
  line-height: 0;
  color: #cacaca;
}
h1,
.font-h1,
.h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h2,
.font-h2,
.h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h3,
.font-h3,
.h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h4,
.font-h4,
.h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h5,
.font-h5,
.h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h6,
.font-h6,
.h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 40em) {
  h1,
  .font-h1,
  .h1 {
    font-size: 3rem;
  }
  h2,
  .font-h2,
  .h2 {
    font-size: 2.5rem;
  }
  h3,
  .font-h3,
  .h3 {
    font-size: 1.9375rem;
  }
  h4,
  .font-h4,
  .h4 {
    font-size: 1.5625rem;
  }
  h5,
  .font-h5,
  .h5 {
    font-size: 1.25rem;
  }
  h6,
  .font-h6,
  .h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
a:focus {
  color: #1468a0;
}
a img {
  border: 0;
}
hr {
  clear: both;
  max-width: 1440px;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}
ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}
li {
  font-size: inherit;
}
ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}
ol {
  margin-left: 1.25rem;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}
blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}
blockquote,
blockquote p,
blockquote .font-p {
  line-height: 1.6;
  color: #8a8a8a;
}
cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a;
}
cite:before {
  content: "— ";
}
abbr,
abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none;
}
figure {
  margin: 0;
}
code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
}
kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a;
}
.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a;
}
.lead {
  font-size: 125%;
  line-height: 1.6;
}
.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat,
.font-p + .stat {
  margin-top: -1rem;
}
ul.no-bullet,
ol.no-bullet {
  margin-left: 0;
  list-style: none;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-text-left {
    text-align: left;
  }
  .xlarge-text-right {
    text-align: right;
  }
  .xlarge-text-center {
    text-align: center;
  }
  .xlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-text-left {
    text-align: left;
  }
  .xxlarge-text-right {
    text-align: right;
  }
  .xxlarge-text-center {
    text-align: center;
  }
  .xxlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-text-left {
    text-align: left;
  }
  .xxxlarge-text-right {
    text-align: right;
  }
  .xxxlarge-text-center {
    text-align: center;
  }
  .xxxlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}
@media print {
  * {
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  .font-p,
  h2,
  .font-h2,
  h3,
  .font-h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  .font-h2,
  h3,
  .font-h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
.grid-container {
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.grid-container.fluid {
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.grid-x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.cell {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}
.cell.auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.cell.shrink {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}
.grid-x > .small-shrink,
.grid-x > .small-full,
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12 {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-x > .medium-shrink,
  .grid-x > .medium-full,
  .grid-x > .medium-1,
  .grid-x > .medium-2,
  .grid-x > .medium-3,
  .grid-x > .medium-4,
  .grid-x > .medium-5,
  .grid-x > .medium-6,
  .grid-x > .medium-7,
  .grid-x > .medium-8,
  .grid-x > .medium-9,
  .grid-x > .medium-10,
  .grid-x > .medium-11,
  .grid-x > .medium-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink,
  .grid-x > .large-full,
  .grid-x > .large-1,
  .grid-x > .large-2,
  .grid-x > .large-3,
  .grid-x > .large-4,
  .grid-x > .large-5,
  .grid-x > .large-6,
  .grid-x > .large-7,
  .grid-x > .large-8,
  .grid-x > .large-9,
  .grid-x > .large-10,
  .grid-x > .large-11,
  .grid-x > .large-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 75em) {
  .grid-x > .xlarge-shrink,
  .grid-x > .xlarge-full,
  .grid-x > .xlarge-1,
  .grid-x > .xlarge-2,
  .grid-x > .xlarge-3,
  .grid-x > .xlarge-4,
  .grid-x > .xlarge-5,
  .grid-x > .xlarge-6,
  .grid-x > .xlarge-7,
  .grid-x > .xlarge-8,
  .grid-x > .xlarge-9,
  .grid-x > .xlarge-10,
  .grid-x > .xlarge-11,
  .grid-x > .xlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 90em) {
  .grid-x > .xxlarge-shrink,
  .grid-x > .xxlarge-full,
  .grid-x > .xxlarge-1,
  .grid-x > .xxlarge-2,
  .grid-x > .xxlarge-3,
  .grid-x > .xxlarge-4,
  .grid-x > .xxlarge-5,
  .grid-x > .xxlarge-6,
  .grid-x > .xxlarge-7,
  .grid-x > .xxlarge-8,
  .grid-x > .xxlarge-9,
  .grid-x > .xxlarge-10,
  .grid-x > .xxlarge-11,
  .grid-x > .xxlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 98.75em) {
  .grid-x > .xxxlarge-shrink,
  .grid-x > .xxxlarge-full,
  .grid-x > .xxxlarge-1,
  .grid-x > .xxxlarge-2,
  .grid-x > .xxxlarge-3,
  .grid-x > .xxxlarge-4,
  .grid-x > .xxxlarge-5,
  .grid-x > .xxxlarge-6,
  .grid-x > .xxxlarge-7,
  .grid-x > .xxxlarge-8,
  .grid-x > .xxxlarge-9,
  .grid-x > .xxxlarge-10,
  .grid-x > .xxxlarge-11,
  .grid-x > .xxxlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid-x > .small-1 {
  width: 8.3333333333%;
}
.grid-x > .small-2 {
  width: 16.6666666667%;
}
.grid-x > .small-3 {
  width: 25%;
}
.grid-x > .small-4 {
  width: 33.3333333333%;
}
.grid-x > .small-5 {
  width: 41.6666666667%;
}
.grid-x > .small-6 {
  width: 50%;
}
.grid-x > .small-7 {
  width: 58.3333333333%;
}
.grid-x > .small-8 {
  width: 66.6666666667%;
}
.grid-x > .small-9 {
  width: 75%;
}
.grid-x > .small-10 {
  width: 83.3333333333%;
}
.grid-x > .small-11 {
  width: 91.6666666667%;
}
.grid-x > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .medium-shrink,
  .grid-x > .medium-1,
  .grid-x > .medium-2,
  .grid-x > .medium-3,
  .grid-x > .medium-4,
  .grid-x > .medium-5,
  .grid-x > .medium-6,
  .grid-x > .medium-7,
  .grid-x > .medium-8,
  .grid-x > .medium-9,
  .grid-x > .medium-10,
  .grid-x > .medium-11,
  .grid-x > .medium-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .large-shrink,
  .grid-x > .large-1,
  .grid-x > .large-2,
  .grid-x > .large-3,
  .grid-x > .large-4,
  .grid-x > .large-5,
  .grid-x > .large-6,
  .grid-x > .large-7,
  .grid-x > .large-8,
  .grid-x > .large-9,
  .grid-x > .large-10,
  .grid-x > .large-11,
  .grid-x > .large-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .grid-x > .xlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xlarge-shrink,
  .grid-x > .xlarge-1,
  .grid-x > .xlarge-2,
  .grid-x > .xlarge-3,
  .grid-x > .xlarge-4,
  .grid-x > .xlarge-5,
  .grid-x > .xlarge-6,
  .grid-x > .xlarge-7,
  .grid-x > .xlarge-8,
  .grid-x > .xlarge-9,
  .grid-x > .xlarge-10,
  .grid-x > .xlarge-11,
  .grid-x > .xlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .xlarge-shrink {
    width: auto;
  }
  .grid-x > .xlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xlarge-3 {
    width: 25%;
  }
  .grid-x > .xlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xlarge-6 {
    width: 50%;
  }
  .grid-x > .xlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xlarge-9 {
    width: 75%;
  }
  .grid-x > .xlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .grid-x > .xxlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xxlarge-shrink,
  .grid-x > .xxlarge-1,
  .grid-x > .xxlarge-2,
  .grid-x > .xxlarge-3,
  .grid-x > .xxlarge-4,
  .grid-x > .xxlarge-5,
  .grid-x > .xxlarge-6,
  .grid-x > .xxlarge-7,
  .grid-x > .xxlarge-8,
  .grid-x > .xxlarge-9,
  .grid-x > .xxlarge-10,
  .grid-x > .xxlarge-11,
  .grid-x > .xxlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .xxlarge-shrink {
    width: auto;
  }
  .grid-x > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xxlarge-3 {
    width: 25%;
  }
  .grid-x > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xxlarge-6 {
    width: 50%;
  }
  .grid-x > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xxlarge-9 {
    width: 75%;
  }
  .grid-x > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .grid-x > .xxxlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xxxlarge-shrink,
  .grid-x > .xxxlarge-1,
  .grid-x > .xxxlarge-2,
  .grid-x > .xxxlarge-3,
  .grid-x > .xxxlarge-4,
  .grid-x > .xxxlarge-5,
  .grid-x > .xxxlarge-6,
  .grid-x > .xxxlarge-7,
  .grid-x > .xxxlarge-8,
  .grid-x > .xxxlarge-9,
  .grid-x > .xxxlarge-10,
  .grid-x > .xxxlarge-11,
  .grid-x > .xxxlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .xxxlarge-shrink {
    width: auto;
  }
  .grid-x > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xxxlarge-3 {
    width: 25%;
  }
  .grid-x > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xxxlarge-6 {
    width: 50%;
  }
  .grid-x > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xxxlarge-9 {
    width: 75%;
  }
  .grid-x > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xxxlarge-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}
.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}
.grid-margin-x {
  margin-left: -1rem;
  margin-right: -1rem;
}
.grid-margin-x > .cell {
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 2rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 2rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 2rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 2rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 2rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 2rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 2rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 2rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 2rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 2rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 2rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-x > .xlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xlarge-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .xlarge-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .xlarge-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .xlarge-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-12 {
    width: calc(100% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-x > .xxlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xxlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xxlarge-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .xxlarge-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .xxlarge-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .xxlarge-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .xxlarge-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .xxlarge-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .xxlarge-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .xxlarge-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .xxlarge-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .xxlarge-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .xxlarge-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .xxlarge-12 {
    width: calc(100% - 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-margin-x > .xxxlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xxxlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xxxlarge-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .xxxlarge-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .xxxlarge-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .xxxlarge-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .xxxlarge-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .xxxlarge-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .xxxlarge-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .xxxlarge-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .xxxlarge-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .xxxlarge-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .xxxlarge-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .xxxlarge-12 {
    width: calc(100% - 2rem);
  }
}
.grid-padding-x .grid-padding-x {
  margin-right: -1rem;
  margin-left: -1rem;
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -1rem;
  margin-left: -1rem;
}
.grid-padding-x > .cell {
  padding-right: 1rem;
  padding-left: 1rem;
}
.small-up-1 > .cell {
  width: 100%;
}
.small-up-2 > .cell {
  width: 50%;
}
.small-up-3 > .cell {
  width: 33.3333333333%;
}
.small-up-4 > .cell {
  width: 25%;
}
.small-up-5 > .cell {
  width: 20%;
}
.small-up-6 > .cell {
  width: 16.6666666667%;
}
.small-up-7 > .cell {
  width: 14.2857142857%;
}
.small-up-8 > .cell {
  width: 12.5%;
}
@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-up-1 > .cell {
    width: 100%;
  }
  .xlarge-up-2 > .cell {
    width: 50%;
  }
  .xlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xlarge-up-4 > .cell {
    width: 25%;
  }
  .xlarge-up-5 > .cell {
    width: 20%;
  }
  .xlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xlarge-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-up-1 > .cell {
    width: 100%;
  }
  .xxlarge-up-2 > .cell {
    width: 50%;
  }
  .xxlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xxlarge-up-4 > .cell {
    width: 25%;
  }
  .xxlarge-up-5 > .cell {
    width: 20%;
  }
  .xxlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xxlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xxlarge-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-up-1 > .cell {
    width: 100%;
  }
  .xxxlarge-up-2 > .cell {
    width: 50%;
  }
  .xxxlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xxxlarge-up-4 > .cell {
    width: 25%;
  }
  .xxxlarge-up-5 > .cell {
    width: 20%;
  }
  .xxxlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xxxlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xxxlarge-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 2rem);
}
.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 2rem);
}
.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 2rem);
}
.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 2rem);
}
.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 2rem);
}
.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 2rem);
}
.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 2rem);
}
.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-x.xlarge-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.xlarge-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.xlarge-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.xlarge-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.xlarge-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.xlarge-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.xlarge-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.xlarge-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-x.xxlarge-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.xxlarge-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.xxlarge-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.xxlarge-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.xxlarge-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.xxlarge-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.xxlarge-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.xxlarge-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-margin-x.xxxlarge-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .small-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .small-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .small-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .medium-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .medium-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .medium-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .large-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .large-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .large-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .medium-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .medium-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .medium-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xlarge-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xlarge-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxlarge-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxxlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .medium-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .medium-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .medium-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxxlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
.small-offset-0 {
  margin-left: 0%;
}
.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 1rem);
}
.small-offset-1 {
  margin-left: 8.3333333333%;
}
.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 1rem);
}
.small-offset-2 {
  margin-left: 16.6666666667%;
}
.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 1rem);
}
.small-offset-3 {
  margin-left: 25%;
}
.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 1rem);
}
.small-offset-4 {
  margin-left: 33.3333333333%;
}
.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 1rem);
}
.small-offset-5 {
  margin-left: 41.6666666667%;
}
.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 1rem);
}
.small-offset-6 {
  margin-left: 50%;
}
.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 1rem);
}
.small-offset-7 {
  margin-left: 58.3333333333%;
}
.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 1rem);
}
.small-offset-8 {
  margin-left: 66.6666666667%;
}
.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 1rem);
}
.small-offset-9 {
  margin-left: 75%;
}
.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 1rem);
}
.small-offset-10 {
  margin-left: 83.3333333333%;
}
.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 1rem);
}
.small-offset-11 {
  margin-left: 91.6666666667%;
}
.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 1rem);
}
@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
@media screen and (min-width: 75em) {
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xlarge-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xlarge-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xlarge-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xlarge-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xxlarge-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .xxlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xxlarge-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .xxlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xxlarge-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .xxlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xxlarge-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xxxlarge-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .xxxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .xxxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .xxxlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xxxlarge-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .xxxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .xxxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .xxxlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xxxlarge-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .xxxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .xxxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .xxxlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xxxlarge-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .xxxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .xxxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
.grid-y {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  width: auto;
  max-width: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink,
.grid-y > .small-full,
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12 {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-shrink,
  .grid-y > .medium-full,
  .grid-y > .medium-1,
  .grid-y > .medium-2,
  .grid-y > .medium-3,
  .grid-y > .medium-4,
  .grid-y > .medium-5,
  .grid-y > .medium-6,
  .grid-y > .medium-7,
  .grid-y > .medium-8,
  .grid-y > .medium-9,
  .grid-y > .medium-10,
  .grid-y > .medium-11,
  .grid-y > .medium-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-shrink,
  .grid-y > .large-full,
  .grid-y > .large-1,
  .grid-y > .large-2,
  .grid-y > .large-3,
  .grid-y > .large-4,
  .grid-y > .large-5,
  .grid-y > .large-6,
  .grid-y > .large-7,
  .grid-y > .large-8,
  .grid-y > .large-9,
  .grid-y > .large-10,
  .grid-y > .large-11,
  .grid-y > .large-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 75em) {
  .grid-y > .xlarge-shrink,
  .grid-y > .xlarge-full,
  .grid-y > .xlarge-1,
  .grid-y > .xlarge-2,
  .grid-y > .xlarge-3,
  .grid-y > .xlarge-4,
  .grid-y > .xlarge-5,
  .grid-y > .xlarge-6,
  .grid-y > .xlarge-7,
  .grid-y > .xlarge-8,
  .grid-y > .xlarge-9,
  .grid-y > .xlarge-10,
  .grid-y > .xlarge-11,
  .grid-y > .xlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 90em) {
  .grid-y > .xxlarge-shrink,
  .grid-y > .xxlarge-full,
  .grid-y > .xxlarge-1,
  .grid-y > .xxlarge-2,
  .grid-y > .xxlarge-3,
  .grid-y > .xxlarge-4,
  .grid-y > .xxlarge-5,
  .grid-y > .xxlarge-6,
  .grid-y > .xxlarge-7,
  .grid-y > .xxlarge-8,
  .grid-y > .xxlarge-9,
  .grid-y > .xxlarge-10,
  .grid-y > .xxlarge-11,
  .grid-y > .xxlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 98.75em) {
  .grid-y > .xxxlarge-shrink,
  .grid-y > .xxxlarge-full,
  .grid-y > .xxxlarge-1,
  .grid-y > .xxxlarge-2,
  .grid-y > .xxxlarge-3,
  .grid-y > .xxxlarge-4,
  .grid-y > .xxxlarge-5,
  .grid-y > .xxxlarge-6,
  .grid-y > .xxxlarge-7,
  .grid-y > .xxxlarge-8,
  .grid-y > .xxxlarge-9,
  .grid-y > .xxxlarge-10,
  .grid-y > .xxxlarge-11,
  .grid-y > .xxxlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .medium-shrink,
  .grid-y > .medium-1,
  .grid-y > .medium-2,
  .grid-y > .medium-3,
  .grid-y > .medium-4,
  .grid-y > .medium-5,
  .grid-y > .medium-6,
  .grid-y > .medium-7,
  .grid-y > .medium-8,
  .grid-y > .medium-9,
  .grid-y > .medium-10,
  .grid-y > .medium-11,
  .grid-y > .medium-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .large-shrink,
  .grid-y > .large-1,
  .grid-y > .large-2,
  .grid-y > .large-3,
  .grid-y > .large-4,
  .grid-y > .large-5,
  .grid-y > .large-6,
  .grid-y > .large-7,
  .grid-y > .large-8,
  .grid-y > .large-9,
  .grid-y > .large-10,
  .grid-y > .large-11,
  .grid-y > .large-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}
@media screen and (min-width: 75em) {
  .grid-y > .xlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xlarge-shrink,
  .grid-y > .xlarge-1,
  .grid-y > .xlarge-2,
  .grid-y > .xlarge-3,
  .grid-y > .xlarge-4,
  .grid-y > .xlarge-5,
  .grid-y > .xlarge-6,
  .grid-y > .xlarge-7,
  .grid-y > .xlarge-8,
  .grid-y > .xlarge-9,
  .grid-y > .xlarge-10,
  .grid-y > .xlarge-11,
  .grid-y > .xlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .xlarge-shrink {
    height: auto;
  }
  .grid-y > .xlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xlarge-3 {
    height: 25%;
  }
  .grid-y > .xlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xlarge-6 {
    height: 50%;
  }
  .grid-y > .xlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xlarge-9 {
    height: 75%;
  }
  .grid-y > .xlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xlarge-12 {
    height: 100%;
  }
}
@media screen and (min-width: 90em) {
  .grid-y > .xxlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xxlarge-shrink,
  .grid-y > .xxlarge-1,
  .grid-y > .xxlarge-2,
  .grid-y > .xxlarge-3,
  .grid-y > .xxlarge-4,
  .grid-y > .xxlarge-5,
  .grid-y > .xxlarge-6,
  .grid-y > .xxlarge-7,
  .grid-y > .xxlarge-8,
  .grid-y > .xxlarge-9,
  .grid-y > .xxlarge-10,
  .grid-y > .xxlarge-11,
  .grid-y > .xxlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-y > .xxlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xxlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xxlarge-3 {
    height: 25%;
  }
  .grid-y > .xxlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xxlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xxlarge-6 {
    height: 50%;
  }
  .grid-y > .xxlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xxlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xxlarge-9 {
    height: 75%;
  }
  .grid-y > .xxlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xxlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xxlarge-12 {
    height: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .grid-y > .xxxlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xxxlarge-shrink,
  .grid-y > .xxxlarge-1,
  .grid-y > .xxxlarge-2,
  .grid-y > .xxxlarge-3,
  .grid-y > .xxxlarge-4,
  .grid-y > .xxxlarge-5,
  .grid-y > .xxxlarge-6,
  .grid-y > .xxxlarge-7,
  .grid-y > .xxxlarge-8,
  .grid-y > .xxxlarge-9,
  .grid-y > .xxxlarge-10,
  .grid-y > .xxxlarge-11,
  .grid-y > .xxxlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .xxxlarge-shrink {
    height: auto;
  }
  .grid-y > .xxxlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xxxlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xxxlarge-3 {
    height: 25%;
  }
  .grid-y > .xxxlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xxxlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xxxlarge-6 {
    height: 50%;
  }
  .grid-y > .xxxlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xxxlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xxxlarge-9 {
    height: 75%;
  }
  .grid-y > .xxxlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xxxlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xxxlarge-12 {
    height: 100%;
  }
}
.grid-padding-y .grid-padding-y {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.grid-padding-y > .cell {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.grid-margin-y {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.grid-margin-y > .cell {
  height: calc(100% - 2rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 2rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 2rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 2rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 2rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 2rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 2rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 2rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 2rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 2rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 2rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 2rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xxlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xxlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xxlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-margin-y > .xxxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xxxlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xxxlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xxxlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-12 {
    height: calc(100% - 2rem);
  }
}
.grid-frame {
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100vw;
}
.cell .grid-frame {
  width: 100%;
}
.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.cell-block-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xlarge-grid-frame {
    width: 100%;
  }
  .xlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .xlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .xlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .xlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xxlarge-grid-frame {
    width: 100%;
  }
  .xxlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .xxlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .xxlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .xxlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xxxlarge-grid-frame {
    width: 100%;
  }
  .xxxlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .xxxlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .xxxlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .xxxlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100vh;
}
@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media screen and (min-width: 75em) {
  .grid-y.xlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media screen and (min-width: 90em) {
  .grid-y.xxlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media screen and (min-width: 98.75em) {
  .grid-y.xxxlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 75em) {
  .cell .grid-y.xlarge-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 90em) {
  .cell .grid-y.xxlarge-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .cell .grid-y.xxxlarge-grid-frame {
    height: 100%;
  }
}
.grid-margin-y {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.grid-margin-y > .cell {
  height: calc(100% - 2rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 2rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 2rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 2rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 2rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 2rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 2rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 2rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 2rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 2rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 2rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 2rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xxlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xxlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xxlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-margin-y > .xxxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xxxlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xxxlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xxxlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-12 {
    height: calc(100% - 2rem);
  }
}
.grid-frame.grid-margin-y {
  height: calc(100vh + 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-y.xlarge-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y.xxlarge-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-margin-y.xxxlarge-grid-frame {
    height: calc(100vh + 2rem);
  }
}
.row {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
.row::before,
.row::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.row::after {
  clear: both;
}
.row.collapse > .column,
.row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 90em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 98.75em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.gutter-small > .column,
.row.gutter-small > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.row.gutter-medium > .column,
.row.gutter-medium > .columns {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}
.column,
.columns {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .column,
  .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.column,
.columns,
.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child,
.end.columns:last-child:last-child {
  float: left;
}
.column.row.row,
.row.row.columns {
  float: none;
}
.row .column.row.row,
.row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}
.small-1 {
  width: 8.3333333333%;
}
.small-push-1 {
  position: relative;
  left: 8.3333333333%;
}
.small-pull-1 {
  position: relative;
  left: -8.3333333333%;
}
.small-offset-0 {
  margin-left: 0%;
}
.small-2 {
  width: 16.6666666667%;
}
.small-push-2 {
  position: relative;
  left: 16.6666666667%;
}
.small-pull-2 {
  position: relative;
  left: -16.6666666667%;
}
.small-offset-1 {
  margin-left: 8.3333333333%;
}
.small-3 {
  width: 25%;
}
.small-push-3 {
  position: relative;
  left: 25%;
}
.small-pull-3 {
  position: relative;
  left: -25%;
}
.small-offset-2 {
  margin-left: 16.6666666667%;
}
.small-4 {
  width: 33.3333333333%;
}
.small-push-4 {
  position: relative;
  left: 33.3333333333%;
}
.small-pull-4 {
  position: relative;
  left: -33.3333333333%;
}
.small-offset-3 {
  margin-left: 25%;
}
.small-5 {
  width: 41.6666666667%;
}
.small-push-5 {
  position: relative;
  left: 41.6666666667%;
}
.small-pull-5 {
  position: relative;
  left: -41.6666666667%;
}
.small-offset-4 {
  margin-left: 33.3333333333%;
}
.small-6 {
  width: 50%;
}
.small-push-6 {
  position: relative;
  left: 50%;
}
.small-pull-6 {
  position: relative;
  left: -50%;
}
.small-offset-5 {
  margin-left: 41.6666666667%;
}
.small-7 {
  width: 58.3333333333%;
}
.small-push-7 {
  position: relative;
  left: 58.3333333333%;
}
.small-pull-7 {
  position: relative;
  left: -58.3333333333%;
}
.small-offset-6 {
  margin-left: 50%;
}
.small-8 {
  width: 66.6666666667%;
}
.small-push-8 {
  position: relative;
  left: 66.6666666667%;
}
.small-pull-8 {
  position: relative;
  left: -66.6666666667%;
}
.small-offset-7 {
  margin-left: 58.3333333333%;
}
.small-9 {
  width: 75%;
}
.small-push-9 {
  position: relative;
  left: 75%;
}
.small-pull-9 {
  position: relative;
  left: -75%;
}
.small-offset-8 {
  margin-left: 66.6666666667%;
}
.small-10 {
  width: 83.3333333333%;
}
.small-push-10 {
  position: relative;
  left: 83.3333333333%;
}
.small-pull-10 {
  position: relative;
  left: -83.3333333333%;
}
.small-offset-9 {
  margin-left: 75%;
}
.small-11 {
  width: 91.6666666667%;
}
.small-push-11 {
  position: relative;
  left: 91.6666666667%;
}
.small-pull-11 {
  position: relative;
  left: -91.6666666667%;
}
.small-offset-10 {
  margin-left: 83.3333333333%;
}
.small-12 {
  width: 100%;
}
.small-offset-11 {
  margin-left: 91.6666666667%;
}
.small-up-1 > .column,
.small-up-1 > .columns {
  float: left;
  width: 100%;
}
.small-up-1 > .column:nth-of-type(1n),
.small-up-1 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-1 > .column:nth-of-type(1n + 1),
.small-up-1 > .columns:nth-of-type(1n + 1) {
  clear: both;
}
.small-up-1 > .column:last-child,
.small-up-1 > .columns:last-child {
  float: left;
}
.small-up-2 > .column,
.small-up-2 > .columns {
  float: left;
  width: 50%;
}
.small-up-2 > .column:nth-of-type(1n),
.small-up-2 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-2 > .column:nth-of-type(2n + 1),
.small-up-2 > .columns:nth-of-type(2n + 1) {
  clear: both;
}
.small-up-2 > .column:last-child,
.small-up-2 > .columns:last-child {
  float: left;
}
.small-up-3 > .column,
.small-up-3 > .columns {
  float: left;
  width: 33.3333333333%;
}
.small-up-3 > .column:nth-of-type(1n),
.small-up-3 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-3 > .column:nth-of-type(3n + 1),
.small-up-3 > .columns:nth-of-type(3n + 1) {
  clear: both;
}
.small-up-3 > .column:last-child,
.small-up-3 > .columns:last-child {
  float: left;
}
.small-up-4 > .column,
.small-up-4 > .columns {
  float: left;
  width: 25%;
}
.small-up-4 > .column:nth-of-type(1n),
.small-up-4 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-4 > .column:nth-of-type(4n + 1),
.small-up-4 > .columns:nth-of-type(4n + 1) {
  clear: both;
}
.small-up-4 > .column:last-child,
.small-up-4 > .columns:last-child {
  float: left;
}
.small-up-5 > .column,
.small-up-5 > .columns {
  float: left;
  width: 20%;
}
.small-up-5 > .column:nth-of-type(1n),
.small-up-5 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-5 > .column:nth-of-type(5n + 1),
.small-up-5 > .columns:nth-of-type(5n + 1) {
  clear: both;
}
.small-up-5 > .column:last-child,
.small-up-5 > .columns:last-child {
  float: left;
}
.small-up-6 > .column,
.small-up-6 > .columns {
  float: left;
  width: 16.6666666667%;
}
.small-up-6 > .column:nth-of-type(1n),
.small-up-6 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-6 > .column:nth-of-type(6n + 1),
.small-up-6 > .columns:nth-of-type(6n + 1) {
  clear: both;
}
.small-up-6 > .column:last-child,
.small-up-6 > .columns:last-child {
  float: left;
}
.small-up-7 > .column,
.small-up-7 > .columns {
  float: left;
  width: 14.2857142857%;
}
.small-up-7 > .column:nth-of-type(1n),
.small-up-7 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-7 > .column:nth-of-type(7n + 1),
.small-up-7 > .columns:nth-of-type(7n + 1) {
  clear: both;
}
.small-up-7 > .column:last-child,
.small-up-7 > .columns:last-child {
  float: left;
}
.small-up-8 > .column,
.small-up-8 > .columns {
  float: left;
  width: 12.5%;
}
.small-up-8 > .column:nth-of-type(1n),
.small-up-8 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-8 > .column:nth-of-type(8n + 1),
.small-up-8 > .columns:nth-of-type(8n + 1) {
  clear: both;
}
.small-up-8 > .column:last-child,
.small-up-8 > .columns:last-child {
  float: left;
}
.small-collapse > .column,
.small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.small-collapse .row {
  margin-right: 0;
  margin-left: 0;
}
.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0;
}
.small-uncollapse > .column,
.small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.small-centered {
  margin-right: auto;
  margin-left: auto;
}
.small-centered,
.small-centered:last-child:not(:first-child) {
  float: none;
  clear: both;
}
.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-right: 0;
  margin-left: 0;
}
.small-uncentered,
.small-uncentered:last-child:not(:first-child),
.small-push-0,
.small-push-0:last-child:not(:first-child),
.small-pull-0,
.small-pull-0:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.small-uncentered:last-child:not(:first-child),
.small-push-0:last-child:not(:first-child),
.small-pull-0:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 > .column,
  .medium-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .medium-up-1 > .column:nth-of-type(1n),
  .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n + 1),
  .medium-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child,
  .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column,
  .medium-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .medium-up-2 > .column:nth-of-type(1n),
  .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n + 1),
  .medium-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child,
  .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column,
  .medium-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .medium-up-3 > .column:nth-of-type(1n),
  .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n + 1),
  .medium-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child,
  .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column,
  .medium-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .medium-up-4 > .column:nth-of-type(1n),
  .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n + 1),
  .medium-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child,
  .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column,
  .medium-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .medium-up-5 > .column:nth-of-type(1n),
  .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n + 1),
  .medium-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child,
  .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column,
  .medium-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .medium-up-6 > .column:nth-of-type(1n),
  .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n + 1),
  .medium-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child,
  .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column,
  .medium-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .medium-up-7 > .column:nth-of-type(1n),
  .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n + 1),
  .medium-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child,
  .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column,
  .medium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .medium-up-8 > .column:nth-of-type(1n),
  .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n + 1),
  .medium-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child,
  .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column,
  .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncollapse > .column,
  .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .medium-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .medium-centered,
  .medium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncentered,
  .medium-uncentered:last-child:not(:first-child),
  .medium-push-0,
  .medium-push-0:last-child:not(:first-child),
  .medium-pull-0,
  .medium-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .medium-uncentered:last-child:not(:first-child),
  .medium-push-0:last-child:not(:first-child),
  .medium-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 > .column,
  .large-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .large-up-1 > .column:nth-of-type(1n),
  .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n + 1),
  .large-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }
  .large-up-1 > .column:last-child,
  .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column,
  .large-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .large-up-2 > .column:nth-of-type(1n),
  .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n + 1),
  .large-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }
  .large-up-2 > .column:last-child,
  .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column,
  .large-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .large-up-3 > .column:nth-of-type(1n),
  .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n + 1),
  .large-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }
  .large-up-3 > .column:last-child,
  .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column,
  .large-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .large-up-4 > .column:nth-of-type(1n),
  .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n + 1),
  .large-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }
  .large-up-4 > .column:last-child,
  .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column,
  .large-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .large-up-5 > .column:nth-of-type(1n),
  .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n + 1),
  .large-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }
  .large-up-5 > .column:last-child,
  .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column,
  .large-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .large-up-6 > .column:nth-of-type(1n),
  .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n + 1),
  .large-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }
  .large-up-6 > .column:last-child,
  .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column,
  .large-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .large-up-7 > .column:nth-of-type(1n),
  .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n + 1),
  .large-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }
  .large-up-7 > .column:last-child,
  .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column,
  .large-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .large-up-8 > .column:nth-of-type(1n),
  .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n + 1),
  .large-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }
  .large-up-8 > .column:last-child,
  .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column,
  .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncollapse > .column,
  .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .large-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .large-centered,
  .large-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncentered,
  .large-uncentered:last-child:not(:first-child),
  .large-push-0,
  .large-push-0:last-child:not(:first-child),
  .large-pull-0,
  .large-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .large-uncentered:last-child:not(:first-child),
  .large-push-0:last-child:not(:first-child),
  .large-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .xlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .xlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .xlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xlarge-3 {
    width: 25%;
  }
  .xlarge-push-3 {
    position: relative;
    left: 25%;
  }
  .xlarge-pull-3 {
    position: relative;
    left: -25%;
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .xlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .xlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .xlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xlarge-6 {
    width: 50%;
  }
  .xlarge-push-6 {
    position: relative;
    left: 50%;
  }
  .xlarge-pull-6 {
    position: relative;
    left: -50%;
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .xlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .xlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .xlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xlarge-9 {
    width: 75%;
  }
  .xlarge-push-9 {
    position: relative;
    left: 75%;
  }
  .xlarge-pull-9 {
    position: relative;
    left: -75%;
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .xlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .xlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .xlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xlarge-12 {
    width: 100%;
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xlarge-up-1 > .column,
  .xlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .xlarge-up-1 > .column:nth-of-type(1n),
  .xlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-1 > .column:nth-of-type(1n + 1),
  .xlarge-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }
  .xlarge-up-1 > .column:last-child,
  .xlarge-up-1 > .columns:last-child {
    float: left;
  }
  .xlarge-up-2 > .column,
  .xlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .xlarge-up-2 > .column:nth-of-type(1n),
  .xlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-2 > .column:nth-of-type(2n + 1),
  .xlarge-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }
  .xlarge-up-2 > .column:last-child,
  .xlarge-up-2 > .columns:last-child {
    float: left;
  }
  .xlarge-up-3 > .column,
  .xlarge-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .xlarge-up-3 > .column:nth-of-type(1n),
  .xlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-3 > .column:nth-of-type(3n + 1),
  .xlarge-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }
  .xlarge-up-3 > .column:last-child,
  .xlarge-up-3 > .columns:last-child {
    float: left;
  }
  .xlarge-up-4 > .column,
  .xlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .xlarge-up-4 > .column:nth-of-type(1n),
  .xlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-4 > .column:nth-of-type(4n + 1),
  .xlarge-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }
  .xlarge-up-4 > .column:last-child,
  .xlarge-up-4 > .columns:last-child {
    float: left;
  }
  .xlarge-up-5 > .column,
  .xlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .xlarge-up-5 > .column:nth-of-type(1n),
  .xlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-5 > .column:nth-of-type(5n + 1),
  .xlarge-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }
  .xlarge-up-5 > .column:last-child,
  .xlarge-up-5 > .columns:last-child {
    float: left;
  }
  .xlarge-up-6 > .column,
  .xlarge-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .xlarge-up-6 > .column:nth-of-type(1n),
  .xlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-6 > .column:nth-of-type(6n + 1),
  .xlarge-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }
  .xlarge-up-6 > .column:last-child,
  .xlarge-up-6 > .columns:last-child {
    float: left;
  }
  .xlarge-up-7 > .column,
  .xlarge-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .xlarge-up-7 > .column:nth-of-type(1n),
  .xlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-7 > .column:nth-of-type(7n + 1),
  .xlarge-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }
  .xlarge-up-7 > .column:last-child,
  .xlarge-up-7 > .columns:last-child {
    float: left;
  }
  .xlarge-up-8 > .column,
  .xlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .xlarge-up-8 > .column:nth-of-type(1n),
  .xlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-8 > .column:nth-of-type(8n + 1),
  .xlarge-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }
  .xlarge-up-8 > .column:last-child,
  .xlarge-up-8 > .columns:last-child {
    float: left;
  }
  .xlarge-collapse > .column,
  .xlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .xlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .xlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-uncollapse > .column,
  .xlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .xlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .xlarge-centered,
  .xlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .xlarge-uncentered,
  .xlarge-push-0,
  .xlarge-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-uncentered,
  .xlarge-uncentered:last-child:not(:first-child),
  .xlarge-push-0,
  .xlarge-push-0:last-child:not(:first-child),
  .xlarge-pull-0,
  .xlarge-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .xlarge-uncentered:last-child:not(:first-child),
  .xlarge-push-0:last-child:not(:first-child),
  .xlarge-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .xxlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .xxlarge-offset-0 {
    margin-left: 0%;
  }
  .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .xxlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxlarge-3 {
    width: 25%;
  }
  .xxlarge-push-3 {
    position: relative;
    left: 25%;
  }
  .xxlarge-pull-3 {
    position: relative;
    left: -25%;
  }
  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .xxlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .xxlarge-offset-3 {
    margin-left: 25%;
  }
  .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .xxlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxlarge-6 {
    width: 50%;
  }
  .xxlarge-push-6 {
    position: relative;
    left: 50%;
  }
  .xxlarge-pull-6 {
    position: relative;
    left: -50%;
  }
  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .xxlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .xxlarge-offset-6 {
    margin-left: 50%;
  }
  .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .xxlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxlarge-9 {
    width: 75%;
  }
  .xxlarge-push-9 {
    position: relative;
    left: 75%;
  }
  .xxlarge-pull-9 {
    position: relative;
    left: -75%;
  }
  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .xxlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .xxlarge-offset-9 {
    margin-left: 75%;
  }
  .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .xxlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxlarge-12 {
    width: 100%;
  }
  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxlarge-up-1 > .column,
  .xxlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .xxlarge-up-1 > .column:nth-of-type(1n),
  .xxlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-1 > .column:nth-of-type(1n + 1),
  .xxlarge-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }
  .xxlarge-up-1 > .column:last-child,
  .xxlarge-up-1 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-2 > .column,
  .xxlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .xxlarge-up-2 > .column:nth-of-type(1n),
  .xxlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-2 > .column:nth-of-type(2n + 1),
  .xxlarge-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }
  .xxlarge-up-2 > .column:last-child,
  .xxlarge-up-2 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-3 > .column,
  .xxlarge-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .xxlarge-up-3 > .column:nth-of-type(1n),
  .xxlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-3 > .column:nth-of-type(3n + 1),
  .xxlarge-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }
  .xxlarge-up-3 > .column:last-child,
  .xxlarge-up-3 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-4 > .column,
  .xxlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .xxlarge-up-4 > .column:nth-of-type(1n),
  .xxlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-4 > .column:nth-of-type(4n + 1),
  .xxlarge-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }
  .xxlarge-up-4 > .column:last-child,
  .xxlarge-up-4 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-5 > .column,
  .xxlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .xxlarge-up-5 > .column:nth-of-type(1n),
  .xxlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-5 > .column:nth-of-type(5n + 1),
  .xxlarge-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }
  .xxlarge-up-5 > .column:last-child,
  .xxlarge-up-5 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-6 > .column,
  .xxlarge-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .xxlarge-up-6 > .column:nth-of-type(1n),
  .xxlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-6 > .column:nth-of-type(6n + 1),
  .xxlarge-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }
  .xxlarge-up-6 > .column:last-child,
  .xxlarge-up-6 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-7 > .column,
  .xxlarge-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .xxlarge-up-7 > .column:nth-of-type(1n),
  .xxlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-7 > .column:nth-of-type(7n + 1),
  .xxlarge-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }
  .xxlarge-up-7 > .column:last-child,
  .xxlarge-up-7 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-8 > .column,
  .xxlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .xxlarge-up-8 > .column:nth-of-type(1n),
  .xxlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-8 > .column:nth-of-type(8n + 1),
  .xxlarge-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }
  .xxlarge-up-8 > .column:last-child,
  .xxlarge-up-8 > .columns:last-child {
    float: left;
  }
  .xxlarge-collapse > .column,
  .xxlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .xxlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .xxlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-uncollapse > .column,
  .xxlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .xxlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .xxlarge-centered,
  .xxlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .xxlarge-uncentered,
  .xxlarge-push-0,
  .xxlarge-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-uncentered,
  .xxlarge-uncentered:last-child:not(:first-child),
  .xxlarge-push-0,
  .xxlarge-push-0:last-child:not(:first-child),
  .xxlarge-pull-0,
  .xxlarge-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .xxlarge-uncentered:last-child:not(:first-child),
  .xxlarge-push-0:last-child:not(:first-child),
  .xxlarge-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .xxxlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .xxxlarge-offset-0 {
    margin-left: 0%;
  }
  .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .xxxlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .xxxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxxlarge-3 {
    width: 25%;
  }
  .xxxlarge-push-3 {
    position: relative;
    left: 25%;
  }
  .xxxlarge-pull-3 {
    position: relative;
    left: -25%;
  }
  .xxxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .xxxlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .xxxlarge-offset-3 {
    margin-left: 25%;
  }
  .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .xxxlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .xxxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxxlarge-6 {
    width: 50%;
  }
  .xxxlarge-push-6 {
    position: relative;
    left: 50%;
  }
  .xxxlarge-pull-6 {
    position: relative;
    left: -50%;
  }
  .xxxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .xxxlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .xxxlarge-offset-6 {
    margin-left: 50%;
  }
  .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .xxxlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .xxxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxxlarge-9 {
    width: 75%;
  }
  .xxxlarge-push-9 {
    position: relative;
    left: 75%;
  }
  .xxxlarge-pull-9 {
    position: relative;
    left: -75%;
  }
  .xxxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .xxxlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .xxxlarge-offset-9 {
    margin-left: 75%;
  }
  .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .xxxlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .xxxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxxlarge-12 {
    width: 100%;
  }
  .xxxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxxlarge-up-1 > .column,
  .xxxlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .xxxlarge-up-1 > .column:nth-of-type(1n),
  .xxxlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-1 > .column:nth-of-type(1n + 1),
  .xxxlarge-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }
  .xxxlarge-up-1 > .column:last-child,
  .xxxlarge-up-1 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-2 > .column,
  .xxxlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .xxxlarge-up-2 > .column:nth-of-type(1n),
  .xxxlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-2 > .column:nth-of-type(2n + 1),
  .xxxlarge-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }
  .xxxlarge-up-2 > .column:last-child,
  .xxxlarge-up-2 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-3 > .column,
  .xxxlarge-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .xxxlarge-up-3 > .column:nth-of-type(1n),
  .xxxlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-3 > .column:nth-of-type(3n + 1),
  .xxxlarge-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }
  .xxxlarge-up-3 > .column:last-child,
  .xxxlarge-up-3 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-4 > .column,
  .xxxlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .xxxlarge-up-4 > .column:nth-of-type(1n),
  .xxxlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-4 > .column:nth-of-type(4n + 1),
  .xxxlarge-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }
  .xxxlarge-up-4 > .column:last-child,
  .xxxlarge-up-4 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-5 > .column,
  .xxxlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .xxxlarge-up-5 > .column:nth-of-type(1n),
  .xxxlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-5 > .column:nth-of-type(5n + 1),
  .xxxlarge-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }
  .xxxlarge-up-5 > .column:last-child,
  .xxxlarge-up-5 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-6 > .column,
  .xxxlarge-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .xxxlarge-up-6 > .column:nth-of-type(1n),
  .xxxlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-6 > .column:nth-of-type(6n + 1),
  .xxxlarge-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }
  .xxxlarge-up-6 > .column:last-child,
  .xxxlarge-up-6 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-7 > .column,
  .xxxlarge-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .xxxlarge-up-7 > .column:nth-of-type(1n),
  .xxxlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-7 > .column:nth-of-type(7n + 1),
  .xxxlarge-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }
  .xxxlarge-up-7 > .column:last-child,
  .xxxlarge-up-7 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-8 > .column,
  .xxxlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .xxxlarge-up-8 > .column:nth-of-type(1n),
  .xxxlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-8 > .column:nth-of-type(8n + 1),
  .xxxlarge-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }
  .xxxlarge-up-8 > .column:last-child,
  .xxxlarge-up-8 > .columns:last-child {
    float: left;
  }
  .xxxlarge-collapse > .column,
  .xxxlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .xxxlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .xxxlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .xxxlarge-uncollapse > .column,
  .xxxlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .xxxlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .xxxlarge-centered,
  .xxxlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .xxxlarge-uncentered,
  .xxxlarge-push-0,
  .xxxlarge-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .xxxlarge-uncentered,
  .xxxlarge-uncentered:last-child:not(:first-child),
  .xxxlarge-push-0,
  .xxxlarge-push-0:last-child:not(:first-child),
  .xxxlarge-pull-0,
  .xxxlarge-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .xxxlarge-uncentered:last-child:not(:first-child),
  .xxxlarge-push-0:last-child:not(:first-child),
  .xxxlarge-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
.column-block {
  margin-bottom: 1.25rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 1.875rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}
.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe;
}
[data-whatinput="mouse"] .button {
  outline: 0;
}
.button:hover,
.button:focus {
  background-color: #14679e;
  color: #fefefe;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button.primary {
  background-color: #1779ba;
  color: #fefefe;
}
.button.primary:hover,
.button.primary:focus {
  background-color: #126195;
  color: #fefefe;
}
.button.secondary {
  background-color: #767676;
  color: #fefefe;
}
.button.secondary:hover,
.button.secondary:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}
.button.success {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button.success:hover,
.button.success:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button.warning {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.warning:hover,
.button.warning:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button.alert {
  background-color: #cc4b37;
  color: #fefefe;
}
.button.alert:hover,
.button.alert:focus {
  background-color: #a53b2a;
  color: #fefefe;
}
.button.disabled,
.button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled,
.button.disabled:hover,
.button.disabled:focus,
.button[disabled],
.button[disabled]:hover,
.button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button.disabled.primary,
.button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.primary,
.button.disabled.primary:hover,
.button.disabled.primary:focus,
.button[disabled].primary,
.button[disabled].primary:hover,
.button[disabled].primary:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button.disabled.secondary,
.button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.secondary,
.button.disabled.secondary:hover,
.button.disabled.secondary:focus,
.button[disabled].secondary,
.button[disabled].secondary:hover,
.button[disabled].secondary:focus {
  background-color: #767676;
  color: #fefefe;
}
.button.disabled.success,
.button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.success,
.button.disabled.success:hover,
.button.disabled.success:focus,
.button[disabled].success,
.button[disabled].success:hover,
.button[disabled].success:focus {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button.disabled.warning,
.button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.warning,
.button.disabled.warning:hover,
.button.disabled.warning:focus,
.button[disabled].warning,
.button[disabled].warning:hover,
.button[disabled].warning:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.disabled.alert,
.button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.alert,
.button.disabled.alert:hover,
.button.disabled.alert:focus,
.button[disabled].alert,
.button[disabled].alert:hover,
.button[disabled].alert:focus {
  background-color: #cc4b37;
  color: #fefefe;
}
.button.hollow {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow,
.button.hollow:hover,
.button.hollow:focus {
  background-color: transparent;
}
.button.hollow.disabled,
.button.hollow.disabled:hover,
.button.hollow.disabled:focus,
.button.hollow[disabled],
.button.hollow[disabled]:hover,
.button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow:hover,
.button.hollow:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow:hover.disabled,
.button.hollow:hover[disabled],
.button.hollow:focus.disabled,
.button.hollow:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary:hover,
.button.hollow.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow.primary:hover.disabled,
.button.hollow.primary:hover[disabled],
.button.hollow.primary:focus.disabled,
.button.hollow.primary:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.secondary {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.secondary:hover,
.button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.secondary:hover.disabled,
.button.hollow.secondary:hover[disabled],
.button.hollow.secondary:focus.disabled,
.button.hollow.secondary:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover,
.button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.success:hover.disabled,
.button.hollow.success:hover[disabled],
.button.hollow.success:focus.disabled,
.button.hollow.success:focus[disabled] {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover,
.button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.warning:hover.disabled,
.button.hollow.warning:hover[disabled],
.button.hollow.warning:focus.disabled,
.button.hollow.warning:focus[disabled] {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover,
.button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.hollow.alert:hover.disabled,
.button.hollow.alert:hover[disabled],
.button.hollow.alert:focus.disabled,
.button.hollow.alert:focus[disabled] {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear,
.button.clear:hover,
.button.clear:focus {
  background-color: transparent;
}
.button.clear.disabled,
.button.clear.disabled:hover,
.button.clear.disabled:focus,
.button.clear[disabled],
.button.clear[disabled]:hover,
.button.clear[disabled]:focus {
  background-color: transparent;
}
.button.clear:hover,
.button.clear:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.clear:hover.disabled,
.button.clear:hover[disabled],
.button.clear:focus.disabled,
.button.clear:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear,
.button.clear.disabled,
.button.clear[disabled],
.button.clear:hover,
.button.clear:hover.disabled,
.button.clear:hover[disabled],
.button.clear:focus,
.button.clear:focus.disabled,
.button.clear:focus[disabled] {
  border-color: transparent;
}
.button.clear.primary {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear.primary:hover,
.button.clear.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.clear.primary:hover.disabled,
.button.clear.primary:hover[disabled],
.button.clear.primary:focus.disabled,
.button.clear.primary:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear.primary,
.button.clear.primary.disabled,
.button.clear.primary[disabled],
.button.clear.primary:hover,
.button.clear.primary:hover.disabled,
.button.clear.primary:hover[disabled],
.button.clear.primary:focus,
.button.clear.primary:focus.disabled,
.button.clear.primary:focus[disabled] {
  border-color: transparent;
}
.button.clear.secondary {
  border: 1px solid #767676;
  color: #767676;
}
.button.clear.secondary:hover,
.button.clear.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.clear.secondary:hover.disabled,
.button.clear.secondary:hover[disabled],
.button.clear.secondary:focus.disabled,
.button.clear.secondary:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}
.button.clear.secondary,
.button.clear.secondary.disabled,
.button.clear.secondary[disabled],
.button.clear.secondary:hover,
.button.clear.secondary:hover.disabled,
.button.clear.secondary:hover[disabled],
.button.clear.secondary:focus,
.button.clear.secondary:focus.disabled,
.button.clear.secondary:focus[disabled] {
  border-color: transparent;
}
.button.clear.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.clear.success:hover,
.button.clear.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.clear.success:hover.disabled,
.button.clear.success:hover[disabled],
.button.clear.success:focus.disabled,
.button.clear.success:focus[disabled] {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.clear.success,
.button.clear.success.disabled,
.button.clear.success[disabled],
.button.clear.success:hover,
.button.clear.success:hover.disabled,
.button.clear.success:hover[disabled],
.button.clear.success:focus,
.button.clear.success:focus.disabled,
.button.clear.success:focus[disabled] {
  border-color: transparent;
}
.button.clear.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.clear.warning:hover,
.button.clear.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.clear.warning:hover.disabled,
.button.clear.warning:hover[disabled],
.button.clear.warning:focus.disabled,
.button.clear.warning:focus[disabled] {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.clear.warning,
.button.clear.warning.disabled,
.button.clear.warning[disabled],
.button.clear.warning:hover,
.button.clear.warning:hover.disabled,
.button.clear.warning:hover[disabled],
.button.clear.warning:focus,
.button.clear.warning:focus.disabled,
.button.clear.warning:focus[disabled] {
  border-color: transparent;
}
.button.clear.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear.alert:hover,
.button.clear.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.clear.alert:hover.disabled,
.button.clear.alert:hover[disabled],
.button.clear.alert:focus.disabled,
.button.clear.alert:focus[disabled] {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear.alert,
.button.clear.alert.disabled,
.button.clear.alert[disabled],
.button.clear.alert:hover,
.button.clear.alert:hover.disabled,
.button.clear.alert:hover[disabled],
.button.clear.alert:focus,
.button.clear.alert:focus.disabled,
.button.clear.alert:focus[disabled] {
  border-color: transparent;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fefefe transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after,
.button.dropdown.clear::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.primary::after,
.button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.secondary::after,
.button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}
.button.dropdown.hollow.success::after,
.button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after,
.button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after,
.button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}
a.button:hover,
a.button:focus {
  text-decoration: none;
}
.button-group {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.button-group::before,
.button-group::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.button-group.primary .button {
  background-color: #1779ba;
  color: #fefefe;
}
.button-group.primary .button:hover,
.button-group.primary .button:focus {
  background-color: #126195;
  color: #fefefe;
}
.button-group.secondary .button {
  background-color: #767676;
  color: #fefefe;
}
.button-group.secondary .button:hover,
.button-group.secondary .button:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}
.button-group.success .button {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button-group.success .button:hover,
.button-group.success .button:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button-group.warning .button {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button-group.warning .button:hover,
.button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button-group.alert .button {
  background-color: #cc4b37;
  color: #fefefe;
}
.button-group.alert .button:hover,
.button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #fefefe;
}
.button-group.stacked,
.button-group.stacked-for-small,
.button-group.stacked-for-medium {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.button-group.stacked .button,
.button-group.stacked-for-small .button,
.button-group.stacked-for-medium .button {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child,
.button-group.stacked-for-small .button:last-child,
.button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button,
.button-group.stacked-for-small.expanded .button,
.button-group.stacked-for-medium.expanded .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 39.99875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}
@media screen and (max-width: 63.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}
.close-button {
  position: absolute;
  color: #8a8a8a;
  cursor: pointer;
}
[data-whatinput="mouse"] .close-button {
  outline: 0;
}
.close-button:hover,
.close-button:focus {
  color: #0a0a0a;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}
.close-button,
.close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}
.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #1779ba;
  color: #fefefe;
}
.label.primary {
  background: #1779ba;
  color: #fefefe;
}
.label.secondary {
  background: #767676;
  color: #fefefe;
}
.label.success {
  background: #3adb76;
  color: #0a0a0a;
}
.label.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.label.alert {
  background: #cc4b37;
  color: #fefefe;
}
.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #cacaca;
}
.progress.primary .progress-meter {
  background-color: #1779ba;
}
.progress.secondary .progress-meter {
  background-color: #767676;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}
.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #1779ba;
}
.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fefefe;
  white-space: nowrap;
}
.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none;
}
.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}
.slider-handle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #1779ba;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
[data-whatinput="mouse"] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: #14679e;
}
.slider-handle.is-dragging {
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}
.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
input[type="range"] {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  margin-bottom: 0.45rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  line-height: 1;
  cursor: pointer;
}
input[type="range"]:focus {
  outline: 0;
}
input[type="range"][disabled] {
  opacity: 0.25;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 0.5rem;
  background: #e6e6e6;
}
input[type="range"]::-webkit-slider-thumb {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.45rem;
  -webkit-appearance: none;
  background: #1779ba;
}
input[type="range"]::-moz-range-track {
  height: 0.5rem;
  -moz-appearance: none;
  background: #e6e6e6;
}
input[type="range"]::-moz-range-thumb {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.45rem;
  -moz-appearance: none;
  background: #1779ba;
}
input[type="range"]::-ms-track {
  height: 0.5rem;
  border: 0;
  border-top: 0.45rem solid #fefefe;
  border-bottom: 0.45rem solid #fefefe;
  background: #e6e6e6;
  overflow: visible;
  color: transparent;
}
input[type="range"]::-ms-thumb {
  width: 1.4rem;
  height: 1.4rem;
  border: 0;
  background: #1779ba;
}
input[type="range"]::-ms-fill-lower {
  background: #cacaca;
}
input[type="range"]::-ms-fill-upper {
  background: #e6e6e6;
}
output {
  vertical-align: middle;
  margin-left: 0.5em;
  line-height: 1.4rem;
}
.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fefefe;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}
.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #cacaca;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border-radius: 0;
  background: #fefefe;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #1779ba;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput="mouse"] input:focus ~ .switch-paddle {
  outline: 0;
}
.switch-active,
.switch-inactive {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}
.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}
.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}
.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}
.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
}
caption {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
}
thead {
  background: #f8f8f8;
  color: #0a0a0a;
}
tfoot {
  background: #f1f1f1;
  color: #0a0a0a;
}
thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
  text-align: left;
}
tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}
tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f1f1f1;
}
table.unstriped tbody {
  background-color: #fefefe;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f1f1f1;
  background-color: #fefefe;
}
@media screen and (max-width: 63.99875em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}
table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}
table.hover thead tr:hover {
  background-color: #f3f3f3;
}
table.hover tfoot tr:hover {
  background-color: #ececec;
}
table.hover tbody tr:hover {
  background-color: #f9f9f9;
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec;
}
.table-scroll {
  overflow-x: auto;
}
.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1779ba;
  color: #fefefe;
}
.badge.primary {
  background: #1779ba;
  color: #fefefe;
}
.badge.secondary {
  background: #767676;
  color: #fefefe;
}
.badge.success {
  background: #3adb76;
  color: #0a0a0a;
}
.badge.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.badge.alert {
  background: #cc4b37;
  color: #fefefe;
}
.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}
.breadcrumbs::before,
.breadcrumbs::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #0a0a0a;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #cacaca;
}
.breadcrumbs a {
  color: #1779ba;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed;
}
.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  background-color: #fff;
  color: #0a0a0a;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d7ecfa;
  color: #0a0a0a;
}
.callout.secondary {
  background-color: #eaeaea;
  color: #0a0a0a;
}
.callout.success {
  background-color: #e1faea;
  color: #0a0a0a;
}
.callout.warning {
  background-color: #fff3d9;
  color: #0a0a0a;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #0a0a0a;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background: #fefefe;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  color: #0a0a0a;
}
.card > :last-child {
  margin-bottom: 0;
}
.card-divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 1rem;
  background: #e6e6e6;
}
.card-divider > :last-child {
  margin-bottom: 0;
}
.card-section {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 1rem;
}
.card-section > :last-child {
  margin-bottom: 0;
}
.card-image {
  min-height: 1px;
}
.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}
.dropdown-pane.tiny {
  width: 100px;
}
.dropdown-pane.small {
  width: 200px;
}
.dropdown-pane.large {
  width: 400px;
}
.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before,
.pagination::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0625rem;
  border-radius: 0;
  font-size: 0.875rem;
  display: none;
}
.pagination li:last-child,
.pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
  color: #0a0a0a;
}
.pagination a:hover,
.pagination button:hover {
  background: #e6e6e6;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #1779ba;
  color: #fefefe;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #cacaca;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1875rem 0.625rem;
  content: "\2026";
  color: #0a0a0a;
}
.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "\00ab";
}
.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "\00bb";
}
.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  cursor: help;
}
.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #0a0a0a;
  font-size: 80%;
  color: #fefefe;
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #0a0a0a;
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #0a0a0a transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #0a0a0a;
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #0a0a0a transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left::before {
  left: 10%;
  right: auto;
}
.tooltip.align-right::before {
  left: auto;
  right: 10%;
}
.accordion {
  margin-left: 0;
  background: #fefefe;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}
.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}
.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 0 0;
}
.accordion-title:hover,
.accordion-title:focus {
  background-color: #e6e6e6;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "\2013";
}
.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fefefe;
  color: #0a0a0a;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}
.media-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media screen and (max-width: 39.99875em) {
  .media-object.stack-for-small {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.media-object-section {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 39.99875em) {
  .stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .stack-for-small .media-object-section img {
    width: 100%;
  }
}
.media-object-section.main-section {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.orbit {
  position: relative;
}
.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.orbit-slide {
  width: 100%;
  position: absolute;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}
.orbit-figure {
  margin: 0;
}
.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(10, 10, 10, 0.5);
  color: #fefefe;
}
.orbit-previous,
.orbit-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe;
}
[data-whatinput="mouse"] .orbit-previous,
[data-whatinput="mouse"] .orbit-next {
  outline: 0;
}
.orbit-previous:hover,
.orbit-next:hover,
.orbit-previous:active,
.orbit-next:active,
.orbit-previous:focus,
.orbit-next:focus {
  background-color: rgba(10, 10, 10, 0.5);
}
.orbit-previous {
  left: 0;
}
.orbit-next {
  left: auto;
  right: 0;
}
.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput="mouse"] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #cacaca;
}
.orbit-bullets button:hover {
  background-color: #8a8a8a;
}
.orbit-bullets button.is-active {
  background-color: #8a8a8a;
}
.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}
.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none;
}
.tabs::before,
.tabs::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.tabs::after {
  clear: both;
}
.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}
.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}
.tabs.primary {
  background: #1779ba;
}
.tabs.primary > li > a {
  color: #fefefe;
}
.tabs.primary > li > a:hover,
.tabs.primary > li > a:focus {
  background: #1673b1;
}
.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
[data-whatinput="mouse"] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #fefefe;
  color: #1468a0;
}
.tabs-title > a:focus,
.tabs-title > a[aria-selected="true"] {
  background: #e6e6e6;
  color: #1779ba;
}
.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #0a0a0a;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}
.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}
.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 4px solid #fefefe;
  border-radius: 0;
  -webkit-box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  line-height: 0;
}
a.thumbnail {
  -webkit-transition: -webkit-box-shadow 200ms ease-out;
  transition: -webkit-box-shadow 200ms ease-out;
  transition: box-shadow 200ms ease-out;
  transition: box-shadow 200ms ease-out, -webkit-box-shadow 200ms ease-out;
}
a.thumbnail:hover,
a.thumbnail:focus {
  -webkit-box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
  box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
}
a.thumbnail image {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
[data-whatinput="mouse"] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu,
.menu.horizontal {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.menu.vertical {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.menu.expanded li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.menu.simple {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.medium-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.large-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.large-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 75em) {
  .menu.xlarge-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.xlarge-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.xlarge-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .menu.xlarge-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 90em) {
  .menu.xxlarge-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.xxlarge-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.xxlarge-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .menu.xxlarge-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 98.75em) {
  .menu.xxxlarge-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.xxxlarge-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.xxxlarge-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .menu.xxxlarge-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu.icon-top a,
.menu.icon-right a,
.menu.icon-bottom a,
.menu.icon-left a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu.icon-left li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu .active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu.align-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu.align-right li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu.align-center li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}
.menu-centered > .menu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu-centered > .menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.no-js [data-responsive-menu] ul {
  display: none;
}
.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fefefe;
  -webkit-box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
  box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
  content: "";
}
.menu-icon:hover::after {
  background: #cacaca;
  -webkit-box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}
.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  -webkit-box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
  box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  -webkit-box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}
.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu
  .is-accordion-submenu-parent:not(.has-submenu-toggle)
  > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded="true"] > a::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.is-accordion-submenu-parent {
  position: relative;
}
.has-submenu-toggle > a {
  margin-right: 40px;
}
.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}
.submenu-toggle[aria-expanded="true"]::after {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.submenu-toggle-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}
.drilldown a {
  padding: 0.7rem 1rem;
  background: #fefefe;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  -webkit-transition: -webkit-transform 0.15s linear;
  transition: -webkit-transform 0.15s linear;
  transition: transform 0.15s linear;
  transition: transform 0.15s linear, -webkit-transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}
.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput="mouse"] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: rgba(0, 0, 0, 0);
  color: #1779ba;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media screen and (min-width: 75em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media screen and (min-width: 90em) {
  .dropdown.menu.xxlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xxlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xxlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xxlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media screen and (min-width: 98.75em) {
  .dropdown.menu.xxxlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xxxlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xxxlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xxxlarge-horizontal
    > li.is-dropdown-submenu-parent
    > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xxxlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xxxlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}
.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}
.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fefefe;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}
.is-off-canvas-open {
  overflow: hidden;
}
.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}
.off-canvas {
  position: fixed;
  z-index: 12;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
}
[data-whatinput="mouse"] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
}
[data-whatinput="mouse"] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas-absolute.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-content.is-open-left.has-transition-push {
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
}
.position-left.is-transition-push {
  -webkit-box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25);
  box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25);
}
.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right {
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-content.is-open-right.has-transition-push {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}
.position-right.is-transition-push {
  -webkit-box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25);
  box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25);
}
.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top {
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-content.is-open-top.has-transition-push {
  -webkit-transform: translateY(250px);
  transform: translateY(250px);
}
.position-top.is-transition-push {
  -webkit-box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25);
  box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25);
}
.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  -webkit-transform: translateY(250px);
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom {
  -webkit-transform: translateY(250px);
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-content.is-open-bottom.has-transition-push {
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px);
}
.position-bottom.is-transition-push {
  -webkit-box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25);
  box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25);
}
.off-canvas-content {
  -webkit-transform: none;
  transform: none;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-push {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 75em) {
  .position-left.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-xlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-xlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-xlarge ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-xlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 90em) {
  .position-left.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-xxlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-xxlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-xxlarge ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-xxlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 98.75em) {
  .position-left.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-left,
  .off-canvas.in-canvas-for-medium.position-right,
  .off-canvas.in-canvas-for-medium.position-top,
  .off-canvas.in-canvas-for-medium.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-left,
  .off-canvas.in-canvas-for-large.position-right,
  .off-canvas.in-canvas-for-large.position-top,
  .off-canvas.in-canvas-for-large.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
@media screen and (min-width: 75em) {
  .off-canvas.in-canvas-for-xlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-xlarge.position-left,
  .off-canvas.in-canvas-for-xlarge.position-right,
  .off-canvas.in-canvas-for-xlarge.position-top,
  .off-canvas.in-canvas-for-xlarge.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xlarge .close-button {
    display: none;
  }
}
@media screen and (min-width: 90em) {
  .off-canvas.in-canvas-for-xxlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-xxlarge.position-left,
  .off-canvas.in-canvas-for-xxlarge.position-right,
  .off-canvas.in-canvas-for-xxlarge.position-top,
  .off-canvas.in-canvas-for-xxlarge.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xxlarge .close-button {
    display: none;
  }
}
@media screen and (min-width: 98.75em) {
  .off-canvas.in-canvas-for-xxxlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-xxxlarge.position-left,
  .off-canvas.in-canvas-for-xxxlarge.position-right,
  .off-canvas.in-canvas-for-xxxlarge.position-top,
  .off-canvas.in-canvas-for-xxxlarge.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xxxlarge .close-button {
    display: none;
  }
}
html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
}
html.is-reveal-open body {
  overflow-y: hidden;
}
.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: auto;
}
.reveal {
  z-index: 1006;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}
[data-whatinput="mouse"] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column,
.reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 1440px;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 1440px;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 1440px;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 1440px;
  }
}
.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 39.99875em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}
.sticky-container {
  position: relative;
}
.sticky {
  position: relative;
  z-index: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}
.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}
.title-bar {
  padding: 0.5rem;
  background: #0a0a0a;
  color: #fefefe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.title-bar-left,
.title-bar-right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.title-bar-right {
  text-align: right;
}
.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}
.top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 40em) {
  .top-bar {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 63.99875em) {
  .top-bar.stacked-for-medium {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 74.99875em) {
  .top-bar.stacked-for-large {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 89.99875em) {
  .top-bar.stacked-for-xlarge {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-xlarge .top-bar-left,
  .top-bar.stacked-for-xlarge .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 98.74875em) {
  .top-bar.stacked-for-xxlarge {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-xxlarge .top-bar-left,
  .top-bar.stacked-for-xxlarge .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.top-bar.stacked-for-xxxlarge {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top-bar.stacked-for-xxxlarge .top-bar-left,
.top-bar.stacked-for-xxxlarge .top-bar-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.top-bar-title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0.5rem 1rem 0.5rem 0;
}
.top-bar-left,
.top-bar-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.clearfix::before,
.clearfix::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.clearfix::after {
  clear: both;
}
.hide {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
@media screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}
@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}
@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}
@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}
@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}
@media screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}
@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}
@media screen and (min-width: 75em) {
  .hide-for-xlarge {
    display: none !important;
  }
}
@media screen and (max-width: 74.99875em) {
  .show-for-xlarge {
    display: none !important;
  }
}
@media screen and (min-width: 75em) and (max-width: 89.99875em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}
@media screen and (max-width: 74.99875em), screen and (min-width: 90em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}
@media screen and (min-width: 90em) {
  .hide-for-xxlarge {
    display: none !important;
  }
}
@media screen and (max-width: 89.99875em) {
  .show-for-xxlarge {
    display: none !important;
  }
}
@media screen and (min-width: 90em) and (max-width: 98.74875em) {
  .hide-for-xxlarge-only {
    display: none !important;
  }
}
@media screen and (max-width: 89.99875em), screen and (min-width: 98.75em) {
  .show-for-xxlarge-only {
    display: none !important;
  }
}
@media screen and (min-width: 98.75em) {
  .hide-for-xxxlarge {
    display: none !important;
  }
}
@media screen and (max-width: 98.74875em) {
  .show-for-xxxlarge {
    display: none !important;
  }
}
@media screen and (min-width: 98.75em) {
  .hide-for-xxxlarge-only {
    display: none !important;
  }
}
@media screen and (max-width: 98.74875em) {
  .show-for-xxxlarge-only {
    display: none !important;
  }
}
.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}
.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}
.small-order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.small-order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.small-order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.small-order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.small-order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.small-order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}
@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .medium-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .medium-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .medium-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .medium-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .medium-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .large-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .large-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .large-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .large-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .large-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xlarge-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xlarge-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xlarge-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xlarge-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xlarge-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xxlarge-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xxlarge-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xxlarge-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xxlarge-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xxlarge-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xxxlarge-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xxxlarge-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xxxlarge-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xxxlarge-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xxxlarge-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
a {
  text-decoration: none;
  color: #0a0a0a;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
a:not(.button):hover,
a:not(.button):focus,
a.active,
li.active a,
#footer-container a:hover,
#footer-container a:hover {
  color: #0a0a0a;
  text-decoration: underline;
}
p a,
.font-p a {
  text-decoration: underline;
}
a.black:hover,
a.black:hover {
  color: #0a0a0a;
  text-decoration: underline;
  opacity: 0.6;
}
a.white:hover,
a.white:hover {
  color: #fff;
  text-decoration: underline;
  opacity: 0.6;
}
a.dark-grey:hover *,
a.dark-grey:hover {
  color: #58595b;
  text-decoration: underline;
  opacity: 0.6;
}
.hover-bg {
  background-image: linear-gradient(120deg, #e7e8e8 0%, #e7e8e8 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
  -webkit-transition: background-size 0.25s ease-in;
  transition: background-size 0.25s ease-in;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.hover-bg:hover {
  background-size: 100% 88%;
}
.hover-bg::after,
.hover-bg::before {
  content: none;
}
p .hover-bg,
.font-p .hover-bg {
  font-weight: 300;
}
.button,
.btn-black,
.sweet-alert button {
  position: relative;
  padding: 16px 8px;
  border-radius: 0;
  margin-bottom: 0;
  background-color: #0a0a0a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  min-width: 150px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  text-transform: uppercase;
  border: 2px solid #0a0a0a !important;
  text-transform: uppercase;
}
.button:hover,
.button:focus,
.btn-black:hover,
.btn-black:focus,
.sweet-alert button:hover,
.sweet-alert button:focus {
  opacity: 0.6;
  background: #0a0a0a;
  background-color: #0a0a0a;
  color: #fff;
}
.button.btn-white,
.btn-black.btn-white,
.sweet-alert button.btn-white {
  color: #0a0a0a;
  background-color: #fff;
  border-color: #fff !important;
}
.button.btn-white:focus,
.button.btn-white:hover,
.btn-black.btn-white:focus,
.btn-black.btn-white:hover,
.sweet-alert button.btn-white:focus,
.sweet-alert button.btn-white:hover {
  background: #fff;
  background-color: #fff;
  color: #0a0a0a;
}
.button.btn-red,
.btn-black.btn-red,
.sweet-alert button.btn-red {
  color: #fff;
  background-color: #f44336;
  border-color: #f44336 !important;
}
.button.btn-red:focus,
.button.btn-red:hover,
.btn-black.btn-red:focus,
.btn-black.btn-red:hover,
.sweet-alert button.btn-red:focus,
.sweet-alert button.btn-red:hover {
  background: #f44336;
  background-color: #f44336;
  color: #fff;
}
.button.btn-green,
.btn-black.btn-green,
.sweet-alert button.btn-green {
  color: #fff;
  background-color: #53b064;
  border-color: #53b064 !important;
}
.button.btn-green:focus,
.button.btn-green:hover,
.btn-black.btn-green:focus,
.btn-black.btn-green:hover,
.sweet-alert button.btn-green:focus,
.sweet-alert button.btn-green:hover {
  background: #53b064;
  background-color: #53b064;
  color: #fff;
}
.button.btn-gold,
.btn-black.btn-gold,
.sweet-alert button.btn-gold {
  color: #fff;
  background-color: #ccb46d;
  border-color: #ccb46d !important;
}
.button.btn-gold:focus,
.button.btn-gold:hover,
.btn-black.btn-gold:focus,
.btn-black.btn-gold:hover,
.sweet-alert button.btn-gold:focus,
.sweet-alert button.btn-gold:hover {
  background: #ccb46d;
  background-color: #ccb46d;
  color: #fff;
}
.button.btn-grey,
.btn-black.btn-grey,
.sweet-alert button.btn-grey {
  color: #fff;
  background-color: #a6a6a6;
  border-color: #a6a6a6 !important;
}
.button.btn-grey:focus,
.button.btn-grey:hover,
.btn-black.btn-grey:focus,
.btn-black.btn-grey:hover,
.sweet-alert button.btn-grey:focus,
.sweet-alert button.btn-grey:hover {
  background: #a6a6a6;
  background-color: #a6a6a6;
  color: #fff;
}
.button.btn-dark-grey,
.btn-black.btn-dark-grey,
.sweet-alert button.btn-dark-grey {
  color: #fff;
  background-color: #58595b;
  border-color: #58595b !important;
}
.button.btn-dark-grey:focus,
.button.btn-dark-grey:hover,
.btn-black.btn-dark-grey:focus,
.btn-black.btn-dark-grey:hover,
.sweet-alert button.btn-dark-grey:focus,
.sweet-alert button.btn-dark-grey:hover {
  background: #58595b;
  background-color: #58595b;
  color: #fff;
}
.button.btn-alto-grey,
.btn-black.btn-alto-grey,
.sweet-alert button.btn-alto-grey {
  color: #4a4a4a;
  background-color: #d8d8d8;
  border-color: #d8d8d8 !important;
}
.button.btn-alto-grey:focus,
.button.btn-alto-grey:hover,
.btn-black.btn-alto-grey:focus,
.btn-black.btn-alto-grey:hover,
.sweet-alert button.btn-alto-grey:focus,
.sweet-alert button.btn-alto-grey:hover {
  background: #d8d8d8;
  background-color: #d8d8d8;
  color: #4a4a4a;
}
.button.btn-transparent,
.button.btn-white-transparent,
.btn-black.btn-transparent,
.btn-black.btn-white-transparent,
.sweet-alert button.btn-transparent,
.sweet-alert button.btn-white-transparent {
  border-color: #0a0a0a !important;
  color: #fff;
  background-color: transparent;
}
.button.btn-transparent:focus,
.button.btn-transparent:hover,
.button.btn-white-transparent:focus,
.button.btn-white-transparent:hover,
.btn-black.btn-transparent:focus,
.btn-black.btn-transparent:hover,
.btn-black.btn-white-transparent:focus,
.btn-black.btn-white-transparent:hover,
.sweet-alert button.btn-transparent:focus,
.sweet-alert button.btn-transparent:hover,
.sweet-alert button.btn-white-transparent:focus,
.sweet-alert button.btn-white-transparent:hover {
  background: transparent;
  background-color: transparent;
  color: #fff;
}
.button.btn-black-transparent,
.btn-black.btn-black-transparent,
.sweet-alert button.btn-black-transparent {
  border-color: #0a0a0a !important;
  color: #0a0a0a;
  background-color: transparent;
}
.button.btn-black-transparent.disabled,
.button.btn-black-transparent.disabled:focus,
.button.btn-black-transparent.disabled:hover,
.btn-black.btn-black-transparent.disabled,
.btn-black.btn-black-transparent.disabled:focus,
.btn-black.btn-black-transparent.disabled:hover,
.sweet-alert button.btn-black-transparent.disabled,
.sweet-alert button.btn-black-transparent.disabled:focus,
.sweet-alert button.btn-black-transparent.disabled:hover {
  background-color: transparent;
  color: #0a0a0a;
  opacity: 0.6;
}
.button.btn-black-transparent:focus,
.button.btn-black-transparent:hover,
.btn-black.btn-black-transparent:focus,
.btn-black.btn-black-transparent:hover,
.sweet-alert button.btn-black-transparent:focus,
.sweet-alert button.btn-black-transparent:hover {
  background: transparent;
  background-color: transparent;
  color: #0a0a0a;
}
.button.btn-dark-grey-transparent,
.btn-black.btn-dark-grey-transparent,
.sweet-alert button.btn-dark-grey-transparent {
  border-color: #58595b !important;
  padding: 13px 0;
  color: #58595b;
  background-color: transparent;
}
.button.btn-dark-grey-transparent:focus,
.button.btn-dark-grey-transparent:hover,
.btn-black.btn-dark-grey-transparent:focus,
.btn-black.btn-dark-grey-transparent:hover,
.sweet-alert button.btn-dark-grey-transparent:focus,
.sweet-alert button.btn-dark-grey-transparent:hover {
  background: transparent;
  background-color: transparent;
  color: #58595b;
}
.button.btn-promo,
.btn-black.btn-promo,
.sweet-alert button.btn-promo {
  background-color: #ed6e52;
  border-color: #ed6e52 !important;
  color: #fff;
}
.button.btn-promo:focus,
.button.btn-promo:hover,
.btn-black.btn-promo:focus,
.btn-black.btn-promo:hover,
.sweet-alert button.btn-promo:focus,
.sweet-alert button.btn-promo:hover {
  background: #ed6e52;
  background-color: #ed6e52;
  color: #fff;
}
.button.btn-custom,
.btn-black.btn-custom,
.sweet-alert button.btn-custom {
  padding-top: 13px;
  padding-bottom: 13px;
  border: 2px solid;
}
.button.border-thin,
.btn-black.border-thin,
.sweet-alert button.border-thin {
  border: 1px solid #0a0a0a;
}
.button.border-thin-grey,
.btn-black.border-thin-grey,
.sweet-alert button.border-thin-grey {
  border-color: #979797;
}
.button[disabled],
.btn-black[disabled],
.sweet-alert button[disabled] {
  background-color: black;
}
.button[disabled]:hover,
.btn-black[disabled]:hover,
.sweet-alert button[disabled]:hover {
  background-color: black;
}
.button.disabled,
.button.disabled:hover,
.button.disabled:focus {
  background-color: #0a0a0a;
  color: #fff;
}
.sweet-alert button {
  margin-bottom: 25px;
}
.sweet-alert button:focus {
  opacity: 1;
}
.sweet-alert button:hover {
  opacity: 0.6 !important;
}
.no-hover:hover *,
.no-hover:focus *,
.no-hover:hover,
.no-hover:focus {
  color: inherit;
  text-decoration: none !important;
  opacity: 1;
}
.black.no-hover:hover *,
.black.no-hover:focus *,
.black.no-hover:hover,
.black.no-hover:focus {
  color: #0a0a0a;
  text-decoration: none;
  opacity: 1;
}
.red.no-hover:hover *,
.red.no-hover:focus *,
.red.no-hover:hover,
.red.no-hover:focus {
  color: #f44336;
  text-decoration: none;
  opacity: 1;
}
.hover-fade:hover,
.hover-fade:focus {
  opacity: 0.6;
  text-decoration: none !important;
}
.hover-fade:hover *,
.hover-fade:focus * {
  text-decoration: none !important;
}
ul.button-list li {
  list-style: none;
  display: inline-block;
}
ul.button-list li:first-child {
  margin-right: 10px !important;
}
@media only screen and (max-width: 568px) {
  ul.button-list li {
    margin: 0 !important;
  }
}
.sticky-buttons,
.sticky-buttons-tablet {
  position: fixed;
  -webkit-backface-visibility: hidden;
  width: 100%;
  bottom: 0;
  z-index: 999999;
  padding: 15px 20px;
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.sticky-buttons.pull-up,
.pull-up.sticky-buttons-tablet {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.sticky-buttons .button,
.sticky-buttons-tablet .button {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 1280px) {
  .button.btn-white.transparent {
    padding: 13px 0;
  }
}
@media only screen and (max-width: 64em) {
  .button.btn-white.transparent {
    padding: 13px 0;
  }
}
@media screen and (max-width: 39.99875em) {
  .button + .button {
    margin-top: 10px;
  }
}
@media (hover: none) {
  .button:after,
  .sweet-alert button:after {
    display: none;
  }
  .button:hover {
    background-color: #0a0a0a;
    color: #fff;
  }
  .btn-white:hover {
    background-color: #fff;
    color: #0a0a0a;
  }
  .btn-red:hover {
    background-color: #f44336;
    color: #fff;
  }
  .btn-transparent:hover {
    background-color: transparent;
    color: #fff;
  }
}
.mobi-basic-btn {
  padding: 16px;
  border: 1px solid #0a0a0a;
  border-radius: 0;
  margin-bottom: 0;
  background-color: #0a0a0a;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
  max-width: 200px;
}
.mobi-basic-btn.full {
  width: 100%;
  max-width: 100%;
}
a.light-grey-link {
  color: #a6a6a6;
  text-decoration: none;
}
.centered-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.button.flow {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 40em) {
  .button-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .button + .button {
    margin-left: 16px;
  }
  .button.flow {
    width: auto;
    max-width: unset;
  }
}
ul {
  margin-left: 0;
}
ul li {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1441px) {
  ul li {
    font-size: 1rem;
    line-height: 26px;
  }
}
@media only screen and (max-width: 48.063em) {
  ul li {
    font-size: 0.875rem;
    line-height: 19.33px;
    letter-spacing: 0.42px;
  }
}
@media only screen and (max-width: 39.9375em) {
  ul li {
    line-height: 14px;
  }
}
ul li ul {
  margin-top: 10px;
}
ul li a,
ul li a:hover,
ul li a:focus,
ul li a.active,
ul li.active a {
  text-decoration: none;
}
ul.checkmarks li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
ul.checkmarks li .fa {
  background: white;
  border-radius: 50%;
  color: black;
  font-size: 15px;
  height: 25px;
  min-width: 25px;
  padding: 5px;
  width: 25px;
}
ul.no-list li {
  list-style: none;
  display: block;
}
ul.inline-list li {
  list-style: none;
  display: inline;
}
ul.inline-block-list li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}
ul.red-list li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  display: list-item;
  text-align: left;
}
ul.red-list li::before {
  content: "\22c5";
  color: #0a0a0a;
  font-size: 40px;
  position: absolute;
  left: -8px;
  top: -2px;
}
ul.black-list li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}
ul.black-list li::before {
  content: "\22c5";
  color: #0a0a0a;
  font-size: 40px;
  position: absolute;
  left: -8px;
  top: -2px;
}
ul.transparent-list li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}
ul.transparent-list li::before {
  content: "";
  border: 1px solid #0a0a0a;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  left: -8px;
  top: 11px;
}
@media only screen and (max-width: 1280px) {
  ul li {
    font-size: 0.875rem;
    line-height: 26px;
  }
}
li.is-submenu-item a,
li.is-submenu-item,
ul.myacc {
  -webkit-transition: 800ms ease;
  transition: 800ms ease;
  -webkit-transition: 800ms;
  -moz-transition: 800ms;
}
ul.myacc:hover {
  background: lightgray;
  border-radius: 5px;
}
.is-dropdown-submenu {
  border: none;
  text-align: left;
  min-width: 175px;
}
li.is-submenu-item:hover,
li.is-submenu-item:hover a {
  background: lightgray;
  color: white;
}
li.logout.is-submenu-item.is-dropdown-submenu-item {
  border-top: 1px solid lightgray;
  margin-top: 25px;
}
li.logout:hover a,
li.logout:hover {
  background: white;
  color: black;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="passw.form-group .barord"],
input[type="file"],
input[type="date"] {
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
.accordion,
.accordion-content {
  background: none;
}
fieldset {
  margin: 0 0 3rem;
  padding: 0;
  border: none;
}
.form-group {
  margin: 5px 0 2.5em;
  font-family: "Helvetica Neue", "Helvetica", Arial;
}
.form-group-signin {
  margin-bottom: 2em;
}
.form-group.search-input:before {
  font-family: icomoon;
  position: absolute;
  content: "\e908";
  font-size: 20px;
  width: 22px;
  left: 8px;
  top: -6px;
  z-index: 11;
}
.form-group.search-location:before {
  font-family: icomoon;
  position: absolute;
  content: "\e907";
  font-size: 20px;
  width: 22px;
  left: 0;
  top: 0;
  z-index: 11;
}
.form-group.search-location-right:before {
  font-family: icomoon;
  position: absolute;
  content: "\e907";
  font-size: 20px;
  width: 22px;
  right: 0;
  top: 0;
  z-index: 11;
}
.form-group.search-input input {
  padding-left: 40px !important;
}
.form-group.search-location input {
  padding-left: 35px !important;
  padding-bottom: 10px;
}
.form-group.search-location-right input {
  padding-left: 0;
  padding-bottom: 10px;
}
.subscribe-section .form-group:before {
  left: 8px;
  top: -6px;
}
.subscribe-section .form-group.search-location:before {
  top: -2px;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  background-color: transparent;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-radio,
.form-group {
  position: relative;
}
.form-inline > .form-group,
.form-inline > .btn {
  display: inline-block;
  margin-bottom: 0;
}
.form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  color: #b3b3b3;
  font-size: 0.8rem;
}
.checkbox .form-help,
.form-radio .form-help,
.form-group .form-help {
  position: absolute;
  width: 100%;
}
.checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}
.form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}
.form-group input {
  height: 2rem;
}
.form-group textarea {
  resize: none;
}
.form-group select {
  width: 100%;
  font-size: 18px;
  height: 2rem;
  padding: 0.125rem 0.125rem 0.0625rem;
  border: none;
  line-height: 1.6;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: inherit;
}
.form-group.select:after {
  font-family: FontAwesome;
  position: absolute;
  content: "\f107";
  right: 0;
  top: 4px;
  z-index: 10;
}
.form-group select + .control-label {
  letter-spacing: 0.24px;
  line-height: 14px;
  font-size: 14px;
}
.form-group .control-label {
  position: absolute;
  top: 2px;
  left: 0;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #a6a6a6;
  font-weight: normal;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
}
@media only screen and (max-width: 1441px) {
  .form-group .control-label {
    top: 5px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .form-group .control-label {
    top: 5px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 48.063em) {
  .form-group .control-label {
    top: 8px;
  }
}
.form-group .bar {
  position: relative;
  border-bottom: 2px solid #0a0a0a;
  display: block;
}
.form-group .bar::before {
  content: "";
  height: 4px;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #0a0a0a;
  -webkit-transition: left 0.28s ease, width 0.28s ease;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}
.form-group input,
.form-group textarea {
  display: block;
  background: none;
  padding: 0.125rem 0.125rem;
  font-size: 18px;
  border-width: 0;
  border-color: transparent;
  line-height: 2rem;
  width: 100%;
  color: #0a0a0a;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}
.form-group input[type="file"] {
  line-height: 1;
}
.form-group select,
.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value,
.form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
  color: #0a0a0a;
  margin-bottom: 0;
}
.form-group > label + label.control-label,
.form-group select ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group input.form-file ~ .control-label,
.form-group input.has-value ~ .control-label,
.form-group textarea:focus ~ .control-label,
.form-group textarea:valid ~ .control-label,
.form-group textarea.form-file ~ .control-label,
.form-group textarea.has-value ~ .control-label {
  color: #0a0a0a;
  top: -0.9rem;
  left: 0;
  letter-spacing: 0.24px;
  line-height: 14px;
  font-size: 14px;
}
@media only screen and (max-width: 1441px) {
  .form-group > label + label.control-label,
  .form-group select ~ .control-label,
  .form-group input:focus ~ .control-label,
  .form-group input.form-file ~ .control-label,
  .form-group input.has-value ~ .control-label,
  .form-group textarea:focus ~ .control-label,
  .form-group textarea:valid ~ .control-label,
  .form-group textarea.form-file ~ .control-label,
  .form-group textarea.has-value ~ .control-label {
    top: -0.5rem;
    font-size: 13px;
    line-height: 13px;
  }
}
@media only screen and (max-width: 48.063em) {
  .form-group > label + label.control-label,
  .form-group select ~ .control-label,
  .form-group input:focus ~ .control-label,
  .form-group input.form-file ~ .control-label,
  .form-group input.has-value ~ .control-label,
  .form-group textarea:focus ~ .control-label,
  .form-group textarea:valid ~ .control-label,
  .form-group textarea.form-file ~ .control-label,
  .form-group textarea.has-value ~ .control-label {
    font-size: 12px;
    line-height: 12px;
  }
}
.sliders .form-group input:valid ~ .control-label {
  font-size: 1rem;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}
.form-group select:focus ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group textarea:focus ~ .control-label {
  color: #0a0a0a;
}
.form-group select:focus ~ .bar::before,
.form-group input:focus ~ .bar::before,
.form-group textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}
.checkbox label,
.form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 1.7rem;
  text-align: left;
  display: block;
  line-height: 1.3;
}
.checkbox input,
.form-radio input {
  width: auto;
  opacity: 0.00000001;
  left: 0;
}
.radio {
  display: inline-block;
  margin: 0 2rem 1rem 0;
}
.radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #0a0a0a;
}
.radio .helper::before,
.radio .helper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  border-radius: 50%;
  border: 0.12rem solid currentColor;
}
.radio .helper::after {
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: #00d261;
  border-color: #00d261;
}
.radio label:hover .helper {
  color: #0a0a0a;
}
.radio input:checked ~ .helper::after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
.radio input:checked ~ .helper::before {
  color: #00d261;
}
.checkbox {
  margin-bottom: 1rem;
}
.checkbox .helper {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  -webkit-transition: border-color 0.28s ease;
  transition: border-color 0.28s ease;
  margin-top: 3px;
}
.checkbox .helper::before,
.checkbox .helper::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #00d261;
  display: block;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 0.25rem;
  content: "";
  -webkit-transition: opacity 0.28s ease, height 0s linear 0.28s;
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
}
.checkbox .helper::before {
  top: 0.65rem;
  left: 0.38rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-box-shadow: 0 0 0 0.0625rem #fff;
  box-shadow: 0 0 0 0.0625rem #fff;
}
.checkbox .helper::after {
  top: 0.3rem;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.checkbox label:hover .helper {
  color: #0a0a0a;
}
.checkbox input:checked ~ .helper {
  color: #0a0a0a;
}
.checkbox input:checked ~ .helper::after,
.checkbox input:checked ~ .helper::before {
  opacity: 1;
  -webkit-transition: height 0.28s ease;
  transition: height 0.28s ease;
}
.checkbox input:checked ~ .helper::after {
  height: 0.5rem;
}
.checkbox input:checked ~ .helper::before {
  height: 1.1rem;
  -webkit-transition-delay: 0.28s;
  transition-delay: 0.28s;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: 0.5rem;
}
.has-error .legend.legend,
.has-error.form-group .control-label.control-label {
  color: #f44336;
}
.has-error.form-group .form-help,
.has-error.form-group .helper,
.has-error.checkbox .form-help,
.has-error.checkbox .helper,
.has-error.radio .form-help,
.has-error.radio .helper,
.has-error.form-radio .form-help,
.has-error.form-radio .helper {
  color: #f44336;
}
.has-error .bar::before {
  background: #f44336;
  left: 0;
  width: 100%;
}
.form-group input[type="text"]:valid:not(:focus) ~ .error:before,
.form-group input[type="url"]:valid:not(:focus) ~ .error:before,
.form-group input[type="tel"]:valid:not(:focus) ~ .error:before,
.form-group input[type="number"]:valid:not(:focus) ~ .error:before,
.form-group input[type="color"]:valid:not(:focus) ~ .error:before,
.form-group input[type="email"]:valid:not(:focus) ~ .error:before,
.form-group input[type="password"]:valid:not(:focus) ~ .error:before {
  margin: 0;
  width: 264px;
  background: #4caf50;
}
.form-group input[type="text"] ~ .info,
.form-group input[type="url"] ~ .info,
.form-group input[type="tel"] ~ .info,
.form-group input[type="number"] ~ .info,
.form-group input[type="color"] ~ .info,
.form-group input[type="email"] ~ .info,
.form-group input[type="password"] ~ .info {
  position: absolute;
  top: 5px;
  right: 10px;
  margin: 0 0 0 10px;
  border-radius: 100%;
  color: #999;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form-radio .radio + .radio {
  margin-right: 0;
}
.is-invalid-input:not(:focus),
:not(:focus).is-invalid-input,
.is-invalid-input2:not(:focus),
:not(:focus).is-invalid-input2,
.invalid-input:not(:focus),
:not(:focus).invalid-input {
  background-color: transparent;
  border-color: transparent;
}
.form-group .is-invalid-input:not(:focus) + span + label + .bar,
.form-group .is-invalid-input2:not(:focus) + span + label + .bar,
.form-group .invalid-input:not(:focus) + span + label + .bar {
  border-color: #f44336;
}
.form-group .is-invalid-input ~ .bar {
  border-color: #f44336;
}
.is-invalid-input ~ .bar::before {
  background-color: #f44336;
}
.form-error {
  margin-top: 5px;
  position: absolute;
  color: #f44336;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.24px;
  font-size: 14px;
  text-align: left;
}
@media only screen and (max-width: 1441px) {
  .form-error {
    font-size: 13px;
    line-height: 13px;
  }
}
@media only screen and (max-width: 48.063em) {
  .form-error {
    font-size: 12px;
    line-height: 12px;
  }
}
.form-group input[disabled] ~ .bar,
.form-group select[disabled] ~ .bar,
.form-group textarea[disabled] ~ .bar {
  border-bottom-style: dashed;
}
input[type="checkbox"].is-invalid-input:not(:focus) + .helper {
  border-color: #f44336;
}
.form-group.form-txtarea {
  max-height: none;
}
.form-group ::-moz-placeholder {
  font-size: 18px !important;
  color: #a6a6a6 !important;
}
.form-group :-ms-input-placeholder {
  font-size: 18px !important;
  color: #a6a6a6 !important;
}
.form-group :-moz-placeholder {
  font-size: 18px !important;
  color: #a6a6a6 !important;
}
.form-group ::-webkit-input-placeholder {
  font-size: 18px !important;
  color: #a6a6a6 !important;
}
.show {
  display: block !important;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-group input[type="number"] {
  -webkit-appearance: textfield;
}
@media only screen and (max-width: 1441px) {
  .form-group input,
  .form-group textarea,
  .form-group select,
  .radio .helper {
    font-size: 1rem;
    line-height: 19.33px;
  }
  .form-group ::-moz-placeholder {
    font-size: 1rem !important;
  }
  .form-group :-ms-input-placeholder {
    font-size: 1rem !important;
  }
  .form-group :-moz-placeholder {
    font-size: 1rem !important;
  }
  .form-group ::-webkit-input-placeholder {
    font-size: 1rem !important;
  }
}
@media only screen and (max-width: 48.063em) {
  .form-group input,
  .form-group textarea,
  .form-group select,
  .radio .helper {
    font-size: 0.875rem;
    line-height: 19.33px;
  }
  .form-group ::-moz-placeholder {
    font-size: 0.875rem !important;
  }
  .form-group :-ms-input-placeholder {
    font-size: 0.875rem !important;
  }
  .form-group :-moz-placeholder {
    font-size: 0.875rem !important;
  }
  .form-group ::-webkit-input-placeholder {
    font-size: 0.875rem !important;
  }
}
@media only screen and (max-width: 667px) {
  .form-group input,
  .form-group textarea,
  .form-group select,
  .radio .helper {
    font-size: 0.875rem;
    line-height: 19.33px;
  }
}
.input[type="text"] {
  background: transparent;
  border-bottom: 2px solid;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
span.input-icon {
  position: absolute;
  right: 0;
  top: 5px;
  cursor: pointer;
}
span.input-icon.fa-eye {
  top: 10px;
}
main {
  display: block;
}
* {
  outline: none;
}
@-webkit-keyframes fontfix {
  from {
    opacity: 1 !important;
  }
  to {
    opacity: 1 !important;
  }
}
body {
  font-family: "Helvetica Neue", "Helvetica", Arial;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5625rem;
  width: 100%;
  outline: none;
  letter-spacing: 0.54px;
  -webkit-animation-delay: 0.1s !important;
  -webkit-animation-name: fontfix !important;
  -webkit-animation-duration: 0.1s !important;
  -webkit-animation-iteration-count: 1 !important;
  -webkit-animation-timing-function: linear !important;
}
strong,
b {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
@media only screen and (min-width: 64.063em) {
  .l-visibility-hidden {
    visibility: hidden;
  }
}
@media only screen and (max-width: 1652px) {
  .visit-us {
    width: 100% !important;
    margin: 0 !important;
  }
}
@media only screen and (max-width: 1600px) {
  .font100,
  .inner-banner h1,
  .inner-banner .font-h1 {
    font-size: 70px;
  }
}
@media only screen and (max-width: 48.063em) {
  .form-nav {
    margin-top: 70px;
  }
  .clinic-gallery .slick-list {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@media only screen and (min-width: 48.063em) and (max-width: 64em) {
  .l-visibility-hidden {
    visibility: hidden;
  }
}
@media only screen and (max-width: 64em) {
  .form-nav {
    margin-top: 50px;
  }
  .hide-for-phone-tablet {
    display: none !important;
  }
  .text-center-phone-tablet {
    text-align: center;
  }
  #progressbars li {
    width: 32%;
  }
  .show-for-phone-tablet {
    display: block !important;
  }
  .clinic-gallery .slick-list {
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
  }
}
@media only screen and (max-width: 736px) {
  .text-center-phone {
    text-align: center;
  }
}
@media only screen and (max-width: 568px) {
  .result-item .row {
    padding-left: 10px;
    padding-right: 10px;
  }
  .clinic-gallery .slick-list {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  .grid-item {
    margin-bottom: 20px;
  }
  .custom-cbx-rdb .checkbox {
    top: -15px;
    right: 10px;
    border-color: transparent;
  }
  .staff .slide-prev {
    left: 6.5%;
  }
  .staff .slide-next {
    right: 6.5%;
  }
}
a {
  color: #0a0a0a;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 736px) {
  [src*="apeagle.io"] {
    display: none;
  }
  [src*="api.autopilothq"] {
    display: none;
  }
}
.bg-artwork {
  background: #f5f7f7 url("../../images/artwork-bg.html") repeat;
}
.bg-white {
  background-color: #fff;
  color: #0a0a0a;
}
.bg-black {
  background-color: #0a0a0a;
  color: #fff;
}
.bg-dark-grey {
  background-color: #58595b;
  color: #fff;
}
.bg-dark-grey .button.btn-white {
  color: #58595b;
}
.bg-grey {
  background-color: #a6a6a6;
}
.bg-grey .button.btn-white {
  color: #a6a6a6;
}
.bg-light-grey {
  background-color: #e7e8e8;
}
.bg-background-grey {
  background-color: #f2f2f2;
}
.bg-background-light-grey {
  background-color: #efefef;
}
.bg-grey-tag {
  background-color: #c7c7c7;
}
.bg-grey-6 {
  background-color: #e1e2e0;
}
.bg-grey-7 {
  background-color: #d3d4d3;
}
.bg-grey-8 {
  background-color: #bfc0c1;
}
.row {
  max-width: 103.375rem;
}
.column,
.columns,
.columns {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.section-spacer-top {
  padding-top: 5.3125rem;
}
.section-spacer-bottom {
  padding-bottom: 5.3125rem;
}
.spacer-l-top,
.carousel .banner .pre-loader {
  margin-top: 5.3125rem;
}
.spacer-l-bottom {
  margin-bottom: 5.3125rem;
}
.spacer-m-top {
  margin-top: 3.125rem;
}
.spacer-m-bottom {
  margin-bottom: 3.125rem;
}
.spacer-s-top {
  margin-top: 1.875rem;
}
.spacer-s-bottom {
  margin-bottom: 1.875rem;
}
.spacer-ss-top {
  margin-top: 1.25rem;
}
.spacer-ss-bottom {
  margin-bottom: 1.25rem;
}
.spacer-xs-top {
  margin-top: 0.625rem;
}
.spacer-xs-bottom {
  margin-bottom: 0.625rem;
}
.indent {
  margin-left: 10px;
}
.indent-top {
  margin-top: 10px;
}
.indent-bottom {
  margin-bottom: 10px;
}
.indent-right {
  margin-right: 10px;
}
.margin-bottom10 {
  margin-bottom: 10px;
}
.margin-top10 {
  margin-top: 10px;
}
.margin-left10 {
  margin-left: 10px;
}
.margin-right10 {
  margin-right: 10px;
}
.margin-bottom15 {
  margin-bottom: 15px;
}
.margin-top15 {
  margin-top: 15px;
}
.margin-left15 {
  margin-left: 15px;
}
.margin-right15 {
  margin-right: 15px;
}
.margin-bottom20 {
  margin-bottom: 20px;
}
.margin-top20 {
  margin-top: 20px;
}
.margin-left20 {
  margin-left: 20px;
}
.margin-right20 {
  margin-right: 20px;
}
.margin-bottom30 {
  margin-bottom: 30px;
}
.margin-top30 {
  margin-top: 30px;
}
.margin-left30 {
  margin-left: 30px;
}
.margin-right30 {
  margin-right: 30px;
}
.margin-bottom40 {
  margin-bottom: 40px;
}
.margin-top40 {
  margin-top: 40px;
}
.margin-bottom50 {
  margin-bottom: 50px;
}
.margin-top50 {
  margin-top: 50px;
}
.margin-bottom80 {
  margin-bottom: 80px;
}
.margin-top80 {
  margin-top: 80px;
}
.margin-bottom100 {
  margin-bottom: 100px;
}
.margin-top100 {
  margin-top: 100px;
}
.margin5 {
  margin: 5%;
}
.margin-center {
  margin-left: auto;
  margin-right: auto;
}
.margin-right3p {
  margin-right: 3%;
}
.margin-right5p {
  margin-right: 5%;
}
.no-mg {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.no-mg-top {
  margin-top: 0 !important;
}
.no-mg-bottom {
  margin-bottom: 0 !important;
}
.no-mg-left {
  margin-left: 0 !important;
}
.no-mg-right {
  margin-right: 0 !important;
}
.padding5 {
  padding: 5%;
}
.padding15 {
  padding: 15px !important;
}
.padding30 {
  padding: 30px;
}
.padding50 {
  padding: 50px;
}
.padding70 {
  padding: 70px;
}
.padding-bottom5 {
  padding-bottom: 5px;
}
.padding-bottom10 {
  padding-bottom: 10px;
}
.padding-top10 {
  padding-top: 10px;
}
.padding-left10 {
  padding-left: 10px;
}
.padding-right10 {
  padding-right: 10px;
}
.padding-bottom15 {
  padding-bottom: 15px;
}
.padding-top15 {
  padding-top: 15px;
}
.padding-left15 {
  padding-left: 15px;
}
.padding-right15 {
  padding-right: 15px;
}
.padding-bottom20 {
  padding-bottom: 20px;
}
.padding-left20 {
  padding-left: 20px;
}
.padding-right20 {
  padding-right: 20px;
}
.padding-top20 {
  padding-top: 20px;
}
.padding-left30 {
  padding-left: 30px;
}
.padding-right30 {
  padding-right: 30px;
}
.padding-bottom30 {
  padding-bottom: 30px;
}
.padding-top30 {
  padding-top: 30px;
}
.padding-top40 {
  padding-top: 40px;
}
.padding-bottom50 {
  padding-bottom: 50px;
}
.padding-top50 {
  padding-top: 50px;
}
.padding-left50 {
  padding-left: 50px;
}
.padding-right50 {
  padding-right: 50px;
}
.padding-bottom100 {
  padding-bottom: 100px;
}
.padding-top100 {
  padding-top: 100px;
}
.no-pd {
  padding: 0 !important;
}
.no-pd {
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.no-pd-top {
  padding-top: 0;
}
.no-pd-bottom {
  padding-bottom: 0;
}
.no-pd-left {
  padding-left: 0;
}
.no-pd-right {
  padding-right: 0;
}
.banner-spacer-top {
  padding-top: 5.3125rem;
}
.banner-spacer-bottom {
  padding-bottom: 5.3125rem;
}
@media only screen and (max-width: 1751px) {
  .row {
    max-width: 100rem;
  }
}
@media only screen and (max-width: 1651px) {
  .row {
    max-width: 95rem;
  }
}
@media only screen and (max-width: 1551px) {
  .row {
    max-width: 88rem;
  }
}
@media only screen and (max-width: 1441px) {
  .row {
    max-width: 80rem;
  }
  .padding-top100 {
    padding-top: 5.3125rem;
  }
  .padding-bottom100 {
    padding-bottom: 5.3125rem;
  }
  .margin-top80 {
    margin-top: 3.125rem;
  }
  .section-spacer-top {
    padding-top: 5.3125rem;
  }
  .section-spacer-bottom {
    padding-bottom: 5.3125rem;
  }
  .spacer-l-top,
  .carousel .banner .pre-loader {
    margin-top: 3.125rem;
  }
  .spacer-l-bottom {
    margin-bottom: 3.125rem;
  }
  .spacer-m-top {
    margin-top: 1.875rem;
  }
  .spacer-m-bottom {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (max-width: 1280px) {
  .row {
    max-width: 75rem;
  }
}
@media only screen and (max-width: 64em) {
  .banner-spacer-top {
    padding-top: 0;
  }
  .pricing-container .banner-spacer-top {
    padding-top: 3.3125rem;
  }
  .banner-spacer-bottom {
    padding-bottom: 0;
  }
  .m-spacer-s-top {
    margin-top: 1.875rem;
  }
  .m-spacer-s-bottom {
    margin-bottom: 1.875rem;
  }
  .m-spacer-xs-top {
    margin-top: 0.625rem;
  }
  .m-spacer-xs-bottom {
    margin-bottom: 0.625rem;
  }
  .m-spacer-m-top {
    margin-top: 3.125rem;
  }
  .m-spacer-m-bottom {
    margin-bottom: 3.125rem;
  }
}
@media only screen and (max-width: 48.063em) {
  .sm-centered-custom {
    margin: 0 auto !important;
    float: none !important;
  }
  .m-section-spacer-top {
    padding-top: 5.3125rem;
  }
  .m-section-spacer-bottom {
    padding-bottom: 5.3125rem;
  }
  .m-no-pd {
    padding: 0;
  }
  .m-no-pd-top {
    padding-top: 0;
  }
  .m-no-pd-bottom {
    padding-bottom: 0;
  }
  .m-no-pd-right {
    padding-right: 0;
  }
  .m-no-margin-right {
    margin-right: 0 !important;
  }
  .m-no-pd-left {
    padding-left: 0;
  }
  .m-no-mg {
    margin: 0;
  }
  .m-no-mg-top {
    margin-top: 0;
  }
  .m-no-mg-bottom {
    margin-bottom: 0;
  }
  .m-no-mg-right {
    margin-right: 0;
  }
  .m-no-mg-left {
    margin-left: 0;
  }
}
@media only screen and (max-width: 39.9375em) {
  .padding-top100 {
    padding-top: 3.125rem;
  }
  .padding-bottom100 {
    padding-bottom: 3.125rem;
  }
  .margin-top80 {
    margin-top: 3.125rem;
  }
  .section-spacer-top,
  .m-section-spacer-top,
  .s-section-spacer-top {
    padding-top: 3.125rem;
  }
  .section-spacer-bottom,
  .m-section-spacer-bottom,
  .s-section-spacer-bottom {
    padding-bottom: 3.125rem;
  }
  .s-spacer-l-top,
  .s-spacer-m-top,
  .spacer-l-top,
  .carousel .banner .pre-loader {
    margin-top: 3.125rem;
  }
  .s-spacer-l-bottom,
  .s-spacer-m-bottom,
  .spacer-l-bottom {
    margin-bottom: 3.125rem;
  }
  .s-spacer-m-top,
  .s-spacer-s-top,
  .spacer-m-top {
    margin-top: 1.875rem;
  }
  .s-spacer-m-bottom,
  .s-spacer-s-bottom,
  .spacer-m-bottom {
    margin-bottom: 1.875rem;
  }
  .no-pd-left,
  .no-pd-right {
    padding-left: 0;
    padding-right: 0;
  }
  .s-no-pd {
    padding: 0;
  }
  .s-no-pd-top {
    padding-top: 0;
  }
  .s-no-pd-bottom {
    padding-bottom: 0;
  }
  .s-no-pd-right {
    padding-right: 0;
  }
  .s-no-margin-right {
    margin-right: 0 !important;
  }
  .s-no-pd-left {
    padding-left: 0;
  }
  .s-no-mg {
    margin: 0;
  }
  .s-no-mg-top {
    margin-top: 0;
  }
  .s-no-mg-bottom {
    margin-bottom: 0;
  }
  .s-no-mg-right {
    margin-right: 0;
  }
  .s-no-mg-left {
    margin-left: 0;
  }
  .s-spacer-ss-top {
    margin-top: 1.25rem;
  }
  .s-spacer-ss-bottom {
    margin-bottom: 1.25rem;
  }
  .pricing-container .banner-spacer-top {
    padding-top: 0;
  }
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
  z-index: 1;
}
.z-index-1 {
  z-index: 1;
}
.bottom-10 {
  bottom: 10px;
}
.clear {
  clear: both;
}
.no-float {
  float: none !important;
}
.table {
  display: table;
}
.table-row {
  display: table-row;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
.vertical-align-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.align-left {
  -webkit-box-align: left;
  -ms-flex-align: left;
  align-items: left;
}
.align-right {
  -webkit-box-align: right;
  -ms-flex-align: right;
  align-items: right;
}
.inline-block {
  display: inline-block !important;
}
.block {
  display: block !important;
}
.no-background {
  background: none;
}
.no-border {
  border: none;
}
.show-for-big {
  display: none !important;
}
.hide-for-big {
  display: block;
}
.show-for-phone-tablet {
  display: none !important;
}
@media only screen and (max-width: 64em) {
  .show-for-phone-tablet {
    display: block !important;
  }
}
@media only screen and (max-width: 64em) {
  .hide-for-phone-tablet {
    display: none !important;
  }
}
@media only screen and (min-width: 625px) {
  .mobile-only {
    display: none !important;
  }
}
.disabled,
.disabled .fa {
  color: #e7e8e8;
  cursor: default;
}
.pointer {
  cursor: pointer;
}
.full {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .full-sm {
    width: 100%;
  }
}
.height-full {
  height: 100%;
}
img.full {
  width: 100%;
  height: 100%;
}
.row.full {
  max-width: 100%;
}
.button.full {
  width: 100%;
  max-width: 100%;
}
hr {
  max-width: 100%;
  border-bottom: 1px solid #ededed;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  .min-width-third {
    min-width: 33% !important;
  }
}
.min-width-initial {
  min-width: initial;
}
@media only screen and (min-width: 48.063em) {
  .ml-vertical-align-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 48.063em) {
  .height-m-auto {
    height: auto;
  }
  .align-center-medium,
  .align-m-center {
    -webkit-box-align: middle;
    -ms-flex-align: middle;
    align-items: middle;
  }
  .align-m-left {
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
  }
  .align-m-right {
    -webkit-box-align: right;
    -ms-flex-align: right;
    align-items: right;
  }
}
.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-child-shrink {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.flex-child-grow {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.align-self-top {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.align-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.align-justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 64em) {
  .align-center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.black {
  color: #0a0a0a;
}
.white {
  color: #fff;
}
.grey {
  color: #a6a6a6;
}
.light-grey {
  color: #e7e8e8;
}
.red {
  color: #f44336;
}
.green {
  color: #53b064;
}
.orange {
  color: #ff9000;
}
.dark-grey {
  color: #58595b;
}
.error {
  color: #f44336;
}
.fb-blue {
  color: #3b5998;
}
.google-g-red {
  color: #dd4b39;
}
.gold {
  color: #ccb46d;
}
.light-grey-bg {
  background: #eee;
}
.fa-trash {
  color: #666;
}
.banner-heading,
.font-banner-heading {
  font-size: 90px;
  line-height: 80.45px;
  letter-spacing: -2.7px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
@media only screen and (max-width: 1441px) {
  .banner-heading,
  .font-banner-heading {
    font-size: 78px;
    line-height: 70.5px;
    letter-spacing: -2.2px;
  }
}
@media only screen and (max-width: 48.063em) {
  .banner-heading,
  .font-banner-heading {
    font-size: 68px;
    line-height: 69.37px;
    letter-spacing: -2.04px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .banner-heading,
  .font-banner-heading {
    font-size: 46px;
    line-height: 46.93px;
    letter-spacing: -1.38px;
  }
}
.title-heading,
.font-title-heading {
  font-size: 82px;
  line-height: 83.66px;
  letter-spacing: -2.46px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
@media only screen and (max-width: 48.063em) {
  .title-heading,
  .font-title-heading {
    font-size: 50px;
    line-height: 51.01px;
    letter-spacing: -1.5px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .title-heading,
  .font-title-heading {
    font-size: 42px;
    line-height: 42.85px;
    letter-spacing: -1.26px;
  }
}
.font-small {
  font-size: 12px;
}
.fa-4 {
  font-size: 40px;
}
.fa-3 {
  font-size: 30px;
}
.fa-2 {
  font-size: 20px;
}
label {
  color: #0a0a0a;
  font-size: 18px;
  font-family: "Helvetica Neue", "Helvetica", Arial;
}
.light {
  font-weight: 100;
}
.regular {
  font-weight: 300;
}
.semi-bold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
.no-underline,
.no-underline:hover,
.no-underline:focus {
  text-decoration: none !important;
}
@font-face {
  font-family: "icomoon";
  src: url("../assets/fonts/icomoon-20fdc9172ada78.eot?8hupl3");
  src: url("../assets/fonts/icomoon-20fdc9172ada78.eot?8hupl3#iefix")
      format("embedded-opentype"),
    url("../assets/fonts/icomoon-aac6d8798eda78.ttf?8hupl3") format("truetype"),
    url("../assets/fonts/icomoon-ffab616030da78.woff?8hupl3") format("woff"),
    url("../../fonts/icomoonda78.html?8hupl3#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 1.25rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.font14 [class^="icon-"],
.font14 [class*=" icon-"] {
  font-size: 0.875rem;
}
.icon-star-disable:before {
  content: "\e90a";
}
.icon-star-enable:before {
  content: "\e90b";
}
.icon-calendar:before {
  content: "\e900";
}
.icon-complimentary-consultation:before {
  content: "\e901";
}
.icon-cosmetic-injections:before {
  content: "\e902";
}
.icon-female:before {
  content: "\e903";
}
.icon-gift:before {
  content: "\e904";
}
.icon-laser-hair-removal:before {
  content: "\e905";
}
.icon-male:before {
  content: "\e906";
}
.icon-pin-white:before {
  content: "\e907";
}
.icon-search:before {
  content: "\e908";
}
.icon-skin-treatments:before {
  content: "\e909";
}
.icon-pin-black {
  background: url("../assets/images/pin-black-solid-c5b70ae43a.svg") no-repeat;
  background-size: contain;
}
.icon-pin-grey {
  background: url("../assets/images/pin-black-solid-c5b70ae43a.svg") no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 64em) {
  .font100 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 48.063em) {
  label {
    font-size: 0.875rem;
    line-height: 19.33px;
    letter-spacing: 0.36px;
  }
  .text-center-medium {
    text-align: center;
  }
  .text-left-medium {
    text-align: left;
  }
  .text-right-medium {
    text-align: right;
  }
}
@media only screen and (max-width: 39.9375em) {
  .font20,
  .font24,
  .font30 {
    font-size: 18px;
    line-height: 10px;
  }
  .font100 {
    font-size: 32px;
    line-height: 42px;
  }
  label {
    font-size: 0.75rem;
    line-height: 16.57px;
  }
  .text-center-small {
    text-align: center;
  }
  .text-left-small {
    text-align: left;
  }
  .text-right-small {
    text-align: right;
  }
}
.small-text {
  font-size: 0.875rem;
  font-family: "Helvetica Neue", "Helvetica", Arial;
  -webkit-transition: margin 300ms;
  transition: margin 300ms;
}
.medium-text {
  font-size: 1rem;
}
.medium-text-bold {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.large-text {
  font-size: 1.5rem;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.flipOutX,
s .animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.icon {
  position: relative;
  top: 0;
  left: 0%;
  float: left;
}
.icon.white:before,
.icon.white:after {
  background-color: #ffffff;
}
.icon.active:before,
.icon.active:after {
  background-color: #fff;
}
.hamburger-to-close {
  width: 25px;
  height: auto;
  cursor: pointer;
}
.hamburger-to-close:before,
.hamburger-to-close:after {
  content: "";
}
.hamburger-to-close .hamburger-middle,
.hamburger-to-close:before,
.hamburger-to-close:after {
  position: absolute;
  width: 25px;
  height: 2px;
  left: 0;
  background-color: #fff;
  border-radius: 10px;
}
.hamburger-to-close .hamburger-middle {
  top: 50%;
  margin-top: -4px;
  -webkit-transition: -webkit-transform ease 200ms;
  transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
  transition: transform ease 200ms, -webkit-transform ease 200ms;
}
.hamburger-to-close:before {
  top: 5px;
  -webkit-transition: top 200ms ease 200ms, -webkit-transform ease 200ms;
  transition: top 200ms ease 200ms, -webkit-transform ease 200ms;
  transition: top 200ms ease 200ms, transform ease 200ms;
  transition: top 200ms ease 200ms, transform ease 200ms,
    -webkit-transform ease 200ms;
}
.hamburger-to-close:after {
  bottom: 11px;
  -webkit-transition: bottom 200ms ease 200ms, -webkit-transform ease 200ms;
  transition: bottom 200ms ease 200ms, -webkit-transform ease 200ms;
  transition: bottom 200ms ease 200ms, transform ease 200ms;
  transition: bottom 200ms ease 200ms, transform ease 200ms,
    -webkit-transform ease 200ms;
}
.hamburger-to-close.close .hamburger-middle {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 200ms ease 200ms;
  transition: -webkit-transform 200ms ease 200ms;
  transition: transform 200ms ease 200ms;
  transition: transform 200ms ease 200ms, -webkit-transform 200ms ease 200ms;
  display: none;
}
.hamburger-to-close.close:before {
  top: -6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top ease 200ms, -webkit-transform 200ms ease 200ms;
  transition: top ease 200ms, -webkit-transform 200ms ease 200ms;
  transition: top ease 200ms, transform 200ms ease 200ms;
  transition: top ease 200ms, transform 200ms ease 200ms,
    -webkit-transform 200ms ease 200ms;
}
.hamburger-to-close.close:after {
  bottom: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: bottom ease 200ms, -webkit-transform 200ms ease 200ms;
  transition: bottom ease 200ms, -webkit-transform 200ms ease 200ms;
  transition: bottom ease 200ms, transform 200ms ease 200ms;
  transition: bottom ease 200ms, transform 200ms ease 200ms,
    -webkit-transform 200ms ease 200ms;
}
.plus-to-minus {
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: -webkit-transform ease 400ms;
  transition: -webkit-transform ease 400ms;
  transition: transform ease 400ms;
  transition: transform ease 400ms, -webkit-transform ease 400ms;
}
.plus-to-minus:before,
.plus-to-minus:after {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
}
.plus-to-minus:before {
  left: 50%;
  margin-left: -3px;
  margin-top: 3px;
  width: 2px;
  height: 15px;
}
.plus-to-minus:after {
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: 15px;
  -webkit-transition: -webkit-transform ease 400ms;
  transition: -webkit-transform ease 400ms;
  transition: transform ease 400ms;
  transition: transform ease 400ms, -webkit-transform ease 400ms;
}
.plus-to-minus.minus {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.plus-to-minus.minus:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.img-wrapper {
  overflow: hidden;
  border: 1px solid transparent;
}
.img-wrapper img.zoom {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
}
.img-wrapper img.zoom:hover,
.img-wrapper img.zoom:focus {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.menu--shylock .menu__link {
  position: relative;
  padding-right: 0;
  padding-left: 0;
  color: #0a0a0a;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-bottom: 5px;
}
.menu--shylock .menu__link::after,
.menu--shylock .menu__link::before {
  background: #f44336;
}
.menu--shylock .menu__item--current .menu__link,
.menu--shylock .menu__item--current .menu__link:hover,
.menu--shylock .menu__item--current .menu__link:focus {
  color: #0a0a0a;
}
.menu--shylock .menu__item--current .menu__link::after,
.menu--shylock .menu__item--current .menu__link::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.menu--shylock .menu__item--current .menu__link::before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.menu--shylock .menu__link:hover,
.menu--shylock .menu__link:focus,
.menu--shylock .menu__link:hover,
.menu--shylock .menu__link:focus {
  color: #0a0a0a;
  opacity: 0.6;
  text-decoration: none;
}
.pagination.webapp li.pag-number a,
.pagination.webapp li.pag-prev a,
.pagination.webapp li.pag-next a {
  position: relative;
  color: #0a0a0a;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.pagination.webapp li.pag-number::after,
.pagination.webapp li.pag-number::before,
.pagination.webapp li.pag-prev::after,
.pagination.webapp li.pag-prev::before,
.pagination.webapp li.pag-next::after,
.pagination.webapp li.pag-next::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.pagination.webapp li.pag-number::before,
.pagination.webapp li.pag-prev::before,
.pagination.webapp li.pag-next::before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.pagination.webapp li.pag-number a:hover,
.pagination.webapp li.pag-number a:focus,
.pagination.webapp li.pag-prev a:hover,
.pagination.webapp li.pag-prev a:focus,
.pagination.webapp li.pag-next a:hover,
.pagination.webapp li.pag-next a:focus {
  border-bottom: 0;
  text-decoration: none;
}
.pagination.webapp li.pag-number a:hover::before,
.pagination.webapp li.pag-number a:focus::before,
.pagination.webapp li.pag-prev a:hover::before,
.pagination.webapp li.pag-prev a:focus::before,
.pagination.webapp li.pag-next a:hover::before,
.pagination.webapp li.pag-next a:focus::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.pagination.webapp li.pag-number a::before,
.pagination.webapp li.pag-number a::after,
.pagination.webapp li.pag-prev a::before,
.pagination.webapp li.pag-prev a::after,
.pagination.webapp li.pag-next a::before,
.pagination.webapp li.pag-next a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
  -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.pagination.webapp li.pag-number a::before,
.pagination.webapp li.pag-prev a::before,
.pagination.webapp li.pag-next a::before {
  background: #0a0a0a;
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
.pagination.webapp li.pag-number a::after,
.pagination.webapp li.pag-prev a::after,
.pagination.webapp li.pag-next a::after {
  background: #f44336;
}
.pag-prev::before {
  font-family: FontAwesome;
  content: "\f104";
  font-size: 20px;
  position: relative;
  top: 2px;
}
.pag-next::after {
  font-family: FontAwesome;
  content: "\f105";
  font-size: 20px;
  position: relative;
  top: 2px;
}
.header-animate {
  overflow-y: hidden;
}
.animate-up {
  -webkit-animation: text-up 1s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation: text-up 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@-webkit-keyframes text-up {
  from {
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes text-up {
  from {
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.text-animate .text-animate-item {
  color: #ededed;
}
.text-animate.red,
.text-animate.red span.text-animate-item {
  color: #f44336;
}
.custom-cbx-rdb .checkbox.square:checked:after {
  background: white;
}
.custom-cbx-rdb .checkbox.square::after {
  border: 1px solid #010101;
}
.custom-cbx-rdb .checkbox.square:checked::after {
  border: 1px solid #010101;
}
.custom-cbx-rdb .custom-cbx-rdb .checkbox.square:after {
  border-radius: initial;
}
.custom-cbx-rdb .cbx-container {
  position: absolute;
  top: 10px;
  right: -5px;
}
.custom-cbx-rdb .label--checkbox,
.custom-cbx-rdb .label--radio {
  position: relative;
  margin: 0.5rem;
  font-family: Arial, sans-serif;
  line-height: 135%;
  cursor: pointer;
}
.custom-cbx-rdb .checkbox {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
  -webkit-appearance: none;
  right: 15px;
  top: -15px;
}
.custom-cbx-rdb .checkbox:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75),
    -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  content: "";
  position: absolute;
  left: 0.1975rem;
  top: 0.125rem;
  z-index: 1;
  width: 0.75rem;
  height: 0.375rem;
  border: 3px solid #fff;
  border-top-style: none;
  border-right-style: none;
}
.custom-cbx-rdb .checkbox:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}
.custom-cbx-rdb .checkbox:after {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.05rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  border: transparent;
  cursor: pointer;
  border-radius: 50%;
}
.custom-cbx-rdb .checkbox:checked:after {
  background: #f44336;
  border: 2px solid transparent;
}
.custom-cbx-rdb .radio {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
}
.custom-cbx-rdb .radio:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75),
    -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  background: #010101;
  border-radius: 50%;
}
.custom-cbx-rdb .radio:checked:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.custom-cbx-rdb .radio:after {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  border: 1px solid #010101;
  border-radius: 50%;
}
.material_checkbox,
input.material_checkbox {
  position: relative;
  margin: 0 15px 0 0;
  height: 20px;
  width: 20px;
  display: inline;
  top: 10px;
  -webkit-appearance: none;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.material_checkbox:focus {
  outline-color: #fff;
}
.material_checkbox:before {
  border: 2px solid #0a0a0a;
  content: "";
  cursor: pointer;
  display: block;
  height: 20px;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 20px;
  z-index: 1;
  opacity: 1;
  top: -6px;
}
.material_checkbox:checked:before {
  border-top-style: none;
  border-right-style: none;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.material_checkbox:after {
  background: #fff;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  top: 0;
  width: 20;
  z-index: 2;
  opacity: 1;
}
.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.5s ease-in-out;
  transition: -webkit-filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
}
.grayscale:hover,
.grayscale:focus,
a:hover .grayscale,
a:focus .grayscale {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.image-swipe {
  overflow: hidden;
  -webkit-animation: swipe-wrapper 2s cubic-bezier(0.77, 0, 0.175, 1) 1;
  animation: swipe-wrapper 2s cubic-bezier(0.77, 0, 0.175, 1) 1;
}
.image-swipe .image-swipe-animate {
  -webkit-animation: swipe-inner 2s cubic-bezier(0.77, 0, 0.175, 1) 1;
  animation: swipe-inner 2s cubic-bezier(0.77, 0, 0.175, 1) 1;
}
.image-swipe-animate img {
  height: 100%;
  max-width: initial;
}
@-webkit-keyframes swipe-wrapper {
  0% {
    width: 0;
  }
  50% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes swipe-wrapper {
  0% {
    width: 0;
  }
  50% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes swipe-inner {
  0% {
    margin-left: -200px;
  }
  50% {
    margin-left: -200px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes swipe-inner {
  0% {
    margin-left: -200px;
  }
  50% {
    margin-left: -200px;
  }
  100% {
    margin-left: 0;
  }
}
.heading-animate {
  position: relative;
}
.heading-animate {
  position: relative;
  display: inline-block;
  white-space: initial;
}
.heading-animate-boxhome {
  position: absolute;
  z-index: 2;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0a0a0a;
  overflow: hidden;
  -webkit-animation: heading-box-animation 1s 0s ease;
  animation: heading-box-animation 1s 0s ease;
}
.heading-animate-text {
  -webkit-animation: heading-box-animation 1s 0s ease forwards;
  animation: heading-box-animation 1s 0s ease forwards;
}
.heading-animate + .heading-animate .heading-animate-text {
  -webkit-animation: heading-box-animation 1s 0.5s ease forwards;
  animation: heading-box-animation 1s 0.5s ease forwards;
}
.heading-animate + .heading-animate .heading-animate-boxhome {
  -webkit-animation: heading-box-animation 1s 0.5s ease;
  animation: heading-box-animation 1s 0.5s ease;
}
.heading-animate + .heading-animate + .heading-animate .heading-animate-text {
  -webkit-animation: heading-box-animation 1s 1s ease forwards;
  animation: heading-box-animation 1s 1s ease forwards;
}
.heading-animate
  + .heading-animate
  + .heading-animate
  .heading-animate-boxhome {
  -webkit-animation: heading-box-animation 1s 1s ease;
  animation: heading-box-animation 1s 1s ease;
}
.text-show {
  visibility: visible;
}
@-webkit-keyframes heading-animation {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes heading-animation {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes heading-box-animation {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@keyframes heading-box-animation {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
.button-wrap {
  display: inline-block;
}
.button-wrap {
  position: relative;
  min-width: 210px;
  height: 57px;
  padding: 0 !important;
}
@media only screen and (max-width: 1280px) {
  .button-wrap {
    min-width: 170px;
  }
}
@media only screen and (max-width: 64em) {
  .button-wrap {
    min-width: 200px;
  }
}
@media only screen and (max-width: 639px) {
  .button-wrap {
    min-width: 100%;
  }
}
.button-wrap .button-swipe {
  position: absolute;
  overflow: hidden;
  width: 100%;
}
.button-wrap + .button-wrap .button-swipe {
  position: absolute;
  overflow: hidden;
  width: 100%;
}
.link-line-animate {
  position: relative;
  padding-bottom: 2px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.link-line-animate:hover,
.link-line-animate:focus,
.link-line-animate:hover *,
.link-line-animate:focus * {
  opacity: 0.6;
  text-decoration: none !important;
}
.link-line-animate::after {
  content: "";
  border-bottom: 1px solid #0a0a0a;
  width: 88%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.white .link-line-animate::after {
  border-bottom: 1px solid #fff;
}
.link-line-animate-full {
  position: relative;
  padding-bottom: 2px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-bottom: 1px solid #0a0a0a;
  width: 100%;
}
.white .link-line-animate-full {
  border-bottom: 1px solid #fff;
}
.link-line-animate-full:hover,
.link-line-animate-full:focus,
.link-line-animate-full:hover *,
.link-line-animate-full:focus * {
  opacity: 0.6;
}
.position-right.is-transition-push:after {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.off-canvas {
  background: #fff;
}
.off-canvas .menu li {
  margin-bottom: 0;
  position: relative;
}
.off-canvas .menu li > span {
  padding: 15.5px 20px;
  border-bottom: 1px solid #191816;
  line-height: 1.3;
  color: #0a0a0a;
  display: block;
  cursor: pointer;
}
.off-canvas .menu li > span.promo {
  color: #f44336;
}
.off-canvas .menu li a {
  line-height: 1.3;
  color: #0a0a0a;
  padding: 15.5px 20px;
}
.off-canvas .menu li a.red {
  color: #f44336;
}
.off-canvas .menu li a.bg-black {
  color: #fff;
}
.off-canvas .menu li a.icon {
  display: block;
  padding: initial;
  position: absolute;
  right: 0;
  z-index: 3;
  top: 0;
}
.off-canvas .menu li a:not(.icon) {
  border-bottom: 1px solid #191816;
}
.off-canvas .menu li a:hover,
.off-canvas .menu li a:focus {
  text-decoration: none;
}
.off-canvas .menu li .off-canvas-close {
  color: #0a0a0a;
  padding: 26px 20px;
  height: 70px;
}
.off-canvas .menu li .off-canvas-user {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
  color: #fff;
}
.off-canvas .menu li .off-canvas-user-icons {
  position: absolute;
  right: 10px;
}
.off-canvas .menu li .off-canvas-user-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.off-canvas .menu li .off-canvas-user-options.logged-in {
  padding-left: 20px;
}
.off-canvas .menu li .off-canvas-user-options > span {
  font-size: 1rem;
}
.off-canvas .menu li .off-canvas-user .off-canvas-close {
  padding: 0;
  height: auto;
}
.off-canvas .menu li .off-canvas-user a {
  color: #fff;
  border-bottom: none;
  display: inline;
  font-size: 1rem;
}
.off-canvas .menu li.is-submenu-item:hover,
.off-canvas .menu li li.is-submenu-item:hover a {
  background: transparent;
  color: #0a0a0a;
}
.off-canvas .menu li.active > a,
.off-canvas .menu li.active > span {
  background: none;
  color: #0a0a0a;
  font-weight: 700;
  text-decoration: none;
}
.off-canvas .sub-menu li a,
.off-canvas .sub-menu li > span {
  padding-left: 30px;
}
.off-canvas .inner-menu li a {
  padding-left: 50px;
}
.offcanvas-menu .is-accordion-submenu-parent > a:after {
  font-family: fontawesome;
  border: none;
  content: "\f196";
  position: absolute;
  top: 0;
  right: 1%;
  height: 52px;
  width: 44px;
  text-align: center;
  padding-top: 17px;
}
.offcanvas-menu .is-accordion-submenu-parent[aria-expanded="true"] > a:after {
  -webkit-transform: initial;
  transform: initial;
  -webkit-transform-origin: initial;
  transform-origin: initial;
  font-family: fontawesome;
  border: none;
  content: "\f147";
}
.js-off-canvas-overlay.is-overlay-fixed {
  background: rgba(0, 0, 0, 0.5);
}
.tabs {
  border: none;
  background: none;
}
.tabs a.active {
  text-decoration: none;
}
.tabs .btn-black.active {
  color: #fff;
}
.tabs-title:not(.tabs__item) > a {
  background: #fff;
  color: #0a0a0a;
  font-weight: bold;
  padding: 10px 25px;
  border: 2px solid #0a0a0a;
  margin-right: 15px;
  text-align: center;
  font-size: 1.125rem;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.tabs-title:not(.tabs__item) > a:not(.button):hover,
.tabs-title:not(.tabs__item) > a:not(.button):focus,
.tabs-title:not(.tabs__item) > a:hover {
  text-decoration: none;
}
.tabs-title:not(.tabs__item) > a:active,
.tabs-title:not(.tabs__item) > a:focus,
.tabs-title:not(.tabs__item) > a[aria-selected="true"] {
  background: #0a0a0a;
  color: #fff;
}
.tabs-content {
  border: none;
}
.callout.black {
  background-color: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 2.5rem 0;
  text-align: left;
}
@media only screen and (min-width: 39.9375em) {
  .callout.black {
    padding: 2rem 3rem 0;
  }
}
@media only screen and (min-width: 49.063em) {
  .callout.black {
    padding: 2rem 5rem 0;
  }
}
.callout.black .checkmarks {
  width: 100%;
}
@media only screen and (min-width: 49.063em) {
  .callout.black .checkmarks {
    width: 50%;
  }
}
.callout-button {
  position: absolute;
  color: white;
  bottom: 10px;
  right: 40px;
  font-weight: bold;
  cursor: pointer;
}
.callout-button:hover {
  text-decoration: underline;
}
.callout-image {
  -ms-flex-item-align: end;
  align-self: flex-end;
  bottom: 0;
  max-width: 100%;
  position: relative;
  right: 0;
  width: 100%;
}
@media only screen and (min-width: 49.063em) {
  .callout-image {
    max-width: 50%;
  }
}
.tooltip {
  border-radius: 5px;
  line-height: 1.2;
  max-width: 400px;
  min-width: 200px;
  opacity: 0.9;
  word-break: break-word;
}
@media only screen and (max-width: 39.9375em) {
  .tooltip {
    max-width: 90%;
    min-width: unset;
  }
}
.tooltip-clinic {
  border-bottom: 0;
  bottom: 15px;
  color: #289ef6;
  font-size: 14px;
  font-weight: normal;
  left: 10px;
  position: absolute;
}
.tooltip-clinic:hover {
  cursor: pointer;
}
.tooltip-tooltip {
  line-height: 1.2;
  width: 300px;
}
.slide-down {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  z-index: -1;
  display: none;
}
.slide-down.active {
  opacity: 1;
  z-index: 2;
}
.loading-container {
  height: 200px;
}
.loading-component {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loading-component:before {
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top-color: #fff;
  content: "";
  -webkit-animation: spinner 1s linear infinite;
  animation: spinner 1s linear infinite;
}
.loading-container .loading-component:before {
  height: 50px;
  width: 50px;
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.modal-dialog {
  background-color: rgba(166, 166, 166, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
}
.modal-dialog-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  background-color: #fff;
}
.modal-dialog-container.full {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-right: 0;
  -webkit-transform: none;
  transform: none;
}
.modal-dialog-container.full .modal-dialog-content-border {
  border: none;
}
.modal-dialog-container.large {
  width: 70%;
  height: 80%;
}
.modal-dialog-container.large.video {
  max-width: 900px;
  height: auto;
  background-color: transparent;
}
.modal-dialog-container.large.video .modal-dialog-title {
  display: none;
}
.modal-dialog-container.large.video .modal-dialog-content-border {
  border: none;
  margin: 0;
  height: auto;
}
.modal-dialog-container.small {
  width: 600px;
  max-width: 90%;
  max-height: 90%;
}
.modal-dialog-content {
  position: relative;
  width: 100%;
}
.modal-dialog-content ul {
  margin-left: 28px;
}
.modal-dialog-content-border {
  position: relative;
  border: 2px solid #0a0a0a;
  margin: 15px;
  height: calc(100% - 85px);
  overflow-y: auto;
}
.modal-dialog-content-border.with-cta {
  height: calc(100% - 140px);
  margin-bottom: 0;
}
@media screen and (min-width: 640px) {
  .modal-dialog-content-border {
    margin: 15px 30px 30px 30px;
  }
  .modal-dialog-content-border::-webkit-scrollbar,
  .modal-dialog-content-border::-moz-scrollbar {
    background: #a6a6a6;
    width: 6px;
  }
  .modal-dialog-content-border::-webkit-scrollbar-thumb,
  .modal-dialog-content-border::-moz-scrollbar-thumb {
    background-color: #58595b;
  }
}
.modal-dialog-button {
  float: right;
  margin: 15px 30px;
}
.modal-dialog-title {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  position: absolute;
  background-color: #fff;
  color: #0a0a0a;
  top: 27px;
  left: 45px;
  padding: 15px;
  z-index: 2;
}
.modal-dialog-close {
  text-align: right;
  padding: 15px 30px 0 0;
  cursor: pointer;
  font-size: 20px;
}
.modal-dialog-html-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 40.9375em) and (max-width: 63em) {
  .modal-dialog-container.large {
    width: 80%;
  }
  .modal-dialog-container.large.video {
    height: auto;
  }
}
@media only screen and (max-width: 39.9375em) {
  .modal-dialog-container.large {
    width: 100%;
    height: 100%;
  }
  .modal-dialog-container.large.video {
    height: auto;
  }
  .modal-dialog-container.small {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
  .modal-dialog-close {
    padding-right: 15px;
  }
}
body.disableScroll {
  overflow: hidden !important;
}
.tab-list {
  padding: 0 10px;
}
.tab-list-button {
  margin-right: 10px;
}
.tab-list-button:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 39.9375em) {
  .tab-list {
    padding: 0;
  }
  .tab-list-button {
    margin-right: 5px;
  }
  .tab-list-button:last-child {
    margin-right: 0;
  }
}
.btn-link {
  background: transparent;
  background-color: transparent;
  color: #0a0a0a;
}
.btn-link:focus,
.btn-link:hover {
  background-color: #0a0a0a;
  color: #fff;
  opacity: 0.1;
}
.btn-triangle {
  overflow: visible;
}
.btn-triangle::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;
  bottom: -10px;
  content: " ";
  display: block;
  height: 0;
  left: 47%;
  position: absolute;
  width: 0;
}
.btn-social {
  color: #289ef6;
}
.btn-social:hover {
  cursor: pointer;
  text-decoration: underline;
}
.ikon {
  display: inline-block;
  fill: currentColor;
  float: none;
  height: 1em;
  left: unset;
  position: static;
  top: unset;
  vertical-align: middle;
  width: 1em;
}
.ikon--large {
  height: 2em;
  width: 2em;
}
.ikon--xlarge {
  height: 4em;
  width: 4em;
}
button.facebook-login-button {
  background: #3f5bb0;
}
button.facebook-login-button:hover,
button.facebook-login-button:active,
button.facebook-login-button:focus {
  background: #3f5bb0;
}
button.google-login-button {
  background: #df4932;
}
button.google-login-button:hover,
button.google-login-button:active,
button.google-login-button:focus {
  background: #df4932;
}
.checkbox-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkbox-error {
  margin-top: 50px;
}
.checkbox-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 50px;
  flex-basis: 50px;
}
.checkbox-label {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.checkbox-label-signin {
  margin-bottom: 0;
}
.checkbox p,
.checkbox .font-p {
  margin-bottom: 0;
}
.slider {
  margin-bottom: 10px;
}
.slider-container {
  padding-bottom: 35px;
}
.slider-label {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 1.125rem;
  line-height: 26px;
  color: #0a0a0a;
}
.slider-handle {
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  background-color: #fff;
}
.slider-handle:hover,
.slider-handle.is-dragging {
  background-color: #58595b;
}
.slider-fill {
  background-color: #0a0a0a;
}
.form-error.relative {
  position: relative;
  margin-bottom: 0;
}
.form-group.multi {
  padding-top: 10px;
}
.form-group .control-label.top {
  top: -15px;
  font-size: 0.8125rem;
  line-height: 13px;
  padding-left: 0;
  color: #0a0a0a;
}
.form-group .read-only-label {
  height: 32px;
  line-height: 32px;
}
@media print, screen and (max-width: 40em) {
  .booking-form .helper.subscribe {
    display: block;
    width: 86%;
    float: left;
  }
}
@media print, screen and (max-width: 40em) {
  .material_checkbox {
    float: left;
    margin-right: 5px;
  }
}
.form-group .control-label.top {
  top: -15px;
  font-size: 0.8125rem;
  line-height: 13px;
  padding-left: 0;
  color: #0a0a0a;
}
.markers {
  display: inline-block;
}
.marker {
  cursor: pointer;
  font-size: 12px;
  color: #a6a6a6;
  display: inline-block;
}
.marker:last-child {
  text-align: right;
}
@-webkit-keyframes onAutoFillStart {
  from {
  }
  to {
  }
}
@keyframes onAutoFillStart {
  from {
  }
  to {
  }
}
@-webkit-keyframes onAutoFillCancel {
  from {
  }
  to {
  }
}
@keyframes onAutoFillCancel {
  from {
  }
  to {
  }
}
input:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
  animation-name: onAutoFillStart;
}
input:not(:-webkit-autofill) {
  -webkit-animation-name: onAutoFillCancel;
  animation-name: onAutoFillCancel;
}
.styled-upload {
  border: 1px black solid;
  padding: 15px;
}
.styled-upload .fa-file-image-o {
  font-size: 1.875rem;
}
.styled-upload p,
.styled-upload .font-p {
  margin-bottom: 0;
}
.radio-buttons-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.radio-buttons-options input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
  opacity: 0;
}
.radio-buttons-options .button {
  min-width: 60px;
  padding: 10px;
}
.radio-buttons-options .button.btn-black {
  border: 2px solid #0a0a0a;
}
@media only screen and (max-width: 39.9375em) {
  .radio-buttons-options .button {
    margin-left: 0;
  }
}
.radio-buttons-options--wide {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.radio-buttons-options--wide .button {
  min-width: 100px;
  margin: 5px;
}
.radio-buttons-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.radio-buttons-item--other .form-group {
  margin: 5px;
  margin-top: auto;
}
input[type="radio"] ~ .radio-buttons-item--circle {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 21px;
  width: 21px;
  border: 2.5px solid #2f2d2d;
  border-radius: 50%;
  margin-right: 10px;
}
input[type="radio"] ~ .radio-buttons-item--circle::before {
  content: "";
}
input[type="radio"] ~ .radio-buttons-item--circle.checked::before {
  content: "";
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background: #2f2d2d;
}
.radio-buttons--error .radio-buttons-item label,
.radio-buttons--error .radio-buttons-item--circle {
  border: 2px solid #f44336;
}
.radio-buttons--error .radio-buttons-item--other .control-label {
  border: none;
}
.g-recaptcha {
  height: 78px;
}
.select-dropdown-indicator {
  outline-color: #0a0a0a;
}
input.promo-input {
  display: inline;
  border: solid #0a0a0a 2px;
  height: 3rem;
}
.flatpicker-calender {
  max-height: 680px;
}
.flatpicker-calender.showTimeInput.hasTime .flatpickr-time {
  height: 80px;
  max-height: 80px;
  line-height: 80px;
}
.flatpicker-calender.showTimeInput.hasTime .flatpickr-time .numInputWrapper {
  height: 80px;
}
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  span.arrowUp:after,
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  span.arrowDown:after {
  margin-left: 40%;
  margin-right: 40%;
}
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  .arrowUp,
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  .arrowDown {
  opacity: 1;
  width: 50%;
}
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  .flatpickr-hour,
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  .flatpickr-minute {
  float: left;
  width: 50%;
}
.cents {
  font-size: 0.7em;
}
.scroll-arrow {
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  display: inline-block;
  font-size: 1.5rem;
  left: 50%;
  line-height: 0;
  position: absolute;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 2;
}
.scroll-arrow .ikon {
  -webkit-animation: bobbing 2s ease-out infinite;
  animation: bobbing 2s ease-out infinite;
  line-height: 0.5;
  position: relative;
}
.scroll-arrow--clear {
  background-color: transparent;
}
.scroll-arrow--right {
  left: auto;
  right: 1rem;
}
@-webkit-keyframes bobbing {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  40% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bobbing {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  40% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.divider {
  max-width: 100%;
  border-bottom: 1px solid #e7e8e8;
  margin: 0;
}
.divider--simple {
  border: 0;
  height: 1px;
}
.tabs-header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  overflow-x: auto;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 35px;
  position: relative;
}
.tabs-header-name {
  font-weight: bold;
  padding: 10px 25px;
  border: 2px solid #0a0a0a;
  margin-right: 15px;
  background-color: #fff;
  color: #0a0a0a;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  min-width: unset;
}
.tabs-header-name:last-of-type {
  margin-right: 0;
}
.tabs-header-name.active {
  background-color: #0a0a0a;
  color: #fff;
  position: relative;
}
.tabs-header-name.active:after {
  content: "";
  border-bottom: 2px solid #0a0a0a;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
}
.tabs-header-name.disabled {
  background-color: #a6a6a6;
  color: #fff;
  cursor: auto;
}
.tabs__list {
  border-bottom: 1px solid #ddd9d2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 0;
}
.tabs__item {
  border: 0;
  float: none;
  font-size: inherit;
  margin: 0;
  position: relative;
}
.tabs__item > a,
.tabs__item.accordion-item > a.accordion-title {
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  border-bottom: 4px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: inherit;
}
.tabs__item > a,
.tabs__item > a:focus,
.tabs__item > a:hover,
.tabs__item > a[aria-selected="true"] {
  background-color: transparent;
  color: #76736d;
  font-size: inherit;
  text-decoration: none;
}
.tabs__item > a:focus,
.tabs__item > a:hover {
  text-decoration: none;
}
.tabs__item.is-active > a {
  color: #191816;
  border-bottom-color: currentColor;
}
.tabs__item.is-disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
.tabs-content,
.tabs__content {
  background-color: transparent;
}
.tabs__list--stacked {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media print, screen and (max-width: 63.99875em) {
  .tabs__list--accordion {
    border-bottom: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .tabs__list--accordion .accordion-content {
    margin: 0;
    padding-bottom: 0;
  }
  .tabs__list--accordion .tabs__item {
    border-bottom: 1px solid #ddd9d2;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
  }
  .tabs__list--accordion .tabs__item > a,
  .tabs__list--accordion .tabs__item:not(.is-active) > a {
    border: 0;
  }
  .tabs__list--accordion .tabs__item > a::before {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 24px;
    margin: auto;
    right: 16px;
    top: 0;
  }
  .tabs__list--stacked .is-active-promo.is-active a {
    color: #ed6e52;
  }
  .tabs__list--stacked .is-active-promo.is-active a::before {
    color: #191816;
  }
}
@media print, screen and (min-width: 64em) {
  .tabs__item > a,
  .tabs__item.accordion-item > a.accordion-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .tabs__list--accordion {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tabs__list--stacked a {
    padding-top: 24px;
    padding-bottom: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-width: 1px;
  }
  .tabs__list--stacked .is-active-promo.is-active a {
    border: 0;
    color: #fff;
  }
}
.my-account-nav {
  display: none;
}
@media only screen and (min-width: 64em) {
  .my-account-nav {
    display: block;
    width: 250px;
  }
}
ul.accordian-menu li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2px;
}
ul.accordian-menu li a {
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  padding: 0 1rem;
  -webkit-transition: 0ms ease;
  transition: 0ms ease;
}
ul.accordian-menu li a:after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  right: 20px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
ul.accordian-menu li a.sub-menu::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
ul.accordian-menu li a:hover,
ul.accordian-menu li a:focus {
  text-decoration: none;
}
ul.accordian-menu li a:hover {
  color: #aaa;
}
ul.accordian-menu li.is-accordion-submenu-parent {
  background-color: inherit;
}
ul.accordian-menu li.is-submenu-item a {
  height: 50px;
  line-height: 50px;
  font-size: 14px;
}
ul.accordian-menu li.is-submenu-item a:hover {
  background-color: #ddc6af;
}
ul.accordian-menu li.is-submenu-item a.is-active:hover {
  background-color: #b58362;
}
ul.accordian-menu li ul.is-accordion-submenu li:first-of-type {
  margin-top: 2px;
}
ul.accordian-menu li ul.is-accordion-submenu li:last-of-type {
  margin-bottom: 0;
}
ul.accordian-menu
  .is-accordion-submenu-parent[aria-expanded="true"]
  > a::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.clinic-banner {
  background-color: #191816;
  color: #fff;
  margin: 0 auto;
  text-align: center;
}
.clinic-name {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  cursor: pointer;
}
.clinic-name:before {
  font-family: icomoon;
  position: absolute;
  content: "\e907";
  font-size: 20px;
  width: 20px;
  top: 0;
  left: -3px;
}
.progress-header-container {
  background-color: #e7e8e8;
  border-top: 1px solid #a6a6a6;
}
.progress-header {
  margin: 0 auto;
  padding: 0 0.625rem;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: center;
}
.progress-item {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-preferred-size: 200px;
  flex-basis: 200px;
  -ms-flex-item-align: center;
  align-self: center;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 1rem;
  color: #a6a6a6;
  background-color: #fff;
  border: 1px solid #a6a6a6;
}
.progress-item.active {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}
.progress-item.active a {
  color: #fff;
}
.progress-item.disabled {
  background-color: #a6a6a6;
  border-color: #a6a6a6;
  color: #fff;
}
.progress-item.disabled a {
  color: #fff;
}
.progress-item a {
  color: #a6a6a6;
}
.progress-item a:hover {
  text-decoration: none;
}
.progress-item-spacer {
  height: 1px;
  max-width: 100px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  align-self: center;
  border-top: 1px solid #a6a6a6;
  top: 50%;
}
@media only screen and (max-width: 64em) {
  .progress-header {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 48.063em) {
  .progress-header {
    height: 90px;
  }
  .progress-item {
    height: 35px;
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 39.9375em) {
  .progress-header {
    padding: 0;
    height: 60px;
  }
  .progress-item {
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .progress-item-spacer {
    display: none;
  }
}
.clinic-card {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 550px;
  max-height: 550px;
  margin-bottom: 0;
  text-align: left;
  background-color: #fff;
  color: #0a0a0a;
}
.clinic-card:hover,
.clinic-card:focus {
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}
.clinic-card-container {
  height: 550px;
}
.clinic-card .card-divider {
  background-color: #fff;
  padding-bottom: 0;
}
.clinic-card .card-divider .ribbon {
  position: absolute;
  top: 84px;
}
.clinic-card .card-divider .pin-black {
  background: url("../assets/images/pin-black-5333d650bb.svg") no-repeat;
  background-size: contain;
}
.clinic-card .card-divider .icon {
  height: 50px;
  width: 50px;
  margin-right: 7px;
}
.clinic-card .card-divider .heading {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: inherit;
  padding-left: 10px;
  width: 90%;
}
.clinic-card .card-divider .expand-arrow {
  font-size: 36px;
  padding-right: 15px;
}
.clinic-card .card-section {
  height: 65%;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.clinic-card .card-section .directions {
  border-bottom: 2px solid #e7e8e8;
}
.clinic-card .card-section .directions-icon {
  font-size: 1.5rem;
  float: right;
}
.clinic-card .card-section p,
.clinic-card .card-section .font-p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.clinic-card .card-section .hours p,
.clinic-card .card-section .hours .font-p {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}
.clinic-card .card-section .hours .slide-down {
  width: 100%;
}
.clinic-card .card-section .hours .fa-plus-circle {
  -webkit-transition: -webkit-transform 0.2s linear 0.2s;
  transition: -webkit-transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
}
.clinic-card .card-section .hours .fa-plus-circle.expanded {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.clinic-card .card-section .hours-open {
  color: #26c0a1;
}
.clinic-card .card-section .hours-closed {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.clinic-card .card-section .hours-left {
  float: left;
}
.clinic-card .card-section .hours-right {
  float: right;
}
.clinic-card .card-footer {
  position: absolute;
  bottom: 0;
  width: 98%;
  padding: 10px 16px;
  color: #5d5c5c;
}
.clinic-card .card-footer .card-nav {
  float: right;
}
.clinic-card .card-footer .card-nav .result-number {
  display: inline-block;
  margin-bottom: 0;
  font-size: 12px;
}
.clinic-card .card-footer .card-nav .arrow {
  right: 0;
  font-size: 25px;
  vertical-align: middle;
}
.clinic-card .card-footer .card-nav .disabled {
  color: #5d5c5c;
}
.clinic-card.collapsed {
  max-height: 82px;
  overflow: hidden;
}
.clinic-card.collapsed .card-section,
.clinic-card.collapsed .card-footer {
  display: none;
}
.clinic-card.selected {
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
}
.clinic-card.selected .pin-black {
  background: url("../assets/images/pin-black-solid-c5b70ae43a.svg") no-repeat;
  background-size: contain;
}
.clinic-card-slider {
  width: 370px;
  margin-left: 15%;
  -webkit-transition: margin-left 0.5s;
  transition: margin-left 0.5s;
}
@media screen and (max-width: 1320px) {
  .clinic-card-slider {
    margin-left: 10%;
  }
}
@media screen and (max-width: 1250px) {
  .clinic-card-slider {
    margin-left: 5%;
  }
}
.info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 50px 30px;
  color: #0a0a0a;
}
.info-box-head {
  margin-bottom: 10px;
}
.info-box-content p,
.info-box-content .font-p {
  margin-bottom: 10px;
}
.user-status {
  position: relative;
  z-index: 2;
}
.user-status-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.user-status.logged-in {
  position: relative;
  cursor: pointer;
}
.user-status-sign-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.user-status-sign-in > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  padding: 0 1rem;
}
.user-status-sign-in > a:hover,
.user-status-sign-in > a:focus {
  color: inherit;
}
.user-status-sign-in i {
  margin-right: 10px;
}
.user-status-menu {
  opacity: 0;
  position: absolute;
  right: 25%;
  text-transform: initial;
  top: -100vh;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  visibility: hidden;
  width: 0;
  border: 1px solid black;
  border-top: none;
}
.user-status-menu.open {
  opacity: 1;
  top: 100%;
  visibility: visible;
  width: 200px;
}
.user-status-menu-item {
  border-bottom: 1px solid #191816;
}
.user-status-menu-item:last-child {
  border-bottom: 0;
}
.user-status .user-status-menu-item > a {
  padding: 1rem;
}
.user-status-menu::before {
  border-bottom: 15px solid #191816;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: "";
  display: block;
  position: absolute;
  right: 15%;
  top: -15px;
}
.pac-container {
  z-index: 99999999 !important;
}
.google-autocomplete {
  position: relative;
}
.promo-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.promo-stats__stat {
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.promo-stats__stat:last-child {
  border-bottom: 0;
}
.promo-stats__num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 40%;
}
.promo-stats--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.promo-stats--row .promo-stats__stat {
  border-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}
.promo-stats--row .promo-stats__stat:nth-child(even) {
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
.promo-stats--row .promo-stats__stat:last-child {
  border-right: 0;
}
.promo-stats--row .promo-stats__num {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media print, screen and (min-width: 40em) {
  .promo-stats {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .promo-stats__stat {
    padding-left: 24px;
    padding-right: 24px;
    border-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
    padding-top: 0;
    text-align: center;
  }
  .promo-stats__stat:nth-child(even) {
    border-left: 1px solid currentColor;
    border-right: 1px solid currentColor;
  }
  .promo-stats__stat:last-child {
    border-right: 0;
  }
  .promo-stats__num {
    min-width: auto;
  }
  .promo-stats--row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .promo-stats--row .promo-stats__stat {
    padding-left: 24px;
    padding-right: 24px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media print, screen and (min-width: 75em) {
  .promo-stats__stat {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.promo-bar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.promo-bar__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}
.promo-bar__item:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 75em) {
  .promo-bar__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.trustpilot {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.trustpilot__info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
}
@media print, screen and (min-width: 40em) {
  .trustpilot:not(.trustpilot--centered) {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
  .trustpilot__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.tile__content {
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}
.tile__image {
  width: 100%;
}
.tile__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: auto;
}
@media print, screen and (min-width: 40em) {
  .tile__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .tile .button + .button {
    margin-left: 16px;
    margin-top: 0;
  }
}
.checker-tiles__image {
  height: 150px;
}
@media print, screen and (min-width: 64em) {
  .checker-tiles__image {
    height: 320px;
  }
  .checker-tiles__item:nth-child(n + 5) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .checker-tiles__item:nth-child(n + 6) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .checker-tiles__item:nth-child(n + 7) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .checker-tiles__item:nth-child(n + 8) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
.header a,
.header a:focus,
.header a:hover {
  text-decoration: none;
}
.header .search-input {
  color: #58595b;
  padding: 8px 0;
}
.header .form-group.search-input:before {
  font-size: 1.75rem;
  top: 10px;
}
.header-container {
  position: relative;
  z-index: 30;
}
.header .top-menu {
  padding: 0;
}
.header .top-menu li {
  padding-left: 35px;
}
.header .top-menu a {
  color: #0a0a0a;
}
.header .top-menu a:hover,
.header .top-menu a:focus {
  color: #0a0a0a;
  opacity: 0.6;
}
.header .top-menu .menu {
  height: 36px;
}
.header .top-menu .menu li a {
  font-size: 14px;
  font-weight: 300;
  color: #0a0a0a;
}
.header .top-menu .menu li.active a {
  color: #0a0a0a;
  opacity: 0.6;
}
.header .top-menu .icon-search:before {
  font-size: 17px;
  position: relative;
  top: -3px;
}
.header .form-group {
  margin: 0;
}
.header .form-group input.has-value ~ .control-label,
.header .form-group input:focus ~ .control-label {
  top: -0.2rem;
}
.header .form-group .control-label {
  top: 0.9rem;
}
.header input.search_input,
.header input.search_input:focus {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  color: #58595b;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
}
.header #search-btn {
  padding: 8px;
}
.header .main-menu .columns,
.header .main-menu .columns .columns {
  height: 100px;
}
.header .main-menu .vertical-align-middle {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.header .main-menu .menu li {
  padding: 2.15rem 28px;
}
.header .main-menu .menu li a {
  padding: 0.5rem 0;
  font-weight: 300;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .main-menu .menu li a:hover,
.header .main-menu .menu li a:focus {
  color: #fff;
  opacity: 0.6;
}
.header .main-menu .menu li.active a {
  color: #fff;
  opacity: 0.6;
}
.header .main-menu img.logo {
  width: 200px !important;
  height: 49px !important;
}
.header .main-menu .button {
  min-width: 33.3333%;
}
.header .main-menu .menu--shylock .menu__link::after,
.header .main-menu .menu--shylock .menu__link::before {
  background: #fff;
}
.header .menu li a {
  font-size: 18px;
  padding: 0.5rem 0;
  line-height: 18px;
  letter-spacing: 0.54px;
}
.header .menu > li > a i {
  margin-right: 0;
}
.header .menu .active > a {
  background: none;
  color: #0a0a0a;
  opacity: 0.6;
  text-decoration: none;
}
.header-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 30;
}
#sticky-title-bar {
  -webkit-backface-visibility: hidden;
  bottom: initial;
  max-height: 70px;
  position: fixed;
  top: 0;
  -webkit-transform: translateY(-75px);
  transform: translateY(-75px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 100%;
  z-index: 11;
}
#sticky-title-bar.pull-down {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.title-bar {
  padding: 20px 25px;
}
.title-bar-right {
  position: absolute;
  text-align: center;
  height: 50px;
  width: 85px;
  right: 0;
  top: 20px;
  z-index: 50;
}
@media only screen and (max-width: 1441px) {
  .header .top-menu .menu {
    height: 52px;
  }
  .header .top-menu .menu li {
    padding-left: 0;
  }
  .header .top-menu .menu li a {
    font-size: 16px;
  }
  .header .menu li a {
    font-size: 16px;
    padding: 1rem 10px;
    letter-spacing: 1px;
  }
  .header .main-menu .menu li {
    padding: 6% 18px;
  }
  .header .main-menu .menu li a {
    padding: 0.5rem 0;
    color: #fff;
  }
  .header .main-menu img.logo {
    width: 200px !important;
    height: 49px !important;
  }
  .header .main-menu .button {
    font-size: 1rem;
    line-height: 26px;
    padding: 12px 0;
  }
  .header .main-menu .button.btn-transparent {
    padding: 11px 0;
  }
}
@media only screen and (max-width: 1280px) {
  .header .menu li a {
    font-size: 14px;
  }
  .header .main-menu .button {
    font-size: 0.875rem;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1170px) {
  .header .main-menu .menu li {
    padding: 7% 8px;
  }
}
@media only screen and (max-width: 1111px) {
  .header .top-menu li {
    padding-left: 15px;
  }
  .header .logo img {
    width: 170px;
  }
}
.header-au .top-menu li {
  padding-left: 0;
  padding-right: 35px;
  margin-bottom: 0;
}
.header-au .top-menu .menu {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-au .top-menu .menu a,
.header-au .top-menu .menu span {
  font-size: 14px;
}
.header-au .top-menu .menu i {
  font-size: 24px;
  margin-right: 10px;
}
.header-au .top-menu #status-container {
  position: absolute;
  right: 0;
}
.header-au .top-menu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-au .main-menu .menu {
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.header-au .main-menu .menu li {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 0;
  padding: 0;
}
.header-au .main-menu .menu li a {
  font-size: 16px;
}
.header-au .main-menu .menu li a.promo {
  color: #f44336;
}
.header-au .main-menu .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: padding-right 0.3s;
  transition: padding-right 0.3s;
  padding: 0;
}
.header-au .main-menu .ctas.show-cart {
  padding-right: 50px;
}
.header-au .main-menu .ctas > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 10px;
}
.header-au .main-menu .ctas > div:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 0px;
  flex: 0 1 0;
  margin-right: 0;
}
.header-au .main-menu .ctas .button.full {
  padding-right: 10px;
  padding-left: 10px;
}
.title-bar-au {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  z-index: 1000;
}
.title-bar-left {
  position: absolute;
  text-align: left;
  left: 0;
  top: 0;
  padding: 20px 15px;
  z-index: 50;
}
.title-bar #cart-icon-container {
  position: absolute;
  text-align: left;
  top: 5px;
  right: 15px;
}
@media screen and (max-width: 480px) {
  .title-bar #cart-icon-container .tag {
    width: 15%;
  }
}
@media screen and (max-width: 360px) {
  .title-bar #cart-icon-container {
    right: 5px;
  }
}
.title-bar #cart-icon-container .cart-icon-container {
  height: 55px;
}
.title-bar #cart-icon-container .cart-icon {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.title-bar #cart-icon-container .mini-cart-panel {
  left: auto;
  max-width: 400px;
  right: 0;
  top: 91%;
  width: calc(100vw - 30px);
}
@media screen and (max-width: 360px) {
  .title-bar #cart-icon-container .mini-cart-panel {
    width: calc(100vw - 10px);
  }
}
.title-bar #booking-icon-container {
  position: absolute;
  text-align: left;
  top: 2px;
  right: 72px;
}
.title-bar #booking-icon-container .booking-icon {
  padding: 15px;
  cursor: pointer;
}
.title-bar #booking-icon-container .fa-clock-o {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .title-bar #booking-icon-container {
    right: 62px;
  }
  .title-bar #booking-icon-container .booking-icon {
    padding-right: 10px;
  }
}
@media screen and (max-width: 360px) {
  .title-bar #booking-icon-container {
    right: 50px;
  }
}
@media only screen and (max-width: 1441px) {
  .header-au .top-menu .menu span {
    font-size: 16px;
  }
  .header-au .top-menu .menu i {
    font-size: 30px;
  }
  .header-au .menu li a {
    padding: 1rem 0;
  }
  .header-au .main-menu .menu li {
    padding: 0;
  }
  .header-au .main-menu .ctas > div {
    padding-right: 0;
  }
  .header-au .main-menu .button.btn-transparent {
    padding: 11px 5px;
  }
}
@media only screen and (max-width: 1280px) {
  .header-au .top-menu .menu {
    height: 45px;
  }
  .header-au .top-menu .menu span {
    font-size: 14px;
  }
  .header-au .top-menu .menu i {
    font-size: 26px;
  }
  .header-au .top-menu .menu a {
    font-size: 14px;
  }
  .header-au .main-menu .menu li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1151px) {
  .header-au .top-menu li {
    padding-left: 0;
    padding-right: 15px;
  }
  .header-au .main-menu .ctas > div {
    margin-right: 5px;
  }
  .header-au .main-menu .ctas > div:last-child {
    margin-right: 0;
  }
  .header-au .main-menu .ctas .button.full {
    padding-right: 5px;
    padding-left: 5px;
  }
}
#mainMenuBlack {
  position: fixed;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 250ms;
  transition: 250ms;
  width: 100%;
  z-index: -1;
}
#mainMenuBlack.onTop {
  -webkit-transform: translateY(-37px);
  transform: translateY(-37px);
}
.sticky-container,
.is-stuck {
  z-index: 31;
}
.middle-menu .logo {
  bottom: -8px;
  -webkit-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
  z-index: 1;
}
.middle-menu {
    padding: 10px 0px;
}
.middle-menu .logo img {
  -webkit-transition: width 0.25s ease;
  transition: width 0.25s ease;
}
.is-stuck .middle-menu .logo {
  bottom: 4px;
}
.is-stuck .middle-menu .logo img {
  width: 153px;
}
.middle-menu .menu__link {
  height: 60px;
}
.upper-menu a,
.middle-menu a {
  padding: 0.5rem 1rem;
}
.bottom-menu-container {
  border-bottom: 1px solid #fff;
}
.bottom-menu .menu__link {
  border-bottom: 4px solid #fff;
  border-top: 4px solid #fff;
  height: 56px;
  padding: 1rem;
}
.bottom-menu .menu__link.active {
  border-bottom-color: #191816;
}
.bottom-menu .menu__link:hover,
.bottom-menu .menu__link:focus {
  border-bottom-color: #191816;
  text-decoration: none;
}
.upper-menu .menu__link,
.middle-menu .menu__link,
.bottom-menu .menu__link {
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.upper-menu .menu__link:hover,
.upper-menu .menu__link:focus,
.middle-menu .menu__link:hover,
.middle-menu .menu__link:focus,
.bottom-menu .menu__link:hover,
.bottom-menu .menu__link:focus {
  color: inherit;
}
footer {
  bottom: 0;
  width: 100%;
  z-index: 5;
}
.footer ul.footer-list-menu li {
  margin-bottom: 20px;
}
.footer ul.social-list li {
  padding-right: 35px;
}
.footer ul.social-list .fa {
  font-size: 1.125rem;
}
.footer .menu--shylock .menu__link {
  color: #fff;
  padding: 0.5rem 0;
  text-decoration: none;
}
.footer .menu--shylock .menu__link:hover,
.footer .menu--shylock .menu__link:focus {
  color: #fff;
}
.footer .menu--shylock .menu__link::before {
  background: #fff;
}
.footer a {
  color: #fff;
}
.footer a:hover,
.footer a:focus {
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
}
.credits a {
  color: #0a0a0a;
  text-decoration: underline;
}
.credits a:hover,
.credits a:focus {
  color: #0a0a0a !important;
  opacity: 0.6;
  text-decoration: underline;
}
.trustpilot-footer {
  clear: both;
  display: block;
  position: relative;
  top: 15px;
}
.trustpilot-footer-logo {
  display: inline-block;
  background: url("../assets/images/trustpilot_logo_white-371d4c4c95.svg")
    no-repeat;
  width: 150px;
  max-width: 150px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.trustpilot-footer .stars {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 1px;
}
.trustpilot-footer .stars i {
  margin-right: 3px;
  font-size: 1rem;
}
.trustpilot-footer .ratings {
  letter-spacing: 1px;
  position: relative;
  bottom: 3px;
}
#subscribe-section {
  border-top: 1px solid #e7e8e8;
}
@media only screen and (max-width: 39.9375em) {
  .credits .font13 {
    font-size: 12px;
  }
  .footer-list-menu {
    margin: 16px 0;
  }
}
#footer ul.social-list li {
  padding-right: 35px;
}
.footer a {
  color: #fff;
}
.footer a:hover,
.footer a:focus {
  color: #e7e8e8;
}
.credits a {
  color: #0a0a0a;
}
.credits a:hover,
.credits a:focus {
  color: violet;
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 736px) {
  body .videoWrapper iframe:last-of-type {
    display: block;
  }
}
.header-submenu {
  position: absolute;
  top: 57px;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  width: 100%;
  z-index: 32;
}
.header-submenu .row {
  padding: 3.125rem 0;
}
.header-submenu .border-left {
  border-left: 1px solid #ededed;
}
.header-submenu .img-wrapper {
  margin: 0 0 18px 14px;
  position: relative;
}
.header-submenu .img-wrapper .cent-text {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  line-height: 2.7rem;
  width: 100%;
}
.header-submenu p,
.header-submenu .font-p {
  font-size: 46px;
  line-height: 46.93px;
  letter-spacing: -1.38px;
}
.header-submenu .menu__link {
  font-weight: 400;
  padding-bottom: 5px;
}
.header-submenu .menu__link::before,
.header-submenu .menu__link::after {
  content: none;
}
.submenu-item {
  display: none;
}
.submenu-item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.submenu-tiles {
  border-right: 1px solid #ddbfaf;
}
.submenu-columns > div {
  border-right: 1px solid #ddbfaf;
}
.submenu-columns > div:last-child {
  border-right: 0;
}
@media screen and (max-width: 1441px) {
  #mainMenuBlack.onTop {
    -webkit-transform: translateY(-53px);
    transform: translateY(-53px);
  }
}
div#header-container.stick .header-submenu {
  position: fixed;
  width: 100%;
  z-index: 32;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  top: 100px;
}
.schedule-box {
  border: 1px solid #e7e8e8;
  padding: 50px;
}
@media only screen and (max-width: 48.063em) {
  .schedule-box {
    padding: 30px 20px;
  }
}
.treatment-block .grey-box {
  border: 1px solid #e7e8e8;
}
.treatment-block .pricing-list li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 1616px) {
  .treatment-block .pricing-list li {
    max-width: 240px;
    width: 240px;
  }
  .treatment-block table.pricing-table.text-left tr td:first-child {
    width: 35%;
  }
}
@media screen and (max-width: 1615px) {
  .treatment-block .pricing-list li {
    max-width: 208px;
    width: 208px;
  }
}
.treatment-block .grid-item {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .treatment-block .pricing-container .grid-item {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 39.9375em) {
  .treatment-block .pricing-list li {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .treatment-block .tm-sess .columns {
    font-size: 12px;
  }
  .treatment-block .tm-sess .columns:first-child {
    font-weight: bold;
  }
}
@media only screen and (max-width: 736px) {
  .treatment-block h1.banner-heading,
  .treatment-block h1.font-banner-heading,
  .treatment-block .font-banner-heading.font-h1,
  .treatment-block .banner-heading.font-h1 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 667px) {
  .treatment-block h1.banner-heading,
  .treatment-block h1.font-banner-heading,
  .treatment-block .font-banner-heading.font-h1,
  .treatment-block .banner-heading.font-h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .treatment-block h1.banner-heading,
  .treatment-block h1.font-banner-heading,
  .treatment-block .font-banner-heading.font-h1,
  .treatment-block .banner-heading.font-h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 340px) {
  .treatment-block h1.banner-heading,
  .treatment-block h1.font-banner-heading,
  .treatment-block .font-banner-heading.font-h1,
  .treatment-block .banner-heading.font-h1 {
    font-size: 28px;
  }
}
.page-banner-image-wrap {
  position: relative;
  min-height: 100%;
}
.page-banner-image-wrap img {
  position: absolute;
  bottom: 0;
  right: 10px;
}
.page-banner-content h1,
.page-banner-content .font-h1,
.page-banner-content h2,
.page-banner-content .font-h2,
.page-banner-content h3,
.page-banner-content .font-h3,
.page-banner-content h4,
.page-banner-content .font-h4,
.page-banner-content h5,
.page-banner-content .font-h5,
.page-banner-content h6,
.page-banner-content .font-h6,
.page-banner-content p,
.page-banner-content .font-p,
.page-banner-content b,
.page-banner-content i {
  margin-bottom: 1.875rem;
}
.page-banner-content .button:nth-of-type(1) {
  margin-right: 3%;
}
@media only screen and (max-width: 64em) {
  .page-banner .show-for-phone-tablet h2,
  .page-banner .show-for-phone-tablet .font-h2,
  .page-banner .show-for-phone-tablet .header-mobile {
    font-size: 46px;
    line-height: 52px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 39.9375em) {
  .page-banner .show-for-phone-tablet h2,
  .page-banner .show-for-phone-tablet .font-h2,
  .page-banner .show-for-phone-tablet .header-mobile {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 74.125rem) {
  .page-banner .button:nth-of-type(1) {
    margin-right: 0;
  }
}
.page-banner-black {
  background-color: #0a0a0a;
  color: #fff;
}
.page-banner-white {
  background-color: #fff;
  border-bottom: 1px solid #e7e8e8;
}
.page-banner-dark-grey {
  background-color: #a6a6a6;
}
.page-banner-treatment {
  border-bottom: 1px solid #e7e8e8;
}
.inner-banner-btn.row {
  margin-left: 0;
  margin-right: 0;
}
.inner-banner-btn.row .small-6:nth-child(1) {
  padding-left: 0;
}
.inner-banner-btn.row .small-6:nth-child(2) {
  padding-right: 0;
}
.inner-banner-btn.row .button {
  min-width: 100% !important;
}
ul.button-list li:first-child {
  margin-left: 0 !important;
}
.page-banner-button-list {
  min-width: 210px;
}
.button-list .btn-small {
  min-width: 180px;
}
.btn-big .button {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.6px;
}
@media only screen and (max-width: 1280px) {
  .btn-big .button {
    font-size: 1rem;
    line-height: 26px;
  }
}
@media only screen and (max-width: 48.063em) {
  .btn-big .button {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.42px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .btn-big .button {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.42px;
  }
}
.no-overflow {
  overflow: visible !important;
}
.animated-active.button-wrap.btn-big {
  min-width: 225px;
  height: 50px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (min-width: 1026px) {
  .small-centered:last-child:not(:first-child).img-container {
    float: left;
    clear: initial;
  }
  .caption-container {
    padding: 5rem 0.625rem;
  }
  .img-container {
    float: left;
  }
  .caption-container {
    float: right;
  }
}
@media only screen and (min-width: 1024px) {
  .animated-active.button-wrap.btn-big {
    min-width: 160px;
    height: 49px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .caption-container {
    padding-top: 5.3125rem;
  }
  .caption-container,
  .img-container {
    width: 83.33333%;
    float: none;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .animated-active.button-wrap.btn-big {
    min-width: 155px;
    height: 50px;
  }
}
@media only screen and (max-width: 1280px) {
  .btn-big .button {
    padding: 18px 0;
  }
  .btn-big.btn-transparent-container .button {
    padding: 16px 0;
  }
  .animated-active.button-wrap.btn-big {
    min-width: 180px;
    height: 68px;
  }
}
@media only screen and (min-width: 1366px) {
  .animated-active.button-wrap.btn-big {
    min-width: 200px;
    height: 68px;
  }
}
@media only screen and (min-width: 1281px) {
  .btn-big .button {
    padding: 25px 0;
  }
  .btn-big .button.btn-white-transparent,
  .btn-big .button.btn-black-transparent {
    padding: 23px 0;
  }
}
@media only screen and (min-width: 1600px) {
  .animated-active.button-wrap.btn-big {
    min-width: 225px;
    height: 79px;
  }
}
@media only screen and (max-width: 1024px) {
  .btn-big .button {
    min-width: 155px;
  }
}
@media only screen and (max-width: 640px) {
  .animated-active.button-wrap.btn-big {
    min-width: 154px;
    height: 50px;
  }
  .btn-big .button {
    min-width: 115px;
  }
}
@media only screen and (max-width: 375px) {
  .animated-active.button-wrap.btn-big {
    min-width: 138px;
    height: 50px;
  }
}
@media only screen and (max-width: 320px) {
  .animated-active.button-wrap.btn-big {
    min-width: 115px;
    height: 50px;
  }
}
.list-content-container {
  padding: 0 60px;
}
@media only screen and (max-width: 1024px) {
  .list-content-container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 640px) {
  .list-content-container {
    padding: 0;
  }
}
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
  content: " ";
  display: block;
  background: white;
  position: absolute;
  z-index: 20;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
  width: 1px;
  height: 9999px;
  left: 55%;
  margin-left: -1.5px;
}
.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
}
.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.twentytwenty-before-label,
.twentytwenty-after-label {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
}
.twentytwenty-horizontal .twentytwenty-before-label:before,
.twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  margin-top: -19px;
}
.twentytwenty-vertical .twentytwenty-before-label:before,
.twentytwenty-vertical .twentytwenty-after-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px;
}
.twentytwenty-left-arrow,
.twentytwenty-right-arrow,
.twentytwenty-up-arrow,
.twentytwenty-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}
.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px;
}
.twentytwenty-up-arrow,
.twentytwenty-down-arrow {
  left: 50%;
  margin-left: -6px;
}
.twentytwenty-container {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  max-width: 670px;
}
.twentytwenty-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
}
.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active :hover.twentytwenty-overlay {
  background: rgba(0, 0, 0, 0);
}
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active
  :hover.twentytwenty-overlay
  .twentytwenty-before-label,
.twentytwenty-container.active
  :hover.twentytwenty-overlay
  .twentytwenty-after-label {
  opacity: 0;
}
.twentytwenty-container * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.twentytwenty-before-label {
  opacity: 0;
}
.twentytwenty-after-label {
  opacity: 0;
}
.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px;
}
.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px;
}
.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px;
}
.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px;
}
.twentytwenty-overlay {
  -webkit-transition-property: background;
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 15;
}
.twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1;
}
.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}
.twentytwenty-before {
  z-index: 20;
}
.twentytwenty-after {
  z-index: 10;
}
.twentytwenty-handle {
  height: 20px;
  width: 23px;
  position: absolute;
  top: 92%;
  margin-left: -11px;
  margin-top: -22px;
  background: #ffffff;
  z-index: 20;
  cursor: pointer;
}
.twentytwenty-container label {
  position: absolute;
  font-size: 13px;
  color: #c8c8c8;
  font-weight: 400;
  top: 20px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  z-index: 21;
}
label.twenty-before {
  left: 0;
}
label.twenty-after {
  right: 0;
}
.twentytwenty-bar {
  position: absolute;
  bottom: 8.3%;
  height: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}
@-webkit-keyframes boing {
  from {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(-20px, 0px);
    transform: translate(-20px, 0px);
  }
  to {
    -webkit-transform: translate(20px, 0px);
    transform: translate(20px, 0px);
  }
}
@keyframes boing {
  from {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(-20px, 0px);
    transform: translate(-20px, 0px);
  }
  to {
    -webkit-transform: translate(20px, 0px);
    transform: translate(20px, 0px);
  }
}
.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 55%;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 3px 0 white, 0px 0px 6px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0px 0px 6px rgba(51, 51, 51, 0.5);
}
.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 55%;
  margin-top: 10px;
  -webkit-box-shadow: 0 -3px 0 white, 0px 0px 6px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0px 0px 6px rgba(51, 51, 51, 0.5);
}
.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-left-arrow {
  display: inline-block;
  display: none;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  left: 2px;
  top: 10px;
  font-weight: bold;
}
.twentytwenty-left-arrow:before {
  content: "\f104";
}
.twentytwenty-right-arrow {
  display: inline-block;
  display: none;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  right: 8px;
  top: 10px;
  font-weight: bold;
}
.twentytwenty-right-arrow:before {
  content: "\f105";
}
.twentytwenty-up-arrow {
  border-bottom: 6px solid white;
  top: 50%;
  margin-top: -17px;
}
.twentytwenty-down-arrow {
  border-top: 6px solid white;
  bottom: 50%;
  margin-bottom: -17px;
}
@media only screen and (max-width: 1025px) {
  .twentytwenty-bar {
    bottom: 8.5%;
  }
}
@media only screen and (max-width: 768px) {
  .twentytwenty-bar {
    bottom: 8.9%;
  }
}
.twentytwenty-bar {
  background: rgba(255, 255, 255, 0.65);
  height: 30px;
  bottom: 6.6%;
}
@media only screen and (max-width: 1651px) {
  .twentytwenty-bar {
    height: 26px !important;
  }
}
@media only screen and (max-width: 954px) {
  .twentytwenty-bar {
    height: 20px !important;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-bar {
    bottom: 7%;
  }
}
.twentytwenty-horizontal .twentytwenty-handle {
  width: 120px;
  height: 52px;
  top: 90.2%;
  left: 10px;
  margin-left: -61px;
  background: #0a0a0a;
}
@media only screen and (max-width: 1280px) {
  .twentytwenty-horizontal .twentytwenty-handle {
    top: 90%;
  }
}
@media only screen and (max-width: 64em) {
  .twentytwenty-horizontal .twentytwenty-handle {
    height: 46px;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-horizontal .twentytwenty-handle {
    width: 96px;
    height: 40px;
    margin-left: -47px;
    top: 91%;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-horizontal .twentytwenty-handle {
    top: 89%;
  }
}
@media only screen and (max-width: 639px) {
  .twentytwenty-horizontal .twentytwenty-handle {
    top: 91%;
  }
}
@media only screen and (max-width: 499px) {
  .twentytwenty-horizontal .twentytwenty-handle {
    top: 90%;
  }
}
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
  margin-left: -6.5px;
}
.twentytwenty-horizontal .twentytwenty-handle:before {
  margin-bottom: 10px;
  bottom: 87%;
}
.twentytwenty-horizontal .twentytwenty-handle:after {
  margin-top: 10px;
  top: 87%;
}
.twentytwenty-container label {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial !important;
  font-size: 18px !important;
  color: #0a0a0a !important;
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
  top: initial !important;
  bottom: 6.6% !important;
}
@media only screen and (max-width: 1441px) {
  .twentytwenty-container label {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 64em) {
  .twentytwenty-container label {
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-container label {
    font-size: 12px !important;
    bottom: 6% !important;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-container label {
    bottom: 10% !important;
  }
}
@media only screen and (max-width: 639px) {
  .twentytwenty-container label {
    bottom: 10.5% !important;
  }
}
.twentytwenty-container .twenty-before {
  left: 24% !important;
}
@media only screen and (max-width: 1441px) {
  .twentytwenty-container .twenty-before {
    left: 15% !important;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-container .twenty-before {
    left: 10% !important;
  }
}
.twentytwenty-container .twenty-after {
  right: 24% !important;
}
@media only screen and (max-width: 1441px) {
  .twentytwenty-container .twenty-after {
    right: 15% !important;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-container .twenty-after {
    right: 10% !important;
  }
}
.twentytwenty-left-arrow {
  font-size: inherit !important;
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  left: 0 !important;
  top: 0 !important;
  color: inherit !important;
  display: inline-block !important;
}
.twentytwenty-left-arrow::before {
  content: none !important;
}
.twentytwenty-left-arrow::after {
  content: "Slide Me";
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 18px;
  line-height: 25px;
  width: 100%;
  top: 12px;
  left: 20px;
  position: relative;
  color: #fff;
}
@media only screen and (max-width: 64em) {
  .twentytwenty-left-arrow::after {
    font-size: 16px;
    line-height: 24px;
    top: 9px;
    left: 23px;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-left-arrow::after {
    font-size: 14px;
    top: 7px;
    left: 17px;
  }
}
.twentytwenty-right-arrow {
  display: inline-block !important;
  position: relative;
  right: initial;
  left: -25px !important;
  top: -34px !important;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  height: 20px;
  border: none;
  width: 140%;
}
@media only screen and (max-width: 1441px) {
  .twentytwenty-right-arrow {
    top: -35px !important;
  }
}
@media only screen and (max-width: 64em) {
  .twentytwenty-right-arrow {
    top: -33px !important;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-right-arrow {
    left: -18px !important;
    top: -30px !important;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-right-arrow {
    top: -28px !important;
  }
}
@media only screen and (max-width: 599px) {
  .twentytwenty-right-arrow {
    top: -29px !important;
  }
}
@media only screen and (max-width: 559px) {
  .twentytwenty-right-arrow {
    top: -30px !important;
  }
}
@media only screen and (max-width: 499px) {
  .twentytwenty-right-arrow {
    top: -27px !important;
  }
}
@media only screen and (max-width: 399px) {
  .twentytwenty-right-arrow {
    top: -29px !important;
  }
}
.twentytwenty-right-arrow::before {
  content: "\f104" !important;
  font-family: fontawesome;
  display: block;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  top: 0;
}
.twentytwenty-right-arrow::after {
  content: "\f105" !important;
  font-family: fontawesome;
  display: block;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 39.9375em) {
  .product-tabs .twentytwenty-top {
    width: 100%;
  }
  .product-tabs .twentytwenty-top .twentytwenty-container {
    margin-bottom: 1.875rem;
  }
}
.cs-reveal {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(10, 10, 10, 0.45);
}
.cs-reveal-content {
  display: inline-block;
  padding: 45px;
  position: relative;
  top: 2.2em;
}
.reveal.relative {
  padding: 45px 0;
}
.cs-reveal-close {
  font-size: 40px;
  cursor: pointer;
}
.cs-reveal.cs-reveal-open {
  display: block;
}
.reveal-modal {
  position: fixed;
}
body.is-reveal-open {
  overflow: visible !important;
}
.reveal-overlay {
  overflow: hidden;
}
.twentytwenty-top .twentytwenty-container label {
  bottom: 0 !important;
  top: 3.5% !important;
}
.twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
  top: 36px !important;
}
.twentytwenty-top .twentytwenty-bar {
  top: 25px !important;
  bottom: inherit !important;
}
@media only screen and (max-width: 1651px) {
  .twentytwenty-top .twentytwenty-bar {
    height: 26px !important;
  }
}
@media only screen and (max-width: 954px) {
  .twentytwenty-top .twentytwenty-bar {
    height: 20px !important;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-top .twentytwenty-bar {
    top: 7% !important;
    bottom: inherit !important;
  }
}
@media only screen and (max-width: 1280px) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    top: 36px !important;
  }
}
@media only screen and (max-width: 64em) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    height: 46px;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    width: 96px;
    height: 40px;
    margin-left: -47px;
    top: 36px !important;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    top: 36px !important;
  }
}
@media only screen and (max-width: 639px) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    top: 36px !important;
  }
}
@media only screen and (max-width: 499px) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    top: 36px !important;
  }
}
.treatment-details .treatment-content-banner h2,
.treatment-details .treatment-content-banner .font-h2,
.treatment-details .treatment-content-banner h3,
.treatment-details .treatment-content-banner .font-h3,
.treatment-details .treatment-content-banner h4,
.treatment-details .treatment-content-banner .font-h4,
.treatment-details .treatment-content-banner h5,
.treatment-details .treatment-content-banner .font-h5,
.treatment-details .treatment-content-banner h6,
.treatment-details .treatment-content-banner .font-h6 {
  margin-bottom: 1.875rem;
  text-align: center;
}
.treatment-details .treatment-content-banner .button:nth-of-type(1) {
  margin-right: 2%;
}
.treatment-details .before-after-content h1,
.treatment-details .before-after-content .font-h1,
.treatment-details .before-after-content h2,
.treatment-details .before-after-content .font-h2,
.treatment-details .before-after-content h3,
.treatment-details .before-after-content .font-h3,
.treatment-details .before-after-content h4,
.treatment-details .before-after-content .font-h4,
.treatment-details .before-after-content h5,
.treatment-details .before-after-content .font-h5,
.treatment-details .before-after-content h6,
.treatment-details .before-after-content .font-h6 {
  margin-bottom: 3.125rem;
}
@media only screen and (max-width: 1186px) {
  .treatment-details .treatment-content-banner .button:nth-of-type(1) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 39.9375em) {
  .cosmetic-injections-treatments-content {
    padding: 0;
  }
  .treatment-details .treatment-content-banner .button {
    width: 100%;
  }
  .treatment-details .treatment-content-banner .button:nth-of-type(1) {
    margin-bottom: 10px;
  }
  .treatment-details .before-after-content h1,
  .treatment-details .before-after-content .font-h1,
  .treatment-details .before-after-content h2,
  .treatment-details .before-after-content .font-h2,
  .treatment-details .before-after-content h3,
  .treatment-details .before-after-content .font-h3,
  .treatment-details .before-after-content h4,
  .treatment-details .before-after-content .font-h4,
  .treatment-details .before-after-content h5,
  .treatment-details .before-after-content .font-h5,
  .treatment-details .before-after-content h6,
  .treatment-details .before-after-content .font-h6 {
    margin-bottom: 1.875rem;
  }
}
.border-red {
  border: 1px solid #f44336;
}
.border-grey {
  border: 1px solid #e7e8e8;
}
.border-top-grey {
  border-top: 1px solid #e7e8e8;
}
.border-bottom-grey {
  border-bottom: 1px solid #e7e8e8;
}
.pricing-table {
  border-collapse: collapse;
}
.pricing-table tbody {
  border: 1px solid #e7e8e8;
  background: #fff;
}
.pricing-table td b {
  line-height: 30px;
  line-height: 1;
}
.pricing-table th,
.pricing-table thead {
  background-color: #0a0a0a;
  color: #fff;
  padding: 20px;
}
.pricing-table td,
.pricing-table tr,
.pricing-table tr td,
.pricing-table tbody,
.pricing-table tr:nth-child(even) {
  background-color: transparent;
  padding: 0;
}
.pricing-table tr > td:first-child {
  margin-left: 20px;
}
.pricing-table tr > td:last-child {
  margin-right: 20px;
}
.pricing-table tr:last-child td > div {
  border-bottom: none;
}
.pricing-table tr > td {
  border-bottom: 1px solid #e7e8e8;
  padding: 20px !important;
}
.pricing-table .grid-item {
  width: 47.5%;
}
.pricing-table .grey-box {
  border: 1px solid #e7e8e8;
}
.pricing-table .pricing-list li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
thead th,
thead td,
tfoot th,
tfoot td {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.pricing-container .grid-item {
  width: 47.5%;
  margin: 1%;
}
@media screen and (max-width: 1280px) {
  .pricing-container .grid-item {
    width: 90%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 639px) {
  .pricing-container .pricing-table td b {
    line-height: 1;
  }
  .pricing-container .grid-item {
    width: 98%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-container table th,
  .pricing-container table thead,
  .pricing-container table tr,
  .pricing-container table tr > td {
    padding: 10px !important;
    font-size: 12px;
    line-height: 1.4;
  }
}
.face-map-cont {
  border: solid 1px #0a0a0a;
  padding: 0 10px 0 10px;
  position: relative;
}
.face-map-cont .link-line-animate::after {
  width: 92%;
}
.face-map-cont.flexi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.face-map-cont .cont-main-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0 0 4rem;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.face-map-cont .cont-main-text .explanation {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding: 3rem 0;
  border-bottom: solid 1px #ededed;
}
.product-tabs .face-map-cont .cont-main-text .explanation {
  padding: 20px 0;
}
.face-map-cont .cont-main-text .explanation p,
.face-map-cont .cont-main-text .explanation .font-p {
  font-size: 13px;
}
.face-map-cont .cont-main-text .explanation .guide p,
.face-map-cont .cont-main-text .explanation .guide .font-p {
  margin-bottom: 0;
}
.face-map-cont .cont-main-text .explanation .base p,
.face-map-cont .cont-main-text .explanation .base .font-p {
  font-size: 16px;
}
.face-map-cont .cont-main-text .explanation .img-txt-nav ul {
  margin-bottom: 0;
}
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li {
  color: #f44336;
  cursor: pointer;
  width: 28%;
  display: inline-block;
  margin-left: 22px;
  vertical-align: top;
  margin-bottom: 0;
  padding: 6px 0;
}
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li:before {
  color: #f44336;
  content: "";
  display: list-item;
  position: absolute;
}
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li.active p,
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li.active .font-p {
  color: #f44336;
}
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li p,
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li .font-p {
  color: #0a0a0a;
  margin-bottom: 0;
  font-size: 16px;
}
.face-map-cont .cont-main-text .mapText {
  -ms-flex: 1 1 0;
  -webkit-box-flex: 1;
  flex: 1 1 0;
  position: relative;
  display: none;
  -webkit-transition: all 1s;
  transition: all 1s;
  padding: 3rem 0;
}
.face-map-cont .cont-main-text .mapText .text-cont {
  display: none;
}
.face-map-cont .cont-main-text .mapText .text-cont p,
.face-map-cont .cont-main-text .mapText .text-cont .font-p {
  font-size: 16px;
  margin-bottom: 0;
}
.face-map-cont .cont-main-text .mapText .text-cont h4,
.face-map-cont .cont-main-text .mapText .text-cont .font-h4 {
  margin-bottom: 1.875rem;
}
.face-map-cont .cont-main-text .mapText .text-cont.base {
  display: block;
}
.face-map-cont .cont-main-text .mapText .text-cont.base p,
.face-map-cont .cont-main-text .mapText .text-cont.base .font-p {
  padding-top: 10px;
}
.face-map-cont .mapster_el {
  opacity: 0 !important;
}
.face-map-cont .cont-main-img {
  padding: 30px 0;
}
.face-map-cont .cont-main-img #imagemap-cont {
  position: relative;
  max-width: 480px;
  max-height: 695px;
  margin: auto;
  opacity: 0;
}
.face-map-cont .cont-main-img #imagemap-cont img {
  width: 100%;
}
.face-map-cont .cont-main-img #imagemap-cont .mapHover {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.face-map-cont .cont-main-img #imagemap-cont .mapBase {
  position: absolute;
  top: 0;
  left: 0;
}
.face-map-cont .cont-main-img #imagemap-cont #imgMap {
  opacity: 0;
}
.face-map-cont .cont-main-img #imagemap-cont .mapActive {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.face-map-cont .cont-main-img map area {
  cursor: pointer;
}
.face-map-cont .loader {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.face-map-cont .loader .def-loader {
  width: 60px;
  height: 60px;
  top: 45%;
  left: 50%;
  display: block;
  margin-top: -20px;
  margin-left: -20px;
  border: solid 3px;
  border-color: #555 #fff;
  border-radius: 1000px;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotate;
  -moz-animation-duration: 1.5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -o-animation-name: rotate;
  -o-animation-duration: 1.5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
  animation-name: rotate;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 1440px) {
  .face-map-cont .cont-main-text .explanation .img-txt-nav ul li {
    width: 44%;
  }
}
@media only screen and (max-width: 1142px) {
  .face-map-cont .cont-main-text .explanation .img-txt-nav ul li {
    width: 40%;
  }
}
@media only screen and (max-width: 1023px) {
  .face-map-cont.flexi {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .face-map-cont .cont-main-text {
    padding: 0 1rem 0 1rem;
  }
  .face-map-cont .cont-main-img {
    padding: 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .face-map-cont .cont-main-img {
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 544px) {
  .face-map-cont .cont-main-text .explanation .img-txt-nav ul li {
    width: 90%;
  }
}
@media print, screen and (max-width: 40em) {
  .face-map-cont .cont-main-text {
    padding: 1rem;
  }
  .face-map-cont .cont-main-text .mapText {
    padding: 1rem 0rem;
  }
  .face-map-cont .cont-main-text .mapText .text-cont {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
.product-tabs .face-map h3,
.product-tabs .face-map .font-h3 {
  margin-bottom: 30px;
}
.product-tabs .face-map-cont {
  margin-left: 0;
  margin-right: 0;
}
.subscribe-section .form-group {
  margin: 18px 0 30px;
}
.subscribe-section .form-group.search-input input {
  padding-bottom: 10px;
  letter-spacing: 1px;
}
.accordion {
  margin-bottom: 0;
}
.accordion-item {
  border-bottom: 1px solid #979797;
  position: relative;
  margin-bottom: 0;
}
.accordion-item:first-child > :first-child {
  padding-top: 0;
}
.accordion-item:first-child > :first-child:before {
  top: 8px;
}
.accordion-title {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 18px;
  line-height: 25px;
  border: none;
  margin-bottom: 0;
  color: #0a0a0a;
  padding: 20px 0;
  padding-right: 20px;
  text-decoration: none;
}
.accordion-title:focus,
.accordion-title:hover {
  background: none;
  text-decoration: none !important;
  opacity: 0.6;
}
.accordion-title:before {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 28px;
}
.accordion-content {
  border: none;
  padding: 0 0 1.875rem;
}
.accordion-content:last-child {
  margin-bottom: 0;
}
footer .accordion-item {
  border: 0;
}
footer .accordion-title {
  padding-bottom: 10px;
}
footer .accordion-title:focus {
  color: #fff;
  opacity: 1;
}
footer .accordion-title::before {
  font-size: 28px;
}
footer .accordion-content {
  padding: 0;
}
footer .accordion-content > div {
  margin: 0 20px;
}
footer .accordion-content .menu__item:last-child {
  margin-bottom: 8px;
}
.accordion--plus .accordion-title:before,
.accordion--plus .is-active .accordion-title:before {
  content: "";
  font-family: sans-serif;
  height: 100%;
  margin: 0;
  right: 8px;
  top: 0;
  width: 16px;
}
.accordion--plus .accordion-title:before {
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill=''%3E%3Cpath d='M22 11h-9V2c0-.6-.4-1-1-1s-1 .4-1 1v9H2c-.6 0-1 .4-1 1s.4 1 1 1h9v9c0 .6.4 1 1 1s1-.4 1-1v-9h9c.6 0 1-.4 1-1s-.4-1-1-1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13 1v22h-2V1h2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 11h22v2H1v-2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 16px;
}
.accordion--plus .is-active .accordion-title:before {
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8A8 8 0 110 8a8 8 0 0116 0z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.5 8a.5.5 0 01.5-.5h10a.5.5 0 010 1H3a.5.5 0 01-.5-.5z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 16px;
}
.accordion--plus .accordion-item:first-child > :first-child:before {
  top: 0;
}
.accordion--plus .accordion-title {
  padding-right: 32px;
}
.is-active > .accordion-title:before {
  font-family: FontAwesome;
  content: "\f106";
}
:last-child > .accordion-content:last-child,
:last-child:not(.is-active) > .accordion-title {
  border: none;
}
.line-list li {
  list-style: none;
  display: block;
  padding: 5px 0 5px 30px;
  margin-bottom: 15px;
  position: relative;
}
.line-list li:focus:before,
.line-list li:hover:before,
.line-list li.active:before {
  content: "";
  border-left: 2px solid #0a0a0a;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}
.line-list li.active a {
  font-weight: 700;
  text-decoration: none;
}
.line-list li:focus a,
.line-list li:hover a {
  color: #0a0a0a;
  font-weight: regular;
  text-decoration: none !important;
}
.line-list li a {
  color: black;
  display: block;
  text-decoration: none;
}
#search-by-clinic {
  position: relative;
  z-index: 10;
}
.medical-team-search {
  position: relative;
  z-index: 10;
}
.medical-team-list--item {
  padding: 0 50px;
}
.medical-team-list--item img {
  border-radius: 50%;
  background: #e7e8e8;
}
@media only screen and (max-width: 1441px) {
  .medical-team-list--item {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 64em) {
  .medical-team-list--item {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .medical-team-list--item {
    padding: 0;
  }
}
.pagination {
  margin-bottom: 0;
}
.pagination li {
  font-size: 18px;
  display: inline-block;
  list-style: none;
}
.pagination.webapp {
  clear: both;
  text-align: center;
  padding-top: 32px;
}
.pagination.webapp a,
.pagination.webapp span,
.pagination.webapp .pag-current {
  display: inline-block;
  margin: 0 15px;
  padding: 0 3px 2px;
}
.pagination.webapp a:hover,
.pagination.webapp a:focus {
  background: none;
  color: #0a0a0a;
  border-bottom: 2px solid;
}
.pagination.webapp .pag-current {
  color: #0a0a0a;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  border-bottom: 2px solid;
  padding-bottom: 1px;
}
.pag-prev a:before {
  content: "\f104";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
  font-size: 1.125rem;
}
.pag-next a:after {
  content: "\f105";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 39.9375em) {
  .pagination.webapp a,
  .pagination.webapp span,
  .pagination.webapp .pag-current {
    font-size: 14px;
    padding: 0 3px 2px;
    margin: 0 6px;
  }
}
.promo-banner {
  min-height: 64px;
}
.promo-banner .slide-prev {
  left: 0;
}
.promo-banner .slide-next {
  right: 0;
}
.promo-list-container {
  border-bottom: 1px solid #ededed;
  padding-bottom: 5.3125rem;
}
@media only screen and (min-width: 1441px) {
  .promo-list-container .button-wrap {
    min-width: 230px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .promo-list-container .button-wrap {
    min-width: 100%;
  }
}
.promo-list-container .button-wrap .button {
  width: 100%;
}
.promo-list-container .promo-content--item {
  border: 1px solid #0a0a0a;
  padding: 15px 14px 25px;
  margin: 0 7px 15px;
  position: relative;
  min-width: 256px;
  max-width: 256px;
}
.promo-list-container .promo-content--item .promo-price {
  bottom: 25px;
}
.promo-list-container .promo-content--item .promo-price p,
.promo-list-container .promo-content--item .promo-price .font-p {
  margin-bottom: 5px;
}
.promo-list-container .promo-content--item .promo-price p span,
.promo-list-container .promo-content--item .promo-price .font-p span {
  font-weight: 700;
}
.promo-list-container .promo-content--item .promo-price p.font13,
.promo-list-container .promo-content--item .promo-price .font13.font-p,
.promo-list-container .promo-content--item .promo-price p.font14,
.promo-list-container .promo-content--item .promo-price .font14.font-p {
  line-height: 16px;
  margin-top: 12px;
}
.promo-list-container:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.pricing-table .promo-details-mobile {
  margin-top: 8px;
}
@media only screen and (max-width: 1441px) {
  .promo-list-container {
    padding-bottom: 3.125rem;
  }
}
#laser-hair-removal.promo-list-container,
#skin-treatments.promo-list-container {
  padding-top: 85px;
}
@media screen and (max-width: 640px) {
  #laser-hair-removal.promo-list-container,
  #skin-treatments.promo-list-container {
    padding-top: 50px;
  }
}
.error-summary li {
  display: block;
}
#map #map {
  height: 100%;
}
#map html,
#map body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#map,
#indoormap {
  height: 400px;
  width: 100%;
}
#map {
  height: 700px;
}
@media screen and (max-width: 1280px) {
  .widen-on-small {
    width: 100%;
    display: block;
  }
}
.result-item:hover,
.result-item:focus {
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}
.result-item .accordion-item {
  border: none;
}
.result-item a:hover,
.result-item a:focus {
  color: #0a0a0a;
  text-decoration: none;
}
.result-item ul.links.no-list li a {
  margin-bottom: 10px;
}
.result-item > .row {
  margin: 0 !important;
  border: 1px solid #e7e8e8;
  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
.location-item {
  margin-bottom: 1%;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .location-item {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media screen and (min-width: 640px) {
  .location-item {
    width: 47%;
    margin: 1%;
  }
}
@media screen and (min-width: 1024px) {
  .location-item {
    width: 30%;
    margin: 0.5%;
  }
}
@media screen and (min-width: 1440px) {
  .location-item {
    width: 23%;
    margin: 0.5%;
  }
}
.result-box-item {
  margin: 0 !important;
  border: 1px solid #e7e8e8;
  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ribbon {
  color: #fff;
  padding: 2px 20px;
  display: inline-block;
  border-radius: 3px;
  margin-top: 10px;
}
.rbn-red {
  background: #e03e52;
}
.rbn-grey {
  background: #c8c8c8;
}
.rbn-drkgrey {
  background-color: #303030;
}
.d-orange {
  background-color: #df7d1e;
}
.result-area-container {
  display: block;
} /*! CSS Used from: https://www.laserclinics.com.au/StyleSheets/ModuleStyleSheets.css */
@media screen and (max-width: 1680px) {
  #clinics-page h4 > a,
  #clinics-page .font-h4 > a {
    font-size: 1.5em;
    font-size: 24px;
    line-height: 1;
  }
}
@media print, screen and (min-width: 64em) {
  .our-story .medium-centered,
  .our-story .medium-centered:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
}
.our-story .container {
  height: 933px;
  overflow: hidden;
  margin: 30px auto 0;
  overflow-y: scroll;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
@media only screen and (max-width: 39.9375em) {
  .our-story .container {
    max-height: 635px;
  }
}
.our-story .container::-webkit-scrollbar {
  background: #dedede;
  width: 6px;
}
.our-story .container::-moz-scrollbar {
  background: #dedede;
  width: 6px;
}
.our-story .container::-moz-scrollbar {
  background: #dedede;
  width: 6px;
}
.our-story .container::-webkit-scrollbar-thumb {
  background-color: #8f8f8f;
}
.our-story .container::-moz-scrollbar-thumb {
  background-color: #8f8f8f;
}
.our-story .date-right {
  display: inline-block;
}
.our-story .day-name {
  font-size: 1.6em;
}
.our-story .month {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.6em;
  letter-spacing: 2px;
  margin-top: 2px;
}
.our-story .timeline ul {
  padding: 1em 0 0 2em;
  margin: 0;
  list-style: none;
  position: relative;
  padding-top: 0;
}
.our-story .timeline ul::before {
  content: " ";
  height: 100%;
  width: 1px;
  background-color: #d9d9d9;
  position: absolute;
  top: 0;
  left: 2.49em;
  z-index: 1;
}
.our-story .timeline li div {
  display: inline-block;
  margin: 1em 0;
  vertical-align: top;
}
.our-story .timeline li div.desc {
  margin-top: 0;
}
.our-story .timeline .bullet {
  width: 1.75em;
  height: 1.75em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  background: white;
  z-index: 1;
  margin-right: 1.3em;
  position: relative;
  padding-top: 0;
  margin-top: 0;
  margin-left: -8px;
  margin-bottom: 2.5em;
}
.our-story .timeline .bullet.pink {
  border: 2px solid #0a0a0a;
}
.our-story .timeline .bullet.black {
  border: 2px solid #0a0a0a;
}
.our-story .timeline .bullet.orange {
  border: 2px solid #eb8b6e;
}
.our-story .timeline .time {
  width: 23%;
  margin-top: 0;
}
.our-story .timeline .desc {
  width: 50%;
}
.our-story .timeline h3,
.our-story .timeline .font-h3 {
  font-size: 0.9em;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
.our-story .timeline h4,
.our-story .timeline .font-h4 {
  margin: 0;
  font-size: 0.7em;
  font-weight: 400;
  color: #808080;
}
.our-story .timeline li div.images-container {
  margin-top: 2.4em;
  display: block;
}
.our-story .timeline .desc p,
.our-story .timeline .desc .font-p {
  margin-bottom: 0;
}
.our-story .timeline ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 2560px) {
  .our-story .timeline ul::before {
    left: 44px;
  }
}
@media screen and (max-width: 1441px) {
  .our-story .timeline ul::before {
    left: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .our-story .timeline ul {
    padding: 1em 0 0 10px;
  }
  .our-story .timeline ul::before {
    left: 14px;
    top: 20px;
  }
}
#topAnchor .sticky {
  max-height: 70vh;
  padding-right: 30px;
  overflow-y: auto;
}
#topAnchor .sticky::-webkit-scrollbar {
  background: #dedede;
  width: 6px;
}
#topAnchor .sticky::-moz-scrollbar {
  background: #dedede;
  width: 6px;
}
#topAnchor .sticky::-webkit-scrollbar-thumb {
  background-color: #8f8f8f;
}
#topAnchor .sticky::-moz-scrollbar-thumb {
  background-color: #8f8f8f;
}
#terms-page .sticky.is-stuck.overflow {
  overflow-y: auto;
}
.terms-and-conditions ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  display: list-item;
  text-align: left;
  margin-left: 30px;
}
.terms-and-conditions ul li::before {
  content: "\22c5";
  color: #0a0a0a;
  font-size: 40px;
  position: absolute;
  left: -8px;
  top: -2px;
}
.terms-and-conditions h4,
.terms-and-conditions .font-h4 {
  margin-bottom: 3.125rem;
}
.tnc-select-container.spacer-m-bottom.is-stuck {
  position: fixed;
  top: 0;
  margin: auto;
  display: block;
  background: white;
  width: 100%;
  padding: 20px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) and (min-width: 640px) {
  #tnc .line-list li {
    margin-bottom: 10px;
  }
  div#topAnchor > div.sticky.is-stuck {
    margin-top: 5em;
  }
  .tnc-block {
    float: left;
  }
}
@media screen and (max-width: 639px) {
  #terms-page .terms-and-conditions ul li {
    margin-left: 0;
  }
  .tnc-block {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 640) {
  .tnc-block {
    float: left;
  }
}
#topAnchor .sticky {
  max-height: 70vh;
  padding-right: 30px;
  overflow-y: auto;
}
i.fa-spinner {
  margin-right: 5px;
}
.name .popular {
  display: block;
  font-size: 0.875rem;
  line-height: 15px;
}
.popular {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-style: italic;
  color: #ccb46d;
}
.price-dropdown {
  position: relative;
  cursor: pointer;
}
.price-dropdown-description {
  display: none;
  color: #a6a6a6;
  text-align: left;
  padding: 5px 0;
}
.price-dropdown-description .right {
  float: right;
}
.price-dropdown-button {
  font-size: 0.875rem;
  position: relative;
  border: 1px solid #0a0a0a;
  padding: 10px 40px 10px 15px;
  color: #0a0a0a;
  text-align: left;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.5);
  min-width: 180px;
}
.price-dropdown-button.select {
  background-color: #ccb46d;
}
.price-dropdown-button.select span {
  color: #fff;
}
.price-dropdown-button i.fa-check {
  padding-right: 5px;
  color: #fff;
}
.price-dropdown-button i.fa-spinner {
  font-size: 1.375rem;
}
.price-dropdown-arrow {
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg' fill=''%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M.646 3.646a.5.5 0 01.708 0L8 10.293l6.646-6.647a.5.5 0 01.708.708l-7 7a.5.5 0 01-.708 0l-7-7a.5.5 0 010-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 2px;
  padding: 10px 16px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.price-dropdown-arrow.open {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.price-dropdown-options {
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #fff;
  border: 2px solid #0a0a0a;
  position: absolute;
  right: 15px;
  top: 47px;
  width: 300px;
  z-index: 99;
}
.price-dropdown-options .loading {
  background-color: #a6a6a6;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.price-dropdown-options .loading .fa {
  position: absolute;
  color: #fff;
  top: 50%;
  left: calc(50% - 1rem);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2rem;
}
.price-dropdown-options > div {
  text-align: left;
  border-top: 1px solid #0a0a0a;
}
.price-dropdown-options > div:first-of-type {
  border-top: none;
}
.price-dropdown-options > div:last-of-type {
  border-bottom: 1px solid #0a0a0a;
}
.price-dropdown-options > div i {
  padding-right: 5px;
  color: #ccb46d;
}
.price-dropdown-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 10px;
  min-height: 55px;
}
.price-dropdown-row.remove-item {
  line-height: 35px;
}
.price-dropdown-row.quantity {
  padding: 25px 10px 40px 10px;
}
.price-dropdown-row.quantity .form-group {
  margin: 0 15px 0 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.price-dropdown-row.quantity .form-group .control-label {
  font-size: 0.875rem;
}
.price-dropdown-text {
  font-size: 1rem;
  -ms-flex-item-align: center;
  align-self: center;
  word-break: break-word;
  line-height: 16px;
}
.price-dropdown-super,
.price-dropdown-sub {
  font-size: 0.75rem;
  position: absolute;
}
.price-dropdown-super {
  margin-top: -16px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  color: #ccb46d;
}
.price-dropdown-sub {
  font-family: "Helvetica Neue Italic", "Helvetica", Arial;
  font-style: italic;
  padding-left: 15px;
}
.price-dropdown-sub_small,
.price-dropdown-sub .cents {
  font-size: 0.625rem;
}
.price-dropdown-tag {
  background-color: #e7e8e8;
  padding: 5px 10px;
  margin-left: 5px;
  word-break: break-word;
}
.price-dropdown-add {
  font-size: 0.875rem;
  min-width: 90px;
  height: 35px;
  padding: 0;
  margin: auto 0;
}
.price-dropdown > .form-error {
  position: relative;
  padding-top: 10px;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .price-dropdown-button {
    min-width: 122px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .price-dropdown-options {
    top: 70px;
    right: 10px;
    width: 100%;
  }
  .price-dropdown-description {
    display: inline-block;
    width: 100%;
  }
  .name .popular {
    display: none;
  }
}
.skin-tone-item-container {
  padding: 5px;
  border: 2px solid #fff;
  position: relative;
  background-color: #fff;
  cursor: pointer;
}
.skin-tone-item-container.active {
  border: 2px solid #ccb46d;
}
.skin-tone-item-container.active .fa-check-circle {
  display: block;
}
.skin-tone-img {
  background-repeat: no-repeat;
}
.skin-tone-caption {
  border: 2px solid #0a0a0a;
  font-weight: bold;
  text-align: center;
  font-size: 0.9375rem;
  margin-bottom: 2px;
  padding: 10px;
}
.skin-tone--error .skin-tone-item-container {
  border: 2px solid #f44336;
}
.skin-tone .fa-check-circle {
  position: absolute;
  color: #ccb46d;
  font-size: 2.25rem;
  left: 50%;
  margin-left: -13px;
  background-color: #fff;
  display: none;
}
.skin-tone-item-container {
  max-width: 200px;
  padding-bottom: 15px;
}
.skin-tone-img {
  background-size: contain;
  padding-bottom: 150%;
  height: 140px;
  margin-bottom: 10px;
}
.skin-tone .columns {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media print, screen and (max-width: 1023px) {
  .skin-tone .columns {
    padding-bottom: 8px;
  }
}
@media print, screen and (max-width: 1200px) {
  .skin-tone .skin-tone-caption {
    font-size: 0.75rem;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media print, screen and (max-width: 875px) {
  .skin-tone .columns {
    width: 33.3333333333%;
    padding-left: 0;
    padding-right: 0;
  }
}
.table {
  width: 100%;
}
.table-header-row,
.table-body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  border-bottom: 1px solid #a6a6a6;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 15px 0;
}
.table-header-row:last-of-type,
.table-body-row:last-of-type {
  border-bottom: 2px solid #0a0a0a;
}
.table-header-cell,
.table-body-cell {
  -ms-flex-preferred-size: 150px;
  flex-basis: 150px;
  text-align: center;
}
.addons-table .table-header-cell,
.addons-table .table-body-cell {
  -ms-flex-preferred-size: initial;
  flex-basis: initial;
}
.addons-table .table-header-cell .price,
.addons-table .table-body-cell .price {
  padding-right: 15px;
}
.table-header-cell.remove-item,
.table-body-cell.remove-item {
  -ms-flex-preferred-size: 25px;
  flex-basis: 25px;
  margin-left: 10px;
  padding-bottom: 10px;
}
.table-header-cell.amount,
.table-body-cell.amount {
  padding-right: 2%;
  text-align: right;
}
.table-header-cell .treatment-icon,
.table-body-cell .treatment-icon {
  width: 50px;
  height: 50px;
  background-size: 50px 50px;
  background-repeat: no-repeat;
}
.table-header-cell .treatment-icon-CI,
.table-body-cell .treatment-icon-CI {
  background-image: url("../assets/images/CI-icon-e2b1460935.png");
}
.table-header-cell .treatment-icon-LHR,
.table-body-cell .treatment-icon-LHR {
  background-image: url("../assets/images/LHR-icon-e4b6e2ce15.png");
}
.table-header-cell .treatment-icon-SK,
.table-body-cell .treatment-icon-SK {
  background-image: url("../assets/images/SK-icon-da13eb0bb7.png");
}
.table-header-cell .treatment-icon-CS,
.table-body-cell .treatment-icon-CS {
  background-image: url("../assets/images/CS-icon-f45c08a606.jpg");
}
.table-header-cell:last-of-type,
.table-body-cell:last-of-type {
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
}
.table-header-cell:first-of-type,
.table-body-cell:first-of-type {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
}
.table .name {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 1rem;
}
.table-header-row {
  line-height: 15px;
}
.table-header-cell {
  font-weight: 600;
}
.zip-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: -30px;
}
.zip-footer-logo {
  height: 30px;
  width: 75px;
  margin-right: 15px;
  background: url("../assets/images/Zip_logo_black-808f57e962.svg") left center
    no-repeat;
}
.zip-footer-message {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
@media only screen and (max-width: 39.9375em) {
  .table-header-cell {
    display: none;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .table-header-cell:first-of-type {
    display: block;
    width: 60%;
  }
  .table-header-cell:nth-of-type(2) {
    display: block;
    text-align: right;
    width: 40%;
  }
  .table-body-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .table-body-cell {
    display: none;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .table-body-cell:first-of-type {
    display: block;
    width: 60%;
  }
  .table-body-cell:nth-of-type(2) {
    display: block;
    width: 40%;
    padding-left: 5px;
    text-align: right;
  }
  .table-body-cell:last-of-type {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.header-with-buttons .button-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.header-with-buttons .button-row a {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: 0;
  padding: 4px;
  text-align: left;
  width: auto;
}
.header-with-buttons .button-tag {
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
  border: 1px solid #0a0a0a;
  padding: 10px;
  color: #0a0a0a;
  background-color: #fff;
  margin-right: 15px;
  min-width: 50px;
  position: relative;
}
.header-with-buttons .button-tag-text img {
  max-height: 42px;
  max-width: 220px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}
.header-with-buttons .isActive .button-tag {
  border: 1px solid #fff;
}
@media print, screen and (min-width: 40em) {
  .header-with-buttons .button-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-with-buttons .button-row a {
    margin-right: 16px;
  }
  .header-with-buttons .button-tag {
    margin-right: 10px;
  }
}
.carousel-select .slick-arrow {
  background: none;
  color: #0a0a0a;
}
.carousel-select .slick-next:before,
.carousel-select .slick-prev:before {
  background-color: none;
  color: #0a0a0a;
  font-size: 30px;
  line-height: 0;
}
.carousel-select .slick-next {
  right: -15px;
}
.carousel-select .slick-prev {
  left: -25px;
}
.carousel-select-item {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 0 10px;
}
.carousel-select-item.disabled {
  cursor: auto;
  opacity: 0.5;
}
.carousel-select-name {
  text-align: center;
}
.carousel-select-name.selected {
  background-color: #d0f0ea;
}
.carousel-select-name.relative {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel-select-image {
  display: block;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.carousel-select-unavailable {
  background-color: #e7e8e8;
  padding: 30px;
  margin: 30px 0;
}
.carousel-select-unavailable i.fa-exclamation-circle {
  padding-right: 10px;
  font-size: 1.875rem;
}
.carousel-simple {
  position: relative;
  margin-bottom: 30px;
}
.carousel-simple .slick-arrow {
  background: none;
  color: #0a0a0a;
}
.carousel-simple .slick-next:before,
.carousel-simple .slick-prev:before {
  background-color: none;
  color: #0a0a0a;
  font-size: 30px;
  line-height: 0;
}
.carousel-simple .slick-next {
  right: -15px;
}
.carousel-simple .slick-prev {
  left: -25px;
}
.carousel-simple-header {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}
.carousel-simple-item {
  display: block;
  position: relative;
  margin: 0 10px;
}
.carousel-simple-item.disabled {
  cursor: auto;
  opacity: 0.5;
}
.carousel-simple-name {
  text-align: center;
}
.carousel-simple-name.relative {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel-simple-image {
  display: block;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.carousel-simple-image:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.terms-conditions {
  position: relative;
  background-color: #e7e8e8;
  margin-top: 0;
}
.terms-conditions .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.terms-conditions-image {
  position: relative;
}
.terms-conditions-image img {
  position: absolute;
  bottom: 0;
}
.terms-conditions-text {
  padding: 30px 15px;
  text-align: justify;
}
@media only screen and (min-width: 64em) {
  .terms-conditions {
    margin-top: 150px;
  }
}
.cart-review {
  padding: 0 5px;
}
.cart-review .change-clinic {
  color: #58595b;
}
.cart-review .change-clinic:hover,
.cart-review .change-clinic:active {
  text-decoration: underline;
  cursor: pointer;
}
.cart-review.empty {
  text-align: center;
}
.cart-review .change-clinic {
  text-decoration: underline;
  cursor: pointer;
  padding-left: 5px;
}
.cart-review .clinic-text div {
  display: inline-block;
}
.cart-review .continue {
  margin-top: 40px;
}
.cart-review .continue a {
  position: relative;
  padding-left: 15px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.cart-review .continue a:before {
  position: absolute;
  left: 0;
  font-family: FontAwesome;
  font-size: 1.25rem;
  font-weight: bold;
  content: "\f107";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cart-review .table {
  margin-top: 50px;
}
.cart-review .table-header-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: none;
}
.cart-review .table-header-cell:nth-of-type(1) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 100px;
  flex-basis: 100px;
  text-align: left;
}
.cart-review .table-header-cell:nth-of-type(2) {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-preferred-size: 170px;
  flex-basis: 170px;
  text-align: left;
}
.cart-review .table-header-cell:nth-of-type(4) {
  -ms-flex-preferred-size: 50px;
  flex-basis: 50px;
}
.cart-review .table-body-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
}
.cart-review .table-body-cell:nth-of-type(1) {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-preferred-size: 85px;
  flex-basis: 85px;
  text-align: left;
}
.cart-review .table-body-cell:nth-of-type(2) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
}
.cart-review .table-body-cell:nth-of-type(4) {
  -ms-flex-preferred-size: 50px;
  flex-basis: 50px;
}
.cart-review .table-body-cell .cell-label {
  display: none;
}
.cart-review .table.summary-table .table-body-row {
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cart-review .table.summary-table .table-body-cell {
  padding-left: 5px;
}
.cart-review .table.summary-table .table-body-cell:nth-of-type(1) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: right;
}
.cart-review .table.summary-table .table-body-cell:nth-of-type(2) {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  text-align: right;
  -ms-flex-preferred-size: 150px;
  flex-basis: 150px;
  padding-right: 5px;
}
.cart-review .details {
  padding-left: 15px;
}
.cart-review .details .treatment-name {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1.125rem;
}
.cart-review .details .quantity {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-preferred-size: 215px;
  flex-basis: 215px;
  text-align: center;
  padding-left: 15px;
}
.cart-review .details .quantity .price-dropdown-description {
  display: none;
}
.cart-review .amount > div:first-child {
  font-size: 1.125rem;
}
.cart-review .amount > div:nth-child(2) {
  line-height: 15px;
}
.cart-review .remove-item {
  position: relative;
  padding-right: 0;
  text-align: right;
}
.cart-review .remove-item > span {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 16px;
}
.cart-review .remove-item .remove-img {
  height: 24px;
  margin-right: 16px;
  width: 24px;
}
.cart-review .remove-item .remove-img:hover {
  cursor: pointer;
}
.cart-review .fa-trash {
  position: absolute;
  top: calc(50% - 13px);
  right: 10px;
  font-size: 26px;
  cursor: pointer;
}
.cart-review .promo-code {
  float: right;
}
.cart-review .promo-code .form-group.promo-code-input-field {
  display: inline-block;
  margin: 0;
  min-width: 250px;
  margin-right: 15px;
}
.cart-review .promo-code .promo-code-button {
  display: inline-block;
}
.cart-review .promo-code .form-error.gold {
  font-weight: bold;
  color: #ccb46d;
}
.cart-review .conditions {
  padding: 15px;
}
.cart-review .conditions p,
.cart-review .conditions .font-p {
  margin-bottom: 0;
}
.cart-review .conditions a {
  font-weight: bold;
  text-decoration: underline;
}
.cart-review .saved-row {
  font-size: 0.9rem;
}
.cart-review .saved-row .table-body-cell {
  padding-bottom: 0;
}
.cart-review .tax-row {
  font-size: 0.9rem;
}
.cart-review .tax-row .table-body-cell {
  padding-top: 5px;
}
.cart-review .total-row .table-body-cell {
  padding-top: 5px;
}
.cart-review hr {
  border-bottom: 2px solid #0a0a0a;
}
.cart-review .number-box {
  background: #0a0a0a;
  color: #fff;
  height: 50px;
  width: auto;
  padding-left: 8px;
  padding-right: 9px;
  display: inline-block;
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 1280px) {
  .cart-review .number-box {
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-review .number-box {
    height: 38px;
  }
}
@media only screen and (max-width: 639px) {
  .cart-review .number-box {
    height: 35px;
  }
}
.cart-review a {
  font-size: inherit;
}
.cart-items-table .table-body > .table-body-row {
  padding-left: 10px;
  padding-right: 10px;
  border: 2px solid #efefef;
}
.cart-items-table .table-body > .table-body-row:nth-of-type(odd) {
  background-color: #efefef;
}
.empty-cart-icon {
  display: inline-block;
  height: 100px;
  width: 100px;
  border: 1px solid;
  border-radius: 50%;
  margin-bottom: 40px;
}
.empty-cart .fa-shopping-cart {
  line-height: 100px;
  font-size: 48px;
}
.empty-cart h4,
.empty-cart .font-h4 {
  margin-bottom: 20px;
}
.cart-modal {
  padding: 30px;
  text-align: center;
}
.cart-modal > div button:first-child {
  margin-right: 30px;
}
.payment-methods {
  text-align: left;
}
.payment-methods-types div {
  display: inline-block;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.payment-methods-types div img {
  height: 100%;
}
.payment-methods-types .mastercard {
  background-image: url("../assets/images/mastercard-5450f1635e.svg");
}
.payment-methods-types .visa {
  background-image: url("../assets/images/visa-5462f6ba14.svg");
}
.payment-methods-types .amex {
  background-image: url("../assets/images/amex-d3b028936e.svg");
}
.payment-methods-types .zippay {
  background-image: url("../assets/images/zip-9c7e914c83.svg");
}
.payment-methods-types .klarna {
  background-image: url("../assets/images/klarna-2ba4bba5ee.svg");
}
@media only screen and (max-width: 1023px) {
  .cart-review .continue {
    margin-top: 20px;
  }
  .cart-review .table {
    margin-top: 30px;
    font-size: 17px;
  }
  .cart-review .table-header-cell {
    display: none;
  }
  .cart-review .table-header-cell:first-child {
    display: block;
  }
  .cart-review .table-body-cell {
    display: none;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .cart-review .table-body-cell:nth-of-type(n) {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .cart-review .table-body-cell:nth-of-type(1) {
    -ms-flex-preferred-size: 50px;
    flex-basis: 50px;
  }
  .cart-review .table-body-cell:nth-of-type(2) {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .cart-review .table-body-cell:nth-of-type(3) {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
  .cart-review .table-body-cell.details .table-body-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cart-review .table-body-cell.treatment-name {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-bottom: 5px;
  }
  .cart-review .table-body-cell.quantity {
    padding-top: 0;
    padding-left: 0;
    text-align: left;
    max-width: 200px;
  }
  .cart-review .table-body-cell .cell-label {
    display: inline;
  }
  .cart-review
    .table.summary-table
    .table-body-row.saved-row
    .table-body-cell:nth-of-type(1) {
    text-align: left;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto;
  }
  .cart-review
    .table.summary-table
    .table-body-row.saved-row
    .table-body-cell:nth-of-type(2) {
    text-align: right;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: auto;
  }
  .cart-review
    .table.summary-table
    .table-body-row.total-row
    .table-body-cell:nth-of-type(1) {
    text-align: left;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 40%;
  }
  .cart-review
    .table.summary-table
    .table-body-row.total-row
    .table-body-cell:nth-of-type(2) {
    text-align: right;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: auto;
  }
}
@media only screen and (max-width: 39.9375em) {
  .cart-review {
    padding-bottom: 15px;
  }
  .cart-review .promo-code {
    float: none;
  }
  .cart-review .promo-code-button {
    width: 100%;
  }
  .cart-review .promo-code .form-group.promo-code-input-field {
    margin-bottom: 10px;
    width: 100%;
  }
  .cart-review
    .promo-code
    .form-group.promo-code-input-field.promo-code-invalid,
  .cart-review .promo-code .form-group.promo-code-input-field.has-value {
    margin-bottom: 22px;
  }
  .cart-review .table {
    margin-top: 0;
    min-width: 340px;
  }
  .cart-review .table-body-row {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .cart-review .table-body-cell.treatment-name {
    padding-bottom: 15px;
    padding-top: 10px;
    word-break: break-word;
  }
  .cart-review .table-body-cell.quantity {
    max-width: inherit;
  }
  .cart-review .table-body-cell.amount {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-top: 15px;
    padding-right: 50px;
    text-align: right;
  }
  .cart-review .table-body-cell.remove-item {
    -ms-flex-preferred-size: 25px;
    flex-basis: 25px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    padding-bottom: 10px;
  }
  .cart-review .table-body-cell.remove-item > span {
    display: none;
  }
  .cart-review .proceed-button {
    width: 100%;
  }
}
@media only screen and (max-width: 568px) {
  .cart-modal .button + .button {
    margin-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .cart-modal {
    padding: 30px 15px 15px;
  }
  .cart-modal .button {
    margin: 0;
    width: 100%;
  }
  .cart-modal .button:first-child {
    margin-right: 0;
  }
  .cart-modal .button:last-child {
    margin-top: 15px;
  }
}
.cart-icon {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  margin-top: -130px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 1199px) {
  .cart-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.show-cart .cart-icon {
  opacity: 1;
  visibility: visible;
  margin-top: 11px;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.cart-icon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.cart-icon > i {
  position: relative;
  font-size: 30px;
  padding-right: 5px;
}
.mini-cart {
  position: relative;
}
.top-menu .mini-cart a:hover {
  color: #fff;
}
.mini-cart .saved-row .saved-text,
.mini-cart .saved-row .price {
  font-size: 0.875rem;
}
#prepay-icon-container .mini-cart {
  width: 100%;
}
.mini-cart > button.btn-white {
  border: 1px solid #fff;
}
.mini-cart-button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}
.mini-cart-panel {
  max-height: calc(100vh - 70px);
  max-width: 100%;
  opacity: 0;
  overflow-y: auto;
  padding-top: 15px;
  position: absolute;
  right: 40px;
  text-transform: initial;
  top: 75%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  width: 400px;
  z-index: 1;
}
#prepay-icon-container .mini-cart-panel {
  position: absolute;
  right: -40px;
}
.mini-cart-panel.open {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}
.mini-cart-panel i {
  cursor: pointer;
}
.mini-cart-panel::before {
  border-bottom: 15px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  right: 5%;
  top: 0;
  width: 0;
}
.mini-cart-panel > div {
  background: transparent;
  padding: 0;
  position: relative;
}
.mini-cart-panel > div > div {
  padding: 16px;
}
.mini-cart-panel > div:last-of-type {
  border-bottom: none;
}
.mini-cart-panel .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}
.mini-cart-panel .content:nth-child(even) {
  background-color: #efefef;
}
.mini-cart-panel .content > div {
  margin-right: 10px;
}
.mini-cart-panel .content > div:first-child {
  -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
}
.mini-cart-panel .content > div:nth-child(2) {
  -webkit-box-flex: 6.5;
  -ms-flex: 6.5;
  flex: 6.5;
}
@media screen and (max-width: 360px) {
  .mini-cart-panel .content > div:nth-child(2) {
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }
}
.mini-cart-panel .content > div:last-child {
  -webkit-box-flex: 3.5;
  -ms-flex: 3.5;
  flex: 3.5;
  margin-right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mini-cart-panel .header,
.mini-cart-panel .footer,
.mini-cart-panel .price,
.mini-cart-panel .treatment {
  font-size: 1.125rem;
}
.mini-cart-panel .treatment {
  width: calc(70% - 32px);
}
.mini-cart-panel .price {
  text-align: right;
  width: 30%;
}
.mini-cart-panel .remove-img {
  height: 16px;
  width: 16px;
}
.mini-cart-panel .remove-img:hover {
  cursor: pointer;
}
.mini-cart-panel i {
  padding: 0 15px;
  font-size: 16px;
}
.mini-cart-panel i.fa-close {
  padding: 0;
  font-size: 24px;
}
.mini-cart-panel .tag {
  text-transform: capitalize;
  border: 1px solid #0a0a0a;
  width: calc(15% - 15px);
  padding: 5px;
}
.mini-cart-panel .item {
  width: 85%;
}
@media only screen and (min-width: 1580px) {
  .mini-cart-panel .button-wrapper a.button {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 568px) {
  .mini-cart-panel .button-wrapper a.button + .button {
    margin-top: 0;
  }
}
.mini-cart .total {
  background-color: #ed6e52;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
}
.mini-cart .total-label {
  margin-right: 2px;
}
.mini-cart .mini-cart-panel .row .columns,
.mini-cart .mini-cart-panel .row .columns .columns {
  height: auto;
}
@media only screen and (max-width: 39.9375em) {
  .mini-cart .price,
  .mini-cart .treatment {
    font-size: 1rem;
  }
  .mini-cart .treatment {
    word-break: break-word;
  }
}
.carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.carousel .slick-arrow {
  padding: 16px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  background: none;
  color: #191816;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 2rem;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.carousel .slick-arrow.slick-disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.carousel .slick-next,
.carousel .slick-prev {
  font-size: 0;
  height: 64px;
  width: 64px;
}
.carousel .slick-next::before,
.carousel .slick-prev::before {
  display: none;
}
.carousel .slick-next {
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' fill=''%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M30.5 17h-28v-1h28v1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.5 6.793l9.707 9.707-9.707 9.707-.707-.707 9-9-9-9 .707-.707z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  position: relative;
  right: unset;
}
.carousel .slick-prev {
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' fill=''%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.5 16h28v1h-28v-1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.207 7.5l-9 9 9 9-.707.707L1.793 16.5 11.5 6.793l.707.707z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  left: unset;
  position: absolute;
  right: 48px;
  top: 0;
}
.carousel--flex-slides .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.carousel--flex-slides .slick-slide {
  height: inherit;
}
@media print, screen and (max-width: 39.99875em) {
  .carousel--peek .slick-list {
    padding-right: 48px;
  }
}
.modal-dialog .clinic-map {
  position: relative;
  height: 300px;
}
.modal-dialog .clinic-location-wrapper,
.modal-dialog .content-wrapper {
  height: 100%;
}
.content-wrapper {
  height: 700px;
}
.normal-text {
  padding: 0;
  font-size: 0.875rem;
  font-family: "Helvetica Neue", "Helvetica", Arial;
}
.clinic-item {
  border-top: 1px solid #e7e8e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 30px;
}
.clinic-item .button {
  -webkit-transition: unset;
  transition: unset;
}
.clinic-item .btn-black {
  border: 2px solid #0a0a0a;
}
.clinic-item .selected {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-left: 18px;
  color: #ccb46d;
}
.clinic-item .selected > i {
  position: absolute;
  top: 2px;
  left: 0;
}
.clinic-item .clinic-select-button:first-child {
  margin-right: 15px;
}
.clinic-item .clinic-select-button .button {
  min-width: auto;
  padding: 5px 30px;
}
.clinic-item.borderless {
  border-top: none;
  padding: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.clinic-text {
  margin: auto 0;
  padding-top: 17.75px;
  padding-bottom: 17.75px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.clinic-prepay-unavailable {
  font-size: 0.625rem;
}
.clinic-book-button {
  margin-top: auto;
  margin-bottom: auto;
}
.clinic-book-button .button {
  float: right;
}
.react-autosuggest__container {
  width: 100%;
  position: relative;
}
.react-autosuggest__suggestions-container {
  display: none;
}
.react-autosuggest__suggestions-container--open {
  width: 100%;
  display: block;
  position: absolute;
  background-color: #fff;
  z-index: 99;
  min-width: 250px;
  max-height: 400px;
  overflow-y: hidden;
}
.react-autosuggest__suggestions-list {
  list-style: none;
  display: block;
}
.react-autosuggest__suggestion .map-result-item {
  display: inline-block;
  text-align: left;
  cursor: pointer;
}
.highlighted {
  background-color: #e7e8e8;
}
@media only screen and (max-width: 64em) {
  .modal-dialog .clinic-map {
    display: none;
  }
  .modal-dialog .react-autosuggest__suggestions-container--open {
    max-height: 200px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .clinic-item .clinic-select-button .button {
    padding: 5px 15px;
  }
}
.credit-agreement {
  margin-top: 15px;
}
.credit-agreement-sub {
  padding-left: 40px;
}
.credit-card-term * {
  text-align: left;
  font-size: 0.75rem;
}
@media only screen and (min-width: 39.9375em) {
  .credit-card-term * {
    font-size: 0.875rem;
  }
}
.credit-card-term .checkbox-field {
  margin-bottom: 10px;
}
@media only screen and (min-width: 320px) {
  .credit-card-term .checkbox-field {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 39.9375em) {
  .credit-card-term .checkbox-field {
    margin-bottom: 20px;
  }
}
.credit-card-term .checkbox-text p,
.credit-card-term .checkbox-text .font-p {
  margin-bottom: 0;
}
@media only screen and (max-width: 39.9375em) {
  .credit-card-term .checkbox-text {
    padding-left: 10px;
  }
}
.credit-card-term .checkbox-label {
  margin-bottom: 0;
}
.credit-card-term .checkbox-label input {
  margin: 0;
}
@media only screen and (min-width: 39.9375em) {
  .credit-card-term .checkbox-label input {
    margin: 0 20px 0 0;
  }
}
.clinic-confirmation p,
.clinic-confirmation .font-p {
  margin-bottom: 0;
}
.payment-container .tabs-header-icon {
  height: 23px;
}
@media only screen and (min-width: 64em) {
  .payment-container .tabs-header-name {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    min-width: 180px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .no-pd-mobile {
    padding: 0;
  }
}
.order-summary-panel {
  background-color: #0a0a0a;
  border: 2px solid #0a0a0a;
  display: block;
}
.order-summary-opener {
  display: none;
}
.order-summary-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.order-summary-line {
  border-bottom: 1px solid #a6a6a6;
  margin: 0 30px;
}
.order-summary-header,
.order-summary-clinic {
  padding: 15px 30px;
  color: #fff;
}
.order-summary-header a,
.order-summary-clinic a {
  color: #fff;
}
.order-summary-header a:hover,
.order-summary-clinic a:hover {
  color: #fff;
}
.order-summary-opener .large-text {
  font-size: 1.5rem;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.order-summary .change-clinic {
  color: #fff;
}
.order-summary .change-clinic:hover,
.order-summary .change-clinic:active {
  text-decoration: underline;
  cursor: pointer;
}
.order-summary .saving {
  color: #ccb46d;
}
.order-summary-treatment {
  padding: 15px 30px;
  background-color: #fff;
  border-bottom: 2px solid #0a0a0a;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.order-summary-footer {
  background-color: #fff;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  padding: 15px 30px;
}
.order-summary-close {
  display: none;
}
@media only screen and (max-width: 64em) {
  .order-summary-panel {
    display: none;
    position: absolute;
    top: -65px;
    right: 0;
    left: 0;
    z-index: 2;
    margin-left: 0;
  }
  .order-summary-panel.isOpen {
    display: block;
  }
  .order-summary-opener {
    display: block;
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #0a0a0a;
    text-align: center;
    z-index: 2;
    height: 65px;
    margin-top: 0;
    padding-top: 15px;
    cursor: pointer;
  }
  .order-summary-opener > .columns:first-of-type {
    padding-left: 0;
  }
  .order-summary-opener > .columns:last-of-type {
    padding-right: 0;
  }
  .order-summary-opener .fa-chevron-down {
    position: absolute;
    bottom: 10px;
    left: 50%;
  }
  .order-summary-close {
    display: block;
    background-color: #0a0a0a;
    font-family: "Helvetica Neue Bold", "Helvetica", Arial;
    color: #fff;
    text-align: center;
    cursor: pointer;
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .order-summary-line {
    margin: 0 15px;
  }
  .order-summary-treatment,
  .order-summary-footer,
  .order-summary-header,
  .order-summary-clinic {
    padding: 15px;
  }
}
.disabled {
  pointer-events: none;
}
.table .prepay-tag {
  margin: -15px 0;
  padding: 10px 0;
}
.table-body-row.prepay {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3px;
}
.table-body-row.prepay:first-child {
  border-top: 1px solid #a6a6a6;
}
.table-body-cell.prepays {
  -ms-flex-preferred-size: 150px;
  flex-basis: 150px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  text-align: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.table-body-cell.prepays.selected {
  -webkit-box-shadow: inset 10px 0 0 0 #ccb46d;
  box-shadow: inset 10px 0 0 0 #ccb46d;
}
@media screen and (max-width: 1200px) {
  .table-body-cell.prepays {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.table-body-cell.details {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding-left: 15px;
  padding-right: 15px;
}
.table-body-cell.details .table-body-row {
  border-bottom: none;
  padding: 0;
}
.table-body-cell.treatment {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media screen and (max-width: 1200px) {
  .table-body-cell.treatment {
    min-width: auto;
  }
}
.table-body-cell.location {
  -ms-flex-preferred-size: 300px;
  flex-basis: 300px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  text-align: left;
  padding-left: 15px;
}
@media screen and (max-width: 1440px) {
  .table-body-cell.location {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.table-body-cell.expires {
  text-align: left;
}
.table-body-cell.icon {
  -ms-flex-preferred-size: 75px;
  flex-basis: 75px;
}
.table-body-cell.action {
  -ms-flex-preferred-size: 475px;
  flex-basis: 475px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.table-body-cell.action .top-up {
  margin-right: 10px;
}
.table-body-cell.action .book {
  padding-left: 13px;
  padding-right: 13px;
}
.table-body-cell.action .action-cell {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 1600px) {
  .table-body-cell.action {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-preferred-size: 250px;
    flex-basis: 250px;
  }
  .table-body-cell.action .action-cell {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .table-body-cell.action .top-up {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: (small: 0, medium: 640px, large: 1024px, xlarge: 1200px, xxlarge: 1440px, xxxlarge: 1580px) xlarge) {
  .table-body-cell.action {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
  }
}
.prepay {
  height: 100%;
}
.prepay-amount {
  font-size: 2.25rem;
}
.prepay-view {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.prepay-view:after {
  position: absolute;
  top: 1px;
  right: -16px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  font-family: FontAwesome;
  font-size: 1.25rem;
  content: "\f107";
}
.prepay-view.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.prepay-label {
  color: #a6a6a6;
}
.prepay-warning {
  color: #f44336;
}
.prepay-warning .prepay-label {
  color: #f44336;
}
.prepay-validity {
  text-align: left;
  font-size: 0.875rem;
}
.prepay-date {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.875rem;
  text-align: left;
  padding-left: 15px;
}
.prepay-date:last-of-type {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.prepay-row {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.prepay-row:last-child {
  padding-bottom: 20px;
}
.top-up {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-up .price {
  font-size: 0.875rem;
}
.info-panel {
  padding: 20px;
  text-align: center;
  font-family: "Helvetica Neue", "Helvetica", Arial;
  font-size: 1.25rem;
  border-bottom: 2px solid;
}
.info-panel .treatment-content {
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.info-panel .treatment-details {
  text-align: left;
}
.info-panel .treatment-name {
  margin-bottom: 0;
}
.info-panel .treatment-duration {
  color: #a6a6a6;
}
.info-panel .no-border {
  border-bottom: none;
}
.info-panel a {
  font-size: 1.25rem;
}
@media only screen and (max-width: 480px) {
  .info-panel {
    font-size: 1.125rem;
  }
  .info-panel a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1024px) {
  .table-body-row.prepay {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .table-body-cell.icon {
    display: none;
  }
  .table-body-cell.action {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 30px;
    padding: 0;
  }
  .table-body-cell.action .top-up {
    margin-right: 10px;
    margin-bottom: 0;
  }
  .table-body-cell.action .re-book {
    margin-right: 0;
  }
  .table-body-cell.spacer-cell {
    display: none;
  }
  .table-body-cell.prepay-date {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
@media only screen and (max-width: 39.9375em) {
  .table-body-cell.details {
    padding-right: 0;
  }
  .table-body-cell.details .table-body-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .table-body-cell.details .table-body-row .detail {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-top: 0;
    padding-bottom: 5px;
  }
  .table-body-cell.details .treatment {
    font-size: 1.125rem;
  }
  .table-body-cell.details .location {
    padding-left: 0;
  }
  .table-body-cell > .prepay-label {
    display: none;
  }
}
@media screen and (max-width: 568px) {
  .table-body-cell.action {
    margin-top: 15px;
  }
  .table-body-cell.action .top-up {
    margin-top: 10px;
  }
}
@media screen and (max-width: 360px) {
  .truncate-label {
    display: none;
  }
}
.clinic-location-wrapper {
  height: 550px;
}
.clinic-map-container {
  position: relative;
}
.clinic-map {
  position: absolute;
  height: 550px;
  width: 100%;
}
.react-autosuggest__container {
  width: 100%;
  position: relative;
}
.react-autosuggest__container .form-group {
  margin: 0;
}
.react-autosuggest__suggestions-container {
  display: none;
}
.react-autosuggest__suggestions-container--open {
  width: 100%;
  display: block;
  position: absolute;
  background-color: #fff;
  z-index: 99;
  max-height: 400px;
  overflow-y: scroll;
}
.react-autosuggest__suggestions-list {
  list-style: none;
  display: block;
}
.react-autosuggest__suggestion .map-result-item {
  display: inline-block;
}
.highlighted {
  background-color: #e7e8e8;
}
#clinic-finder-search {
  font-size: 16px;
}
.medical-team-search {
  display: inline-block;
  width: 100%;
}
.medical-clinic-finder .react-autosuggest__suggestions-container--open {
  width: 100%;
}
.medical-clinic-finder .search-section-header {
  background-color: #e7e8e8;
  padding-left: 15px;
}
.medical-clinic-finder .search-suggestion {
  padding-left: 15px;
}
.medical-clinic-finder .search-suggestion:hover {
  background-color: #ededed;
}
.small-clinic-finder #clinic-finder-search {
  margin: 18px 0 3px;
}
.small-clinic-finder .react-autosuggest__suggestions-container--open {
  width: 100%;
}
.small-clinic-finder .search-section-header {
  background-color: #e7e8e8;
  padding-left: 15px;
}
.small-clinic-finder .search-suggestion {
  padding-left: 15px;
}
.small-clinic-finder .search-suggestion:hover {
  background-color: #ededed;
}
.small-clinic-finder__cover {
  min-height: 50vh;
  overflow: hidden;
  position: relative;
}
.small-clinic-finder__cover img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.blog {
  position: relative;
}
.blog hr {
  margin: 0;
}
.blog .form-group.search-input {
  margin: 5px 0 0;
}
.blog .form-group.search-input:before {
  top: 4px;
}
@media only screen and (max-width: 769px) {
  .blog .form-group.search-input:before {
    top: 6px;
  }
}
.blog .form-group.search-input > input {
  margin-bottom: 5px;
}
.blog .mobi-basic-btn {
  padding: 12px;
}
.blog-details-title p,
.blog-details-title .font-p {
  margin-bottom: 0;
}
.tags a {
  display: inline-block;
  color: #0a0a0a;
  padding: 0 25px;
  margin-bottom: 10px;
}
.blog-details-share a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
  padding: 11px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-details-share a#twitter-share {
  color: #26c4f1;
  fill: #26c4f1;
  border: solid 1px #26c4f1;
}
.blog-details-share a#twitter-share:hover,
.blog-details-share a#twitter-share:focus {
  background: #26c4f1;
  color: #fff;
  fill: #fff;
}
.blog-details-share a#fb-share {
  color: #47639e;
  fill: #47639e;
  border: solid 1px #47639e;
}
.blog-details-share a#fb-share:hover,
.blog-details-share a#fb-share:focus {
  background: #47639e;
  color: #fff;
  fill: #fff;
}
.blog-details-share a#google-share {
  color: #e93f2e;
  fill: #e93f2e;
  border: solid 1px #e93f2e;
}
.blog-details-share a#google-share:hover,
.blog-details-share a#google-share:focus {
  background: #e93f2e;
  color: #fff;
  fill: #fff;
}
.blog-details-share a#email-share {
  color: #444444;
  fill: #444444;
  border: solid 1px #444444;
}
.blog-details-share a#email-share:hover,
.blog-details-share a#email-share:focus {
  background: #444444;
  color: #fff;
  fill: #fff;
}
.blog-details-share .rrssb-icon {
  margin-right: 5px;
}
.blog-details-share .rrssb-icon svg {
  width: 28px;
  height: 28px;
}
.blog-details-share .rrssb-text {
  line-height: 26px;
}
@media only screen and (max-width: 39.9375em) {
  .blog-details-share a {
    margin-bottom: 10px;
    padding: 10px 0;
  }
}
.related-treatments {
  color: #0a0a0a;
}
.related-treatments-header .h2 {
  font-family: "Helvetica Neue", "Helvetica", Arial;
  font-size: 2.375rem;
}
.related-treatments-cta-button {
  margin: 0 20px 20px 0;
  display: inline-block;
}
.related-treatments-image {
  width: 100%;
}
.related-treatments .img-wrapper {
  margin-bottom: 15px;
}
.related-treatments p,
.related-treatments .font-p {
  padding: 15px 0;
}
@media screen and (max-width: 640px) {
  .related-treatments p,
  .related-treatments .font-p {
    margin-bottom: 0;
  }
}
.testimonial-carousel .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.testimonial-carousel .slick-dots {
  width: 100%;
  right: initial;
}
.testimonial-carousel .slick-dots li button:before {
  border-radius: 50%;
}
.testimonial-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.testimonial-text {
  color: #fff;
  font-family: "Helvetica Neue", "Helvetica", Arial;
  font-size: 1.125rem;
  line-height: 23px;
}
.testimonial-image {
  height: auto;
  width: auto;
  max-height: 290px;
  max-width: 290px;
  margin: 0 auto;
}
.testimonial-image img {
  border-radius: 50%;
}
@media screen and (max-width: 640px) {
  .testimonial-image {
    height: 150px;
    width: 150px;
    margin-bottom: 30px;
  }
}
.location-snapshot .icon {
  height: 25px;
}
.notification {
  height: 80px;
  overflow: hidden;
  background-color: #303030;
  display: none;
  padding: 5px 0;
}
.notification-mobile-wrapper {
  display: none;
}
.notification-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 70px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.notification-row > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.notification.show-notification {
  display: block;
  position: relative;
}
.notification img {
  display: inline-block;
  width: 90px;
  margin-right: 40px;
  vertical-align: middle;
}
.notification p,
.notification .font-p {
  color: #fff;
  display: inline-block;
  margin: auto;
}
.notification .x-button {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.notification .x-button img {
  width: 10px;
  height: 10px;
  display: block;
}
@media screen and (max-width: 40em) {
  .notification img {
    width: 74px;
    margin-right: 15px;
  }
  .notification p,
  .notification .font-p {
    letter-spacing: -0.5px;
  }
  .notification .x-button {
    width: 5px;
    height: 5px;
    right: 5px;
    top: 10px;
  }
  .notification .x-button img {
    width: 5px;
    height: 5px;
  }
}
@media screen and (max-width: 64em) {
  .notification-mobile-wrapper {
    margin-top: -1px;
    display: block;
  }
  .notification-mobile-wrapper .notification {
    height: auto;
  }
  main.has-notification {
    margin-top: 0;
  }
}
.countdown {
  height: 80px;
  overflow: hidden;
  background-color: #0a0a0a;
  color: #af9750;
  width: 100%;
  display: none;
  position: relative;
}
.countdown-grey {
  background-color: #303030;
  color: #fff;
}
.countdown-grey a {
  color: #fff;
}
.countdown-grey a:hover {
  color: #fff;
}
.countdown-grey ul#countdown {
  color: #fff;
}
.countdown-black a {
  color: #af9750;
}
.countdown-black a:hover {
  color: #af9750;
}
.countdown.showTimer {
  display: block;
  padding: 5px 0;
}
.countdown-content {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 600px;
  max-height: 25px;
  overflow: hidden;
}
.countdown-row {
  margin: 0 auto;
  max-width: 1050px;
  padding: 0 10px;
}
.countdown .x-button {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.countdown .x-button img {
  width: 10px;
  height: 10px;
  display: block;
}
@media screen and (max-width: 1023px) {
  main.has-countdown-timer {
    margin-top: 155px;
  }
  .countdown {
    height: 155px;
  }
  .countdown-content {
    max-height: 19px;
  }
}
@media screen and (max-width: 40em) {
  main.has-countdown-timer {
    margin-top: 140px;
  }
  .countdown {
    height: 140px;
  }
  .countdown-content {
    max-height: 19px;
  }
}
.notification-mobile-wrapper .countdown {
  position: absolute;
  left: 0;
}
.notification-mobile-wrapper .countdown-row {
  text-align: center;
}
.notification-mobile-wrapper .countdown-row img {
  width: 100%;
  margin: 25px 0 10px;
  max-width: 762px;
}
.notification-mobile-wrapper ul#countdown {
  width: 100%;
  max-width: 500px;
}
ul#countdown {
  border-width: 1px 0;
  color: #af9750;
  display: inline-block;
  font-weight: bold;
  line-height: 1rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  width: 38%;
}
ul#countdown li {
  display: inline-block;
  font-size: 38px;
  margin: 10px auto 0;
  text-align: center;
  width: 23%;
}
ul#countdown li .label {
  background-color: transparent;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  margin-top: 9px;
  text-transform: uppercase;
}
#ModalPhone {
  background-image: url(../../Images/mobile-modal/white-top-bg.html),
    url(../../Images/mobile-modal/device-top-line.html);
  background-repeat: no-repeat, repeat;
  background-position: center 16px, center center;
  background-size: auto, auto;
  border-radius: 35px;
  -moz-border-radius: 35px;
  border: none;
  height: auto;
  overflow: visible;
  max-width: 330px;
  min-height: inherit;
  width: 100%;
}
#ModalPhone:before {
  background: url(../../Images/mobile-modal/ring-right.html) no-repeat center
    center;
  content: "";
  height: 168px;
  position: absolute;
  width: 100px;
  left: -130px;
  top: -5px;
}
#ModalPhone:after {
  background: url(../../Images/mobile-modal/ring-left.html) no-repeat center
    center;
  content: "";
  height: 168px;
  position: absolute;
  width: 100px;
  right: -130px;
  top: 90px;
}
#ModalPhone .head {
  margin-bottom: 1rem;
}
#ModalPhone .head img {
  width: 100%;
}
#ModalPhone .close-button {
  top: 2rem;
  right: -3rem;
  color: #fff;
}
#ModalPhone .close-button:after {
  background: url(../../Images/mobile-modal/device-close.html) no-repeat center
    center;
  content: "";
  height: 24px;
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
}
#ModalPhone .close-button span {
  opacity: 0;
  -moz-opacity: 0;
}
#ModalPhone .content {
  padding: 1rem;
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  -moz-border-radius: 0 0 30px 30px;
  margin-top: 3.7rem;
}
#ModalPhone .content p,
#ModalPhone .content .font-p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}
#ModalPhone .content p.title,
#ModalPhone .content .title.font-p {
  font-size: 30px;
}
#ModalPhone .content p .button,
#ModalPhone .content .font-p .button {
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 25px;
  min-width: auto;
}
@media screen and (max-width: 40em) {
  #ModalPhone {
    position: absolute;
    left: 50%;
    margin-left: -135px;
    background-size: 240px, auto;
    max-width: 270px;
  }
  #ModalPhone:before,
  #ModalPhone:after {
    content: none;
  }
  #ModalPhone .close-button {
    top: -1rem;
    right: -1rem;
    color: #fff;
  }
  #ModalPhone .close-button.medium {
    top: -1rem;
    right: -1rem;
    color: #fff;
  }
  #ModalPhone .content {
    margin-top: 2.7em;
  }
  #ModalPhone .content p,
  #ModalPhone .content .font-p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  #ModalPhone .content p.title,
  #ModalPhone .content .title.font-p {
    font-size: 24px;
  }
  #ModalPhone .content p .button,
  #ModalPhone .content .font-p .button {
    font-size: 12px;
  }
}
.animated.shake-animate {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes shake-animate {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake-animate {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake-animate {
  -webkit-animation-name: shake-animate;
  animation-name: shake-animate;
}
.fo-gallery .slide {
  top: 30%;
  height: unset;
  margin-top: unset;
}
.fo-gallery .slide-prev {
  left: -10%;
}
.fo-gallery .slide-next {
  right: -10%;
}
.fo-gallery .image-item {
  padding: 0 10px;
  display: "inline-block";
}
.fo-gallery .image-item.slick-item:not(:first-of-type) {
  display: inline-block;
}
.carousel .banner {
  font-family: "Helvetica Neue", "Helvetica", Arial;
  position: relative;
}
.carousel .banner .height-carousel {
  height: 100%;
}
.carousel .banner-slider {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.carousel .banner .pre-loader {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 0;
}
.carousel .banner-img-container {
  position: relative;
  padding-left: 0;
}
@media only screen and (min-width: 1024px) {
  .carousel .banner-img-container {
    padding-right: 2.5%;
  }
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-img-container {
    padding: 0;
  }
}
.carousel .banner-img-container .youness {
  position: absolute;
  top: 0;
  left: 0;
  width: 96.3%;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-img-container .youness {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .carousel .banner-img-container + .height-carousel {
    position: absolute;
    bottom: 0;
  }
  .carousel .banner-img-container + .height-carousel .banner-content {
    padding: 0;
    min-height: auto;
  }
  .carousel
    .banner-img-container
    + .height-carousel
    .banner-content-price-content,
  .carousel .banner-img-container + .height-carousel .banner-content-heading {
    display: none;
  }
}
.carousel .banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.carousel .banner-content-heading:empty {
  display: none;
}
.carousel .banner-content .subheading > p,
.carousel .banner-content .subheading > .font-p {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  padding-top: 15px;
  margin-bottom: 0;
}
.carousel .banner-content .tac > p,
.carousel .banner-content .tac > .font-p {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 0.625rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-content {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 48.063em) {
  .carousel .banner-content {
    min-height: 465px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .carousel .banner-content {
    min-height: 200px;
  }
}
.carousel .banner-content .content-vertical-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: left;
  -ms-flex-align: left;
  align-items: left;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-content .content-vertical-middle {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.carousel .banner-content-subtext-top,
.carousel .banner-content-subtext-bottom {
  font-weight: 700;
}
.carousel .banner-content-price-content {
  width: 100%;
}
.carousel .banner-content-price-content:empty {
  display: none;
}
.carousel .banner-content-price-content img {
  width: 56%;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-content-price-content img {
    width: 80%;
    margin: 0 auto;
    left: 0 !important;
  }
}
@media only screen and (max-width: 39.9375em) {
  .carousel .banner-content-price-content img {
    width: 70%;
  }
}
@media only screen and (max-width: 39.9375em) {
  .carousel .banner-content .button:not(.inline) {
    min-width: 100%;
  }
}
.carousel .banner #scrollArrowContainer .scrollArrow {
  padding: 60px 10px 10px 10px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 70px;
  bottom: 0;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1024px) {
  .carousel .banner #scrollArrowContainer .scrollArrow {
    left: 10%;
  }
}
.carousel .banner #scrollArrowContainer .scrollArrow span {
  bottom: 32px;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 24px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1;
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: rotate(45deg) translate(0, 0);
    transform: rotate(45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(45deg) translate(10px, 10px);
    transform: rotate(45deg) translate(10px, 10px);
  }
  40% {
    -webkit-transform: rotate(45deg) translate(0, 0);
    transform: rotate(45deg) translate(0, 0);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: rotate(45deg) translate(0, 0);
    transform: rotate(45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(45deg) translate(10px, 10px);
    transform: rotate(45deg) translate(10px, 10px);
  }
  40% {
    -webkit-transform: rotate(45deg) translate(0, 0);
    transform: rotate(45deg) translate(0, 0);
  }
}
img {
  border-style: none;
}
*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  outline: 0;
}
img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
@media print {
  * {
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }
  img {
    page-break-inside: avoid;
    max-width: 100% !important;
  }
}
.slick-slide img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .slick-dots {
    position: relative;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 0;
  }
  .slick-dots li button:before {
    border: 8px solid #c7c7c7;
    border-radius: 50%;
  }
  .slick-active li button:before {
    border: 8px solid #000;
  }
}
.carousel .banner-content-price-content img {
  width: auto;
  position: relative;
}
.carousel .banner-content.heading {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-content-price-content img {
    width: 80%;
    margin: 0 auto;
    left: 0 !important;
  }
}
@media only screen and (max-width: 39.9375em) {
  .carousel .banner .height-carousel {
    height: auto;
  }
  .carousel .banner-content {
    padding-bottom: 30px;
  }
  .carousel .banner-content-price-content img {
    width: 70%;
  }
}
.banner-content .banner-content-price-content img {
  max-width: 56%;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner .height-carousel {
    height: auto;
  }
  .banner-content .banner-content-price-content img {
    max-width: 200px;
  }
}
@media print, screen and (min-width: 64em) {
  .height-full {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.width-full {
  width: 100%;
}
.promo-slider-item-card {
  border: none;
}
.promo-slider .slick-slide {
  text-align: center;
}
.promo-slider .slick-item:not(:first-of-type) {
  display: block;
}
.promo-slider a:hover {
  text-decoration: none;
}
.promo-slider .promo-content--item {
  padding: 15px;
}
.promo-slider .promo-content--item.promo-slider-promobox {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  margin: 15px auto;
}
.promo-slider .promo-content--item.promo-slider-promobox:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.promo-slider .promo-content--item-card {
  position: relative;
  max-width: 360px;
  max-height: 425px;
  margin: 0 auto;
  border: 0;
}
.promo-slider .promo-content--item-card hr {
  border-bottom: 1px solid black;
}
.promo-slider .promo-content--item-card .card h5,
.promo-slider .promo-content--item-card .card .font-h5 {
  font-size: 1.125rem;
}
.promo-slider .promo-content--item-card .card-footer {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.promo-slider-item--simple .card {
  background-color: transparent;
  color: inherit;
}
.before-after-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.before-after-gallery-text {
  margin: 0 auto;
  max-width: 500px;
  padding: 5px 10px;
  text-align: left;
}
.before-after-gallery-text p,
.before-after-gallery-text .font-p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.before-after-gallery-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
}
.before-after-gallery-item > a {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vw * 0.85);
}
@media only screen and (min-width: 39.9375em) {
  .before-after-gallery-item > a {
    height: calc(100vw * 0.25);
  }
}
.before-after-gallery-item > a > img {
  display: none;
}
.before-after-gallery-item .before-after-gallery-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0;
  max-width: unset;
  width: 100%;
}
.video-snapshot-image {
  width: 117px;
}
.injector-carousel {
  padding: 0 20px;
}
.injector-carousel .slick-dots {
  position: relative;
  margin-top: 10px;
}
.injector-carousel .slick-dots li button:before {
  border-radius: 50%;
  border-color: #0a0a0a;
}
.injector-carousel .slide-prev {
  left: 0;
  width: 50px;
}
.injector-carousel .slide-next {
  right: 0;
  width: 50px;
}
.medical-injector-list--item img {
  background: #e7e8e8;
  border-radius: 50%;
  margin: auto;
  width: 80%;
}
@media screen and (max-width: 640px) {
  .medical-injector-list--item img {
    width: 40%;
  }
}
.clinic-page-header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #bbbdbf;
}
.clinic-page-map {
  position: absolute;
  background-size: cover;
  height: 550px;
}
@media screen and (max-width: 550px) {
  .clinic-page-map {
    height: 100vw;
  }
}
@media screen and (max-width: 860px) {
  .clinic-page-map {
    position: relative;
  }
}
.clinic-page .clinic-card {
  width: 370px;
  display: block;
  margin-left: 10%;
}
@media screen and (max-width: 1024px) {
  .clinic-page .clinic-card {
    margin-left: 2%;
  }
}
@media screen and (max-width: 860px) {
  .clinic-page .clinic-card {
    text-align: center;
    height: 500px;
    margin: 30px auto;
  }
}
.billing-form {
  padding: 0 5px;
}
.billing-form-actions .button:first-child {
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .billing-form-actions .button:first-child {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 568px) {
  .billing-form {
    padding: 0;
  }
  .billing-form-actions .button {
    width: 100%;
  }
  .billing-form-actions .button:first-child {
    margin-right: 0;
  }
}
.product-tabs {
  padding-bottom: 20px;
}
.product-tabs .accordion-item.is-active .accordion-title:before {
  content: "\f068";
}
.product-tabs .accordion-title {
  padding: 15px 0;
}
.product-tabs .accordion-title:before {
  content: "\f067";
  font-size: 16px;
  top: 24px;
  right: 15px;
}
.product-tabs .accordion-content {
  margin-top: -3.125rem;
}
.product-tabs .tabs-header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (min-width: 671px) {
  .product-tabs .tabs-header-row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.product-tabs .tabs-title {
  float: none;
  display: inline-block;
}
.product-tabs .tabs-title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 640px) {
  .product-tabs .tabs-title a {
    min-width: 150px;
  }
}
.product-tabs .tabs-panel {
  margin-top: -3.125rem;
}
.tabs {
  text-align: center;
}
.tabs-text-left {
  text-align: left;
}
.promo-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.promo-cards-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding-bottom: 30px;
  border: none;
}
.promo-cards-item hr {
  border-bottom: 1px solid black;
}
.promo-cards-item h5,
.promo-cards-item .font-h5 {
  font-size: 1.125rem;
}
.promo-cards-item-header {
  padding-top: 5px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.promo-cards-item-footer {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
@media only screen and (max-width: 64em) and (min-width: 39.9375em) {
  .promo-cards {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .promo-cards-item {
    -ms-flex-preferred-size: calc(50% - 15px);
    flex-basis: calc(50% - 15px);
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media only screen and (max-width: 39.9375em) {
  .promo-cards-item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.my-appointments-header {
  list-style: none;
  margin-bottom: 0;
}
.my-appointments-header li {
  display: inline-block;
  font-size: 1rem;
  cursor: pointer;
}
.my-appointments-header li:first-child {
  margin-right: 30px;
}
.my-appointments-info {
  text-align: left;
  margin: auto;
  max-width: 800px;
}
.my-appointments-info p,
.my-appointments-info .font-p {
  margin-bottom: 1rem;
}
.my-appointments-info ul {
  margin-left: 1.25rem;
}
.my-appointments .slide-down .info-panel {
  background-color: #fafafa;
  line-height: 22px;
  font-family: "Helvetica Neue", "Helvetica", Arial;
}
.my-appointments .slide-down .info-panel-no-pd {
  padding-left: 0;
  padding-right: 0;
}
.my-appointments .slide-down .info-panel .no-border {
  border-bottom: none;
}
.my-appointments .slide-down .info-panel .treatment-content {
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.my-appointments .slide-down .info-panel .treatment-details {
  text-align: left;
}
.my-appointments .slide-down .info-panel .treatment-name {
  margin-bottom: 0;
}
.my-appointments .slide-down .info-panel .treatment-duration {
  color: #a6a6a6;
}
.my-appointments .slide-down .info-panel .button + .button {
  margin-top: 0;
}
.my-appointments .booking-row {
  margin-left: 0;
  margin-right: 0;
}
.my-appointments .table-body-cell.treatment {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.my-appointments .table-body-cell.location {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.my-appointments .table-body-cell.location:last-of-type {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 39.063em) {
  .my-appointments .table-body-cell.location:last-of-type {
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
  }
}
.booking-times,
.booking-week {
  min-width: 95%;
  width: 0;
}
.dashboard-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.dashboard-welcome {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 15px;
}
.dashboard-welcome p,
.dashboard-welcome .font-p {
  margin-bottom: 0;
}
.dashboard-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}
.dashboard-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.dashboard-total {
  margin-right: 15px;
  text-align: center;
}
.dashboard-total-amount {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 2.375rem;
  line-height: 2.375rem;
}
.dashboard-total a,
.dashboard-total a:hover {
  color: #fff;
}
.dashboard-ctas .button.btn-transparent {
  padding-left: 10px;
  padding-right: 10px;
}
.dashboard-ctas .button.btn-transparent:first-child {
  margin-bottom: 15px;
}
.dashboard-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;
}
.dashboard-table {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-right: 0;
  margin-bottom: 40px;
}
.dashboard-table:first-child {
  margin-right: 0;
}
.dashboard-table-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.dashboard-table-header h4,
.dashboard-table-header .font-h4 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 15px;
  margin-bottom: 0;
}
.dashboard-table-content {
  margin-top: 15px;
}
.dashboard-table .table-body-cell.icon {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.dashboard-table .table-body-cell.treatment,
.dashboard-table .table-body-cell.location {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.dashboard-table .table-body-cell.expires {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.dashboard-no-content {
  padding: 40px;
  text-align: center;
}
.dashboard-no-content a {
  margin-top: 10px;
}
@media only screen and (min-width: 64em) {
  .dashboard-container {
    margin-top: 40px;
    padding: 0;
  }
  .dashboard-table {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .dashboard-table:first-child {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 40.9375em) and (max-width: 63em) {
  .dashboard-welcome {
    background-position-x: right;
  }
  .dashboard .table-body-cell {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .dashboard .table-body-cell.details {
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
  }
  .dashboard .table-body-cell.icon {
    -webkit-box-flex: 0.4;
    -ms-flex: 0.4;
    flex: 0.4;
    display: block;
  }
}
@media only screen and (max-width: 39.9375em) {
  .dashboard-header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px -15px 0;
  }
  .dashboard-welcome {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-top: 10px;
    padding-bottom: 0;
    background: none;
  }
  .dashboard-welcome h1,
  .dashboard-welcome .font-h1 {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .dashboard-welcome p,
  .dashboard-welcome .font-p {
    display: none;
  }
  .dashboard-actions {
    position: relative;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-top: 0;
    padding-bottom: 10px;
    background: none;
  }
  .dashboard-action {
    text-align: left;
  }
  .dashboard-view-all {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  }
  .dashboard .table-body-cell {
    display: block;
  }
  .dashboard-total {
    text-align: center;
    margin-right: 0;
  }
  .dashboard-total-amount {
    text-align: left;
  }
  .dashboard-ctas {
    display: none;
  }
}
.account-details .row {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.in-page-anchor {
  position: absolute;
  top: -100px;
  height: 0;
}
@media screen and (max-width: 1024px) {
  .in-page-anchor {
    top: -75px;
  }
}
.in-page-anchor-container {
  position: relative;
  visibility: hidden;
}
.ba-upload-container .status-legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.625rem;
}
.ba-upload-container .status-legend-item .fa {
  padding-right: 5px;
  font-size: 1.625rem;
}
.ba-upload-container .tabs-header-name.disabled {
  background-color: #fff;
  color: #a6a6a6;
  border-color: #a6a6a6;
}
.ba-upload-container .tabs-header-row {
  padding: 0 15px 35px;
}
.ba-upload-container .tabs-header-row:before,
.ba-upload-container .tabs-header-row:after {
  content: none;
}
.ba-upload-container .accordion-item {
  border: 1px solid #0a0a0a;
  margin: 5px 15px;
}
.ba-upload-container .accordion-item:first-child > :first-child {
  padding-top: 15px;
}
.ba-upload-container .accordion-item:first-child > :first-child:before {
  top: 24px;
}
.ba-upload-container .accordion-item.is-active .accordion-title:before {
  content: "\f068";
}
.ba-upload-container .accordion-item img.approved {
  border: 2px solid #53b064;
}
.ba-upload-container .accordion-item img.pending {
  border: 2px solid #ff9000;
}
.ba-upload-container .accordion-item img.rejected {
  border: 2px solid #f44336;
}
.ba-upload-container .accordion-title {
  padding: 15px 0;
}
.ba-upload-container .accordion-title:before {
  content: "\f067";
  font-size: 16px;
  top: 24px;
  right: 15px;
}
.ba-upload-container .accordion-content-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ba-upload-form-container {
  overflow-x: hidden;
}
@-webkit-keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.image-upload-container {
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 15px;
}
.image-upload-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.image-upload-container img {
  max-height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.image-upload-container:last-child {
  margin-bottom: 15px;
}
.image-upload-container.preview {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.image-upload-container .placeholder {
  border: 2px dashed #0a0a0a;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #e7e8e8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.image-upload-container .placeholder.box {
  padding-left: 40px;
  padding-right: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.image-upload-container .placeholder.box > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.image-upload-container .placeholder .fa-camera {
  color: #58595b;
  font-size: 5rem;
}
.image-upload-container .delete-confirmation {
  -webkit-animation: 0.2s ease-in-out 0s 1 slideInFromTop;
  animation: 0.2s ease-in-out 0s 1 slideInFromTop;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f44336;
  color: white;
}
.image-upload-container .delete-confirmation p,
.image-upload-container .delete-confirmation .font-p {
  font-size: 1rem;
  margin-bottom: 0;
}
.image-upload-container .delete-confirmation-icon {
  font-size: 1.875rem;
  padding: 15px;
}
.image-upload-container .fa-pencil,
.image-upload-container .fa-trash {
  position: absolute;
  bottom: 7px;
  right: 7px;
  font-size: 1.875rem;
}
.image-upload-container .status {
  position: absolute;
  bottom: 7px;
  left: 7px;
  font-size: 1.875rem;
}
.zip-pay-container {
  text-align: left;
}
.zip-pay-button {
  margin-top: 30px;
}
.sitemap {
  -webkit-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 60px;
  column-gap: 60px;
}
@media only screen and (max-width: 1023px) {
  .sitemap {
    -webkit-column-count: 2;
    column-count: 2;
  }
}
@media only screen and (max-width: 640px) {
  .sitemap {
    -webkit-column-count: 1;
    column-count: 1;
  }
}
.sitemap ul li ul li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid-column;
}
@media only screen and (max-width: 39.9375em) {
  .product-tabs .two-col-container {
    width: 100%;
    padding: 0 15px !important;
  }
}
.product-tabs .two-col-container img {
  margin-bottom: 1.875rem;
}
.col-wrapper {
  padding-left: 5px;
  padding-right: 5px;
}
.col-wrapper-image img {
  display: block;
}
@media screen and (min-width: 640px) {
  .col-wrapper-image {
    padding-right: 30px;
  }
}
.col-wrapper-header {
  padding: 0 10px;
}
.col-wrapper-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  padding-top: 30px;
}
.col-wrapper-buttons-item {
  -ms-flex-preferred-size: calc(50% - 30px);
  flex-basis: calc(50% - 30px);
  margin-right: 15px;
}
@media only screen and (max-width: 39.9375em) {
  .col-wrapper-buttons-item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .col-wrapper-text h1,
  .col-wrapper-text .font-h1 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  .col-wrapper-text-content {
    text-align: justify;
    text-justify: inter-word;
  }
}
@media only screen and (max-width: 736px) {
  .col-wrapper h1.col-banner-heading,
  .col-wrapper .col-banner-heading.font-h1 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 667px) {
  .col-wrapper h1.col-banner-heading,
  .col-wrapper .col-banner-heading.font-h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .col-wrapper p,
  .col-wrapper .font-p {
    font-size: 1rem;
    line-height: 24px;
  }
  .col-wrapper h1.col-banner-heading,
  .col-wrapper .col-banner-heading.font-h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 340px) {
  .col-wrapper h1.col-banner-heading,
  .col-wrapper .col-banner-heading.font-h1 {
    font-size: 28px;
  }
}
.breadcrumbs {
  padding-left: 10px;
  padding-top: 10px;
}
.breadcrumbs a {
  font-size: 15px;
}
.feature-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feature-wrapper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.feature-wrapper-image {
  margin-top: auto;
}
.feature-wrapper-image img {
  max-height: inherit;
  display: block;
}
@media screen and (min-width: 640px) {
  .feature-wrapper-image {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .feature-wrapper-image {
    max-height: 500px;
    min-width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 800px) {
  .feature-wrapper-text-content {
    text-align: justify;
    text-justify: inter-word;
  }
}
.breadcrumbs-container {
  position: absolute;
  padding-top: 10px;
  padding-left: 10px;
}
.breadcrumbs-container .breadcrumbs li {
  font-size: 15px;
  color: inherit;
}
.breadcrumbs-container .breadcrumbs li a {
  color: inherit;
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 20px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 736px) {
  .videoWrapper iframe:last-of-type {
    display: block;
  }
}
.grey-div-l {
  background-color: #e7e8e8;
}
.fo-logos img {
  width: auto;
  display: block;
  margin: 0 auto;
  max-width: 130px;
}
@media only screen and (max-width: 39.063em) {
  .fo-logos img {
    width: 80%;
  }
}
.registration {
  padding: 0 5px;
}
.registration-modal {
  padding: 30px;
  text-align: center;
}
.registration-modal .button {
  min-width: 220px;
}
.small-cta-label-text {
  color: #4a4a4a;
  text-align: center;
  font-size: 0.75rem;
}
@media only screen and (max-width: 39.9375em) {
  .small-cta-label-text {
    margin-top: 10px;
  }
}
.text-divider-line-break {
  border-bottom: #a6a6a6 1px solid;
  color: #a6a6a6;
  line-height: 0.1em;
  margin-bottom: 1em;
}
.text-divider-text {
  background-color: #fff;
  padding: 0 8px;
}
.advance-before-after .image-container {
  height: 480px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.advance-before-after .directions {
  position: absolute;
  left: 10px;
  top: 10px;
}
.advance-before-after .tag {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.advance-before-after .directions > div,
.advance-before-after .filters > div {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  cursor: pointer;
  padding: 5px 10px;
  background-color: #0a0a0a;
  color: #fff;
  margin-top: 10px;
  text-align: center;
  text-transform: capitalize;
  border: 2px solid #0a0a0a;
  display: block;
}
.advance-before-after .directions > div:hover,
.advance-before-after .directions > div:active,
.advance-before-after .directions > div.active,
.advance-before-after .filters > div:hover,
.advance-before-after .filters > div:active,
.advance-before-after .filters > div.active {
  background-color: #fff;
  color: #0a0a0a;
}
.advance-before-after .filters > div {
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (min-width: 40.9375em) and (max-width: 63em) {
  .advance-before-after .image-container {
    height: 290px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .advance-before-after .image-container {
    height: 250px;
    margin-bottom: 15px;
  }
  .advance-before-after .filters,
  .advance-before-after .directions {
    position: relative;
    margin-top: 50px;
    top: -50px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .advance-before-after .filters > div,
  .advance-before-after .directions > div {
    display: inline-block;
    margin-right: 5px;
  }
}
.modal-dialog-content-border .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  text-align: center;
}
.modal-dialog-content-border .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.treatment-table.booking .prerequisite {
  cursor: pointer;
}
.treatment-table.booking .skinTone {
  cursor: pointer;
  color: #f44336;
}
.treatment-table.booking .prerequisite,
.treatment-table.booking .skinTone {
  font-size: 1rem;
}
.treatment-table.booking .prerequisite .text,
.treatment-table.booking .skinTone .text {
  display: none;
}
@media only screen and (max-width: 39.9375em) {
  .treatment-table.booking .prerequisite,
  .treatment-table.booking .skinTone {
    margin-top: 15px;
    width: 50%;
    text-align: left;
  }
  .treatment-table.booking .prerequisite .text,
  .treatment-table.booking .skinTone .text {
    display: inline-block;
    margin-right: 15px;
  }
}
.treatment-table.booking .book {
  position: relative;
  margin-top: 0;
  padding-left: 10px;
}
.treatment-table.booking .book .button {
  font-size: 1rem;
}
.treatment-table.booking .book .form-error {
  margin-top: 1px;
  right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 39.9375em) {
  .treatment-table.booking .table-header-cell:first-of-type,
  .treatment-table.booking .table-body-cell:first-of-type {
    width: 70%;
  }
  .treatment-table.booking .table-header-cell:nth-of-type(2),
  .treatment-table.booking .table-body-cell:nth-of-type(2) {
    width: 30%;
  }
  .treatment-table.booking .book {
    margin-top: 10px;
    padding-left: 0;
  }
}
.countdown-timer.counter {
  color: #f44336;
}
.countdown-timer.text {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  padding: 10px 0;
}
.custom-time-picker {
  height: 55px;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  border: 2px solid #0a0a0a;
  padding: 5px 10px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1rem;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.custom-time-picker:focus {
  outline: 2px #ccb46d solid;
}
.custom-time-picker:hover {
  background-color: #e7e8e8;
}
.custom-time-picker-icon {
  font-size: 1.75rem;
  margin-right: 10px;
}
.custom-time-picker-select {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.custom-time-picker-select-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.custom-time-picker-select-row .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.custom-time-picker-select-row .icon {
  -ms-flex-preferred-size: 52px;
  flex-basis: 52px;
  -ms-flex-item-align: center;
  align-self: center;
}
.custom-time-picker-arrow {
  margin-left: 10px;
}
.custom-time-picker-panel {
  font-family: "Helvetica Neue", "Helvetica", Arial;
  background-color: #fff;
  position: absolute;
  border: 2px solid #0a0a0a;
  width: 100%;
  left: 0;
  top: 50px;
  z-index: 10;
}
.custom-time-picker-row {
  padding: 5px 10px;
  border-bottom: 1px solid #0a0a0a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #0a0a0a;
  background-color: #fff;
}
.custom-time-picker-row.focused,
.custom-time-picker-row:hover {
  color: #fff;
  background-color: #0a0a0a;
}
.custom-time-picker-row:last-of-type {
  border-bottom: none;
}
.custom-time-picker-row .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  align-self: center;
}
.custom-time-picker-row .count:hover {
  color: #0a0a0a;
}
.custom-time-picker-select-row .count,
.custom-time-picker-row .count {
  margin-left: 10px;
  background-color: #ccb46d;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  border-radius: 50%;
  padding: 5px;
  width: 35px;
  text-align: center;
  color: #0a0a0a;
}
.custom-injector-picker {
  height: 55px;
  width: 100%;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  border: 2px solid #0a0a0a;
  padding: 5px 10px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1rem;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.custom-injector-picker:focus {
  outline: 2px #ccb46d solid;
}
.custom-injector-picker:hover {
  background-color: #e7e8e8;
}
.custom-injector-picker-icon {
  font-size: 1.75rem;
  margin-right: 10px;
}
.custom-injector-picker-select {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.custom-injector-picker-select-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.custom-injector-picker-select-row .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.custom-injector-picker-select-row .icon {
  -ms-flex-preferred-size: 52px;
  flex-basis: 52px;
  -ms-flex-item-align: center;
  align-self: center;
}
.custom-injector-picker-arrow {
  margin-left: 10px;
}
.custom-injector-picker-panel {
  font-family: "Helvetica Neue", "Helvetica", Arial;
  background-color: #fff;
  position: absolute;
  border: 2px solid #0a0a0a;
  width: 100%;
  left: 0;
  top: 50px;
  z-index: 10;
}
.custom-injector-picker-row {
  padding: 5px 10px;
  border-bottom: 1px solid #0a0a0a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #0a0a0a;
  background-color: #fff;
}
.custom-injector-picker-row.focused,
.custom-injector-picker-row:hover {
  color: #fff;
  background-color: #0a0a0a;
}
.custom-injector-picker-row:last-of-type {
  border-bottom: none;
}
.custom-injector-picker-row .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  align-self: center;
}
.custom-injector-picker-row .count:hover {
  color: #0a0a0a;
}
.custom-injector-picker-select-row .count,
.custom-injector-picker-row .count {
  margin-left: 10px;
  background-color: #ccb46d;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  border-radius: 50%;
  padding: 5px;
  width: 35px;
  text-align: center;
  color: #0a0a0a;
}
.custom-date-picker {
  height: 55px;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  border: 2px solid #0a0a0a;
  padding: 5px 10px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1rem;
}
.custom-date-picker-icon {
  font-size: 1.75rem;
  margin-right: 10px;
}
.custom-date-picker-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.custom-date-picker-select > div:first-of-type {
  width: 100%;
}
.custom-date-picker-select .flatpickr-input {
  margin-top: 17px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: none;
}
.custom-date-picker-arrow {
  position: absolute;
  right: 10px;
  top: 14px;
}
.custom-date-picker-calendar-overlay {
  display: none;
}
.custom-date-picker-calendar-overlay.loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  background: white;
  color: #dfdfdf;
}
.custom-date-picker-calendar-overlay.loading .fa-calendar {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  font-size: 50pt;
}
.custom-date-picker.inline {
  display: none;
}
.custom-date-picker.inline .focused {
  border: 2px solid blue;
  outline: none;
}
.custom-date-picker.inline + .flatpickr-calendar {
  display: block;
  position: relative;
  top: auto !important;
  left: auto !important;
  margin: auto;
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  z-index: auto;
  width: 100%;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-rContainer {
  width: 100%;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-monthDropdown-months {
  border: none;
  padding: 0;
  height: auto;
  text-align: center;
  font-weight: bold;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-days {
  width: 100%;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-days .dayContainer {
  min-width: 100%;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-current-month
  .cur-month:hover {
  background-color: transparent;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-current-month
  .numInputWrapper {
  pointer-events: none;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-current-month
  .numInputWrapper:hover {
  background-color: transparent;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-current-month
  .numInputWrapper:hover
  span {
  opacity: 0;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-months {
  margin-bottom: 15px;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-weekday {
  font-size: 100%;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day {
  color: #bbb6b0;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day:focus {
  background-color: transparent;
  border-color: transparent;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day:focus::after {
  content: " ";
  position: absolute;
  background-color: #e7e8e8;
  width: 32px;
  height: 32px;
  display: block;
  bottom: 2px;
  border-radius: 100%;
  z-index: -1;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day:hover {
  background-color: transparent;
  border-color: transparent;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day:not(.selected):not(.highlight) {
  pointer-events: auto;
  cursor: not-allowed;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day:not(.selected):not(.highlight):hover {
  background-color: transparent;
  border-color: transparent;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.highlight:not(.selected) {
  color: #0a0a0a;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.highlight:not(.selected)::before {
  content: " ";
  position: absolute;
  background-color: #ccb46d;
  width: 5px;
  height: 5px;
  display: block;
  bottom: 4px;
  border-radius: 100%;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.highlight:not(.selected):hover {
  background-color: transparent;
  border-color: transparent;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.highlight:not(.selected):hover::before {
  background-color: #0a0a0a;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.highlight:not(.selected):hover::after {
  content: " ";
  position: absolute;
  background-color: #e7e8e8;
  width: 32px;
  height: 32px;
  display: block;
  bottom: 2px;
  border-radius: 100%;
  z-index: -1;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day.selected {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.selected::after {
  content: " ";
  position: absolute;
  background-color: black;
  width: 32px;
  height: 32px;
  display: block;
  bottom: 2px;
  border-radius: 100%;
  z-index: -1;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.selected.highlight::before {
  content: " ";
  position: absolute;
  background-color: #ccb46d;
  width: 5px;
  height: 5px;
  display: block;
  bottom: 4px;
  border-radius: 100%;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day.disabled,
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.disabled.highlight {
  color: #ddd9d2;
  cursor: not-allowed;
  pointer-events: none;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.disabled::before,
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.disabled.highlight::before {
  background-color: #ddd9d2;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day.today::after {
  content: " ";
  position: absolute;
  border-color: #ddd9d2;
  border-width: 1px;
  border-style: solid;
  width: 32px;
  height: 32px;
  display: block;
  bottom: 2px;
  border-radius: 100%;
  z-index: -1;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day.nextMonthDay {
  color: #e7e8e8;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.booking-date-picker .form-error {
  position: relative;
  padding-top: 15px;
}
.booking-times-inner {
  position: relative;
  height: 400px;
}
.booking-times-inner .booking-times {
  overflow: auto;
  height: 400px;
  min-width: 100%;
  position: relative;
  padding-bottom: 20px;
  margin: 0 0 30px;
}
.booking-times-inner .booking-times .booking-times-item {
  margin: 0 0 5px;
}
.booking-times-inner .scroll-gradient {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    to(#fff)
  );
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}
.booking-week,
.booking-times {
  margin: 0 auto 30px;
}
.booking-week .slick-arrow,
.booking-times .slick-arrow {
  background: none;
  color: #0a0a0a;
}
.booking-week .slick-next:before,
.booking-week .slick-prev:before,
.booking-times .slick-next:before,
.booking-times .slick-prev:before {
  background-color: none;
  color: #0a0a0a;
  font-size: 30px;
  line-height: 0;
}
.booking-week .slick-next,
.booking-times .slick-next {
  right: -25px;
}
.booking-week .slick-prev,
.booking-times .slick-prev {
  left: -35px;
}
.booking-week-day {
  cursor: pointer;
  text-align: center;
  padding: 10px 5px;
  font-size: 0.875rem;
  margin: 0 5px;
  border: 2px solid #0a0a0a;
}
.booking-week-day > div:nth-child(2) {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.booking-week-day.selected {
  background-color: #ccb46d;
  border: 2px solid #ccb46d;
}
.booking-times-item {
  width: auto;
  margin: 0 5px;
  text-align: center;
  border: 2px solid #0a0a0a;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.booking-times-item.selected,
.booking-times-item.selected:hover {
  background-color: #0a0a0a;
  border: 2px solid #0a0a0a;
  color: #fff;
}
.booking-times-item:hover {
  background-color: #e7e8e8;
  border: 2px solid #0a0a0a;
  color: #0a0a0a;
}
.booking-times-error {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: white;
  opacity: 0.9;
  z-index: 4;
}
.booking-times-error .message {
  font-weight: bold;
  color: #f44336;
}
.booking-times-error .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
* {
  min-height: 0;
  min-width: 0;
}
#MB_WEBCHAT_WIDGET * {
  min-height: auto;
  min-width: auto;
}
@media only screen and (max-width: 39.9375em) {
  .booking-week,
  .booking-times {
    margin: 0 5px 30px;
  }
  .booking-week .slick-next,
  .booking-times .slick-next {
    right: -15px;
  }
  .booking-week .slick-prev,
  .booking-times .slick-prev {
    left: -25px;
  }
  .booking-week .slick-prev,
  .booking-week .slick-next {
    top: 30px;
  }
  .booking-week-day {
    font-size: 0.75rem;
    padding: 5px;
  }
  .booking-times .slick-prev,
  .booking-times .slick-next {
    top: 19px;
  }
}
.booking-review-confirmation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}
.booking-review-confirmation .checkbox-field {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.booking-review-confirmation
  .checkbox-field
  .checkbox-error.form-error.is-visible {
  margin-top: 0;
  position: relative;
  width: 100%;
}
.booking-review-panel {
  background-color: #a6a6a6;
  border: 2px solid #a6a6a6;
  border-bottom: none;
  padding-top: 30px;
}
@media screen and (max-width: 640px) {
  .booking-review-panel {
    border: none;
  }
}
.booking-review-header {
  padding: 0 30px 10px;
}
.booking-review-header .large-text {
  font-size: 1.625rem;
}
.booking-review-clinic,
.booking-review-appointment,
.booking-review-injector {
  padding: 0 30px;
}
.booking-review-services {
  padding: 0 30px 30px 30px;
}
.booking-review-line {
  margin: 15px 30px;
  border-bottom: 1px solid #0a0a0a;
}
.booking-review .change-clinic:hover,
.booking-review .change-clinic:active {
  text-decoration: underline;
  cursor: pointer;
}
.booking-review-treatment {
  padding: 15px 30px;
  background-color: #fff;
  border-bottom: 2px solid #a6a6a6;
}
.booking-review-treatment .fa-times-thin {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.875rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.booking-review-treatment .fa-times-thin:hover,
.booking-review-treatment .fa-times-thin:active {
  opacity: 0.7;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  cursor: pointer;
}
.booking-review-treatment .form-error {
  position: relative;
  margin-bottom: 0;
}
.booking-review-treatment .has-tip {
  border: none;
}
.booking-review-footer {
  background-color: #fff;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  padding: 15px 30px;
}
.booking-review-close {
  display: none;
}
@media only screen and (max-width: 64em) {
  .booking-review-clinic,
  .booking-review-appointment {
    margin-bottom: 5px;
  }
  .booking-review-panel.mobile {
    display: none;
    position: absolute;
    top: -65px;
    right: 0;
    left: 0;
    z-index: 2;
    margin-left: 0;
    border: 2px solid #a6a6a6;
  }
  .booking-review-panel.mobile.isOpen {
    display: block;
  }
  .booking-review-close {
    display: block;
    background-color: #0a0a0a;
    font-family: "Helvetica Neue Bold", "Helvetica", Arial;
    color: #fff;
    text-align: center;
    cursor: pointer;
    padding: 15px 30px;
  }
}
.booking-extra-fields .form-group {
  min-height: 55px;
}
@media screen and (max-width: 992px) {
  .prepays .tabs,
  .booking .tabs {
    position: relative;
  }
  .prepays .tabs-header-row,
  .booking .tabs-header-row {
    position: unset;
  }
  .prepays .tabs-header-row:before,
  .booking .tabs-header-row:before {
    position: absolute;
    top: 85px;
    left: 0;
    font-family: FontAwesome;
    content: "\f104";
    font-size: 1.25rem;
    opacity: 0.5;
  }
  .prepays .tabs-header-row:after,
  .booking .tabs-header-row:after {
    position: absolute;
    top: 85px;
    right: 0;
    font-family: FontAwesome;
    content: "\f105";
    font-size: 1.25rem;
    opacity: 0.5;
  }
}
.gift-card__emailTemplate-item-container {
  padding: 5px;
  border: 2px solid #fff;
  position: relative;
  background-color: #fff;
  cursor: pointer;
}
.gift-card__emailTemplate-item-container.active {
  border: 2px solid #ccb46d;
}
.gift-card__emailTemplate-item-container.active .fa-check-circle {
  display: block;
}
.gift-card__emailTemplate-img {
  background-repeat: no-repeat;
}
.gift-card__emailTemplate-caption {
  border: 2px solid #0a0a0a;
  font-weight: bold;
  text-align: center;
  font-size: 0.9375rem;
  margin-bottom: 2px;
  padding: 10px;
}
.gift-card__emailTemplate--error .gift-card__emailTemplate-item-container {
  border: 2px solid #f44336;
}
.gift-card__emailTemplate .fa-check-circle {
  position: absolute;
  color: #ccb46d;
  font-size: 2.25rem;
  left: 50%;
  margin-left: -13px;
  background-color: #fff;
  display: none;
}
@media screen and (max-width: 1023px) {
  .gift-card__emailTemplate-item-container {
    margin-bottom: 30px;
  }
}
.gift-card__emailTemplate-img {
  padding-bottom: 76%;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 640px) {
  .gift-card__emailTemplate-img {
    padding-bottom: 45%;
  }
}
.gift-card__emailTemplate-caption {
  display: none;
}
.gift-card__preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.gift-card__preview-body {
  white-space: pre-line;
  word-wrap: break-word;
}
.gift-card__title {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  position: absolute;
  background-color: #fff;
  color: #0a0a0a;
  top: -13px;
  left: 17px;
  padding: 0 15px;
  z-index: 2;
}
.gift-card__border {
  position: relative;
  border: 2px solid #0a0a0a;
  width: 100%;
  padding: 15px;
}
@media screen and (min-width: 1024px) {
  .gift-card__select-amount {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1023px) {
  .gift-card__select-amount {
    margin-left: 5px;
    margin-bottom: 10px;
  }
}
.gift-card hr {
  border-bottom: 1px solid #000;
}
.gift-card .change-clinic {
  text-decoration: underline;
}
.gift-card .change-clinic:hover,
.gift-card .change-clinic:active {
  cursor: pointer;
}
.grid-item-image {
  width: 150px;
}
.adyen-dropin-container {
  position: relative;
}
.adyen-dropin-container:not(.check) .adyen-checkout__dropin {
  opacity: 0.1;
  pointer-events: none;
}
.adyen-dropin-container:not(.check) .adyen-checkout__dropin:hover {
  cursor: not-allowed;
}
.adyen-dropin-mask {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.adyen-error {
  color: #f44336;
}
.adyen-credit-card-term {
  float: none;
}
.adyen-checkboxes {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 140px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 64em) {
  .adyen-checkboxes {
    margin-bottom: 0;
  }
}
.adyen-checkout__dropin {
  margin-bottom: 90px;
}
.adyen-checkout__label__text,
.adyen-checkout__checkbox__label {
  font-weight: bolder;
  text-align: left;
}
.adyen-checkout__input {
  color: #0a0a0a;
}
.adyen-dropin-container .adyen-checkout__input {
  background-color: #fff;
  border: 1px solid #979797;
}
.adyen-dropin-container .adyen-checkout__button {
  background: #0a0a0a;
  border-radius: 0;
}
.adyen-checkout__button__content {
  font-weight: 900;
}
.adyen-checkout__button:hover {
  color: #fff;
  opacity: 0.6;
}
.adyen-checkout__button:hover .adyen-checkout__button__icon {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.adyen-checkout__button.adyen-checkout__button--pay.disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.adyen-checkout__payment-method__header__title {
  font-family: "Helvetica Neue Bold", "Helvetica", "Arial";
}
.adyen-checkout__payment-method--next-selected,
.adyen-checkout__payment-method:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.adyen-checkout__payment-method--selected + .adyen-checkout__payment-method,
.adyen-checkout__payment-method:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.adyen-checkout__checkbox {
  text-align: left;
}
.adyen-checkout-input__inline-validation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.adyen-total {
  font-weight: 900;
}
.accept-cookie-popup {
  position: fixed;
  max-width: 600px;
  padding: 15px 20px;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  background: #0a0a0a;
  right: 20px;
  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;
}
.accept-cookie-popup a,
.accept-cookie-popup a:hover,
.accept-cookie-popup p,
.accept-cookie-popup .font-p,
.accept-cookie-popup {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  color: #fff;
}
.accept-cookie-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.accept-cookie-text {
  padding-right: 20px;
  overflow-wrap: break-word;
}
.accept-cookie-close {
  -ms-flex-item-align: normal;
  align-self: normal;
  margin-top: -7px;
}
@media screen and (max-width: 640px) {
  .accept-cookie-popup {
    max-width: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  .accept-cookie-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .accept-cookie-text {
    padding-bottom: 20px;
    text-align: center;
  }
  .accept-cookie-close {
    position: fixed;
    right: 10px;
  }
}
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  min-height: 400px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.hero__inner {
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}
.hero__cover {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  width: 100%;
}
.hero__image {
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  width: 100%;
}
.hero__content {
  position: relative;
  width: 100%;
  z-index: 2;
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero--responsive .hero__content {
  bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  left: 0;
  position: absolute;
  top: 0;
}
.hero--responsive .hero__description {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.hero--responsive .hero__cover {
  height: 510px;
  min-height: 100%;
}
.hero--responsive .hero__image {
  height: inherit;
  min-height: 100%;
  position: absolute;
}
.hero--responsive .hero__tagline {
  font-size: 1rem;
  width: 50%;
}
.hero--responsive .hero__buttons {
  width: 50%;
}
@media print, screen and (min-width: 40em) {
  .hero {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    min-height: 480px;
  }
  .hero__content {
    width: calc(100% - 2rem);
  }
  .hero__cover,
  .hero__image {
    height: inherit;
    min-height: 100%;
    position: absolute;
  }
  .hero__buttons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: inherit;
  }
  .hero__buttons .button {
    white-space: nowrap;
    width: auto;
  }
  .hero__buttons .button + .button {
    margin-left: 16px;
  }
  .hero--split {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .hero--split .hero__inner {
    margin-left: 40%;
    width: 60%;
  }
  .hero--split .hero__cover {
    width: 40%;
  }
  .hero--split .hero__cover,
  .hero--split .hero__image {
    position: absolute;
  }
  .hero--split .hero__image {
    height: 100%;
  }
  .hero--responsive {
    min-height: 400px;
  }
  .hero--responsive .hero__content {
    width: calc(66.6666666667% - 2rem);
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    position: relative;
  }
  .hero--responsive .hero__description {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .hero--responsive .hero__cover {
    height: inherit;
  }
  .hero--responsive .hero__buttons,
  .hero--responsive .hero__tagline {
    width: 100%;
  }
  .hero--responsive .hero__tagline {
    font-size: 1.125rem;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--split .hero__inner {
    padding-left: 32px;
    margin-left: 50%;
    width: 50%;
  }
  .hero--split .hero__cover {
    width: 50%;
  }
  .hero--split .hero__content {
    width: calc(83.3333333333% - 2rem);
  }
  .hero--responsive {
    min-height: 600px;
  }
}
@media print, screen and (min-width: 75em) {
  .hero {
    min-height: 550px;
  }
  .hero__content {
    width: calc(66.6666666667% - 2rem);
  }
  .hero--split .hero__inner {
    padding-left: 91.2px;
  }
  .hero--responsive {
    min-height: 650px;
  }
}
.treatment-cards__card {
  height: 100%;
  min-height: 220px;
  position: relative;
}
.treatment-cards__popular {
  padding: 2px 4px;
  position: absolute;
  top: -8px;
}
.confirmation {
  margin-bottom: 30px;
  font-size: 1rem;
}
.confirmation .promo-cards {
  margin-top: 60px;
}
.confirmation h1,
.confirmation .font-h1 {
  margin-bottom: 30px;
  margin-top: 60px;
}
.confirmation-content {
  border: 1px solid #e7e8e8;
  padding: 30px;
  border-radius: 5px;
}
.confirmation-content-heading {
  text-transform: uppercase;
  color: #a6a6a6;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  margin-bottom: 15px;
}
.confirmation-content-description {
  color: #a6a6a6;
}
.confirmation-content-black-bold {
  color: #0a0a0a;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.confirmation-content-bold {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.confirmation-buttons {
  margin-top: 60px;
}
.confirmation a.text-link {
  display: block;
  margin-top: 15px;
  color: #a6a6a6;
  text-transform: capitalize;
}
.confirmation a.text-link:hover,
.confirmation a.text-link:active {
  text-decoration: underline;
}
.confirmation a.text-link i {
  padding-right: 10px;
}
@media only screen and (max-width: 64em) {
  .confirmation .sidebar-left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .confirmation .sidebar-right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .confirmation .promo-cards {
    margin-top: 30px;
  }
  .confirmation h1,
  .confirmation .font-h1 {
    margin-bottom: 15px;
    margin-top: 30px;
  }
}
.sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.sidebar-nav {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.sidebar-left,
.sidebar-right {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding: 0 0.3125rem;
}
.sidebar-right {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media only screen and (min-width: 64em) {
  .sidebar-left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-preferred-size: calc(100% - 350px);
    flex-basis: calc(100% - 350px);
    padding-right: 30px;
  }
  .sidebar-right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-preferred-size: 350px;
    flex-basis: 350px;
  }
}
@media only screen and (min-width: 100em) {
  .sidebar-left {
    -ms-flex-preferred-size: calc(100% - 450px);
    flex-basis: calc(100% - 450px);
  }
  .sidebar-right {
    -ms-flex-preferred-size: 450px;
    flex-basis: 450px;
  }
}
.my-account {
  margin-bottom: 30px;
}
.my-account-content {
  position: relative;
  padding: 15px 15px 0;
}
.my-account-id {
  position: absolute;
  top: 0;
  right: 15px;
}
@media only screen and (max-width: 1040px) {
  .my-account-id {
    top: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .my-account-id {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 10px;
  }
}
.my-account #ChangePassword {
  margin-bottom: 20px;
}
@media only screen and (min-width: 64em) {
  .my-account {
    padding: 40px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .my-account-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 0;
    margin-top: 0;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 80px;
  }
}
.treatment-table {
  margin-top: 5.3125rem;
  margin-bottom: 5.3125rem;
  padding: 0 15px;
}
@media only screen and (max-width: 39.9375em) {
  .treatment-table {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
  .prepays > .bg-light-grey > .row,
  .prepays > .row {
    padding: 0 5px;
  }
  .prepays .proceed-button {
    width: 100%;
  }
}
.payment-page .payment-container {
  width: 100%;
}
.payment-page .payment-container,
.payment-page .address-container {
  margin-top: 5.3125rem;
}
@media only screen and (max-width: 64em) {
  .payment-page .payment-container,
  .payment-page .address-container {
    margin-top: 3.125rem;
  }
}
@media only screen and (min-width: 96em) {
  .payment-page .payment-container {
    width: 66%;
  }
}
@media only screen and (max-width: 39.9375em) {
  .payment-page .payment-container,
  .payment-page .address-container {
    margin-top: 1.875rem;
  }
}
.skin-booking-form input[name="skinTone"] {
  display: none;
}
.skin-booking-form .skin-tone {
  margin: 0 10px;
}
.skin-booking-form .skin-tone .columns {
  margin-bottom: 0;
}
.skin-booking-form .prerequisite-link {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  cursor: pointer;
  text-decoration: underline;
}
.skin-tone-modal-row {
  margin-bottom: 10px;
}
.skin-tone-modal-heading {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.skin-tone-modal-prerequisite-guide-text {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  text-align: center;
}
@media print, screen and (max-width: 875px) {
  .skin-booking-form .skin-tone .columns {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .skin-booking-form .checkbox-field .checkbox-label {
    margin: 0 15px 0 0;
  }
  .skin-booking-form .checkbox-field .checkbox-error {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .booking .next-button {
    width: 100%;
    max-width: 100%;
  }
}
.addons {
  position: relative;
}
.addons-info {
  position: relative;
}
.addons-info::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 150%;
  border-top: 10px solid #191816;
  border-right: 10px solid #191816;
}
.addons-table {
  margin-top: 5.3125rem;
  margin-bottom: 1.875rem;
}
.addons-button {
  font-size: 14px;
  font-weight: 700;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.addons-button:hover {
  cursor: pointer;
}
.addons-button .more {
  display: inline;
}
.addons-button .less {
  display: none;
}
.addons-button.hover .more {
  display: none;
}
.addons-button.hover .less {
  display: inline;
}
.addons-button.hover i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.addons-dropdown {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: initial;
  top: 0 !important;
  left: 0 !important;
}
@media only screen and (max-width: 39.9375em) {
  .addons-table {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
  .prepays > .row,
  .prepays > .bg-skin-1 > .row {
    padding: 0 5px;
  }
  .prepays .proceed-button {
    width: 100%;
  }
}
.c-promo {
  color: #ed6e52;
}
.c-black {
  color: #191816;
}
.c-white {
  color: #fff;
}
.c-grey-40 {
  color: #67625b;
}
.c-skin-1 {
  color: #fff5f0;
}
.c-skin-2 {
  color: #ffebdc;
}
.c-skin-3 {
  color: #d1c7c7;
}
.c-skin-4 {
  color: #ddc6af;
}
.c-skin-5 {
  color: #ddbfaf;
}
.c-skin-12 {
  color: #82635b;
}
.bg-skin-1 {
  background-color: #fff5f0;
}
.bg-skin-2 {
  background-color: #ffebdc;
}
.bg-skin-3 {
  background-color: #d1c7c7;
}
.bg-skin-4 {
  background-color: #ddc6af;
}
.bg-skin-10 {
  background-color: #b58362;
}
.bg-promo {
  background-color: #ed6e52;
}
.bg-grey-10 {
  background-color: #191816;
}
.bg-grey-80 {
  background-color: #ddd9d2;
}
.bg-grey-91 {
  background-color: #e7e8e8;
}
.bg-black {
  background-color: #191816;
}
.bg-gold {
  background-color: #d0b361;
}
.bg-white {
  background-color: #fff;
}
.bg-current {
  background-color: currentColor;
}
.bg-lhr-3 {
  background-color: #ffe8c2;
}
.bg-sk-3 {
  background-color: #d0f0ea;
}
.bg-cs-3 {
  background-color: #c0c8ec;
}
.bg-inject-3 {
  background-color: #ffd6e0;
}
.u-fill-promo {
  fill: #ed6e52;
}
.u-fill-white {
  fill: #fff;
}
.link {
  position: relative;
  display: inline-block;
  padding-right: 15px;
}
.link:after {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-family: FontAwesome;
  font-size: 1.25rem;
  content: "\f107";
}
@font-face {
  font-display: swap;
  font-family: "Reckless Neue";
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/RecklessNeue-Regular-64c7f94256.woff2")
      format("woff2"),
    url("../assets/fonts/RecklessNeue-Regular-ce4b51720f.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Reckless Neue";
  font-style: italic;
  font-weight: normal;
  src: url("../assets/fonts/RecklessNeue-RegularItalic-04eb6eb16b.woff2")
      format("woff2"),
    url("../assets/fonts/RecklessNeue-RegularItalic-251497191e.woff")
      format("woff");
}
body,
.f-default {
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1.4;
}
.f-kronos {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 48px;
  font-weight: normal;
  line-height: 1.1;
}
h1,
.font-h1,
.f-baham {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 32px;
  font-weight: normal;
  line-height: 1.3;
}
h2,
.font-h2,
.f-omega {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.4;
}
.accordion--plus .accordion-title,
h3,
.font-h3,
h4,
.font-h4,
h5,
.font-h5,
.f-tali {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4;
}
h6,
.font-h6,
.f-meni {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
}
.f-benno {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
}
.f-dani {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 12px;
  font-weight: normal;
}
.f-venta {
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 18px;
}
.f-hadir {
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
}
.f-mera {
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: normal;
}
.f-vega {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4;
}
.f-legal,
.f-thuban {
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-weight: normal;
}
@media screen and (min-width: 40em) {
  body,
  .f-default {
    font-size: 16px;
  }
}
@media screen and (min-width: 64em) {
  body,
  .f-default {
    font-size: 18px;
  }
  .f-kronos {
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1px;
  }
  h1,
  .font-h1,
  .f-baham {
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1px;
  }
  h2,
  .font-h2,
  .f-omega {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -1px;
  }
  .accordion--plus .accordion-title,
  h3,
  .font-h3,
  h4,
  .font-h4,
  h5,
  .font-h5,
  .f-tali {
    font-size: 24px;
  }
  h6,
  .font-h6,
  .f-meni {
    font-size: 18px;
  }
}
@media screen and (min-width: 75em) {
  .f-kronos {
    font-size: 72px;
  }
}
.f-bold {
  font-weight: 600;
}
.f-italic {
  font-style: italic;
}
.f-underline {
  text-decoration: underline;
}
.f-upper {
  text-transform: uppercase;
}
.f-inherit {
  font: inherit;
}
.u-clearfix::before,
.u-clearfix::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.u-clearfix::after {
  clear: both;
}
.u-float-left {
  float: left;
}
.u-float-right {
  float: right;
}
.u-text-center {
  text-align: center;
}
.u-text-left {
  text-align: left;
}
.u-text-right {
  text-align: right;
}
.u-auto-width {
  width: auto;
}
.u-half-width {
  width: 50%;
}
.u-full-width {
  width: 100%;
}
.u-width-1-3 {
  width: calc(100% * 1 / 3);
}
.u-width-2-3 {
  width: calc(100% * 2 / 3);
}
.u-width-3-3 {
  width: 100%;
}
.u-full-height {
  height: 100%;
}
.u-full-vh {
  height: 100vh;
}
.u-min-vh {
  min-height: 100vh;
}
.u-max-200 {
  max-height: 200px;
}
.u-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.u-self-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.u-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.u-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.u-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.u-border-b {
  border-bottom: 1px solid currentColor;
}
.u-border-b-2 {
  border-bottom: 2px solid currentColor;
}
.u-underline {
  text-decoration: underline;
}
.u-overflow-auto {
  overflow: auto;
}
.u-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.u-mt-auto {
  margin-top: auto;
}
@media print, screen and (min-width: 40em) {
  .u-md-text-center {
    text-align: center;
  }
  .u-md-margin-top5 {
    margin-top: 5px;
  }
}
.c-promo {
  color: #ed6e52;
}
.c-white {
  color: #fff;
}
.u-block {
  display: block;
}
.u-inline-block {
  display: inline-block;
}
.u-inline {
  display: inline;
}
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.u-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.u-flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.u-flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.u-flex-no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.u-shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.u-grow-1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.u-relative {
  position: relative;
}
.u-absolute {
  position: absolute;
}
.m-0 {
  margin: 0px;
}
.p-0 {
  padding: 0px;
}
.m-1 {
  margin: 8px;
}
.p-1 {
  padding: 8px;
}
.m-2 {
  margin: 16px;
}
.p-2 {
  padding: 16px;
}
.m-3 {
  margin: 24px;
}
.p-3 {
  padding: 24px;
}
.m-4 {
  margin: 32px;
}
.p-4 {
  padding: 32px;
}
.m-5 {
  margin: 40px;
}
.p-5 {
  padding: 40px;
}
.m-6 {
  margin: 48px;
}
.p-6 {
  padding: 48px;
}
.m-8 {
  margin: 64px;
}
.p-8 {
  padding: 64px;
}
.m-10 {
  margin: 80px;
}
.p-10 {
  padding: 80px;
}
.mt-0 {
  margin-top: 0px;
}
.pt-0 {
  padding-top: 0px;
}
.mt-1 {
  margin-top: 8px;
}
.pt-1 {
  padding-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.pt-2 {
  padding-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.pt-3 {
  padding-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.pt-4 {
  padding-top: 32px;
}
.mt-5 {
  margin-top: 40px;
}
.pt-5 {
  padding-top: 40px;
}
.mt-6 {
  margin-top: 48px;
}
.pt-6 {
  padding-top: 48px;
}
.mt-8 {
  margin-top: 64px;
}
.pt-8 {
  padding-top: 64px;
}
.mt-10 {
  margin-top: 80px;
}
.pt-10 {
  padding-top: 80px;
}
.mb-0 {
  margin-bottom: 0px;
}
.pb-0 {
  padding-bottom: 0px;
}
.mb-1 {
  margin-bottom: 8px;
}
.pb-1 {
  padding-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.pb-2 {
  padding-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.pb-3 {
  padding-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}
.pb-4 {
  padding-bottom: 32px;
}
.mb-5 {
  margin-bottom: 40px;
}
.pb-5 {
  padding-bottom: 40px;
}
.mb-6 {
  margin-bottom: 48px;
}
.pb-6 {
  padding-bottom: 48px;
}
.mb-8 {
  margin-bottom: 64px;
}
.pb-8 {
  padding-bottom: 64px;
}
.mb-10 {
  margin-bottom: 80px;
}
.pb-10 {
  padding-bottom: 80px;
}
.ml-0 {
  margin-left: 0px;
}
.pl-0 {
  padding-left: 0px;
}
.ml-1 {
  margin-left: 8px;
}
.pl-1 {
  padding-left: 8px;
}
.ml-2 {
  margin-left: 16px;
}
.pl-2 {
  padding-left: 16px;
}
.ml-3 {
  margin-left: 24px;
}
.pl-3 {
  padding-left: 24px;
}
.ml-4 {
  margin-left: 32px;
}
.pl-4 {
  padding-left: 32px;
}
.ml-5 {
  margin-left: 40px;
}
.pl-5 {
  padding-left: 40px;
}
.ml-6 {
  margin-left: 48px;
}
.pl-6 {
  padding-left: 48px;
}
.ml-8 {
  margin-left: 64px;
}
.pl-8 {
  padding-left: 64px;
}
.ml-10 {
  margin-left: 80px;
}
.pl-10 {
  padding-left: 80px;
}
.mr-0 {
  margin-right: 0px;
}
.pr-0 {
  padding-right: 0px;
}
.mr-1 {
  margin-right: 8px;
}
.pr-1 {
  padding-right: 8px;
}
.mr-2 {
  margin-right: 16px;
}
.pr-2 {
  padding-right: 16px;
}
.mr-3 {
  margin-right: 24px;
}
.pr-3 {
  padding-right: 24px;
}
.mr-4 {
  margin-right: 32px;
}
.pr-4 {
  padding-right: 32px;
}
.mr-5 {
  margin-right: 40px;
}
.pr-5 {
  padding-right: 40px;
}
.mr-6 {
  margin-right: 48px;
}
.pr-6 {
  padding-right: 48px;
}
.mr-8 {
  margin-right: 64px;
}
.pr-8 {
  padding-right: 64px;
}
.mr-10 {
  margin-right: 80px;
}
.pr-10 {
  padding-right: 80px;
}
.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.mx-1 {
  margin-left: 8px;
  margin-right: 8px;
}
.px-1 {
  padding-left: 8px;
  padding-right: 8px;
}
.mx-2 {
  margin-left: 16px;
  margin-right: 16px;
}
.px-2 {
  padding-left: 16px;
  padding-right: 16px;
}
.mx-3 {
  margin-left: 24px;
  margin-right: 24px;
}
.px-3 {
  padding-left: 24px;
  padding-right: 24px;
}
.mx-4 {
  margin-left: 32px;
  margin-right: 32px;
}
.px-4 {
  padding-left: 32px;
  padding-right: 32px;
}
.mx-5 {
  margin-left: 40px;
  margin-right: 40px;
}
.px-5 {
  padding-left: 40px;
  padding-right: 40px;
}
.mx-6 {
  margin-left: 48px;
  margin-right: 48px;
}
.px-6 {
  padding-left: 48px;
  padding-right: 48px;
}
.mx-8 {
  margin-left: 64px;
  margin-right: 64px;
}
.px-8 {
  padding-left: 64px;
  padding-right: 64px;
}
.mx-10 {
  margin-left: 80px;
  margin-right: 80px;
}
.px-10 {
  padding-left: 80px;
  padding-right: 80px;
}
.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.my-1 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.py-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.my-2 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.py-2 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.my-3 {
  margin-top: 24px;
  margin-bottom: 24px;
}
.py-3 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.my-4 {
  margin-top: 32px;
  margin-bottom: 32px;
}
.py-4 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.my-5 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.py-5 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.my-6 {
  margin-top: 48px;
  margin-bottom: 48px;
}
.py-6 {
  padding-top: 48px;
  padding-bottom: 48px;
}
.my-8 {
  margin-top: 64px;
  margin-bottom: 64px;
}
.py-8 {
  padding-top: 64px;
  padding-bottom: 64px;
}
.my-10 {
  margin-top: 80px;
  margin-bottom: 80px;
}
.py-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 40em) {
  .m-md-0 {
    margin: 0px;
  }
  .p-md-0 {
    padding: 0px;
  }
}
@media (min-width: 40em) {
  .m-md-1 {
    margin: 8px;
  }
  .p-md-1 {
    padding: 8px;
  }
}
@media (min-width: 40em) {
  .m-md-2 {
    margin: 16px;
  }
  .p-md-2 {
    padding: 16px;
  }
}
@media (min-width: 40em) {
  .m-md-3 {
    margin: 24px;
  }
  .p-md-3 {
    padding: 24px;
  }
}
@media (min-width: 40em) {
  .m-md-4 {
    margin: 32px;
  }
  .p-md-4 {
    padding: 32px;
  }
}
@media (min-width: 40em) {
  .m-md-5 {
    margin: 40px;
  }
  .p-md-5 {
    padding: 40px;
  }
}
@media (min-width: 40em) {
  .m-md-6 {
    margin: 48px;
  }
  .p-md-6 {
    padding: 48px;
  }
}
@media (min-width: 40em) {
  .m-md-8 {
    margin: 64px;
  }
  .p-md-8 {
    padding: 64px;
  }
}
@media (min-width: 40em) {
  .m-md-10 {
    margin: 80px;
  }
  .p-md-10 {
    padding: 80px;
  }
}
@media (min-width: 40em) {
  .mt-md-0 {
    margin-top: 0px;
  }
  .pt-md-0 {
    padding-top: 0px;
  }
}
@media (min-width: 40em) {
  .mt-md-1 {
    margin-top: 8px;
  }
  .pt-md-1 {
    padding-top: 8px;
  }
}
@media (min-width: 40em) {
  .mt-md-2 {
    margin-top: 16px;
  }
  .pt-md-2 {
    padding-top: 16px;
  }
}
@media (min-width: 40em) {
  .mt-md-3 {
    margin-top: 24px;
  }
  .pt-md-3 {
    padding-top: 24px;
  }
}
@media (min-width: 40em) {
  .mt-md-4 {
    margin-top: 32px;
  }
  .pt-md-4 {
    padding-top: 32px;
  }
}
@media (min-width: 40em) {
  .mt-md-5 {
    margin-top: 40px;
  }
  .pt-md-5 {
    padding-top: 40px;
  }
}
@media (min-width: 40em) {
  .mt-md-6 {
    margin-top: 48px;
  }
  .pt-md-6 {
    padding-top: 48px;
  }
}
@media (min-width: 40em) {
  .mt-md-8 {
    margin-top: 64px;
  }
  .pt-md-8 {
    padding-top: 64px;
  }
}
@media (min-width: 40em) {
  .mt-md-10 {
    margin-top: 80px;
  }
  .pt-md-10 {
    padding-top: 80px;
  }
}
@media (min-width: 40em) {
  .mb-md-0 {
    margin-bottom: 0px;
  }
  .pb-md-0 {
    padding-bottom: 0px;
  }
}
@media (min-width: 40em) {
  .mb-md-1 {
    margin-bottom: 8px;
  }
  .pb-md-1 {
    padding-bottom: 8px;
  }
}
@media (min-width: 40em) {
  .mb-md-2 {
    margin-bottom: 16px;
  }
  .pb-md-2 {
    padding-bottom: 16px;
  }
}
@media (min-width: 40em) {
  .mb-md-3 {
    margin-bottom: 24px;
  }
  .pb-md-3 {
    padding-bottom: 24px;
  }
}
@media (min-width: 40em) {
  .mb-md-4 {
    margin-bottom: 32px;
  }
  .pb-md-4 {
    padding-bottom: 32px;
  }
}
@media (min-width: 40em) {
  .mb-md-5 {
    margin-bottom: 40px;
  }
  .pb-md-5 {
    padding-bottom: 40px;
  }
}
@media (min-width: 40em) {
  .mb-md-6 {
    margin-bottom: 48px;
  }
  .pb-md-6 {
    padding-bottom: 48px;
  }
}
@media (min-width: 40em) {
  .mb-md-8 {
    margin-bottom: 64px;
  }
  .pb-md-8 {
    padding-bottom: 64px;
  }
}
@media (min-width: 40em) {
  .mb-md-10 {
    margin-bottom: 80px;
  }
  .pb-md-10 {
    padding-bottom: 80px;
  }
}
@media (min-width: 40em) {
  .ml-md-0 {
    margin-left: 0px;
  }
  .pl-md-0 {
    padding-left: 0px;
  }
}
@media (min-width: 40em) {
  .ml-md-1 {
    margin-left: 8px;
  }
  .pl-md-1 {
    padding-left: 8px;
  }
}
@media (min-width: 40em) {
  .ml-md-2 {
    margin-left: 16px;
  }
  .pl-md-2 {
    padding-left: 16px;
  }
}
@media (min-width: 40em) {
  .ml-md-3 {
    margin-left: 24px;
  }
  .pl-md-3 {
    padding-left: 24px;
  }
}
@media (min-width: 40em) {
  .ml-md-4 {
    margin-left: 32px;
  }
  .pl-md-4 {
    padding-left: 32px;
  }
}
@media (min-width: 40em) {
  .ml-md-5 {
    margin-left: 40px;
  }
  .pl-md-5 {
    padding-left: 40px;
  }
}
@media (min-width: 40em) {
  .ml-md-6 {
    margin-left: 48px;
  }
  .pl-md-6 {
    padding-left: 48px;
  }
}
@media (min-width: 40em) {
  .ml-md-8 {
    margin-left: 64px;
  }
  .pl-md-8 {
    padding-left: 64px;
  }
}
@media (min-width: 40em) {
  .ml-md-10 {
    margin-left: 80px;
  }
  .pl-md-10 {
    padding-left: 80px;
  }
}
@media (min-width: 40em) {
  .mr-md-0 {
    margin-right: 0px;
  }
  .pr-md-0 {
    padding-right: 0px;
  }
}
@media (min-width: 40em) {
  .mr-md-1 {
    margin-right: 8px;
  }
  .pr-md-1 {
    padding-right: 8px;
  }
}
@media (min-width: 40em) {
  .mr-md-2 {
    margin-right: 16px;
  }
  .pr-md-2 {
    padding-right: 16px;
  }
}
@media (min-width: 40em) {
  .mr-md-3 {
    margin-right: 24px;
  }
  .pr-md-3 {
    padding-right: 24px;
  }
}
@media (min-width: 40em) {
  .mr-md-4 {
    margin-right: 32px;
  }
  .pr-md-4 {
    padding-right: 32px;
  }
}
@media (min-width: 40em) {
  .mr-md-5 {
    margin-right: 40px;
  }
  .pr-md-5 {
    padding-right: 40px;
  }
}
@media (min-width: 40em) {
  .mr-md-6 {
    margin-right: 48px;
  }
  .pr-md-6 {
    padding-right: 48px;
  }
}
@media (min-width: 40em) {
  .mr-md-8 {
    margin-right: 64px;
  }
  .pr-md-8 {
    padding-right: 64px;
  }
}
@media (min-width: 40em) {
  .mr-md-10 {
    margin-right: 80px;
  }
  .pr-md-10 {
    padding-right: 80px;
  }
}
@media (min-width: 40em) {
  .mx-md-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .px-md-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 40em) {
  .mx-md-1 {
    margin-left: 8px;
    margin-right: 8px;
  }
  .px-md-1 {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (min-width: 40em) {
  .mx-md-2 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .px-md-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 40em) {
  .mx-md-3 {
    margin-left: 24px;
    margin-right: 24px;
  }
  .px-md-3 {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 40em) {
  .mx-md-4 {
    margin-left: 32px;
    margin-right: 32px;
  }
  .px-md-4 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 40em) {
  .mx-md-5 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .px-md-5 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 40em) {
  .mx-md-6 {
    margin-left: 48px;
    margin-right: 48px;
  }
  .px-md-6 {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 40em) {
  .mx-md-8 {
    margin-left: 64px;
    margin-right: 64px;
  }
  .px-md-8 {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 40em) {
  .mx-md-10 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .px-md-10 {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 40em) {
  .my-md-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .py-md-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 40em) {
  .my-md-1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .py-md-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (min-width: 40em) {
  .my-md-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .py-md-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 40em) {
  .my-md-3 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .py-md-3 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 40em) {
  .my-md-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .py-md-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 40em) {
  .my-md-5 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .py-md-5 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 40em) {
  .my-md-6 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .py-md-6 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 40em) {
  .my-md-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .py-md-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (min-width: 40em) {
  .my-md-10 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .py-md-10 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 64em) {
  .m-lg-0 {
    margin: 0px;
  }
  .p-lg-0 {
    padding: 0px;
  }
}
@media (min-width: 64em) {
  .m-lg-1 {
    margin: 8px;
  }
  .p-lg-1 {
    padding: 8px;
  }
}
@media (min-width: 64em) {
  .m-lg-2 {
    margin: 16px;
  }
  .p-lg-2 {
    padding: 16px;
  }
}
@media (min-width: 64em) {
  .m-lg-3 {
    margin: 24px;
  }
  .p-lg-3 {
    padding: 24px;
  }
}
@media (min-width: 64em) {
  .m-lg-4 {
    margin: 32px;
  }
  .p-lg-4 {
    padding: 32px;
  }
}
@media (min-width: 64em) {
  .m-lg-5 {
    margin: 40px;
  }
  .p-lg-5 {
    padding: 40px;
  }
}
@media (min-width: 64em) {
  .m-lg-6 {
    margin: 48px;
  }
  .p-lg-6 {
    padding: 48px;
  }
}
@media (min-width: 64em) {
  .m-lg-8 {
    margin: 64px;
  }
  .p-lg-8 {
    padding: 64px;
  }
}
@media (min-width: 64em) {
  .m-lg-10 {
    margin: 80px;
  }
  .p-lg-10 {
    padding: 80px;
  }
}
@media (min-width: 64em) {
  .mt-lg-0 {
    margin-top: 0px;
  }
  .pt-lg-0 {
    padding-top: 0px;
  }
}
@media (min-width: 64em) {
  .mt-lg-1 {
    margin-top: 8px;
  }
  .pt-lg-1 {
    padding-top: 8px;
  }
}
@media (min-width: 64em) {
  .mt-lg-2 {
    margin-top: 16px;
  }
  .pt-lg-2 {
    padding-top: 16px;
  }
}
@media (min-width: 64em) {
  .mt-lg-3 {
    margin-top: 24px;
  }
  .pt-lg-3 {
    padding-top: 24px;
  }
}
@media (min-width: 64em) {
  .mt-lg-4 {
    margin-top: 32px;
  }
  .pt-lg-4 {
    padding-top: 32px;
  }
}
@media (min-width: 64em) {
  .mt-lg-5 {
    margin-top: 40px;
  }
  .pt-lg-5 {
    padding-top: 40px;
  }
}
@media (min-width: 64em) {
  .mt-lg-6 {
    margin-top: 48px;
  }
  .pt-lg-6 {
    padding-top: 48px;
  }
}
@media (min-width: 64em) {
  .mt-lg-8 {
    margin-top: 64px;
  }
  .pt-lg-8 {
    padding-top: 64px;
  }
}
@media (min-width: 64em) {
  .mt-lg-10 {
    margin-top: 80px;
  }
  .pt-lg-10 {
    padding-top: 80px;
  }
}
@media (min-width: 64em) {
  .mb-lg-0 {
    margin-bottom: 0px;
  }
  .pb-lg-0 {
    padding-bottom: 0px;
  }
}
@media (min-width: 64em) {
  .mb-lg-1 {
    margin-bottom: 8px;
  }
  .pb-lg-1 {
    padding-bottom: 8px;
  }
}
@media (min-width: 64em) {
  .mb-lg-2 {
    margin-bottom: 16px;
  }
  .pb-lg-2 {
    padding-bottom: 16px;
  }
}
@media (min-width: 64em) {
  .mb-lg-3 {
    margin-bottom: 24px;
  }
  .pb-lg-3 {
    padding-bottom: 24px;
  }
}
@media (min-width: 64em) {
  .mb-lg-4 {
    margin-bottom: 32px;
  }
  .pb-lg-4 {
    padding-bottom: 32px;
  }
}
@media (min-width: 64em) {
  .mb-lg-5 {
    margin-bottom: 40px;
  }
  .pb-lg-5 {
    padding-bottom: 40px;
  }
}
@media (min-width: 64em) {
  .mb-lg-6 {
    margin-bottom: 48px;
  }
  .pb-lg-6 {
    padding-bottom: 48px;
  }
}
@media (min-width: 64em) {
  .mb-lg-8 {
    margin-bottom: 64px;
  }
  .pb-lg-8 {
    padding-bottom: 64px;
  }
}
@media (min-width: 64em) {
  .mb-lg-10 {
    margin-bottom: 80px;
  }
  .pb-lg-10 {
    padding-bottom: 80px;
  }
}
@media (min-width: 64em) {
  .ml-lg-0 {
    margin-left: 0px;
  }
  .pl-lg-0 {
    padding-left: 0px;
  }
}
@media (min-width: 64em) {
  .ml-lg-1 {
    margin-left: 8px;
  }
  .pl-lg-1 {
    padding-left: 8px;
  }
}
@media (min-width: 64em) {
  .ml-lg-2 {
    margin-left: 16px;
  }
  .pl-lg-2 {
    padding-left: 16px;
  }
}
@media (min-width: 64em) {
  .ml-lg-3 {
    margin-left: 24px;
  }
  .pl-lg-3 {
    padding-left: 24px;
  }
}
@media (min-width: 64em) {
  .ml-lg-4 {
    margin-left: 32px;
  }
  .pl-lg-4 {
    padding-left: 32px;
  }
}
@media (min-width: 64em) {
  .ml-lg-5 {
    margin-left: 40px;
  }
  .pl-lg-5 {
    padding-left: 40px;
  }
}
@media (min-width: 64em) {
  .ml-lg-6 {
    margin-left: 48px;
  }
  .pl-lg-6 {
    padding-left: 48px;
  }
}
@media (min-width: 64em) {
  .ml-lg-8 {
    margin-left: 64px;
  }
  .pl-lg-8 {
    padding-left: 64px;
  }
}
@media (min-width: 64em) {
  .ml-lg-10 {
    margin-left: 80px;
  }
  .pl-lg-10 {
    padding-left: 80px;
  }
}
@media (min-width: 64em) {
  .mr-lg-0 {
    margin-right: 0px;
  }
  .pr-lg-0 {
    padding-right: 0px;
  }
}
@media (min-width: 64em) {
  .mr-lg-1 {
    margin-right: 8px;
  }
  .pr-lg-1 {
    padding-right: 8px;
  }
}
@media (min-width: 64em) {
  .mr-lg-2 {
    margin-right: 16px;
  }
  .pr-lg-2 {
    padding-right: 16px;
  }
}
@media (min-width: 64em) {
  .mr-lg-3 {
    margin-right: 24px;
  }
  .pr-lg-3 {
    padding-right: 24px;
  }
}
@media (min-width: 64em) {
  .mr-lg-4 {
    margin-right: 32px;
  }
  .pr-lg-4 {
    padding-right: 32px;
  }
}
@media (min-width: 64em) {
  .mr-lg-5 {
    margin-right: 40px;
  }
  .pr-lg-5 {
    padding-right: 40px;
  }
}
@media (min-width: 64em) {
  .mr-lg-6 {
    margin-right: 48px;
  }
  .pr-lg-6 {
    padding-right: 48px;
  }
}
@media (min-width: 64em) {
  .mr-lg-8 {
    margin-right: 64px;
  }
  .pr-lg-8 {
    padding-right: 64px;
  }
}
@media (min-width: 64em) {
  .mr-lg-10 {
    margin-right: 80px;
  }
  .pr-lg-10 {
    padding-right: 80px;
  }
}
@media (min-width: 64em) {
  .mx-lg-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .px-lg-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 64em) {
  .mx-lg-1 {
    margin-left: 8px;
    margin-right: 8px;
  }
  .px-lg-1 {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (min-width: 64em) {
  .mx-lg-2 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .px-lg-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 64em) {
  .mx-lg-3 {
    margin-left: 24px;
    margin-right: 24px;
  }
  .px-lg-3 {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 64em) {
  .mx-lg-4 {
    margin-left: 32px;
    margin-right: 32px;
  }
  .px-lg-4 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 64em) {
  .mx-lg-5 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .px-lg-5 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 64em) {
  .mx-lg-6 {
    margin-left: 48px;
    margin-right: 48px;
  }
  .px-lg-6 {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 64em) {
  .mx-lg-8 {
    margin-left: 64px;
    margin-right: 64px;
  }
  .px-lg-8 {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 64em) {
  .mx-lg-10 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .px-lg-10 {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 64em) {
  .my-lg-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .py-lg-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 64em) {
  .my-lg-1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .py-lg-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (min-width: 64em) {
  .my-lg-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .py-lg-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 64em) {
  .my-lg-3 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .py-lg-3 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 64em) {
  .my-lg-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .py-lg-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 64em) {
  .my-lg-5 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .py-lg-5 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 64em) {
  .my-lg-6 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .py-lg-6 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 64em) {
  .my-lg-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .py-lg-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (min-width: 64em) {
  .my-lg-10 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .py-lg-10 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 75em) {
  .m-xl-0 {
    margin: 0px;
  }
  .p-xl-0 {
    padding: 0px;
  }
}
@media (min-width: 75em) {
  .m-xl-1 {
    margin: 8px;
  }
  .p-xl-1 {
    padding: 8px;
  }
}
@media (min-width: 75em) {
  .m-xl-2 {
    margin: 16px;
  }
  .p-xl-2 {
    padding: 16px;
  }
}
@media (min-width: 75em) {
  .m-xl-3 {
    margin: 24px;
  }
  .p-xl-3 {
    padding: 24px;
  }
}
@media (min-width: 75em) {
  .m-xl-4 {
    margin: 32px;
  }
  .p-xl-4 {
    padding: 32px;
  }
}
@media (min-width: 75em) {
  .m-xl-5 {
    margin: 40px;
  }
  .p-xl-5 {
    padding: 40px;
  }
}
@media (min-width: 75em) {
  .m-xl-6 {
    margin: 48px;
  }
  .p-xl-6 {
    padding: 48px;
  }
}
@media (min-width: 75em) {
  .m-xl-8 {
    margin: 64px;
  }
  .p-xl-8 {
    padding: 64px;
  }
}
@media (min-width: 75em) {
  .m-xl-10 {
    margin: 80px;
  }
  .p-xl-10 {
    padding: 80px;
  }
}
@media (min-width: 75em) {
  .mt-xl-0 {
    margin-top: 0px;
  }
  .pt-xl-0 {
    padding-top: 0px;
  }
}
@media (min-width: 75em) {
  .mt-xl-1 {
    margin-top: 8px;
  }
  .pt-xl-1 {
    padding-top: 8px;
  }
}
@media (min-width: 75em) {
  .mt-xl-2 {
    margin-top: 16px;
  }
  .pt-xl-2 {
    padding-top: 16px;
  }
}
@media (min-width: 75em) {
  .mt-xl-3 {
    margin-top: 24px;
  }
  .pt-xl-3 {
    padding-top: 24px;
  }
}
@media (min-width: 75em) {
  .mt-xl-4 {
    margin-top: 32px;
  }
  .pt-xl-4 {
    padding-top: 32px;
  }
}
@media (min-width: 75em) {
  .mt-xl-5 {
    margin-top: 40px;
  }
  .pt-xl-5 {
    padding-top: 40px;
  }
}
@media (min-width: 75em) {
  .mt-xl-6 {
    margin-top: 48px;
  }
  .pt-xl-6 {
    padding-top: 48px;
  }
}
@media (min-width: 75em) {
  .mt-xl-8 {
    margin-top: 64px;
  }
  .pt-xl-8 {
    padding-top: 64px;
  }
}
@media (min-width: 75em) {
  .mt-xl-10 {
    margin-top: 80px;
  }
  .pt-xl-10 {
    padding-top: 80px;
  }
}
@media (min-width: 75em) {
  .mb-xl-0 {
    margin-bottom: 0px;
  }
  .pb-xl-0 {
    padding-bottom: 0px;
  }
}
@media (min-width: 75em) {
  .mb-xl-1 {
    margin-bottom: 8px;
  }
  .pb-xl-1 {
    padding-bottom: 8px;
  }
}
@media (min-width: 75em) {
  .mb-xl-2 {
    margin-bottom: 16px;
  }
  .pb-xl-2 {
    padding-bottom: 16px;
  }
}
@media (min-width: 75em) {
  .mb-xl-3 {
    margin-bottom: 24px;
  }
  .pb-xl-3 {
    padding-bottom: 24px;
  }
}
@media (min-width: 75em) {
  .mb-xl-4 {
    margin-bottom: 32px;
  }
  .pb-xl-4 {
    padding-bottom: 32px;
  }
}
@media (min-width: 75em) {
  .mb-xl-5 {
    margin-bottom: 40px;
  }
  .pb-xl-5 {
    padding-bottom: 40px;
  }
}
@media (min-width: 75em) {
  .mb-xl-6 {
    margin-bottom: 48px;
  }
  .pb-xl-6 {
    padding-bottom: 48px;
  }
}
@media (min-width: 75em) {
  .mb-xl-8 {
    margin-bottom: 64px;
  }
  .pb-xl-8 {
    padding-bottom: 64px;
  }
}
@media (min-width: 75em) {
  .mb-xl-10 {
    margin-bottom: 80px;
  }
  .pb-xl-10 {
    padding-bottom: 80px;
  }
}
@media (min-width: 75em) {
  .ml-xl-0 {
    margin-left: 0px;
  }
  .pl-xl-0 {
    padding-left: 0px;
  }
}
@media (min-width: 75em) {
  .ml-xl-1 {
    margin-left: 8px;
  }
  .pl-xl-1 {
    padding-left: 8px;
  }
}
@media (min-width: 75em) {
  .ml-xl-2 {
    margin-left: 16px;
  }
  .pl-xl-2 {
    padding-left: 16px;
  }
}
@media (min-width: 75em) {
  .ml-xl-3 {
    margin-left: 24px;
  }
  .pl-xl-3 {
    padding-left: 24px;
  }
}
@media (min-width: 75em) {
  .ml-xl-4 {
    margin-left: 32px;
  }
  .pl-xl-4 {
    padding-left: 32px;
  }
}
@media (min-width: 75em) {
  .ml-xl-5 {
    margin-left: 40px;
  }
  .pl-xl-5 {
    padding-left: 40px;
  }
}
@media (min-width: 75em) {
  .ml-xl-6 {
    margin-left: 48px;
  }
  .pl-xl-6 {
    padding-left: 48px;
  }
}
@media (min-width: 75em) {
  .ml-xl-8 {
    margin-left: 64px;
  }
  .pl-xl-8 {
    padding-left: 64px;
  }
}
@media (min-width: 75em) {
  .ml-xl-10 {
    margin-left: 80px;
  }
  .pl-xl-10 {
    padding-left: 80px;
  }
}
@media (min-width: 75em) {
  .mr-xl-0 {
    margin-right: 0px;
  }
  .pr-xl-0 {
    padding-right: 0px;
  }
}
@media (min-width: 75em) {
  .mr-xl-1 {
    margin-right: 8px;
  }
  .pr-xl-1 {
    padding-right: 8px;
  }
}
@media (min-width: 75em) {
  .mr-xl-2 {
    margin-right: 16px;
  }
  .pr-xl-2 {
    padding-right: 16px;
  }
}
@media (min-width: 75em) {
  .mr-xl-3 {
    margin-right: 24px;
  }
  .pr-xl-3 {
    padding-right: 24px;
  }
}
@media (min-width: 75em) {
  .mr-xl-4 {
    margin-right: 32px;
  }
  .pr-xl-4 {
    padding-right: 32px;
  }
}
@media (min-width: 75em) {
  .mr-xl-5 {
    margin-right: 40px;
  }
  .pr-xl-5 {
    padding-right: 40px;
  }
}
@media (min-width: 75em) {
  .mr-xl-6 {
    margin-right: 48px;
  }
  .pr-xl-6 {
    padding-right: 48px;
  }
}
@media (min-width: 75em) {
  .mr-xl-8 {
    margin-right: 64px;
  }
  .pr-xl-8 {
    padding-right: 64px;
  }
}
@media (min-width: 75em) {
  .mr-xl-10 {
    margin-right: 80px;
  }
  .pr-xl-10 {
    padding-right: 80px;
  }
}
@media (min-width: 75em) {
  .mx-xl-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .px-xl-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 75em) {
  .mx-xl-1 {
    margin-left: 8px;
    margin-right: 8px;
  }
  .px-xl-1 {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (min-width: 75em) {
  .mx-xl-2 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .px-xl-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 75em) {
  .mx-xl-3 {
    margin-left: 24px;
    margin-right: 24px;
  }
  .px-xl-3 {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 75em) {
  .mx-xl-4 {
    margin-left: 32px;
    margin-right: 32px;
  }
  .px-xl-4 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 75em) {
  .mx-xl-5 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .px-xl-5 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 75em) {
  .mx-xl-6 {
    margin-left: 48px;
    margin-right: 48px;
  }
  .px-xl-6 {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 75em) {
  .mx-xl-8 {
    margin-left: 64px;
    margin-right: 64px;
  }
  .px-xl-8 {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 75em) {
  .mx-xl-10 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .px-xl-10 {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 75em) {
  .my-xl-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .py-xl-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 75em) {
  .my-xl-1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .py-xl-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (min-width: 75em) {
  .my-xl-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .py-xl-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 75em) {
  .my-xl-3 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .py-xl-3 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 75em) {
  .my-xl-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .py-xl-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 75em) {
  .my-xl-5 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .py-xl-5 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 75em) {
  .my-xl-6 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .py-xl-6 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 75em) {
  .my-xl-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .py-xl-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (min-width: 75em) {
  .my-xl-10 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .py-xl-10 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.u-reset {
  border: 0;
  margin: 0;
  padding: 0;
}
.u-flat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.u-list-none {
  list-style: none;
}
.u-lineheight-1 {
  line-height: 1;
}
.u-lineheight-1-3 {
  line-height: 1.3;
}
.u-lineheigth-2 {
  line-height: 2;
}
.u-text-align-center {
  text-align: center;
}
.u-uppercase {
  text-transform: uppercase;
}
.u-capitalize {
  text-transform: capitalize;
}
.u-bold {
  font-weight: bold;
}
@import url("../../../fast.fonts.net/t/10b53.css?apiType=css&amp;projectid=8499c928-5c98-4265-9f29-9ea9caa1ac58");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,600;1,400;1,600&amp;display=swap");
@font-face {
  font-family: "icomoon";
  src: url("../assets/fonts/icomoon-20fdc9172a.eot");
  src: url("../assets/fonts/icomoon-20fdc9172a.eot") format("embedded-opentype"),
    url("../assets/fonts/icomoon-aac6d8798e.ttf") format("truetype"),
    url("../assets/fonts/icomoon-ffab616030.woff") format("woff"),
    url("../../fonts/icomoon.html#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media print, screen and (min-width: 40em) {
  .reveal,
  .reveal.tiny,
  .reveal.small,
  .reveal.large {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
} /*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("../assets/fonts/fontawesome-webfont-674f50d2873e6e.eot?v=4.7.0");
  src: url("../assets/fonts/fontawesome-webfont-674f50d287d41d.eot?#iefix&v=4.7.0")
      format("embedded-opentype"),
    url("../assets/fonts/fontawesome-webfont-af7ae505a93e6e.woff2?v=4.7.0")
      format("woff2"),
    url("../assets/fonts/fontawesome-webfont-fee66e712a3e6e.woff?v=4.7.0")
      format("woff"),
    url("../assets/fonts/fontawesome-webfont-b06871f2813e6e.ttf?v=4.7.0")
      format("truetype"),
    url("../../fonts/fontawesome-webfont3e6e.html?v=4.7.0#fontawesomeregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-times-thin:before {
  content: "\00d7";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-user-doctor:before,
.fa-user-md:before {
  content: "\f0f0";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth
  .flatpickr-days
  .dayContainer:nth-child(n + 1)
  .flatpickr-day.inRange:nth-child(7n + 7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.flatpickr-calendar.multiMonth
  .flatpickr-days
  .dayContainer:nth-child(n + 2)
  .flatpickr-day.inRange:nth-child(7n + 1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  line-height: 16px;
  height: 28px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}
.flatpickr-months .flatpickr-prev-month.disabled,
.flatpickr-months .flatpickr-next-month.disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  left: 0;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  right: 0;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 6.16px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #000;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #000;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f3f3f3;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
.flatpickr-input[readonly].form-control {
  border-bottom-width: 0;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider:not(.slick-initialized) {
  display: none;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  width: 100%;
}
.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;
}
.slick-loading .slick-list {
  background: #fff center center no-repeat;
}
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("../../fonts/slick.html");
  src: url("../../fonts/slickd41d.html?#iefix") format("embedded-opentype"),
    url("../assets/fonts/slick-b7c9e1e479.woff") format("woff"),
    url("../../fonts/slick-2.html") format("truetype"),
    url("../../fonts/slick-3.html#slick") format("svg");
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  z-index: 11;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
  z-index: 10;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "FontAwesome";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: 3%;
}
[dir="rtl"] .slick-prev {
  right: 3%;
  left: auto;
}
.slick-prev:before {
  content: "\f104";
}
[dir="rtl"] .slick-prev:before {
  content: "\f104";
}
.slick-next {
  right: 3%;
}
[dir="rtl"] .slick-next {
  right: auto;
  left: 3%;
}
.slick-next:before {
  content: "\f105";
}
[dir="rtl"] .slick-next:before {
  content: "\f105";
}
.slick-dots {
  position: absolute;
  bottom: 15px;
  right: 7%;
  display: block;
  width: auto;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .slick-dots {
    right: 23.5%;
  }
}
@media screen and (max-width: 48.063em) {
  .slick-dots {
    width: 100%;
    right: initial;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6.5px;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 48.063em) {
  .slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0 10px;
  }
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.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 {
  font-family: "slick";
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  border: 5px solid #fefefe;
  text-align: center;
  opacity: 0.6;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 48.063em) {
  .slick-dots li button:before {
    width: 16px;
    height: 16px;
    border: 8px solid #fefefe;
  }
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: black;
}
.slick-dots.black li button:before {
  border: 5px solid #0a0a0a;
}
@media screen and (max-width: 48.063em) {
  .slick-dots.black li button:before {
    border: 8px solid #0a0a0a;
  }
}
.slick-arrow {
  position: absolute;
  z-index: 5;
  top: 42%;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 22px;
  cursor: pointer;
}
.slide-next {
  right: -12%;
}
.slide-prev {
  left: -12%;
}
@media screen and (max-width: 639px) {
  .slick-arrow {
    padding: 5px 10px;
    top: 30%;
  }
}
@media screen and (max-width: 320px) {
  .slick-arrow {
    top: 18%;
  }
}
.slick-item:not(:first-of-type) {
  display: none;
}
.slick-slider.slick-initialized .slick-item:not(:first-of-type) {
  display: block;
} /*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */ /*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}
.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../assets/images/default-skin/default-skin-e3f799c6de.png) 0 0
    no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}
@media (-webkit-min-device-pixel-ratio: 1.1),
  (-webkit-min-device-pixel-ratio: 1.09375),
  (min-resolution: 105dpi),
  (min-resolution: 1.1dppx) {
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(../assets/images/default-skin/default-skin-b257fa9c5a.svg);
  }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}
.pswp__button--share {
  background-position: -44px -44px;
}
.pswp__button--fs {
  display: none;
}
.pswp--supports-fs .pswp__button--fs {
  display: block;
}
.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}
.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}
.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}
.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}
.pswp__button--arrow--left {
  left: 0;
}
.pswp__button--arrow--right {
  right: 0;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}
.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}
.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}
.pswp__share-modal--hidden {
  display: none;
}
.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #fff;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}
.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}
.pswp__share-tooltip a:first-child {
  border-radius: 2px 2px 0 0;
}
.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}
.pswp__share-modal--fade-in {
  opacity: 1;
}
.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}
a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid rgba(0, 0, 0, 0);
  border-bottom-color: #fff;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}
a.pswp__share--facebook:hover {
  background: #3e5c9a;
  color: #fff;
}
a.pswp__share--facebook:hover:before {
  border-bottom-color: #3e5c9a;
}
a.pswp__share--twitter:hover {
  background: #55acee;
  color: #fff;
}
a.pswp__share--pinterest:hover {
  background: #ccc;
  color: #ce272d;
}
a.pswp__share--download:hover {
  background: #ddd;
}
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #fff;
  opacity: 0.75;
  padding: 0 10px;
}
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}
.pswp__caption small {
  font-size: 11px;
  color: #bbb;
}
.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #ccc;
}
.pswp__caption--empty {
  display: none;
}
.pswp__caption--fake {
  visibility: hidden;
}
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}
.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}
.pswp__preloader--active {
  opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
  background: url(../assets/images/default-skin/preloader-e34aafbb48.gif) 0 0
    no-repeat;
}
.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}
.pswp--css_animation .pswp__preloader__cut {
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}
.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}
.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}
.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  opacity: 0.001;
}
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}
.pswp__element--disabled {
  display: none !important;
}
.pswp--minimal--dark .pswp__top-bar {
  background: none;
}
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: none;
}
.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pswp img {
  max-width: none;
}
.pswp--animate_opacity {
  opacity: 0.001;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--open {
  display: block;
}
.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.pswp--zoomed-in .pswp__img {
  cursor: -webkit-grab;
  cursor: grab;
}
.pswp--dragging .pswp__img {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}
.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1),
    -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp__bg {
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}
.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}
.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}
.pswp__img--placeholder--blank {
  background: #222;
}
.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #ccc;
}
.pswp__error-msg a {
  color: #ccc;
  text-decoration: underline;
} /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
h1,
.font-h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em&xxxlarge=98.75em";
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
}
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}
button {
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput="mouse"] button {
  outline: 0;
}
pre {
  overflow: auto;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}
.is-visible {
  display: block !important;
}
.is-hidden {
  display: none !important;
}
[type="text"],
[type="password"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="month"],
[type="week"],
[type="email"],
[type="number"],
[type="search"],
[type="tel"],
[type="time"],
[type="url"],
[type="color"],
textarea {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
[type="text"]:focus,
[type="password"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="week"]:focus,
[type="email"]:focus,
[type="number"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="time"]:focus,
[type="url"]:focus,
[type="color"]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  -webkit-box-shadow: 0 0 5px #cacaca;
  box-shadow: 0 0 5px #cacaca;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
}
textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}
input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
[type="submit"],
[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
::-webkit-input-placeholder {
  color: #cacaca;
}
:-ms-input-placeholder {
  color: #cacaca;
}
::-ms-input-placeholder {
  color: #cacaca;
}
::placeholder {
  color: #cacaca;
}
[type="file"],
[type="checkbox"],
[type="radio"] {
  margin: 0 0 1rem;
}
[type="checkbox"] + label,
[type="radio"] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
[type="checkbox"] + label[for],
[type="radio"] + label[for] {
  cursor: pointer;
}
label > [type="checkbox"],
label > [type="radio"] {
  margin-right: 0.5rem;
}
[type="file"] {
  width: 100%;
}
label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}
.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a;
}
.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.input-group > :first-child,
.input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group > :last-child,
.input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group-label,
.input-group-field,
.input-group-button,
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap;
}
.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}
.input-group-field {
  border-radius: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  min-width: 0;
}
.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}
.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}
select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
}
@media screen and (min-width: 0\0) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  -webkit-box-shadow: 0 0 5px #cacaca;
  box-shadow: 0 0 5px #cacaca;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #f9ecea;
}
.is-invalid-input:not(:focus)::-webkit-input-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus):-ms-input-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::-ms-input-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}
.is-invalid-label {
  color: #cc4b37;
}
.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
.font-h1,
h2,
.font-h2,
h3,
.font-h3,
h4,
.font-h4,
h5,
.font-h5,
h6,
.font-h6,
pre,
form,
p,
.font-p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
p,
.font-p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
em,
i {
  font-style: italic;
  line-height: inherit;
}
strong,
b {
  font-weight: bold;
  line-height: inherit;
}
small {
  font-size: 80%;
  line-height: inherit;
}
h1,
.font-h1,
.h1,
h2,
.font-h2,
.h2,
h3,
.font-h3,
.h3,
h4,
.font-h4,
.h4,
h5,
.font-h5,
.h5,
h6,
.font-h6,
.h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small,
.font-h1 small,
.h1 small,
h2 small,
.font-h2 small,
.h2 small,
h3 small,
.font-h3 small,
.h3 small,
h4 small,
.font-h4 small,
.h4 small,
h5 small,
.font-h5 small,
.h5 small,
h6 small,
.font-h6 small,
.h6 small {
  line-height: 0;
  color: #cacaca;
}
h1,
.font-h1,
.h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h2,
.font-h2,
.h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h3,
.font-h3,
.h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h4,
.font-h4,
.h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h5,
.font-h5,
.h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h6,
.font-h6,
.h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 40em) {
  h1,
  .font-h1,
  .h1 {
    font-size: 3rem;
  }
  h2,
  .font-h2,
  .h2 {
    font-size: 2.5rem;
  }
  h3,
  .font-h3,
  .h3 {
    font-size: 1.9375rem;
  }
  h4,
  .font-h4,
  .h4 {
    font-size: 1.5625rem;
  }
  h5,
  .font-h5,
  .h5 {
    font-size: 1.25rem;
  }
  h6,
  .font-h6,
  .h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
a:focus {
  color: #1468a0;
}
a img {
  border: 0;
}
hr {
  clear: both;
  max-width: 1440px;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}
ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}
li {
  font-size: inherit;
}
ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}
ol {
  margin-left: 1.25rem;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}
blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}
blockquote,
blockquote p,
blockquote .font-p {
  line-height: 1.6;
  color: #8a8a8a;
}
cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a;
}
cite:before {
  content: "— ";
}
abbr,
abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none;
}
figure {
  margin: 0;
}
code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
}
kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a;
}
.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a;
}
.lead {
  font-size: 125%;
  line-height: 1.6;
}
.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat,
.font-p + .stat {
  margin-top: -1rem;
}
ul.no-bullet,
ol.no-bullet {
  margin-left: 0;
  list-style: none;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-text-left {
    text-align: left;
  }
  .xlarge-text-right {
    text-align: right;
  }
  .xlarge-text-center {
    text-align: center;
  }
  .xlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-text-left {
    text-align: left;
  }
  .xxlarge-text-right {
    text-align: right;
  }
  .xxlarge-text-center {
    text-align: center;
  }
  .xxlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-text-left {
    text-align: left;
  }
  .xxxlarge-text-right {
    text-align: right;
  }
  .xxxlarge-text-center {
    text-align: center;
  }
  .xxxlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}
@media print {
  * {
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  .font-p,
  h2,
  .font-h2,
  h3,
  .font-h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  .font-h2,
  h3,
  .font-h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
.grid-container {
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.grid-container.fluid {
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.grid-x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.cell {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}
.cell.auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.cell.shrink {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}
.grid-x > .small-shrink,
.grid-x > .small-full,
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12 {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-x > .medium-shrink,
  .grid-x > .medium-full,
  .grid-x > .medium-1,
  .grid-x > .medium-2,
  .grid-x > .medium-3,
  .grid-x > .medium-4,
  .grid-x > .medium-5,
  .grid-x > .medium-6,
  .grid-x > .medium-7,
  .grid-x > .medium-8,
  .grid-x > .medium-9,
  .grid-x > .medium-10,
  .grid-x > .medium-11,
  .grid-x > .medium-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink,
  .grid-x > .large-full,
  .grid-x > .large-1,
  .grid-x > .large-2,
  .grid-x > .large-3,
  .grid-x > .large-4,
  .grid-x > .large-5,
  .grid-x > .large-6,
  .grid-x > .large-7,
  .grid-x > .large-8,
  .grid-x > .large-9,
  .grid-x > .large-10,
  .grid-x > .large-11,
  .grid-x > .large-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 75em) {
  .grid-x > .xlarge-shrink,
  .grid-x > .xlarge-full,
  .grid-x > .xlarge-1,
  .grid-x > .xlarge-2,
  .grid-x > .xlarge-3,
  .grid-x > .xlarge-4,
  .grid-x > .xlarge-5,
  .grid-x > .xlarge-6,
  .grid-x > .xlarge-7,
  .grid-x > .xlarge-8,
  .grid-x > .xlarge-9,
  .grid-x > .xlarge-10,
  .grid-x > .xlarge-11,
  .grid-x > .xlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 90em) {
  .grid-x > .xxlarge-shrink,
  .grid-x > .xxlarge-full,
  .grid-x > .xxlarge-1,
  .grid-x > .xxlarge-2,
  .grid-x > .xxlarge-3,
  .grid-x > .xxlarge-4,
  .grid-x > .xxlarge-5,
  .grid-x > .xxlarge-6,
  .grid-x > .xxlarge-7,
  .grid-x > .xxlarge-8,
  .grid-x > .xxlarge-9,
  .grid-x > .xxlarge-10,
  .grid-x > .xxlarge-11,
  .grid-x > .xxlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 98.75em) {
  .grid-x > .xxxlarge-shrink,
  .grid-x > .xxxlarge-full,
  .grid-x > .xxxlarge-1,
  .grid-x > .xxxlarge-2,
  .grid-x > .xxxlarge-3,
  .grid-x > .xxxlarge-4,
  .grid-x > .xxxlarge-5,
  .grid-x > .xxxlarge-6,
  .grid-x > .xxxlarge-7,
  .grid-x > .xxxlarge-8,
  .grid-x > .xxxlarge-9,
  .grid-x > .xxxlarge-10,
  .grid-x > .xxxlarge-11,
  .grid-x > .xxxlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid-x > .small-1 {
  width: 8.3333333333%;
}
.grid-x > .small-2 {
  width: 16.6666666667%;
}
.grid-x > .small-3 {
  width: 25%;
}
.grid-x > .small-4 {
  width: 33.3333333333%;
}
.grid-x > .small-5 {
  width: 41.6666666667%;
}
.grid-x > .small-6 {
  width: 50%;
}
.grid-x > .small-7 {
  width: 58.3333333333%;
}
.grid-x > .small-8 {
  width: 66.6666666667%;
}
.grid-x > .small-9 {
  width: 75%;
}
.grid-x > .small-10 {
  width: 83.3333333333%;
}
.grid-x > .small-11 {
  width: 91.6666666667%;
}
.grid-x > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .medium-shrink,
  .grid-x > .medium-1,
  .grid-x > .medium-2,
  .grid-x > .medium-3,
  .grid-x > .medium-4,
  .grid-x > .medium-5,
  .grid-x > .medium-6,
  .grid-x > .medium-7,
  .grid-x > .medium-8,
  .grid-x > .medium-9,
  .grid-x > .medium-10,
  .grid-x > .medium-11,
  .grid-x > .medium-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .large-shrink,
  .grid-x > .large-1,
  .grid-x > .large-2,
  .grid-x > .large-3,
  .grid-x > .large-4,
  .grid-x > .large-5,
  .grid-x > .large-6,
  .grid-x > .large-7,
  .grid-x > .large-8,
  .grid-x > .large-9,
  .grid-x > .large-10,
  .grid-x > .large-11,
  .grid-x > .large-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .grid-x > .xlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xlarge-shrink,
  .grid-x > .xlarge-1,
  .grid-x > .xlarge-2,
  .grid-x > .xlarge-3,
  .grid-x > .xlarge-4,
  .grid-x > .xlarge-5,
  .grid-x > .xlarge-6,
  .grid-x > .xlarge-7,
  .grid-x > .xlarge-8,
  .grid-x > .xlarge-9,
  .grid-x > .xlarge-10,
  .grid-x > .xlarge-11,
  .grid-x > .xlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .xlarge-shrink {
    width: auto;
  }
  .grid-x > .xlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xlarge-3 {
    width: 25%;
  }
  .grid-x > .xlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xlarge-6 {
    width: 50%;
  }
  .grid-x > .xlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xlarge-9 {
    width: 75%;
  }
  .grid-x > .xlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .grid-x > .xxlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xxlarge-shrink,
  .grid-x > .xxlarge-1,
  .grid-x > .xxlarge-2,
  .grid-x > .xxlarge-3,
  .grid-x > .xxlarge-4,
  .grid-x > .xxlarge-5,
  .grid-x > .xxlarge-6,
  .grid-x > .xxlarge-7,
  .grid-x > .xxlarge-8,
  .grid-x > .xxlarge-9,
  .grid-x > .xxlarge-10,
  .grid-x > .xxlarge-11,
  .grid-x > .xxlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .xxlarge-shrink {
    width: auto;
  }
  .grid-x > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xxlarge-3 {
    width: 25%;
  }
  .grid-x > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xxlarge-6 {
    width: 50%;
  }
  .grid-x > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xxlarge-9 {
    width: 75%;
  }
  .grid-x > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .grid-x > .xxxlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xxxlarge-shrink,
  .grid-x > .xxxlarge-1,
  .grid-x > .xxxlarge-2,
  .grid-x > .xxxlarge-3,
  .grid-x > .xxxlarge-4,
  .grid-x > .xxxlarge-5,
  .grid-x > .xxxlarge-6,
  .grid-x > .xxxlarge-7,
  .grid-x > .xxxlarge-8,
  .grid-x > .xxxlarge-9,
  .grid-x > .xxxlarge-10,
  .grid-x > .xxxlarge-11,
  .grid-x > .xxxlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .xxxlarge-shrink {
    width: auto;
  }
  .grid-x > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xxxlarge-3 {
    width: 25%;
  }
  .grid-x > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xxxlarge-6 {
    width: 50%;
  }
  .grid-x > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xxxlarge-9 {
    width: 75%;
  }
  .grid-x > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xxxlarge-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}
.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}
.grid-margin-x {
  margin-left: -1rem;
  margin-right: -1rem;
}
.grid-margin-x > .cell {
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 2rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 2rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 2rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 2rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 2rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 2rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 2rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 2rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 2rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 2rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 2rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-x > .xlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xlarge-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .xlarge-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .xlarge-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .xlarge-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-12 {
    width: calc(100% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-x > .xxlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xxlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xxlarge-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .xxlarge-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .xxlarge-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .xxlarge-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .xxlarge-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .xxlarge-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .xxlarge-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .xxlarge-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .xxlarge-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .xxlarge-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .xxlarge-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .xxlarge-12 {
    width: calc(100% - 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-margin-x > .xxxlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xxxlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xxxlarge-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .xxxlarge-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .xxxlarge-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .xxxlarge-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .xxxlarge-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .xxxlarge-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .xxxlarge-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .xxxlarge-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .xxxlarge-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .xxxlarge-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .xxxlarge-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .xxxlarge-12 {
    width: calc(100% - 2rem);
  }
}
.grid-padding-x .grid-padding-x {
  margin-right: -1rem;
  margin-left: -1rem;
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -1rem;
  margin-left: -1rem;
}
.grid-padding-x > .cell {
  padding-right: 1rem;
  padding-left: 1rem;
}
.small-up-1 > .cell {
  width: 100%;
}
.small-up-2 > .cell {
  width: 50%;
}
.small-up-3 > .cell {
  width: 33.3333333333%;
}
.small-up-4 > .cell {
  width: 25%;
}
.small-up-5 > .cell {
  width: 20%;
}
.small-up-6 > .cell {
  width: 16.6666666667%;
}
.small-up-7 > .cell {
  width: 14.2857142857%;
}
.small-up-8 > .cell {
  width: 12.5%;
}
@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-up-1 > .cell {
    width: 100%;
  }
  .xlarge-up-2 > .cell {
    width: 50%;
  }
  .xlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xlarge-up-4 > .cell {
    width: 25%;
  }
  .xlarge-up-5 > .cell {
    width: 20%;
  }
  .xlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xlarge-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-up-1 > .cell {
    width: 100%;
  }
  .xxlarge-up-2 > .cell {
    width: 50%;
  }
  .xxlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xxlarge-up-4 > .cell {
    width: 25%;
  }
  .xxlarge-up-5 > .cell {
    width: 20%;
  }
  .xxlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xxlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xxlarge-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-up-1 > .cell {
    width: 100%;
  }
  .xxxlarge-up-2 > .cell {
    width: 50%;
  }
  .xxxlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xxxlarge-up-4 > .cell {
    width: 25%;
  }
  .xxxlarge-up-5 > .cell {
    width: 20%;
  }
  .xxxlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xxxlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xxxlarge-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 2rem);
}
.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 2rem);
}
.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 2rem);
}
.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 2rem);
}
.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 2rem);
}
.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 2rem);
}
.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 2rem);
}
.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-x.xlarge-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.xlarge-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.xlarge-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.xlarge-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.xlarge-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.xlarge-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.xlarge-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.xlarge-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-x.xxlarge-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.xxlarge-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.xxlarge-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.xxlarge-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.xxlarge-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.xxlarge-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.xxlarge-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.xxlarge-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-margin-x.xxxlarge-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.xxxlarge-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .small-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .small-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .small-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .medium-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .medium-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .medium-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .large-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .large-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .large-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .medium-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .medium-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .medium-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xlarge-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xlarge-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxlarge-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxxlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .medium-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .medium-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .medium-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxxlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
.small-offset-0 {
  margin-left: 0%;
}
.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 1rem);
}
.small-offset-1 {
  margin-left: 8.3333333333%;
}
.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 1rem);
}
.small-offset-2 {
  margin-left: 16.6666666667%;
}
.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 1rem);
}
.small-offset-3 {
  margin-left: 25%;
}
.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 1rem);
}
.small-offset-4 {
  margin-left: 33.3333333333%;
}
.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 1rem);
}
.small-offset-5 {
  margin-left: 41.6666666667%;
}
.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 1rem);
}
.small-offset-6 {
  margin-left: 50%;
}
.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 1rem);
}
.small-offset-7 {
  margin-left: 58.3333333333%;
}
.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 1rem);
}
.small-offset-8 {
  margin-left: 66.6666666667%;
}
.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 1rem);
}
.small-offset-9 {
  margin-left: 75%;
}
.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 1rem);
}
.small-offset-10 {
  margin-left: 83.3333333333%;
}
.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 1rem);
}
.small-offset-11 {
  margin-left: 91.6666666667%;
}
.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 1rem);
}
@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
@media screen and (min-width: 75em) {
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xlarge-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xlarge-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xlarge-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xlarge-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xxlarge-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .xxlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xxlarge-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .xxlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xxlarge-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .xxlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xxlarge-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xxxlarge-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .xxxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .xxxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .xxxlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xxxlarge-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .xxxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .xxxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .xxxlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xxxlarge-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .xxxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .xxxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .xxxlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xxxlarge-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .xxxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .xxxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
.grid-y {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  width: auto;
  max-width: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink,
.grid-y > .small-full,
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12 {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-shrink,
  .grid-y > .medium-full,
  .grid-y > .medium-1,
  .grid-y > .medium-2,
  .grid-y > .medium-3,
  .grid-y > .medium-4,
  .grid-y > .medium-5,
  .grid-y > .medium-6,
  .grid-y > .medium-7,
  .grid-y > .medium-8,
  .grid-y > .medium-9,
  .grid-y > .medium-10,
  .grid-y > .medium-11,
  .grid-y > .medium-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-shrink,
  .grid-y > .large-full,
  .grid-y > .large-1,
  .grid-y > .large-2,
  .grid-y > .large-3,
  .grid-y > .large-4,
  .grid-y > .large-5,
  .grid-y > .large-6,
  .grid-y > .large-7,
  .grid-y > .large-8,
  .grid-y > .large-9,
  .grid-y > .large-10,
  .grid-y > .large-11,
  .grid-y > .large-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 75em) {
  .grid-y > .xlarge-shrink,
  .grid-y > .xlarge-full,
  .grid-y > .xlarge-1,
  .grid-y > .xlarge-2,
  .grid-y > .xlarge-3,
  .grid-y > .xlarge-4,
  .grid-y > .xlarge-5,
  .grid-y > .xlarge-6,
  .grid-y > .xlarge-7,
  .grid-y > .xlarge-8,
  .grid-y > .xlarge-9,
  .grid-y > .xlarge-10,
  .grid-y > .xlarge-11,
  .grid-y > .xlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 90em) {
  .grid-y > .xxlarge-shrink,
  .grid-y > .xxlarge-full,
  .grid-y > .xxlarge-1,
  .grid-y > .xxlarge-2,
  .grid-y > .xxlarge-3,
  .grid-y > .xxlarge-4,
  .grid-y > .xxlarge-5,
  .grid-y > .xxlarge-6,
  .grid-y > .xxlarge-7,
  .grid-y > .xxlarge-8,
  .grid-y > .xxlarge-9,
  .grid-y > .xxlarge-10,
  .grid-y > .xxlarge-11,
  .grid-y > .xxlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 98.75em) {
  .grid-y > .xxxlarge-shrink,
  .grid-y > .xxxlarge-full,
  .grid-y > .xxxlarge-1,
  .grid-y > .xxxlarge-2,
  .grid-y > .xxxlarge-3,
  .grid-y > .xxxlarge-4,
  .grid-y > .xxxlarge-5,
  .grid-y > .xxxlarge-6,
  .grid-y > .xxxlarge-7,
  .grid-y > .xxxlarge-8,
  .grid-y > .xxxlarge-9,
  .grid-y > .xxxlarge-10,
  .grid-y > .xxxlarge-11,
  .grid-y > .xxxlarge-12 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .medium-shrink,
  .grid-y > .medium-1,
  .grid-y > .medium-2,
  .grid-y > .medium-3,
  .grid-y > .medium-4,
  .grid-y > .medium-5,
  .grid-y > .medium-6,
  .grid-y > .medium-7,
  .grid-y > .medium-8,
  .grid-y > .medium-9,
  .grid-y > .medium-10,
  .grid-y > .medium-11,
  .grid-y > .medium-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .large-shrink,
  .grid-y > .large-1,
  .grid-y > .large-2,
  .grid-y > .large-3,
  .grid-y > .large-4,
  .grid-y > .large-5,
  .grid-y > .large-6,
  .grid-y > .large-7,
  .grid-y > .large-8,
  .grid-y > .large-9,
  .grid-y > .large-10,
  .grid-y > .large-11,
  .grid-y > .large-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}
@media screen and (min-width: 75em) {
  .grid-y > .xlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xlarge-shrink,
  .grid-y > .xlarge-1,
  .grid-y > .xlarge-2,
  .grid-y > .xlarge-3,
  .grid-y > .xlarge-4,
  .grid-y > .xlarge-5,
  .grid-y > .xlarge-6,
  .grid-y > .xlarge-7,
  .grid-y > .xlarge-8,
  .grid-y > .xlarge-9,
  .grid-y > .xlarge-10,
  .grid-y > .xlarge-11,
  .grid-y > .xlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .xlarge-shrink {
    height: auto;
  }
  .grid-y > .xlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xlarge-3 {
    height: 25%;
  }
  .grid-y > .xlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xlarge-6 {
    height: 50%;
  }
  .grid-y > .xlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xlarge-9 {
    height: 75%;
  }
  .grid-y > .xlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xlarge-12 {
    height: 100%;
  }
}
@media screen and (min-width: 90em) {
  .grid-y > .xxlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xxlarge-shrink,
  .grid-y > .xxlarge-1,
  .grid-y > .xxlarge-2,
  .grid-y > .xxlarge-3,
  .grid-y > .xxlarge-4,
  .grid-y > .xxlarge-5,
  .grid-y > .xxlarge-6,
  .grid-y > .xxlarge-7,
  .grid-y > .xxlarge-8,
  .grid-y > .xxlarge-9,
  .grid-y > .xxlarge-10,
  .grid-y > .xxlarge-11,
  .grid-y > .xxlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-y > .xxlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xxlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xxlarge-3 {
    height: 25%;
  }
  .grid-y > .xxlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xxlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xxlarge-6 {
    height: 50%;
  }
  .grid-y > .xxlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xxlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xxlarge-9 {
    height: 75%;
  }
  .grid-y > .xxlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xxlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xxlarge-12 {
    height: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .grid-y > .xxxlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xxxlarge-shrink,
  .grid-y > .xxxlarge-1,
  .grid-y > .xxxlarge-2,
  .grid-y > .xxxlarge-3,
  .grid-y > .xxxlarge-4,
  .grid-y > .xxxlarge-5,
  .grid-y > .xxxlarge-6,
  .grid-y > .xxxlarge-7,
  .grid-y > .xxxlarge-8,
  .grid-y > .xxxlarge-9,
  .grid-y > .xxxlarge-10,
  .grid-y > .xxxlarge-11,
  .grid-y > .xxxlarge-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .xxxlarge-shrink {
    height: auto;
  }
  .grid-y > .xxxlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xxxlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xxxlarge-3 {
    height: 25%;
  }
  .grid-y > .xxxlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xxxlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xxxlarge-6 {
    height: 50%;
  }
  .grid-y > .xxxlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xxxlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xxxlarge-9 {
    height: 75%;
  }
  .grid-y > .xxxlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xxxlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xxxlarge-12 {
    height: 100%;
  }
}
.grid-padding-y .grid-padding-y {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.grid-padding-y > .cell {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.grid-margin-y {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.grid-margin-y > .cell {
  height: calc(100% - 2rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 2rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 2rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 2rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 2rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 2rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 2rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 2rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 2rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 2rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 2rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 2rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xxlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xxlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xxlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-margin-y > .xxxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xxxlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xxxlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xxxlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-12 {
    height: calc(100% - 2rem);
  }
}
.grid-frame {
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100vw;
}
.cell .grid-frame {
  width: 100%;
}
.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.cell-block-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xlarge-grid-frame {
    width: 100%;
  }
  .xlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .xlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .xlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .xlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xxlarge-grid-frame {
    width: 100%;
  }
  .xxlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .xxlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .xxlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .xxlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xxxlarge-grid-frame {
    width: 100%;
  }
  .xxxlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .xxxlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .xxxlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .xxxlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100vh;
}
@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media screen and (min-width: 75em) {
  .grid-y.xlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media screen and (min-width: 90em) {
  .grid-y.xxlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media screen and (min-width: 98.75em) {
  .grid-y.xxxlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 75em) {
  .cell .grid-y.xlarge-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 90em) {
  .cell .grid-y.xxlarge-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 98.75em) {
  .cell .grid-y.xxxlarge-grid-frame {
    height: 100%;
  }
}
.grid-margin-y {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.grid-margin-y > .cell {
  height: calc(100% - 2rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 2rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 2rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 2rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 2rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 2rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 2rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 2rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 2rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 2rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 2rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 2rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xxlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xxlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xxlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xxlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-margin-y > .xxxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xxxlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xxxlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xxxlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xxxlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xxxlarge-12 {
    height: calc(100% - 2rem);
  }
}
.grid-frame.grid-margin-y {
  height: calc(100vh + 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-y.xlarge-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y.xxlarge-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 98.75em) {
  .grid-margin-y.xxxlarge-grid-frame {
    height: calc(100vh + 2rem);
  }
}
.row {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
.row::before,
.row::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.row::after {
  clear: both;
}
.row.collapse > .column,
.row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 90em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 98.75em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.gutter-small > .column,
.row.gutter-small > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.row.gutter-medium > .column,
.row.gutter-medium > .columns {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}
.column,
.columns {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .column,
  .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.column,
.columns,
.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child,
.end.columns:last-child:last-child {
  float: left;
}
.column.row.row,
.row.row.columns {
  float: none;
}
.row .column.row.row,
.row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}
.small-1 {
  width: 8.3333333333%;
}
.small-push-1 {
  position: relative;
  left: 8.3333333333%;
}
.small-pull-1 {
  position: relative;
  left: -8.3333333333%;
}
.small-offset-0 {
  margin-left: 0%;
}
.small-2 {
  width: 16.6666666667%;
}
.small-push-2 {
  position: relative;
  left: 16.6666666667%;
}
.small-pull-2 {
  position: relative;
  left: -16.6666666667%;
}
.small-offset-1 {
  margin-left: 8.3333333333%;
}
.small-3 {
  width: 25%;
}
.small-push-3 {
  position: relative;
  left: 25%;
}
.small-pull-3 {
  position: relative;
  left: -25%;
}
.small-offset-2 {
  margin-left: 16.6666666667%;
}
.small-4 {
  width: 33.3333333333%;
}
.small-push-4 {
  position: relative;
  left: 33.3333333333%;
}
.small-pull-4 {
  position: relative;
  left: -33.3333333333%;
}
.small-offset-3 {
  margin-left: 25%;
}
.small-5 {
  width: 41.6666666667%;
}
.small-push-5 {
  position: relative;
  left: 41.6666666667%;
}
.small-pull-5 {
  position: relative;
  left: -41.6666666667%;
}
.small-offset-4 {
  margin-left: 33.3333333333%;
}
.small-6 {
  width: 50%;
}
.small-push-6 {
  position: relative;
  left: 50%;
}
.small-pull-6 {
  position: relative;
  left: -50%;
}
.small-offset-5 {
  margin-left: 41.6666666667%;
}
.small-7 {
  width: 58.3333333333%;
}
.small-push-7 {
  position: relative;
  left: 58.3333333333%;
}
.small-pull-7 {
  position: relative;
  left: -58.3333333333%;
}
.small-offset-6 {
  margin-left: 50%;
}
.small-8 {
  width: 66.6666666667%;
}
.small-push-8 {
  position: relative;
  left: 66.6666666667%;
}
.small-pull-8 {
  position: relative;
  left: -66.6666666667%;
}
.small-offset-7 {
  margin-left: 58.3333333333%;
}
.small-9 {
  width: 75%;
}
.small-push-9 {
  position: relative;
  left: 75%;
}
.small-pull-9 {
  position: relative;
  left: -75%;
}
.small-offset-8 {
  margin-left: 66.6666666667%;
}
.small-10 {
  width: 83.3333333333%;
}
.small-push-10 {
  position: relative;
  left: 83.3333333333%;
}
.small-pull-10 {
  position: relative;
  left: -83.3333333333%;
}
.small-offset-9 {
  margin-left: 75%;
}
.small-11 {
  width: 91.6666666667%;
}
.small-push-11 {
  position: relative;
  left: 91.6666666667%;
}
.small-pull-11 {
  position: relative;
  left: -91.6666666667%;
}
.small-offset-10 {
  margin-left: 83.3333333333%;
}
.small-12 {
  width: 100%;
}
.small-offset-11 {
  margin-left: 91.6666666667%;
}
.small-up-1 > .column,
.small-up-1 > .columns {
  float: left;
  width: 100%;
}
.small-up-1 > .column:nth-of-type(1n),
.small-up-1 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-1 > .column:nth-of-type(1n + 1),
.small-up-1 > .columns:nth-of-type(1n + 1) {
  clear: both;
}
.small-up-1 > .column:last-child,
.small-up-1 > .columns:last-child {
  float: left;
}
.small-up-2 > .column,
.small-up-2 > .columns {
  float: left;
  width: 50%;
}
.small-up-2 > .column:nth-of-type(1n),
.small-up-2 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-2 > .column:nth-of-type(2n + 1),
.small-up-2 > .columns:nth-of-type(2n + 1) {
  clear: both;
}
.small-up-2 > .column:last-child,
.small-up-2 > .columns:last-child {
  float: left;
}
.small-up-3 > .column,
.small-up-3 > .columns {
  float: left;
  width: 33.3333333333%;
}
.small-up-3 > .column:nth-of-type(1n),
.small-up-3 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-3 > .column:nth-of-type(3n + 1),
.small-up-3 > .columns:nth-of-type(3n + 1) {
  clear: both;
}
.small-up-3 > .column:last-child,
.small-up-3 > .columns:last-child {
  float: left;
}
.small-up-4 > .column,
.small-up-4 > .columns {
  float: left;
  width: 25%;
}
.small-up-4 > .column:nth-of-type(1n),
.small-up-4 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-4 > .column:nth-of-type(4n + 1),
.small-up-4 > .columns:nth-of-type(4n + 1) {
  clear: both;
}
.small-up-4 > .column:last-child,
.small-up-4 > .columns:last-child {
  float: left;
}
.small-up-5 > .column,
.small-up-5 > .columns {
  float: left;
  width: 20%;
}
.small-up-5 > .column:nth-of-type(1n),
.small-up-5 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-5 > .column:nth-of-type(5n + 1),
.small-up-5 > .columns:nth-of-type(5n + 1) {
  clear: both;
}
.small-up-5 > .column:last-child,
.small-up-5 > .columns:last-child {
  float: left;
}
.small-up-6 > .column,
.small-up-6 > .columns {
  float: left;
  width: 16.6666666667%;
}
.small-up-6 > .column:nth-of-type(1n),
.small-up-6 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-6 > .column:nth-of-type(6n + 1),
.small-up-6 > .columns:nth-of-type(6n + 1) {
  clear: both;
}
.small-up-6 > .column:last-child,
.small-up-6 > .columns:last-child {
  float: left;
}
.small-up-7 > .column,
.small-up-7 > .columns {
  float: left;
  width: 14.2857142857%;
}
.small-up-7 > .column:nth-of-type(1n),
.small-up-7 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-7 > .column:nth-of-type(7n + 1),
.small-up-7 > .columns:nth-of-type(7n + 1) {
  clear: both;
}
.small-up-7 > .column:last-child,
.small-up-7 > .columns:last-child {
  float: left;
}
.small-up-8 > .column,
.small-up-8 > .columns {
  float: left;
  width: 12.5%;
}
.small-up-8 > .column:nth-of-type(1n),
.small-up-8 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-8 > .column:nth-of-type(8n + 1),
.small-up-8 > .columns:nth-of-type(8n + 1) {
  clear: both;
}
.small-up-8 > .column:last-child,
.small-up-8 > .columns:last-child {
  float: left;
}
.small-collapse > .column,
.small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.small-collapse .row {
  margin-right: 0;
  margin-left: 0;
}
.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0;
}
.small-uncollapse > .column,
.small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.small-centered {
  margin-right: auto;
  margin-left: auto;
}
.small-centered,
.small-centered:last-child:not(:first-child) {
  float: none;
  clear: both;
}
.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-right: 0;
  margin-left: 0;
}
.small-uncentered,
.small-uncentered:last-child:not(:first-child),
.small-push-0,
.small-push-0:last-child:not(:first-child),
.small-pull-0,
.small-pull-0:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.small-uncentered:last-child:not(:first-child),
.small-push-0:last-child:not(:first-child),
.small-pull-0:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 > .column,
  .medium-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .medium-up-1 > .column:nth-of-type(1n),
  .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n + 1),
  .medium-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child,
  .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column,
  .medium-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .medium-up-2 > .column:nth-of-type(1n),
  .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n + 1),
  .medium-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child,
  .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column,
  .medium-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .medium-up-3 > .column:nth-of-type(1n),
  .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n + 1),
  .medium-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child,
  .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column,
  .medium-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .medium-up-4 > .column:nth-of-type(1n),
  .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n + 1),
  .medium-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child,
  .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column,
  .medium-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .medium-up-5 > .column:nth-of-type(1n),
  .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n + 1),
  .medium-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child,
  .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column,
  .medium-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .medium-up-6 > .column:nth-of-type(1n),
  .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n + 1),
  .medium-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child,
  .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column,
  .medium-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .medium-up-7 > .column:nth-of-type(1n),
  .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n + 1),
  .medium-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child,
  .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column,
  .medium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .medium-up-8 > .column:nth-of-type(1n),
  .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n + 1),
  .medium-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child,
  .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column,
  .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncollapse > .column,
  .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .medium-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .medium-centered,
  .medium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncentered,
  .medium-uncentered:last-child:not(:first-child),
  .medium-push-0,
  .medium-push-0:last-child:not(:first-child),
  .medium-pull-0,
  .medium-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .medium-uncentered:last-child:not(:first-child),
  .medium-push-0:last-child:not(:first-child),
  .medium-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 > .column,
  .large-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .large-up-1 > .column:nth-of-type(1n),
  .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n + 1),
  .large-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }
  .large-up-1 > .column:last-child,
  .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column,
  .large-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .large-up-2 > .column:nth-of-type(1n),
  .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n + 1),
  .large-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }
  .large-up-2 > .column:last-child,
  .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column,
  .large-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .large-up-3 > .column:nth-of-type(1n),
  .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n + 1),
  .large-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }
  .large-up-3 > .column:last-child,
  .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column,
  .large-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .large-up-4 > .column:nth-of-type(1n),
  .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n + 1),
  .large-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }
  .large-up-4 > .column:last-child,
  .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column,
  .large-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .large-up-5 > .column:nth-of-type(1n),
  .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n + 1),
  .large-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }
  .large-up-5 > .column:last-child,
  .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column,
  .large-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .large-up-6 > .column:nth-of-type(1n),
  .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n + 1),
  .large-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }
  .large-up-6 > .column:last-child,
  .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column,
  .large-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .large-up-7 > .column:nth-of-type(1n),
  .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n + 1),
  .large-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }
  .large-up-7 > .column:last-child,
  .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column,
  .large-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .large-up-8 > .column:nth-of-type(1n),
  .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n + 1),
  .large-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }
  .large-up-8 > .column:last-child,
  .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column,
  .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncollapse > .column,
  .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .large-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .large-centered,
  .large-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncentered,
  .large-uncentered:last-child:not(:first-child),
  .large-push-0,
  .large-push-0:last-child:not(:first-child),
  .large-pull-0,
  .large-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .large-uncentered:last-child:not(:first-child),
  .large-push-0:last-child:not(:first-child),
  .large-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .xlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .xlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .xlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xlarge-3 {
    width: 25%;
  }
  .xlarge-push-3 {
    position: relative;
    left: 25%;
  }
  .xlarge-pull-3 {
    position: relative;
    left: -25%;
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .xlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .xlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .xlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xlarge-6 {
    width: 50%;
  }
  .xlarge-push-6 {
    position: relative;
    left: 50%;
  }
  .xlarge-pull-6 {
    position: relative;
    left: -50%;
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .xlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .xlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .xlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xlarge-9 {
    width: 75%;
  }
  .xlarge-push-9 {
    position: relative;
    left: 75%;
  }
  .xlarge-pull-9 {
    position: relative;
    left: -75%;
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .xlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .xlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .xlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xlarge-12 {
    width: 100%;
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xlarge-up-1 > .column,
  .xlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .xlarge-up-1 > .column:nth-of-type(1n),
  .xlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-1 > .column:nth-of-type(1n + 1),
  .xlarge-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }
  .xlarge-up-1 > .column:last-child,
  .xlarge-up-1 > .columns:last-child {
    float: left;
  }
  .xlarge-up-2 > .column,
  .xlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .xlarge-up-2 > .column:nth-of-type(1n),
  .xlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-2 > .column:nth-of-type(2n + 1),
  .xlarge-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }
  .xlarge-up-2 > .column:last-child,
  .xlarge-up-2 > .columns:last-child {
    float: left;
  }
  .xlarge-up-3 > .column,
  .xlarge-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .xlarge-up-3 > .column:nth-of-type(1n),
  .xlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-3 > .column:nth-of-type(3n + 1),
  .xlarge-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }
  .xlarge-up-3 > .column:last-child,
  .xlarge-up-3 > .columns:last-child {
    float: left;
  }
  .xlarge-up-4 > .column,
  .xlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .xlarge-up-4 > .column:nth-of-type(1n),
  .xlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-4 > .column:nth-of-type(4n + 1),
  .xlarge-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }
  .xlarge-up-4 > .column:last-child,
  .xlarge-up-4 > .columns:last-child {
    float: left;
  }
  .xlarge-up-5 > .column,
  .xlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .xlarge-up-5 > .column:nth-of-type(1n),
  .xlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-5 > .column:nth-of-type(5n + 1),
  .xlarge-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }
  .xlarge-up-5 > .column:last-child,
  .xlarge-up-5 > .columns:last-child {
    float: left;
  }
  .xlarge-up-6 > .column,
  .xlarge-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .xlarge-up-6 > .column:nth-of-type(1n),
  .xlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-6 > .column:nth-of-type(6n + 1),
  .xlarge-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }
  .xlarge-up-6 > .column:last-child,
  .xlarge-up-6 > .columns:last-child {
    float: left;
  }
  .xlarge-up-7 > .column,
  .xlarge-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .xlarge-up-7 > .column:nth-of-type(1n),
  .xlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-7 > .column:nth-of-type(7n + 1),
  .xlarge-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }
  .xlarge-up-7 > .column:last-child,
  .xlarge-up-7 > .columns:last-child {
    float: left;
  }
  .xlarge-up-8 > .column,
  .xlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .xlarge-up-8 > .column:nth-of-type(1n),
  .xlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-8 > .column:nth-of-type(8n + 1),
  .xlarge-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }
  .xlarge-up-8 > .column:last-child,
  .xlarge-up-8 > .columns:last-child {
    float: left;
  }
  .xlarge-collapse > .column,
  .xlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .xlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .xlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-uncollapse > .column,
  .xlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .xlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .xlarge-centered,
  .xlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .xlarge-uncentered,
  .xlarge-push-0,
  .xlarge-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-uncentered,
  .xlarge-uncentered:last-child:not(:first-child),
  .xlarge-push-0,
  .xlarge-push-0:last-child:not(:first-child),
  .xlarge-pull-0,
  .xlarge-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .xlarge-uncentered:last-child:not(:first-child),
  .xlarge-push-0:last-child:not(:first-child),
  .xlarge-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .xxlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .xxlarge-offset-0 {
    margin-left: 0%;
  }
  .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .xxlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxlarge-3 {
    width: 25%;
  }
  .xxlarge-push-3 {
    position: relative;
    left: 25%;
  }
  .xxlarge-pull-3 {
    position: relative;
    left: -25%;
  }
  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .xxlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .xxlarge-offset-3 {
    margin-left: 25%;
  }
  .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .xxlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxlarge-6 {
    width: 50%;
  }
  .xxlarge-push-6 {
    position: relative;
    left: 50%;
  }
  .xxlarge-pull-6 {
    position: relative;
    left: -50%;
  }
  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .xxlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .xxlarge-offset-6 {
    margin-left: 50%;
  }
  .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .xxlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxlarge-9 {
    width: 75%;
  }
  .xxlarge-push-9 {
    position: relative;
    left: 75%;
  }
  .xxlarge-pull-9 {
    position: relative;
    left: -75%;
  }
  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .xxlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .xxlarge-offset-9 {
    margin-left: 75%;
  }
  .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .xxlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxlarge-12 {
    width: 100%;
  }
  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxlarge-up-1 > .column,
  .xxlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .xxlarge-up-1 > .column:nth-of-type(1n),
  .xxlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-1 > .column:nth-of-type(1n + 1),
  .xxlarge-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }
  .xxlarge-up-1 > .column:last-child,
  .xxlarge-up-1 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-2 > .column,
  .xxlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .xxlarge-up-2 > .column:nth-of-type(1n),
  .xxlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-2 > .column:nth-of-type(2n + 1),
  .xxlarge-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }
  .xxlarge-up-2 > .column:last-child,
  .xxlarge-up-2 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-3 > .column,
  .xxlarge-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .xxlarge-up-3 > .column:nth-of-type(1n),
  .xxlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-3 > .column:nth-of-type(3n + 1),
  .xxlarge-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }
  .xxlarge-up-3 > .column:last-child,
  .xxlarge-up-3 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-4 > .column,
  .xxlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .xxlarge-up-4 > .column:nth-of-type(1n),
  .xxlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-4 > .column:nth-of-type(4n + 1),
  .xxlarge-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }
  .xxlarge-up-4 > .column:last-child,
  .xxlarge-up-4 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-5 > .column,
  .xxlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .xxlarge-up-5 > .column:nth-of-type(1n),
  .xxlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-5 > .column:nth-of-type(5n + 1),
  .xxlarge-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }
  .xxlarge-up-5 > .column:last-child,
  .xxlarge-up-5 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-6 > .column,
  .xxlarge-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .xxlarge-up-6 > .column:nth-of-type(1n),
  .xxlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-6 > .column:nth-of-type(6n + 1),
  .xxlarge-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }
  .xxlarge-up-6 > .column:last-child,
  .xxlarge-up-6 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-7 > .column,
  .xxlarge-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .xxlarge-up-7 > .column:nth-of-type(1n),
  .xxlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-7 > .column:nth-of-type(7n + 1),
  .xxlarge-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }
  .xxlarge-up-7 > .column:last-child,
  .xxlarge-up-7 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-8 > .column,
  .xxlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .xxlarge-up-8 > .column:nth-of-type(1n),
  .xxlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-8 > .column:nth-of-type(8n + 1),
  .xxlarge-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }
  .xxlarge-up-8 > .column:last-child,
  .xxlarge-up-8 > .columns:last-child {
    float: left;
  }
  .xxlarge-collapse > .column,
  .xxlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .xxlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .xxlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-uncollapse > .column,
  .xxlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .xxlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .xxlarge-centered,
  .xxlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .xxlarge-uncentered,
  .xxlarge-push-0,
  .xxlarge-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-uncentered,
  .xxlarge-uncentered:last-child:not(:first-child),
  .xxlarge-push-0,
  .xxlarge-push-0:last-child:not(:first-child),
  .xxlarge-pull-0,
  .xxlarge-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .xxlarge-uncentered:last-child:not(:first-child),
  .xxlarge-push-0:last-child:not(:first-child),
  .xxlarge-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .xxxlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .xxxlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .xxxlarge-offset-0 {
    margin-left: 0%;
  }
  .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .xxxlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .xxxlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .xxxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxxlarge-3 {
    width: 25%;
  }
  .xxxlarge-push-3 {
    position: relative;
    left: 25%;
  }
  .xxxlarge-pull-3 {
    position: relative;
    left: -25%;
  }
  .xxxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .xxxlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .xxxlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .xxxlarge-offset-3 {
    margin-left: 25%;
  }
  .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .xxxlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .xxxlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .xxxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxxlarge-6 {
    width: 50%;
  }
  .xxxlarge-push-6 {
    position: relative;
    left: 50%;
  }
  .xxxlarge-pull-6 {
    position: relative;
    left: -50%;
  }
  .xxxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .xxxlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .xxxlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .xxxlarge-offset-6 {
    margin-left: 50%;
  }
  .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .xxxlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .xxxlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .xxxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxxlarge-9 {
    width: 75%;
  }
  .xxxlarge-push-9 {
    position: relative;
    left: 75%;
  }
  .xxxlarge-pull-9 {
    position: relative;
    left: -75%;
  }
  .xxxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .xxxlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .xxxlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .xxxlarge-offset-9 {
    margin-left: 75%;
  }
  .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .xxxlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .xxxlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .xxxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxxlarge-12 {
    width: 100%;
  }
  .xxxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxxlarge-up-1 > .column,
  .xxxlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .xxxlarge-up-1 > .column:nth-of-type(1n),
  .xxxlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-1 > .column:nth-of-type(1n + 1),
  .xxxlarge-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }
  .xxxlarge-up-1 > .column:last-child,
  .xxxlarge-up-1 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-2 > .column,
  .xxxlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .xxxlarge-up-2 > .column:nth-of-type(1n),
  .xxxlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-2 > .column:nth-of-type(2n + 1),
  .xxxlarge-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }
  .xxxlarge-up-2 > .column:last-child,
  .xxxlarge-up-2 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-3 > .column,
  .xxxlarge-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .xxxlarge-up-3 > .column:nth-of-type(1n),
  .xxxlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-3 > .column:nth-of-type(3n + 1),
  .xxxlarge-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }
  .xxxlarge-up-3 > .column:last-child,
  .xxxlarge-up-3 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-4 > .column,
  .xxxlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .xxxlarge-up-4 > .column:nth-of-type(1n),
  .xxxlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-4 > .column:nth-of-type(4n + 1),
  .xxxlarge-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }
  .xxxlarge-up-4 > .column:last-child,
  .xxxlarge-up-4 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-5 > .column,
  .xxxlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .xxxlarge-up-5 > .column:nth-of-type(1n),
  .xxxlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-5 > .column:nth-of-type(5n + 1),
  .xxxlarge-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }
  .xxxlarge-up-5 > .column:last-child,
  .xxxlarge-up-5 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-6 > .column,
  .xxxlarge-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .xxxlarge-up-6 > .column:nth-of-type(1n),
  .xxxlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-6 > .column:nth-of-type(6n + 1),
  .xxxlarge-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }
  .xxxlarge-up-6 > .column:last-child,
  .xxxlarge-up-6 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-7 > .column,
  .xxxlarge-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .xxxlarge-up-7 > .column:nth-of-type(1n),
  .xxxlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-7 > .column:nth-of-type(7n + 1),
  .xxxlarge-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }
  .xxxlarge-up-7 > .column:last-child,
  .xxxlarge-up-7 > .columns:last-child {
    float: left;
  }
  .xxxlarge-up-8 > .column,
  .xxxlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .xxxlarge-up-8 > .column:nth-of-type(1n),
  .xxxlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxxlarge-up-8 > .column:nth-of-type(8n + 1),
  .xxxlarge-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }
  .xxxlarge-up-8 > .column:last-child,
  .xxxlarge-up-8 > .columns:last-child {
    float: left;
  }
  .xxxlarge-collapse > .column,
  .xxxlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .xxxlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .xxxlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .xxxlarge-uncollapse > .column,
  .xxxlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .xxxlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .xxxlarge-centered,
  .xxxlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .xxxlarge-uncentered,
  .xxxlarge-push-0,
  .xxxlarge-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .xxxlarge-uncentered,
  .xxxlarge-uncentered:last-child:not(:first-child),
  .xxxlarge-push-0,
  .xxxlarge-push-0:last-child:not(:first-child),
  .xxxlarge-pull-0,
  .xxxlarge-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .xxxlarge-uncentered:last-child:not(:first-child),
  .xxxlarge-push-0:last-child:not(:first-child),
  .xxxlarge-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
.column-block {
  margin-bottom: 1.25rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 1.875rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}
.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe;
}
[data-whatinput="mouse"] .button {
  outline: 0;
}
.button:hover,
.button:focus {
  background-color: #14679e;
  color: #fefefe;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button.primary {
  background-color: #1779ba;
  color: #fefefe;
}
.button.primary:hover,
.button.primary:focus {
  background-color: #126195;
  color: #fefefe;
}
.button.secondary {
  background-color: #767676;
  color: #fefefe;
}
.button.secondary:hover,
.button.secondary:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}
.button.success {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button.success:hover,
.button.success:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button.warning {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.warning:hover,
.button.warning:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button.alert {
  background-color: #cc4b37;
  color: #fefefe;
}
.button.alert:hover,
.button.alert:focus {
  background-color: #a53b2a;
  color: #fefefe;
}
.button.disabled,
.button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled,
.button.disabled:hover,
.button.disabled:focus,
.button[disabled],
.button[disabled]:hover,
.button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button.disabled.primary,
.button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.primary,
.button.disabled.primary:hover,
.button.disabled.primary:focus,
.button[disabled].primary,
.button[disabled].primary:hover,
.button[disabled].primary:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button.disabled.secondary,
.button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.secondary,
.button.disabled.secondary:hover,
.button.disabled.secondary:focus,
.button[disabled].secondary,
.button[disabled].secondary:hover,
.button[disabled].secondary:focus {
  background-color: #767676;
  color: #fefefe;
}
.button.disabled.success,
.button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.success,
.button.disabled.success:hover,
.button.disabled.success:focus,
.button[disabled].success,
.button[disabled].success:hover,
.button[disabled].success:focus {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button.disabled.warning,
.button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.warning,
.button.disabled.warning:hover,
.button.disabled.warning:focus,
.button[disabled].warning,
.button[disabled].warning:hover,
.button[disabled].warning:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.disabled.alert,
.button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.alert,
.button.disabled.alert:hover,
.button.disabled.alert:focus,
.button[disabled].alert,
.button[disabled].alert:hover,
.button[disabled].alert:focus {
  background-color: #cc4b37;
  color: #fefefe;
}
.button.hollow {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow,
.button.hollow:hover,
.button.hollow:focus {
  background-color: transparent;
}
.button.hollow.disabled,
.button.hollow.disabled:hover,
.button.hollow.disabled:focus,
.button.hollow[disabled],
.button.hollow[disabled]:hover,
.button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow:hover,
.button.hollow:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow:hover.disabled,
.button.hollow:hover[disabled],
.button.hollow:focus.disabled,
.button.hollow:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary:hover,
.button.hollow.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow.primary:hover.disabled,
.button.hollow.primary:hover[disabled],
.button.hollow.primary:focus.disabled,
.button.hollow.primary:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.secondary {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.secondary:hover,
.button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.secondary:hover.disabled,
.button.hollow.secondary:hover[disabled],
.button.hollow.secondary:focus.disabled,
.button.hollow.secondary:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover,
.button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.success:hover.disabled,
.button.hollow.success:hover[disabled],
.button.hollow.success:focus.disabled,
.button.hollow.success:focus[disabled] {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover,
.button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.warning:hover.disabled,
.button.hollow.warning:hover[disabled],
.button.hollow.warning:focus.disabled,
.button.hollow.warning:focus[disabled] {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover,
.button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.hollow.alert:hover.disabled,
.button.hollow.alert:hover[disabled],
.button.hollow.alert:focus.disabled,
.button.hollow.alert:focus[disabled] {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear,
.button.clear:hover,
.button.clear:focus {
  background-color: transparent;
}
.button.clear.disabled,
.button.clear.disabled:hover,
.button.clear.disabled:focus,
.button.clear[disabled],
.button.clear[disabled]:hover,
.button.clear[disabled]:focus {
  background-color: transparent;
}
.button.clear:hover,
.button.clear:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.clear:hover.disabled,
.button.clear:hover[disabled],
.button.clear:focus.disabled,
.button.clear:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear,
.button.clear.disabled,
.button.clear[disabled],
.button.clear:hover,
.button.clear:hover.disabled,
.button.clear:hover[disabled],
.button.clear:focus,
.button.clear:focus.disabled,
.button.clear:focus[disabled] {
  border-color: transparent;
}
.button.clear.primary {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear.primary:hover,
.button.clear.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.clear.primary:hover.disabled,
.button.clear.primary:hover[disabled],
.button.clear.primary:focus.disabled,
.button.clear.primary:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear.primary,
.button.clear.primary.disabled,
.button.clear.primary[disabled],
.button.clear.primary:hover,
.button.clear.primary:hover.disabled,
.button.clear.primary:hover[disabled],
.button.clear.primary:focus,
.button.clear.primary:focus.disabled,
.button.clear.primary:focus[disabled] {
  border-color: transparent;
}
.button.clear.secondary {
  border: 1px solid #767676;
  color: #767676;
}
.button.clear.secondary:hover,
.button.clear.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.clear.secondary:hover.disabled,
.button.clear.secondary:hover[disabled],
.button.clear.secondary:focus.disabled,
.button.clear.secondary:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}
.button.clear.secondary,
.button.clear.secondary.disabled,
.button.clear.secondary[disabled],
.button.clear.secondary:hover,
.button.clear.secondary:hover.disabled,
.button.clear.secondary:hover[disabled],
.button.clear.secondary:focus,
.button.clear.secondary:focus.disabled,
.button.clear.secondary:focus[disabled] {
  border-color: transparent;
}
.button.clear.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.clear.success:hover,
.button.clear.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.clear.success:hover.disabled,
.button.clear.success:hover[disabled],
.button.clear.success:focus.disabled,
.button.clear.success:focus[disabled] {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.clear.success,
.button.clear.success.disabled,
.button.clear.success[disabled],
.button.clear.success:hover,
.button.clear.success:hover.disabled,
.button.clear.success:hover[disabled],
.button.clear.success:focus,
.button.clear.success:focus.disabled,
.button.clear.success:focus[disabled] {
  border-color: transparent;
}
.button.clear.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.clear.warning:hover,
.button.clear.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.clear.warning:hover.disabled,
.button.clear.warning:hover[disabled],
.button.clear.warning:focus.disabled,
.button.clear.warning:focus[disabled] {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.clear.warning,
.button.clear.warning.disabled,
.button.clear.warning[disabled],
.button.clear.warning:hover,
.button.clear.warning:hover.disabled,
.button.clear.warning:hover[disabled],
.button.clear.warning:focus,
.button.clear.warning:focus.disabled,
.button.clear.warning:focus[disabled] {
  border-color: transparent;
}
.button.clear.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear.alert:hover,
.button.clear.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.clear.alert:hover.disabled,
.button.clear.alert:hover[disabled],
.button.clear.alert:focus.disabled,
.button.clear.alert:focus[disabled] {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear.alert,
.button.clear.alert.disabled,
.button.clear.alert[disabled],
.button.clear.alert:hover,
.button.clear.alert:hover.disabled,
.button.clear.alert:hover[disabled],
.button.clear.alert:focus,
.button.clear.alert:focus.disabled,
.button.clear.alert:focus[disabled] {
  border-color: transparent;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fefefe transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after,
.button.dropdown.clear::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.primary::after,
.button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.secondary::after,
.button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}
.button.dropdown.hollow.success::after,
.button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after,
.button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after,
.button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}
a.button:hover,
a.button:focus {
  text-decoration: none;
}
.button-group {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.button-group::before,
.button-group::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.button-group.primary .button {
  background-color: #1779ba;
  color: #fefefe;
}
.button-group.primary .button:hover,
.button-group.primary .button:focus {
  background-color: #126195;
  color: #fefefe;
}
.button-group.secondary .button {
  background-color: #767676;
  color: #fefefe;
}
.button-group.secondary .button:hover,
.button-group.secondary .button:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}
.button-group.success .button {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button-group.success .button:hover,
.button-group.success .button:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button-group.warning .button {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button-group.warning .button:hover,
.button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button-group.alert .button {
  background-color: #cc4b37;
  color: #fefefe;
}
.button-group.alert .button:hover,
.button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #fefefe;
}
.button-group.stacked,
.button-group.stacked-for-small,
.button-group.stacked-for-medium {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.button-group.stacked .button,
.button-group.stacked-for-small .button,
.button-group.stacked-for-medium .button {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child,
.button-group.stacked-for-small .button:last-child,
.button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button,
.button-group.stacked-for-small.expanded .button,
.button-group.stacked-for-medium.expanded .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 39.99875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}
@media screen and (max-width: 63.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}
.close-button {
  position: absolute;
  color: #8a8a8a;
  cursor: pointer;
}
[data-whatinput="mouse"] .close-button {
  outline: 0;
}
.close-button:hover,
.close-button:focus {
  color: #0a0a0a;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}
.close-button,
.close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}
.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #1779ba;
  color: #fefefe;
}
.label.primary {
  background: #1779ba;
  color: #fefefe;
}
.label.secondary {
  background: #767676;
  color: #fefefe;
}
.label.success {
  background: #3adb76;
  color: #0a0a0a;
}
.label.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.label.alert {
  background: #cc4b37;
  color: #fefefe;
}
.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #cacaca;
}
.progress.primary .progress-meter {
  background-color: #1779ba;
}
.progress.secondary .progress-meter {
  background-color: #767676;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}
.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #1779ba;
}
.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fefefe;
  white-space: nowrap;
}
.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none;
}
.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}
.slider-handle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #1779ba;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
[data-whatinput="mouse"] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: #14679e;
}
.slider-handle.is-dragging {
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}
.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
input[type="range"] {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  margin-bottom: 0.45rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  line-height: 1;
  cursor: pointer;
}
input[type="range"]:focus {
  outline: 0;
}
input[type="range"][disabled] {
  opacity: 0.25;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 0.5rem;
  background: #e6e6e6;
}
input[type="range"]::-webkit-slider-thumb {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.45rem;
  -webkit-appearance: none;
  background: #1779ba;
}
input[type="range"]::-moz-range-track {
  height: 0.5rem;
  -moz-appearance: none;
  background: #e6e6e6;
}
input[type="range"]::-moz-range-thumb {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.45rem;
  -moz-appearance: none;
  background: #1779ba;
}
input[type="range"]::-ms-track {
  height: 0.5rem;
  border: 0;
  border-top: 0.45rem solid #fefefe;
  border-bottom: 0.45rem solid #fefefe;
  background: #e6e6e6;
  overflow: visible;
  color: transparent;
}
input[type="range"]::-ms-thumb {
  width: 1.4rem;
  height: 1.4rem;
  border: 0;
  background: #1779ba;
}
input[type="range"]::-ms-fill-lower {
  background: #cacaca;
}
input[type="range"]::-ms-fill-upper {
  background: #e6e6e6;
}
output {
  vertical-align: middle;
  margin-left: 0.5em;
  line-height: 1.4rem;
}
.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fefefe;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}
.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #cacaca;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border-radius: 0;
  background: #fefefe;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #1779ba;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput="mouse"] input:focus ~ .switch-paddle {
  outline: 0;
}
.switch-active,
.switch-inactive {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}
.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}
.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}
.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}
.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
}
caption {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
}
thead {
  background: #f8f8f8;
  color: #0a0a0a;
}
tfoot {
  background: #f1f1f1;
  color: #0a0a0a;
}
thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
  text-align: left;
}
tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}
tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f1f1f1;
}
table.unstriped tbody {
  background-color: #fefefe;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f1f1f1;
  background-color: #fefefe;
}
@media screen and (max-width: 63.99875em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}
table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}
table.hover thead tr:hover {
  background-color: #f3f3f3;
}
table.hover tfoot tr:hover {
  background-color: #ececec;
}
table.hover tbody tr:hover {
  background-color: #f9f9f9;
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec;
}
.table-scroll {
  overflow-x: auto;
}
.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1779ba;
  color: #fefefe;
}
.badge.primary {
  background: #1779ba;
  color: #fefefe;
}
.badge.secondary {
  background: #767676;
  color: #fefefe;
}
.badge.success {
  background: #3adb76;
  color: #0a0a0a;
}
.badge.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.badge.alert {
  background: #cc4b37;
  color: #fefefe;
}
.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}
.breadcrumbs::before,
.breadcrumbs::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #0a0a0a;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #cacaca;
}
.breadcrumbs a {
  color: #1779ba;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed;
}
.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  background-color: #fff;
  color: #0a0a0a;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d7ecfa;
  color: #0a0a0a;
}
.callout.secondary {
  background-color: #eaeaea;
  color: #0a0a0a;
}
.callout.success {
  background-color: #e1faea;
  color: #0a0a0a;
}
.callout.warning {
  background-color: #fff3d9;
  color: #0a0a0a;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #0a0a0a;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background: #fefefe;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  color: #0a0a0a;
}
.card > :last-child {
  margin-bottom: 0;
}
.card-divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 1rem;
  background: #e6e6e6;
}
.card-divider > :last-child {
  margin-bottom: 0;
}
.card-section {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 1rem;
}
.card-section > :last-child {
  margin-bottom: 0;
}
.card-image {
  min-height: 1px;
}
.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}
.dropdown-pane.tiny {
  width: 100px;
}
.dropdown-pane.small {
  width: 200px;
}
.dropdown-pane.large {
  width: 400px;
}
.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before,
.pagination::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0625rem;
  border-radius: 0;
  font-size: 0.875rem;
  display: none;
}
.pagination li:last-child,
.pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
  color: #0a0a0a;
}
.pagination a:hover,
.pagination button:hover {
  background: #e6e6e6;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #1779ba;
  color: #fefefe;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #cacaca;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1875rem 0.625rem;
  content: "\2026";
  color: #0a0a0a;
}
.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "\00ab";
}
.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "\00bb";
}
.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  cursor: help;
}
.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #0a0a0a;
  font-size: 80%;
  color: #fefefe;
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #0a0a0a;
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #0a0a0a transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #0a0a0a;
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #0a0a0a transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left::before {
  left: 10%;
  right: auto;
}
.tooltip.align-right::before {
  left: auto;
  right: 10%;
}
.accordion {
  margin-left: 0;
  background: #fefefe;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}
.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}
.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 0 0;
}
.accordion-title:hover,
.accordion-title:focus {
  background-color: #e6e6e6;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "\2013";
}
.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fefefe;
  color: #0a0a0a;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}
.media-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media screen and (max-width: 39.99875em) {
  .media-object.stack-for-small {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.media-object-section {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 39.99875em) {
  .stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .stack-for-small .media-object-section img {
    width: 100%;
  }
}
.media-object-section.main-section {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.orbit {
  position: relative;
}
.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.orbit-slide {
  width: 100%;
  position: absolute;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}
.orbit-figure {
  margin: 0;
}
.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(10, 10, 10, 0.5);
  color: #fefefe;
}
.orbit-previous,
.orbit-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe;
}
[data-whatinput="mouse"] .orbit-previous,
[data-whatinput="mouse"] .orbit-next {
  outline: 0;
}
.orbit-previous:hover,
.orbit-next:hover,
.orbit-previous:active,
.orbit-next:active,
.orbit-previous:focus,
.orbit-next:focus {
  background-color: rgba(10, 10, 10, 0.5);
}
.orbit-previous {
  left: 0;
}
.orbit-next {
  left: auto;
  right: 0;
}
.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput="mouse"] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #cacaca;
}
.orbit-bullets button:hover {
  background-color: #8a8a8a;
}
.orbit-bullets button.is-active {
  background-color: #8a8a8a;
}
.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}
.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none;
}
.tabs::before,
.tabs::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.tabs::after {
  clear: both;
}
.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}
.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}
.tabs.primary {
  background: #1779ba;
}
.tabs.primary > li > a {
  color: #fefefe;
}
.tabs.primary > li > a:hover,
.tabs.primary > li > a:focus {
  background: #1673b1;
}
.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
[data-whatinput="mouse"] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #fefefe;
  color: #1468a0;
}
.tabs-title > a:focus,
.tabs-title > a[aria-selected="true"] {
  background: #e6e6e6;
  color: #1779ba;
}
.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #0a0a0a;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}
.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}
.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 4px solid #fefefe;
  border-radius: 0;
  -webkit-box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  line-height: 0;
}
a.thumbnail {
  -webkit-transition: -webkit-box-shadow 200ms ease-out;
  transition: -webkit-box-shadow 200ms ease-out;
  transition: box-shadow 200ms ease-out;
  transition: box-shadow 200ms ease-out, -webkit-box-shadow 200ms ease-out;
}
a.thumbnail:hover,
a.thumbnail:focus {
  -webkit-box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
  box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
}
a.thumbnail image {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
[data-whatinput="mouse"] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu,
.menu.horizontal {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.menu.vertical {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.menu.expanded li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.menu.simple {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.medium-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.large-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.large-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 75em) {
  .menu.xlarge-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.xlarge-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.xlarge-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .menu.xlarge-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 90em) {
  .menu.xxlarge-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.xxlarge-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.xxlarge-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .menu.xxlarge-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 98.75em) {
  .menu.xxxlarge-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.xxxlarge-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.xxxlarge-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .menu.xxxlarge-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu.icon-top a,
.menu.icon-right a,
.menu.icon-bottom a,
.menu.icon-left a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu.icon-left li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu .active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu.align-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu.align-right li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu.align-center li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}
.menu-centered > .menu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu-centered > .menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.no-js [data-responsive-menu] ul {
  display: none;
}
.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fefefe;
  -webkit-box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
  box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
  content: "";
}
.menu-icon:hover::after {
  background: #cacaca;
  -webkit-box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}
.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  -webkit-box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
  box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  -webkit-box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}
.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu
  .is-accordion-submenu-parent:not(.has-submenu-toggle)
  > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded="true"] > a::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.is-accordion-submenu-parent {
  position: relative;
}
.has-submenu-toggle > a {
  margin-right: 40px;
}
.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}
.submenu-toggle[aria-expanded="true"]::after {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.submenu-toggle-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}
.drilldown a {
  padding: 0.7rem 1rem;
  background: #fefefe;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  -webkit-transition: -webkit-transform 0.15s linear;
  transition: -webkit-transform 0.15s linear;
  transition: transform 0.15s linear;
  transition: transform 0.15s linear, -webkit-transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}
.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput="mouse"] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: rgba(0, 0, 0, 0);
  color: #1779ba;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media screen and (min-width: 75em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media screen and (min-width: 90em) {
  .dropdown.menu.xxlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xxlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xxlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xxlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media screen and (min-width: 98.75em) {
  .dropdown.menu.xxxlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xxxlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xxxlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xxxlarge-horizontal
    > li.is-dropdown-submenu-parent
    > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xxxlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xxxlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}
.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}
.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fefefe;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}
.is-off-canvas-open {
  overflow: hidden;
}
.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}
.off-canvas {
  position: fixed;
  z-index: 12;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
}
[data-whatinput="mouse"] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
}
[data-whatinput="mouse"] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas-absolute.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-content.is-open-left.has-transition-push {
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
}
.position-left.is-transition-push {
  -webkit-box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25);
  box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25);
}
.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right {
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-content.is-open-right.has-transition-push {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}
.position-right.is-transition-push {
  -webkit-box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25);
  box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25);
}
.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top {
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-content.is-open-top.has-transition-push {
  -webkit-transform: translateY(250px);
  transform: translateY(250px);
}
.position-top.is-transition-push {
  -webkit-box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25);
  box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25);
}
.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  -webkit-transform: translateY(250px);
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom {
  -webkit-transform: translateY(250px);
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-content.is-open-bottom.has-transition-push {
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px);
}
.position-bottom.is-transition-push {
  -webkit-box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25);
  box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25);
}
.off-canvas-content {
  -webkit-transform: none;
  transform: none;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-push {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 75em) {
  .position-left.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-xlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-xlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-xlarge ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-xlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 90em) {
  .position-left.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-xxlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-xxlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-xxlarge ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-xxlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 98.75em) {
  .position-left.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xxxlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-left,
  .off-canvas.in-canvas-for-medium.position-right,
  .off-canvas.in-canvas-for-medium.position-top,
  .off-canvas.in-canvas-for-medium.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-left,
  .off-canvas.in-canvas-for-large.position-right,
  .off-canvas.in-canvas-for-large.position-top,
  .off-canvas.in-canvas-for-large.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
@media screen and (min-width: 75em) {
  .off-canvas.in-canvas-for-xlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-xlarge.position-left,
  .off-canvas.in-canvas-for-xlarge.position-right,
  .off-canvas.in-canvas-for-xlarge.position-top,
  .off-canvas.in-canvas-for-xlarge.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xlarge .close-button {
    display: none;
  }
}
@media screen and (min-width: 90em) {
  .off-canvas.in-canvas-for-xxlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-xxlarge.position-left,
  .off-canvas.in-canvas-for-xxlarge.position-right,
  .off-canvas.in-canvas-for-xxlarge.position-top,
  .off-canvas.in-canvas-for-xxlarge.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xxlarge .close-button {
    display: none;
  }
}
@media screen and (min-width: 98.75em) {
  .off-canvas.in-canvas-for-xxxlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-xxxlarge.position-left,
  .off-canvas.in-canvas-for-xxxlarge.position-right,
  .off-canvas.in-canvas-for-xxxlarge.position-top,
  .off-canvas.in-canvas-for-xxxlarge.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xxxlarge .close-button {
    display: none;
  }
}
html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
}
html.is-reveal-open body {
  overflow-y: hidden;
}
.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: auto;
}
.reveal {
  z-index: 1006;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}
[data-whatinput="mouse"] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column,
.reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 1440px;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 1440px;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 1440px;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 1440px;
  }
}
.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 39.99875em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}
.sticky-container {
  position: relative;
}
.sticky {
  position: relative;
  z-index: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}
.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}
.title-bar {
  padding: 0.5rem;
  background: #0a0a0a;
  color: #fefefe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.title-bar-left,
.title-bar-right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.title-bar-right {
  text-align: right;
}
.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}
.top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 40em) {
  .top-bar {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 63.99875em) {
  .top-bar.stacked-for-medium {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 74.99875em) {
  .top-bar.stacked-for-large {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 89.99875em) {
  .top-bar.stacked-for-xlarge {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-xlarge .top-bar-left,
  .top-bar.stacked-for-xlarge .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 98.74875em) {
  .top-bar.stacked-for-xxlarge {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-xxlarge .top-bar-left,
  .top-bar.stacked-for-xxlarge .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.top-bar.stacked-for-xxxlarge {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top-bar.stacked-for-xxxlarge .top-bar-left,
.top-bar.stacked-for-xxxlarge .top-bar-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.top-bar-title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0.5rem 1rem 0.5rem 0;
}
.top-bar-left,
.top-bar-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.clearfix::before,
.clearfix::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.clearfix::after {
  clear: both;
}
.hide {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
@media screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}
@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}
@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}
@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}
@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}
@media screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}
@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}
@media screen and (min-width: 75em) {
  .hide-for-xlarge {
    display: none !important;
  }
}
@media screen and (max-width: 74.99875em) {
  .show-for-xlarge {
    display: none !important;
  }
}
@media screen and (min-width: 75em) and (max-width: 89.99875em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}
@media screen and (max-width: 74.99875em), screen and (min-width: 90em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}
@media screen and (min-width: 90em) {
  .hide-for-xxlarge {
    display: none !important;
  }
}
@media screen and (max-width: 89.99875em) {
  .show-for-xxlarge {
    display: none !important;
  }
}
@media screen and (min-width: 90em) and (max-width: 98.74875em) {
  .hide-for-xxlarge-only {
    display: none !important;
  }
}
@media screen and (max-width: 89.99875em), screen and (min-width: 98.75em) {
  .show-for-xxlarge-only {
    display: none !important;
  }
}
@media screen and (min-width: 98.75em) {
  .hide-for-xxxlarge {
    display: none !important;
  }
}
@media screen and (max-width: 98.74875em) {
  .show-for-xxxlarge {
    display: none !important;
  }
}
@media screen and (min-width: 98.75em) {
  .hide-for-xxxlarge-only {
    display: none !important;
  }
}
@media screen and (max-width: 98.74875em) {
  .show-for-xxxlarge-only {
    display: none !important;
  }
}
.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}
.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}
.small-order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.small-order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.small-order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.small-order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.small-order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.small-order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}
@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .medium-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .medium-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .medium-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .medium-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .medium-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .large-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .large-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .large-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .large-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .large-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xlarge-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xlarge-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xlarge-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xlarge-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xlarge-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xxlarge-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xxlarge-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xxlarge-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xxlarge-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xxlarge-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media screen and (min-width: 98.75em) {
  .xxxlarge-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xxxlarge-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xxxlarge-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xxxlarge-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xxxlarge-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xxxlarge-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
a {
  text-decoration: none;
  color: #0a0a0a;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
a:not(.button):hover,
a:not(.button):focus,
a.active,
li.active a,
#footer-container a:hover,
#footer-container a:hover {
  color: #0a0a0a;
  text-decoration: underline;
}
p a,
.font-p a {
  text-decoration: underline;
}
a.black:hover,
a.black:hover {
  color: #0a0a0a;
  text-decoration: underline;
  opacity: 0.6;
}
a.white:hover,
a.white:hover {
  color: #fff;
  text-decoration: underline;
  opacity: 0.6;
}
a.dark-grey:hover *,
a.dark-grey:hover {
  color: #58595b;
  text-decoration: underline;
  opacity: 0.6;
}
.hover-bg {
  background-image: linear-gradient(120deg, #e7e8e8 0%, #e7e8e8 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
  -webkit-transition: background-size 0.25s ease-in;
  transition: background-size 0.25s ease-in;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.hover-bg:hover {
  background-size: 100% 88%;
}
.hover-bg::after,
.hover-bg::before {
  content: none;
}
p .hover-bg,
.font-p .hover-bg {
  font-weight: 300;
}
.button,
.btn-black,
.sweet-alert button {
  position: relative;
  padding: 16px 8px;
  border-radius: 0;
  margin-bottom: 0;
  background-color: #0a0a0a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  min-width: 150px;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  text-transform: uppercase;
  border: 2px solid #0a0a0a !important;
  text-transform: uppercase;
}
.button:hover,
.button:focus,
.btn-black:hover,
.btn-black:focus,
.sweet-alert button:hover,
.sweet-alert button:focus {
  opacity: 0.6;
  background: #0a0a0a;
  background-color: #0a0a0a;
  color: #fff;
}
.button.btn-white,
.btn-black.btn-white,
.sweet-alert button.btn-white {
  color: #0a0a0a;
  background-color: #fff;
  border-color: #fff !important;
}
.button.btn-white:focus,
.button.btn-white:hover,
.btn-black.btn-white:focus,
.btn-black.btn-white:hover,
.sweet-alert button.btn-white:focus,
.sweet-alert button.btn-white:hover {
  background: #fff;
  background-color: #fff;
  color: #0a0a0a;
}
.button.btn-red,
.btn-black.btn-red,
.sweet-alert button.btn-red {
  color: #fff;
  background-color: #f44336;
  border-color: #f44336 !important;
}
.button.btn-red:focus,
.button.btn-red:hover,
.btn-black.btn-red:focus,
.btn-black.btn-red:hover,
.sweet-alert button.btn-red:focus,
.sweet-alert button.btn-red:hover {
  background: #f44336;
  background-color: #f44336;
  color: #fff;
}
.button.btn-green,
.btn-black.btn-green,
.sweet-alert button.btn-green {
  color: #fff;
  background-color: #53b064;
  border-color: #53b064 !important;
}
.button.btn-green:focus,
.button.btn-green:hover,
.btn-black.btn-green:focus,
.btn-black.btn-green:hover,
.sweet-alert button.btn-green:focus,
.sweet-alert button.btn-green:hover {
  background: #53b064;
  background-color: #53b064;
  color: #fff;
}
.button.btn-gold,
.btn-black.btn-gold,
.sweet-alert button.btn-gold {
  color: #fff;
  background-color: #ccb46d;
  border-color: #ccb46d !important;
}
.button.btn-gold:focus,
.button.btn-gold:hover,
.btn-black.btn-gold:focus,
.btn-black.btn-gold:hover,
.sweet-alert button.btn-gold:focus,
.sweet-alert button.btn-gold:hover {
  background: #ccb46d;
  background-color: #ccb46d;
  color: #fff;
}
.button.btn-grey,
.btn-black.btn-grey,
.sweet-alert button.btn-grey {
  color: #fff;
  background-color: #a6a6a6;
  border-color: #a6a6a6 !important;
}
.button.btn-grey:focus,
.button.btn-grey:hover,
.btn-black.btn-grey:focus,
.btn-black.btn-grey:hover,
.sweet-alert button.btn-grey:focus,
.sweet-alert button.btn-grey:hover {
  background: #a6a6a6;
  background-color: #a6a6a6;
  color: #fff;
}
.button.btn-dark-grey,
.btn-black.btn-dark-grey,
.sweet-alert button.btn-dark-grey {
  color: #fff;
  background-color: #58595b;
  border-color: #58595b !important;
}
.button.btn-dark-grey:focus,
.button.btn-dark-grey:hover,
.btn-black.btn-dark-grey:focus,
.btn-black.btn-dark-grey:hover,
.sweet-alert button.btn-dark-grey:focus,
.sweet-alert button.btn-dark-grey:hover {
  background: #58595b;
  background-color: #58595b;
  color: #fff;
}
.button.btn-alto-grey,
.btn-black.btn-alto-grey,
.sweet-alert button.btn-alto-grey {
  color: #4a4a4a;
  background-color: #d8d8d8;
  border-color: #d8d8d8 !important;
}
.button.btn-alto-grey:focus,
.button.btn-alto-grey:hover,
.btn-black.btn-alto-grey:focus,
.btn-black.btn-alto-grey:hover,
.sweet-alert button.btn-alto-grey:focus,
.sweet-alert button.btn-alto-grey:hover {
  background: #d8d8d8;
  background-color: #d8d8d8;
  color: #4a4a4a;
}
.button.btn-transparent,
.button.btn-white-transparent,
.btn-black.btn-transparent,
.btn-black.btn-white-transparent,
.sweet-alert button.btn-transparent,
.sweet-alert button.btn-white-transparent {
  border-color: #0a0a0a !important;
  color: #fff;
  background-color: transparent;
}
.button.btn-transparent:focus,
.button.btn-transparent:hover,
.button.btn-white-transparent:focus,
.button.btn-white-transparent:hover,
.btn-black.btn-transparent:focus,
.btn-black.btn-transparent:hover,
.btn-black.btn-white-transparent:focus,
.btn-black.btn-white-transparent:hover,
.sweet-alert button.btn-transparent:focus,
.sweet-alert button.btn-transparent:hover,
.sweet-alert button.btn-white-transparent:focus,
.sweet-alert button.btn-white-transparent:hover {
  background: transparent;
  background-color: transparent;
  color: #fff;
}
.button.btn-black-transparent,
.btn-black.btn-black-transparent,
.sweet-alert button.btn-black-transparent {
  border-color: #0a0a0a !important;
  color: #0a0a0a;
  background-color: transparent;
}
.button.btn-black-transparent.disabled,
.button.btn-black-transparent.disabled:focus,
.button.btn-black-transparent.disabled:hover,
.btn-black.btn-black-transparent.disabled,
.btn-black.btn-black-transparent.disabled:focus,
.btn-black.btn-black-transparent.disabled:hover,
.sweet-alert button.btn-black-transparent.disabled,
.sweet-alert button.btn-black-transparent.disabled:focus,
.sweet-alert button.btn-black-transparent.disabled:hover {
  background-color: transparent;
  color: #0a0a0a;
  opacity: 0.6;
}
.button.btn-black-transparent:focus,
.button.btn-black-transparent:hover,
.btn-black.btn-black-transparent:focus,
.btn-black.btn-black-transparent:hover,
.sweet-alert button.btn-black-transparent:focus,
.sweet-alert button.btn-black-transparent:hover {
  background: transparent;
  background-color: transparent;
  color: #0a0a0a;
}
.button.btn-dark-grey-transparent,
.btn-black.btn-dark-grey-transparent,
.sweet-alert button.btn-dark-grey-transparent {
  border-color: #58595b !important;
  padding: 13px 0;
  color: #58595b;
  background-color: transparent;
}
.button.btn-dark-grey-transparent:focus,
.button.btn-dark-grey-transparent:hover,
.btn-black.btn-dark-grey-transparent:focus,
.btn-black.btn-dark-grey-transparent:hover,
.sweet-alert button.btn-dark-grey-transparent:focus,
.sweet-alert button.btn-dark-grey-transparent:hover {
  background: transparent;
  background-color: transparent;
  color: #58595b;
}
.button.btn-promo,
.btn-black.btn-promo,
.sweet-alert button.btn-promo {
  background-color: #ed6e52;
  border-color: #ed6e52 !important;
  color: #fff;
}
.button.btn-promo:focus,
.button.btn-promo:hover,
.btn-black.btn-promo:focus,
.btn-black.btn-promo:hover,
.sweet-alert button.btn-promo:focus,
.sweet-alert button.btn-promo:hover {
  background: #ed6e52;
  background-color: #ed6e52;
  color: #fff;
}
.button.btn-custom,
.btn-black.btn-custom,
.sweet-alert button.btn-custom {
  padding-top: 13px;
  padding-bottom: 13px;
  border: 2px solid;
}
.button.border-thin,
.btn-black.border-thin,
.sweet-alert button.border-thin {
  border: 1px solid #0a0a0a;
}
.button.border-thin-grey,
.btn-black.border-thin-grey,
.sweet-alert button.border-thin-grey {
  border-color: #979797;
}
.button[disabled],
.btn-black[disabled],
.sweet-alert button[disabled] {
  background-color: black;
}
.button[disabled]:hover,
.btn-black[disabled]:hover,
.sweet-alert button[disabled]:hover {
  background-color: black;
}
.button.disabled,
.button.disabled:hover,
.button.disabled:focus {
  background-color: #0a0a0a;
  color: #fff;
}
.sweet-alert button {
  margin-bottom: 25px;
}
.sweet-alert button:focus {
  opacity: 1;
}
.sweet-alert button:hover {
  opacity: 0.6 !important;
}
.no-hover:hover *,
.no-hover:focus *,
.no-hover:hover,
.no-hover:focus {
  color: inherit;
  text-decoration: none !important;
  opacity: 1;
}
.black.no-hover:hover *,
.black.no-hover:focus *,
.black.no-hover:hover,
.black.no-hover:focus {
  color: #0a0a0a;
  text-decoration: none;
  opacity: 1;
}
.red.no-hover:hover *,
.red.no-hover:focus *,
.red.no-hover:hover,
.red.no-hover:focus {
  color: #f44336;
  text-decoration: none;
  opacity: 1;
}
.hover-fade:hover,
.hover-fade:focus {
  opacity: 0.6;
  text-decoration: none !important;
}
.hover-fade:hover *,
.hover-fade:focus * {
  text-decoration: none !important;
}
ul.button-list li {
  list-style: none;
  display: inline-block;
}
ul.button-list li:first-child {
  margin-right: 10px !important;
}
@media only screen and (max-width: 568px) {
  ul.button-list li {
    margin: 0 !important;
  }
}
.sticky-buttons,
.sticky-buttons-tablet {
  position: fixed;
  -webkit-backface-visibility: hidden;
  width: 100%;
  bottom: 0;
  z-index: 999999;
  padding: 15px 20px;
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.sticky-buttons.pull-up,
.pull-up.sticky-buttons-tablet {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.sticky-buttons .button,
.sticky-buttons-tablet .button {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 1280px) {
  .button.btn-white.transparent {
    padding: 13px 0;
  }
}
@media only screen and (max-width: 64em) {
  .button.btn-white.transparent {
    padding: 13px 0;
  }
}
@media screen and (max-width: 39.99875em) {
  .button + .button {
    margin-top: 10px;
  }
}
@media (hover: none) {
  .button:after,
  .sweet-alert button:after {
    display: none;
  }
  .button:hover {
    background-color: #0a0a0a;
    color: #fff;
  }
  .btn-white:hover {
    background-color: #fff;
    color: #0a0a0a;
  }
  .btn-red:hover {
    background-color: #f44336;
    color: #fff;
  }
  .btn-transparent:hover {
    background-color: transparent;
    color: #fff;
  }
}
.mobi-basic-btn {
  padding: 16px;
  border: 1px solid #0a0a0a;
  border-radius: 0;
  margin-bottom: 0;
  background-color: #0a0a0a;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
  max-width: 200px;
}
.mobi-basic-btn.full {
  width: 100%;
  max-width: 100%;
}
a.light-grey-link {
  color: #a6a6a6;
  text-decoration: none;
}
.centered-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.button.flow {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 40em) {
  .button-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .button + .button {
    margin-left: 16px;
  }
  .button.flow {
    width: auto;
    max-width: unset;
  }
}
ul {
  margin-left: 0;
}
ul li {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1441px) {
  ul li {
    font-size: 1rem;
    line-height: 26px;
  }
}
@media only screen and (max-width: 48.063em) {
  ul li {
    font-size: 0.875rem;
    line-height: 19.33px;
    letter-spacing: 0.42px;
  }
}
@media only screen and (max-width: 39.9375em) {
  ul li {
    line-height: 14px;
  }
}
ul li ul {
  margin-top: 10px;
}
ul li a,
ul li a:hover,
ul li a:focus,
ul li a.active,
ul li.active a {
  text-decoration: none;
}
ul.checkmarks li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
ul.checkmarks li .fa {
  background: white;
  border-radius: 50%;
  color: black;
  font-size: 15px;
  height: 25px;
  min-width: 25px;
  padding: 5px;
  width: 25px;
}
ul.no-list li {
  list-style: none;
  display: block;
}
ul.inline-list li {
  list-style: none;
  display: inline;
}
ul.inline-block-list li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}
ul.red-list li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  display: list-item;
  text-align: left;
}
ul.red-list li::before {
  content: "\22c5";
  color: #0a0a0a;
  font-size: 40px;
  position: absolute;
  left: -8px;
  top: -2px;
}
ul.black-list li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}
ul.black-list li::before {
  content: "\22c5";
  color: #0a0a0a;
  font-size: 40px;
  position: absolute;
  left: -8px;
  top: -2px;
}
ul.transparent-list li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}
ul.transparent-list li::before {
  content: "";
  border: 1px solid #0a0a0a;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  left: -8px;
  top: 11px;
}
@media only screen and (max-width: 1280px) {
  ul li {
    font-size: 0.875rem;
    line-height: 26px;
  }
}
li.is-submenu-item a,
li.is-submenu-item,
ul.myacc {
  -webkit-transition: 800ms ease;
  transition: 800ms ease;
  -webkit-transition: 800ms;
  -moz-transition: 800ms;
}
ul.myacc:hover {
  background: lightgray;
  border-radius: 5px;
}
.is-dropdown-submenu {
  border: none;
  text-align: left;
  min-width: 175px;
}
li.is-submenu-item:hover,
li.is-submenu-item:hover a {
  background: lightgray;
  color: white;
}
li.logout.is-submenu-item.is-dropdown-submenu-item {
  border-top: 1px solid lightgray;
  margin-top: 25px;
}
li.logout:hover a,
li.logout:hover {
  background: white;
  color: black;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="passw.form-group .barord"],
input[type="file"],
input[type="date"] {
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
.accordion,
.accordion-content {
  background: none;
}
fieldset {
  margin: 0 0 3rem;
  padding: 0;
  border: none;
}
.form-group {
  margin: 5px 0 2.5em;
  font-family: "Helvetica Neue", "Helvetica", Arial;
}
.form-group-signin {
  margin-bottom: 2em;
}
.form-group.search-input:before {
  font-family: icomoon;
  position: absolute;
  content: "\e908";
  font-size: 20px;
  width: 22px;
  left: 8px;
  top: -6px;
  z-index: 11;
}
.form-group.search-location:before {
  font-family: icomoon;
  position: absolute;
  content: "\e907";
  font-size: 20px;
  width: 22px;
  left: 0;
  top: 0;
  z-index: 11;
}
.form-group.search-location-right:before {
  font-family: icomoon;
  position: absolute;
  content: "\e907";
  font-size: 20px;
  width: 22px;
  right: 0;
  top: 0;
  z-index: 11;
}
.form-group.search-input input {
  padding-left: 40px !important;
}
.form-group.search-location input {
  padding-left: 35px !important;
  padding-bottom: 10px;
}
.form-group.search-location-right input {
  padding-left: 0;
  padding-bottom: 10px;
}
.subscribe-section .form-group:before {
  left: 8px;
  top: -6px;
}
.subscribe-section .form-group.search-location:before {
  top: -2px;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  background-color: transparent;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-radio,
.form-group {
  position: relative;
}
.form-inline > .form-group,
.form-inline > .btn {
  display: inline-block;
  margin-bottom: 0;
}
.form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  color: #b3b3b3;
  font-size: 0.8rem;
}
.checkbox .form-help,
.form-radio .form-help,
.form-group .form-help {
  position: absolute;
  width: 100%;
}
.checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}
.form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}
.form-group input {
  height: 2rem;
}
.form-group textarea {
  resize: none;
}
.form-group select {
  width: 100%;
  font-size: 18px;
  height: 2rem;
  padding: 0.125rem 0.125rem 0.0625rem;
  border: none;
  line-height: 1.6;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: inherit;
}
.form-group.select:after {
  font-family: FontAwesome;
  position: absolute;
  content: "\f107";
  right: 0;
  top: 4px;
  z-index: 10;
}
.form-group select + .control-label {
  letter-spacing: 0.24px;
  line-height: 14px;
  font-size: 14px;
}
.form-group .control-label {
  position: absolute;
  top: 2px;
  left: 0;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #a6a6a6;
  font-weight: normal;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
}
@media only screen and (max-width: 1441px) {
  .form-group .control-label {
    top: 5px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .form-group .control-label {
    top: 5px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 48.063em) {
  .form-group .control-label {
    top: 8px;
  }
}
.form-group .bar {
  position: relative;
  border-bottom: 2px solid #0a0a0a;
  display: block;
}
.form-group .bar::before {
  content: "";
  height: 4px;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #0a0a0a;
  -webkit-transition: left 0.28s ease, width 0.28s ease;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}
.form-group input,
.form-group textarea {
  display: block;
  background: none;
  padding: 0.125rem 0.125rem;
  font-size: 18px;
  border-width: 0;
  border-color: transparent;
  line-height: 2rem;
  width: 100%;
  color: #0a0a0a;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}
.form-group input[type="file"] {
  line-height: 1;
}
.form-group select,
.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value,
.form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
  color: #0a0a0a;
  margin-bottom: 0;
}
.form-group > label + label.control-label,
.form-group select ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group input.form-file ~ .control-label,
.form-group input.has-value ~ .control-label,
.form-group textarea:focus ~ .control-label,
.form-group textarea:valid ~ .control-label,
.form-group textarea.form-file ~ .control-label,
.form-group textarea.has-value ~ .control-label {
  color: #0a0a0a;
  top: -0.9rem;
  left: 0;
  letter-spacing: 0.24px;
  line-height: 14px;
  font-size: 14px;
}
@media only screen and (max-width: 1441px) {
  .form-group > label + label.control-label,
  .form-group select ~ .control-label,
  .form-group input:focus ~ .control-label,
  .form-group input.form-file ~ .control-label,
  .form-group input.has-value ~ .control-label,
  .form-group textarea:focus ~ .control-label,
  .form-group textarea:valid ~ .control-label,
  .form-group textarea.form-file ~ .control-label,
  .form-group textarea.has-value ~ .control-label {
    top: -0.5rem;
    font-size: 13px;
    line-height: 13px;
  }
}
@media only screen and (max-width: 48.063em) {
  .form-group > label + label.control-label,
  .form-group select ~ .control-label,
  .form-group input:focus ~ .control-label,
  .form-group input.form-file ~ .control-label,
  .form-group input.has-value ~ .control-label,
  .form-group textarea:focus ~ .control-label,
  .form-group textarea:valid ~ .control-label,
  .form-group textarea.form-file ~ .control-label,
  .form-group textarea.has-value ~ .control-label {
    font-size: 12px;
    line-height: 12px;
  }
}
.sliders .form-group input:valid ~ .control-label {
  font-size: 1rem;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}
.form-group select:focus ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group textarea:focus ~ .control-label {
  color: #0a0a0a;
}
.form-group select:focus ~ .bar::before,
.form-group input:focus ~ .bar::before,
.form-group textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}
.checkbox label,
.form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 1.7rem;
  text-align: left;
  display: block;
  line-height: 1.3;
}
.checkbox input,
.form-radio input {
  width: auto;
  opacity: 0.00000001;
  left: 0;
}
.radio {
  display: inline-block;
  margin: 0 2rem 1rem 0;
}
.radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #0a0a0a;
}
.radio .helper::before,
.radio .helper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  border-radius: 50%;
  border: 0.12rem solid currentColor;
}
.radio .helper::after {
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: #00d261;
  border-color: #00d261;
}
.radio label:hover .helper {
  color: #0a0a0a;
}
.radio input:checked ~ .helper::after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
.radio input:checked ~ .helper::before {
  color: #00d261;
}
.checkbox {
  margin-bottom: 1rem;
}
.checkbox .helper {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  -webkit-transition: border-color 0.28s ease;
  transition: border-color 0.28s ease;
  margin-top: 3px;
}
.checkbox .helper::before,
.checkbox .helper::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #00d261;
  display: block;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 0.25rem;
  content: "";
  -webkit-transition: opacity 0.28s ease, height 0s linear 0.28s;
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
}
.checkbox .helper::before {
  top: 0.65rem;
  left: 0.38rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-box-shadow: 0 0 0 0.0625rem #fff;
  box-shadow: 0 0 0 0.0625rem #fff;
}
.checkbox .helper::after {
  top: 0.3rem;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.checkbox label:hover .helper {
  color: #0a0a0a;
}
.checkbox input:checked ~ .helper {
  color: #0a0a0a;
}
.checkbox input:checked ~ .helper::after,
.checkbox input:checked ~ .helper::before {
  opacity: 1;
  -webkit-transition: height 0.28s ease;
  transition: height 0.28s ease;
}
.checkbox input:checked ~ .helper::after {
  height: 0.5rem;
}
.checkbox input:checked ~ .helper::before {
  height: 1.1rem;
  -webkit-transition-delay: 0.28s;
  transition-delay: 0.28s;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: 0.5rem;
}
.has-error .legend.legend,
.has-error.form-group .control-label.control-label {
  color: #f44336;
}
.has-error.form-group .form-help,
.has-error.form-group .helper,
.has-error.checkbox .form-help,
.has-error.checkbox .helper,
.has-error.radio .form-help,
.has-error.radio .helper,
.has-error.form-radio .form-help,
.has-error.form-radio .helper {
  color: #f44336;
}
.has-error .bar::before {
  background: #f44336;
  left: 0;
  width: 100%;
}
.form-group input[type="text"]:valid:not(:focus) ~ .error:before,
.form-group input[type="url"]:valid:not(:focus) ~ .error:before,
.form-group input[type="tel"]:valid:not(:focus) ~ .error:before,
.form-group input[type="number"]:valid:not(:focus) ~ .error:before,
.form-group input[type="color"]:valid:not(:focus) ~ .error:before,
.form-group input[type="email"]:valid:not(:focus) ~ .error:before,
.form-group input[type="password"]:valid:not(:focus) ~ .error:before {
  margin: 0;
  width: 264px;
  background: #4caf50;
}
.form-group input[type="text"] ~ .info,
.form-group input[type="url"] ~ .info,
.form-group input[type="tel"] ~ .info,
.form-group input[type="number"] ~ .info,
.form-group input[type="color"] ~ .info,
.form-group input[type="email"] ~ .info,
.form-group input[type="password"] ~ .info {
  position: absolute;
  top: 5px;
  right: 10px;
  margin: 0 0 0 10px;
  border-radius: 100%;
  color: #999;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form-radio .radio + .radio {
  margin-right: 0;
}
.is-invalid-input:not(:focus),
:not(:focus).is-invalid-input,
.is-invalid-input2:not(:focus),
:not(:focus).is-invalid-input2,
.invalid-input:not(:focus),
:not(:focus).invalid-input {
  background-color: transparent;
  border-color: transparent;
}
.form-group .is-invalid-input:not(:focus) + span + label + .bar,
.form-group .is-invalid-input2:not(:focus) + span + label + .bar,
.form-group .invalid-input:not(:focus) + span + label + .bar {
  border-color: #f44336;
}
.form-group .is-invalid-input ~ .bar {
  border-color: #f44336;
}
.is-invalid-input ~ .bar::before {
  background-color: #f44336;
}
.form-error {
  margin-top: 5px;
  position: absolute;
  color: #f44336;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.24px;
  font-size: 14px;
  text-align: left;
}
@media only screen and (max-width: 1441px) {
  .form-error {
    font-size: 13px;
    line-height: 13px;
  }
}
@media only screen and (max-width: 48.063em) {
  .form-error {
    font-size: 12px;
    line-height: 12px;
  }
}
.form-group input[disabled] ~ .bar,
.form-group select[disabled] ~ .bar,
.form-group textarea[disabled] ~ .bar {
  border-bottom-style: dashed;
}
input[type="checkbox"].is-invalid-input:not(:focus) + .helper {
  border-color: #f44336;
}
.form-group.form-txtarea {
  max-height: none;
}
.form-group ::-moz-placeholder {
  font-size: 18px !important;
  color: #a6a6a6 !important;
}
.form-group :-ms-input-placeholder {
  font-size: 18px !important;
  color: #a6a6a6 !important;
}
.form-group :-moz-placeholder {
  font-size: 18px !important;
  color: #a6a6a6 !important;
}
.form-group ::-webkit-input-placeholder {
  font-size: 18px !important;
  color: #a6a6a6 !important;
}
.show {
  display: block !important;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-group input[type="number"] {
  -webkit-appearance: textfield;
}
@media only screen and (max-width: 1441px) {
  .form-group input,
  .form-group textarea,
  .form-group select,
  .radio .helper {
    font-size: 1rem;
    line-height: 19.33px;
  }
  .form-group ::-moz-placeholder {
    font-size: 1rem !important;
  }
  .form-group :-ms-input-placeholder {
    font-size: 1rem !important;
  }
  .form-group :-moz-placeholder {
    font-size: 1rem !important;
  }
  .form-group ::-webkit-input-placeholder {
    font-size: 1rem !important;
  }
}
@media only screen and (max-width: 48.063em) {
  .form-group input,
  .form-group textarea,
  .form-group select,
  .radio .helper {
    font-size: 0.875rem;
    line-height: 19.33px;
  }
  .form-group ::-moz-placeholder {
    font-size: 0.875rem !important;
  }
  .form-group :-ms-input-placeholder {
    font-size: 0.875rem !important;
  }
  .form-group :-moz-placeholder {
    font-size: 0.875rem !important;
  }
  .form-group ::-webkit-input-placeholder {
    font-size: 0.875rem !important;
  }
}
@media only screen and (max-width: 667px) {
  .form-group input,
  .form-group textarea,
  .form-group select,
  .radio .helper {
    font-size: 0.875rem;
    line-height: 19.33px;
  }
}
.input[type="text"] {
  background: transparent;
  border-bottom: 2px solid;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
span.input-icon {
  position: absolute;
  right: 0;
  top: 5px;
  cursor: pointer;
}
span.input-icon.fa-eye {
  top: 10px;
}
main {
  display: block;
}
* {
  outline: none;
}
@-webkit-keyframes fontfix {
  from {
    opacity: 1 !important;
  }
  to {
    opacity: 1 !important;
  }
}
body {
  font-family: "Helvetica Neue", "Helvetica", Arial;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5625rem;
  width: 100%;
  outline: none;
  letter-spacing: 0.54px;
  -webkit-animation-delay: 0.1s !important;
  -webkit-animation-name: fontfix !important;
  -webkit-animation-duration: 0.1s !important;
  -webkit-animation-iteration-count: 1 !important;
  -webkit-animation-timing-function: linear !important;
}
strong,
b {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
@media only screen and (min-width: 64.063em) {
  .l-visibility-hidden {
    visibility: hidden;
  }
}
@media only screen and (max-width: 1652px) {
  .visit-us {
    width: 100% !important;
    margin: 0 !important;
  }
}
@media only screen and (max-width: 1600px) {
  .font100,
  .inner-banner h1,
  .inner-banner .font-h1 {
    font-size: 70px;
  }
}
@media only screen and (max-width: 48.063em) {
  .form-nav {
    margin-top: 70px;
  }
  .clinic-gallery .slick-list {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@media only screen and (min-width: 48.063em) and (max-width: 64em) {
  .l-visibility-hidden {
    visibility: hidden;
  }
}
@media only screen and (max-width: 64em) {
  .form-nav {
    margin-top: 50px;
  }
  .hide-for-phone-tablet {
    display: none !important;
  }
  .text-center-phone-tablet {
    text-align: center;
  }
  #progressbars li {
    width: 32%;
  }
  .show-for-phone-tablet {
    display: block !important;
  }
  .clinic-gallery .slick-list {
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
  }
}
@media only screen and (max-width: 736px) {
  .text-center-phone {
    text-align: center;
  }
}
@media only screen and (max-width: 568px) {
  .result-item .row {
    padding-left: 10px;
    padding-right: 10px;
  }
  .clinic-gallery .slick-list {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  .grid-item {
    margin-bottom: 20px;
  }
  .custom-cbx-rdb .checkbox {
    top: -15px;
    right: 10px;
    border-color: transparent;
  }
  .staff .slide-prev {
    left: 6.5%;
  }
  .staff .slide-next {
    right: 6.5%;
  }
}
a {
  color: #0a0a0a;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 736px) {
  [src*="apeagle.io"] {
    display: none;
  }
  [src*="api.autopilothq"] {
    display: none;
  }
}
.bg-artwork {
  background: #f5f7f7 url("../../images/artwork-bg.html") repeat;
}
.bg-white {
  background-color: #fff;
  color: #0a0a0a;
}
.bg-black {
  background-color: #0a0a0a;
  color: #fff;
}
.bg-dark-grey {
  background-color: #58595b;
  color: #fff;
}
.bg-dark-grey .button.btn-white {
  color: #58595b;
}
.bg-grey {
  background-color: #a6a6a6;
}
.bg-grey .button.btn-white {
  color: #a6a6a6;
}
.bg-light-grey {
  background-color: #e7e8e8;
}
.bg-background-grey {
  background-color: #f2f2f2;
}
.bg-background-light-grey {
  background-color: #efefef;
}
.bg-grey-tag {
  background-color: #c7c7c7;
}
.bg-grey-6 {
  background-color: #e1e2e0;
}
.bg-grey-7 {
  background-color: #d3d4d3;
}
.bg-grey-8 {
  background-color: #bfc0c1;
}
.row {
  max-width: 103.375rem;
}
.column,
.columns,
.columns {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.section-spacer-top {
  padding-top: 5.3125rem;
}
.section-spacer-bottom {
  padding-bottom: 5.3125rem;
}
.spacer-l-top,
.carousel .banner .pre-loader {
  margin-top: 5.3125rem;
}
.spacer-l-bottom {
  margin-bottom: 5.3125rem;
}
.spacer-m-top {
  margin-top: 3.125rem;
}
.spacer-m-bottom {
  margin-bottom: 3.125rem;
}
.spacer-s-top {
  margin-top: 1.875rem;
}
.spacer-s-bottom {
  margin-bottom: 1.875rem;
}
.spacer-ss-top {
  margin-top: 1.25rem;
}
.spacer-ss-bottom {
  margin-bottom: 1.25rem;
}
.spacer-xs-top {
  margin-top: 0.625rem;
}
.spacer-xs-bottom {
  margin-bottom: 0.625rem;
}
.indent {
  margin-left: 10px;
}
.indent-top {
  margin-top: 10px;
}
.indent-bottom {
  margin-bottom: 10px;
}
.indent-right {
  margin-right: 10px;
}
.margin-bottom10 {
  margin-bottom: 10px;
}
.margin-top10 {
  margin-top: 10px;
}
.margin-left10 {
  margin-left: 10px;
}
.margin-right10 {
  margin-right: 10px;
}
.margin-bottom15 {
  margin-bottom: 15px;
}
.margin-top15 {
  margin-top: 15px;
}
.margin-left15 {
  margin-left: 15px;
}
.margin-right15 {
  margin-right: 15px;
}
.margin-bottom20 {
  margin-bottom: 20px;
}
.margin-top20 {
  margin-top: 20px;
}
.margin-left20 {
  margin-left: 20px;
}
.margin-right20 {
  margin-right: 20px;
}
.margin-bottom30 {
  margin-bottom: 30px;
}
.margin-top30 {
  margin-top: 30px;
}
.margin-left30 {
  margin-left: 30px;
}
.margin-right30 {
  margin-right: 30px;
}
.margin-bottom40 {
  margin-bottom: 40px;
}
.margin-top40 {
  margin-top: 40px;
}
.margin-bottom50 {
  margin-bottom: 50px;
}
.margin-top50 {
  margin-top: 50px;
}
.margin-bottom80 {
  margin-bottom: 80px;
}
.margin-top80 {
  margin-top: 80px;
}
.margin-bottom100 {
  margin-bottom: 100px;
}
.margin-top100 {
  margin-top: 100px;
}
.margin5 {
  margin: 5%;
}
.margin-center {
  margin-left: auto;
  margin-right: auto;
}
.margin-right3p {
  margin-right: 3%;
}
.margin-right5p {
  margin-right: 5%;
}
.no-mg {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.no-mg-top {
  margin-top: 0 !important;
}
.no-mg-bottom {
  margin-bottom: 0 !important;
}
.no-mg-left {
  margin-left: 0 !important;
}
.no-mg-right {
  margin-right: 0 !important;
}
.padding5 {
  padding: 5%;
}
.padding15 {
  padding: 15px !important;
}
.padding30 {
  padding: 30px;
}
.padding50 {
  padding: 50px;
}
.padding70 {
  padding: 70px;
}
.padding-bottom5 {
  padding-bottom: 5px;
}
.padding-bottom10 {
  padding-bottom: 10px;
}
.padding-top10 {
  padding-top: 10px;
}
.padding-left10 {
  padding-left: 10px;
}
.padding-right10 {
  padding-right: 10px;
}
.padding-bottom15 {
  padding-bottom: 15px;
}
.padding-top15 {
  padding-top: 15px;
}
.padding-left15 {
  padding-left: 15px;
}
.padding-right15 {
  padding-right: 15px;
}
.padding-bottom20 {
  padding-bottom: 20px;
}
.padding-left20 {
  padding-left: 20px;
}
.padding-right20 {
  padding-right: 20px;
}
.padding-top20 {
  padding-top: 20px;
}
.padding-left30 {
  padding-left: 30px;
}
.padding-right30 {
  padding-right: 30px;
}
.padding-bottom30 {
  padding-bottom: 30px;
}
.padding-top30 {
  padding-top: 30px;
}
.padding-top40 {
  padding-top: 40px;
}
.padding-bottom50 {
  padding-bottom: 50px;
}
.padding-top50 {
  padding-top: 50px;
}
.padding-left50 {
  padding-left: 50px;
}
.padding-right50 {
  padding-right: 50px;
}
.padding-bottom100 {
  padding-bottom: 100px;
}
.padding-top100 {
  padding-top: 100px;
}
.no-pd {
  padding: 0 !important;
}
.no-pd {
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.no-pd-top {
  padding-top: 0;
}
.no-pd-bottom {
  padding-bottom: 0;
}
.no-pd-left {
  padding-left: 0;
}
.no-pd-right {
  padding-right: 0;
}
.banner-spacer-top {
  padding-top: 5.3125rem;
}
.banner-spacer-bottom {
  padding-bottom: 5.3125rem;
}
@media only screen and (max-width: 1751px) {
  .row {
    max-width: 100rem;
  }
}
@media only screen and (max-width: 1651px) {
  .row {
    max-width: 95rem;
  }
}
@media only screen and (max-width: 1551px) {
  .row {
    max-width: 88rem;
  }
}
@media only screen and (max-width: 1441px) {
  .row {
    max-width: 80rem;
  }
  .padding-top100 {
    padding-top: 5.3125rem;
  }
  .padding-bottom100 {
    padding-bottom: 5.3125rem;
  }
  .margin-top80 {
    margin-top: 3.125rem;
  }
  .section-spacer-top {
    padding-top: 5.3125rem;
  }
  .section-spacer-bottom {
    padding-bottom: 5.3125rem;
  }
  .spacer-l-top,
  .carousel .banner .pre-loader {
    margin-top: 3.125rem;
  }
  .spacer-l-bottom {
    margin-bottom: 3.125rem;
  }
  .spacer-m-top {
    margin-top: 1.875rem;
  }
  .spacer-m-bottom {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (max-width: 1280px) {
  .row {
    max-width: 75rem;
  }
}
@media only screen and (max-width: 64em) {
  .banner-spacer-top {
    padding-top: 0;
  }
  .pricing-container .banner-spacer-top {
    padding-top: 3.3125rem;
  }
  .banner-spacer-bottom {
    padding-bottom: 0;
  }
  .m-spacer-s-top {
    margin-top: 1.875rem;
  }
  .m-spacer-s-bottom {
    margin-bottom: 1.875rem;
  }
  .m-spacer-xs-top {
    margin-top: 0.625rem;
  }
  .m-spacer-xs-bottom {
    margin-bottom: 0.625rem;
  }
  .m-spacer-m-top {
    margin-top: 3.125rem;
  }
  .m-spacer-m-bottom {
    margin-bottom: 3.125rem;
  }
}
@media only screen and (max-width: 48.063em) {
  .sm-centered-custom {
    margin: 0 auto !important;
    float: none !important;
  }
  .m-section-spacer-top {
    padding-top: 5.3125rem;
  }
  .m-section-spacer-bottom {
    padding-bottom: 5.3125rem;
  }
  .m-no-pd {
    padding: 0;
  }
  .m-no-pd-top {
    padding-top: 0;
  }
  .m-no-pd-bottom {
    padding-bottom: 0;
  }
  .m-no-pd-right {
    padding-right: 0;
  }
  .m-no-margin-right {
    margin-right: 0 !important;
  }
  .m-no-pd-left {
    padding-left: 0;
  }
  .m-no-mg {
    margin: 0;
  }
  .m-no-mg-top {
    margin-top: 0;
  }
  .m-no-mg-bottom {
    margin-bottom: 0;
  }
  .m-no-mg-right {
    margin-right: 0;
  }
  .m-no-mg-left {
    margin-left: 0;
  }
}
@media only screen and (max-width: 39.9375em) {
  .padding-top100 {
    padding-top: 3.125rem;
  }
  .padding-bottom100 {
    padding-bottom: 3.125rem;
  }
  .margin-top80 {
    margin-top: 3.125rem;
  }
  .section-spacer-top,
  .m-section-spacer-top,
  .s-section-spacer-top {
    padding-top: 3.125rem;
  }
  .section-spacer-bottom,
  .m-section-spacer-bottom,
  .s-section-spacer-bottom {
    padding-bottom: 3.125rem;
  }
  .s-spacer-l-top,
  .s-spacer-m-top,
  .spacer-l-top,
  .carousel .banner .pre-loader {
    margin-top: 3.125rem;
  }
  .s-spacer-l-bottom,
  .s-spacer-m-bottom,
  .spacer-l-bottom {
    margin-bottom: 3.125rem;
  }
  .s-spacer-m-top,
  .s-spacer-s-top,
  .spacer-m-top {
    margin-top: 1.875rem;
  }
  .s-spacer-m-bottom,
  .s-spacer-s-bottom,
  .spacer-m-bottom {
    margin-bottom: 1.875rem;
  }
  .no-pd-left,
  .no-pd-right {
    padding-left: 0;
    padding-right: 0;
  }
  .s-no-pd {
    padding: 0;
  }
  .s-no-pd-top {
    padding-top: 0;
  }
  .s-no-pd-bottom {
    padding-bottom: 0;
  }
  .s-no-pd-right {
    padding-right: 0;
  }
  .s-no-margin-right {
    margin-right: 0 !important;
  }
  .s-no-pd-left {
    padding-left: 0;
  }
  .s-no-mg {
    margin: 0;
  }
  .s-no-mg-top {
    margin-top: 0;
  }
  .s-no-mg-bottom {
    margin-bottom: 0;
  }
  .s-no-mg-right {
    margin-right: 0;
  }
  .s-no-mg-left {
    margin-left: 0;
  }
  .s-spacer-ss-top {
    margin-top: 1.25rem;
  }
  .s-spacer-ss-bottom {
    margin-bottom: 1.25rem;
  }
  .pricing-container .banner-spacer-top {
    padding-top: 0;
  }
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
  z-index: 1;
}
.z-index-1 {
  z-index: 1;
}
.bottom-10 {
  bottom: 10px;
}
.clear {
  clear: both;
}
.no-float {
  float: none !important;
}
.table {
  display: table;
}
.table-row {
  display: table-row;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
.vertical-align-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.align-left {
  -webkit-box-align: left;
  -ms-flex-align: left;
  align-items: left;
}
.align-right {
  -webkit-box-align: right;
  -ms-flex-align: right;
  align-items: right;
}
.inline-block {
  display: inline-block !important;
}
.block {
  display: block !important;
}
.no-background {
  background: none;
}
.no-border {
  border: none;
}
.show-for-big {
  display: none !important;
}
.hide-for-big {
  display: block;
}
.show-for-phone-tablet {
  display: none !important;
}
@media only screen and (max-width: 64em) {
  .show-for-phone-tablet {
    display: block !important;
  }
}
@media only screen and (max-width: 64em) {
  .hide-for-phone-tablet {
    display: none !important;
  }
}
@media only screen and (min-width: 625px) {
  .mobile-only {
    display: none !important;
  }
}
.disabled,
.disabled .fa {
  color: #e7e8e8;
  cursor: default;
}
.pointer {
  cursor: pointer;
}
.full {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .full-sm {
    width: 100%;
  }
}
.height-full {
  height: 100%;
}
img.full {
  width: 100%;
  height: 100%;
}
.row.full {
  max-width: 100%;
}
.button.full {
  width: 100%;
  max-width: 100%;
}
hr {
  max-width: 100%;
  border-bottom: 1px solid #ededed;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  .min-width-third {
    min-width: 33% !important;
  }
}
.min-width-initial {
  min-width: initial;
}
@media only screen and (min-width: 48.063em) {
  .ml-vertical-align-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 48.063em) {
  .height-m-auto {
    height: auto;
  }
  .align-center-medium,
  .align-m-center {
    -webkit-box-align: middle;
    -ms-flex-align: middle;
    align-items: middle;
  }
  .align-m-left {
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
  }
  .align-m-right {
    -webkit-box-align: right;
    -ms-flex-align: right;
    align-items: right;
  }
}
.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-child-shrink {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.flex-child-grow {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.align-self-top {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.align-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.align-justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 64em) {
  .align-center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.black {
  color: #0a0a0a;
}
.white {
  color: #fff;
}
.grey {
  color: #a6a6a6;
}
.light-grey {
  color: #e7e8e8;
}
.red {
  color: #f44336;
}
.green {
  color: #53b064;
}
.orange {
  color: #ff9000;
}
.dark-grey {
  color: #58595b;
}
.error {
  color: #f44336;
}
.fb-blue {
  color: #3b5998;
}
.google-g-red {
  color: #dd4b39;
}
.gold {
  color: #ccb46d;
}
.light-grey-bg {
  background: #eee;
}
.fa-trash {
  color: #666;
}
.banner-heading,
.font-banner-heading {
  font-size: 90px;
  line-height: 80.45px;
  letter-spacing: -2.7px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
@media only screen and (max-width: 1441px) {
  .banner-heading,
  .font-banner-heading {
    font-size: 78px;
    line-height: 70.5px;
    letter-spacing: -2.2px;
  }
}
@media only screen and (max-width: 48.063em) {
  .banner-heading,
  .font-banner-heading {
    font-size: 68px;
    line-height: 69.37px;
    letter-spacing: -2.04px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .banner-heading,
  .font-banner-heading {
    font-size: 46px;
    line-height: 46.93px;
    letter-spacing: -1.38px;
  }
}
.title-heading,
.font-title-heading {
  font-size: 82px;
  line-height: 83.66px;
  letter-spacing: -2.46px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
@media only screen and (max-width: 48.063em) {
  .title-heading,
  .font-title-heading {
    font-size: 50px;
    line-height: 51.01px;
    letter-spacing: -1.5px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .title-heading,
  .font-title-heading {
    font-size: 42px;
    line-height: 42.85px;
    letter-spacing: -1.26px;
  }
}
.font-small {
  font-size: 12px;
}
.fa-4 {
  font-size: 40px;
}
.fa-3 {
  font-size: 30px;
}
.fa-2 {
  font-size: 20px;
}
label {
  color: #0a0a0a;
  font-size: 18px;
  font-family: "Helvetica Neue", "Helvetica", Arial;
}
.light {
  font-weight: 100;
}
.regular {
  font-weight: 300;
}
.semi-bold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
.no-underline,
.no-underline:hover,
.no-underline:focus {
  text-decoration: none !important;
}
@font-face {
  font-family: "icomoon";
  src: url("../assets/fonts/icomoon-20fdc9172ada78.eot?8hupl3");
  src: url("../assets/fonts/icomoon-20fdc9172ada78.eot?8hupl3#iefix")
      format("embedded-opentype"),
    url("../assets/fonts/icomoon-aac6d8798eda78.ttf?8hupl3") format("truetype"),
    url("../assets/fonts/icomoon-ffab616030da78.woff?8hupl3") format("woff"),
    url("../../fonts/icomoonda78.html?8hupl3#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 1.25rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.font14 [class^="icon-"],
.font14 [class*=" icon-"] {
  font-size: 0.875rem;
}
.icon-star-disable:before {
  content: "\e90a";
}
.icon-star-enable:before {
  content: "\e90b";
}
.icon-calendar:before {
  content: "\e900";
}
.icon-complimentary-consultation:before {
  content: "\e901";
}
.icon-cosmetic-injections:before {
  content: "\e902";
}
.icon-female:before {
  content: "\e903";
}
.icon-gift:before {
  content: "\e904";
}
.icon-laser-hair-removal:before {
  content: "\e905";
}
.icon-male:before {
  content: "\e906";
}
.icon-pin-white:before {
  content: "\e907";
}
.icon-search:before {
  content: "\e908";
}
.icon-skin-treatments:before {
  content: "\e909";
}
.icon-pin-black {
  background: url("../assets/images/pin-black-solid-c5b70ae43a.svg") no-repeat;
  background-size: contain;
}
.icon-pin-grey {
  background: url("../assets/images/pin-black-solid-c5b70ae43a.svg") no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 64em) {
  .font100 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 48.063em) {
  label {
    font-size: 0.875rem;
    line-height: 19.33px;
    letter-spacing: 0.36px;
  }
  .text-center-medium {
    text-align: center;
  }
  .text-left-medium {
    text-align: left;
  }
  .text-right-medium {
    text-align: right;
  }
}
@media only screen and (max-width: 39.9375em) {
  .font20,
  .font24,
  .font30 {
    font-size: 18px;
    line-height: 10px;
  }
  .font100 {
    font-size: 32px;
    line-height: 42px;
  }
  label {
    font-size: 0.75rem;
    line-height: 16.57px;
  }
  .text-center-small {
    text-align: center;
  }
  .text-left-small {
    text-align: left;
  }
  .text-right-small {
    text-align: right;
  }
}
.small-text {
  font-size: 0.875rem;
  font-family: "Helvetica Neue", "Helvetica", Arial;
  -webkit-transition: margin 300ms;
  transition: margin 300ms;
}
.medium-text {
  font-size: 1rem;
}
.medium-text-bold {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.large-text {
  font-size: 1.5rem;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.flipOutX,
s .animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.icon {
  position: relative;
  top: 0;
  left: 0%;
  float: left;
}
.icon.white:before,
.icon.white:after {
  background-color: #ffffff;
}
.icon.active:before,
.icon.active:after {
  background-color: #fff;
}
.hamburger-to-close {
  width: 25px;
  height: auto;
  cursor: pointer;
}
.hamburger-to-close:before,
.hamburger-to-close:after {
  content: "";
}
.hamburger-to-close .hamburger-middle,
.hamburger-to-close:before,
.hamburger-to-close:after {
  position: absolute;
  width: 25px;
  height: 2px;
  left: 0;
  background-color: #fff;
  border-radius: 10px;
}
.hamburger-to-close .hamburger-middle {
  top: 50%;
  margin-top: -4px;
  -webkit-transition: -webkit-transform ease 200ms;
  transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
  transition: transform ease 200ms, -webkit-transform ease 200ms;
}
.hamburger-to-close:before {
  top: 5px;
  -webkit-transition: top 200ms ease 200ms, -webkit-transform ease 200ms;
  transition: top 200ms ease 200ms, -webkit-transform ease 200ms;
  transition: top 200ms ease 200ms, transform ease 200ms;
  transition: top 200ms ease 200ms, transform ease 200ms,
    -webkit-transform ease 200ms;
}
.hamburger-to-close:after {
  bottom: 11px;
  -webkit-transition: bottom 200ms ease 200ms, -webkit-transform ease 200ms;
  transition: bottom 200ms ease 200ms, -webkit-transform ease 200ms;
  transition: bottom 200ms ease 200ms, transform ease 200ms;
  transition: bottom 200ms ease 200ms, transform ease 200ms,
    -webkit-transform ease 200ms;
}
.hamburger-to-close.close .hamburger-middle {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 200ms ease 200ms;
  transition: -webkit-transform 200ms ease 200ms;
  transition: transform 200ms ease 200ms;
  transition: transform 200ms ease 200ms, -webkit-transform 200ms ease 200ms;
  display: none;
}
.hamburger-to-close.close:before {
  top: -6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top ease 200ms, -webkit-transform 200ms ease 200ms;
  transition: top ease 200ms, -webkit-transform 200ms ease 200ms;
  transition: top ease 200ms, transform 200ms ease 200ms;
  transition: top ease 200ms, transform 200ms ease 200ms,
    -webkit-transform 200ms ease 200ms;
}
.hamburger-to-close.close:after {
  bottom: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: bottom ease 200ms, -webkit-transform 200ms ease 200ms;
  transition: bottom ease 200ms, -webkit-transform 200ms ease 200ms;
  transition: bottom ease 200ms, transform 200ms ease 200ms;
  transition: bottom ease 200ms, transform 200ms ease 200ms,
    -webkit-transform 200ms ease 200ms;
}
.plus-to-minus {
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: -webkit-transform ease 400ms;
  transition: -webkit-transform ease 400ms;
  transition: transform ease 400ms;
  transition: transform ease 400ms, -webkit-transform ease 400ms;
}
.plus-to-minus:before,
.plus-to-minus:after {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
}
.plus-to-minus:before {
  left: 50%;
  margin-left: -3px;
  margin-top: 3px;
  width: 2px;
  height: 15px;
}
.plus-to-minus:after {
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: 15px;
  -webkit-transition: -webkit-transform ease 400ms;
  transition: -webkit-transform ease 400ms;
  transition: transform ease 400ms;
  transition: transform ease 400ms, -webkit-transform ease 400ms;
}
.plus-to-minus.minus {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.plus-to-minus.minus:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.img-wrapper {
  overflow: hidden;
  border: 1px solid transparent;
}
.img-wrapper img.zoom {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
}
.img-wrapper img.zoom:hover,
.img-wrapper img.zoom:focus {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.menu--shylock .menu__link {
  position: relative;
  padding-right: 0;
  padding-left: 0;
  color: #0a0a0a;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-bottom: 5px;
}
.menu--shylock .menu__link::after,
.menu--shylock .menu__link::before {
  background: #f44336;
}
.menu--shylock .menu__item--current .menu__link,
.menu--shylock .menu__item--current .menu__link:hover,
.menu--shylock .menu__item--current .menu__link:focus {
  color: #0a0a0a;
}
.menu--shylock .menu__item--current .menu__link::after,
.menu--shylock .menu__item--current .menu__link::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.menu--shylock .menu__item--current .menu__link::before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.menu--shylock .menu__link:hover,
.menu--shylock .menu__link:focus,
.menu--shylock .menu__link:hover,
.menu--shylock .menu__link:focus {
  color: #0a0a0a;
  opacity: 0.6;
  text-decoration: none;
}
.pagination.webapp li.pag-number a,
.pagination.webapp li.pag-prev a,
.pagination.webapp li.pag-next a {
  position: relative;
  color: #0a0a0a;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.pagination.webapp li.pag-number::after,
.pagination.webapp li.pag-number::before,
.pagination.webapp li.pag-prev::after,
.pagination.webapp li.pag-prev::before,
.pagination.webapp li.pag-next::after,
.pagination.webapp li.pag-next::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.pagination.webapp li.pag-number::before,
.pagination.webapp li.pag-prev::before,
.pagination.webapp li.pag-next::before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.pagination.webapp li.pag-number a:hover,
.pagination.webapp li.pag-number a:focus,
.pagination.webapp li.pag-prev a:hover,
.pagination.webapp li.pag-prev a:focus,
.pagination.webapp li.pag-next a:hover,
.pagination.webapp li.pag-next a:focus {
  border-bottom: 0;
  text-decoration: none;
}
.pagination.webapp li.pag-number a:hover::before,
.pagination.webapp li.pag-number a:focus::before,
.pagination.webapp li.pag-prev a:hover::before,
.pagination.webapp li.pag-prev a:focus::before,
.pagination.webapp li.pag-next a:hover::before,
.pagination.webapp li.pag-next a:focus::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.pagination.webapp li.pag-number a::before,
.pagination.webapp li.pag-number a::after,
.pagination.webapp li.pag-prev a::before,
.pagination.webapp li.pag-prev a::after,
.pagination.webapp li.pag-next a::before,
.pagination.webapp li.pag-next a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
  -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.pagination.webapp li.pag-number a::before,
.pagination.webapp li.pag-prev a::before,
.pagination.webapp li.pag-next a::before {
  background: #0a0a0a;
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
.pagination.webapp li.pag-number a::after,
.pagination.webapp li.pag-prev a::after,
.pagination.webapp li.pag-next a::after {
  background: #f44336;
}
.pag-prev::before {
  font-family: FontAwesome;
  content: "\f104";
  font-size: 20px;
  position: relative;
  top: 2px;
}
.pag-next::after {
  font-family: FontAwesome;
  content: "\f105";
  font-size: 20px;
  position: relative;
  top: 2px;
}
.header-animate {
  overflow-y: hidden;
}
.animate-up {
  -webkit-animation: text-up 1s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation: text-up 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@-webkit-keyframes text-up {
  from {
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes text-up {
  from {
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.text-animate .text-animate-item {
  color: #ededed;
}
.text-animate.red,
.text-animate.red span.text-animate-item {
  color: #f44336;
}
.custom-cbx-rdb .checkbox.square:checked:after {
  background: white;
}
.custom-cbx-rdb .checkbox.square::after {
  border: 1px solid #010101;
}
.custom-cbx-rdb .checkbox.square:checked::after {
  border: 1px solid #010101;
}
.custom-cbx-rdb .custom-cbx-rdb .checkbox.square:after {
  border-radius: initial;
}
.custom-cbx-rdb .cbx-container {
  position: absolute;
  top: 10px;
  right: -5px;
}
.custom-cbx-rdb .label--checkbox,
.custom-cbx-rdb .label--radio {
  position: relative;
  margin: 0.5rem;
  font-family: Arial, sans-serif;
  line-height: 135%;
  cursor: pointer;
}
.custom-cbx-rdb .checkbox {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
  -webkit-appearance: none;
  right: 15px;
  top: -15px;
}
.custom-cbx-rdb .checkbox:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75),
    -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  content: "";
  position: absolute;
  left: 0.1975rem;
  top: 0.125rem;
  z-index: 1;
  width: 0.75rem;
  height: 0.375rem;
  border: 3px solid #fff;
  border-top-style: none;
  border-right-style: none;
}
.custom-cbx-rdb .checkbox:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}
.custom-cbx-rdb .checkbox:after {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.05rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  border: transparent;
  cursor: pointer;
  border-radius: 50%;
}
.custom-cbx-rdb .checkbox:checked:after {
  background: #f44336;
  border: 2px solid transparent;
}
.custom-cbx-rdb .radio {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
}
.custom-cbx-rdb .radio:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75),
    -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  background: #010101;
  border-radius: 50%;
}
.custom-cbx-rdb .radio:checked:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.custom-cbx-rdb .radio:after {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  border: 1px solid #010101;
  border-radius: 50%;
}
.material_checkbox,
input.material_checkbox {
  position: relative;
  margin: 0 15px 0 0;
  height: 20px;
  width: 20px;
  display: inline;
  top: 10px;
  -webkit-appearance: none;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.material_checkbox:focus {
  outline-color: #fff;
}
.material_checkbox:before {
  border: 2px solid #0a0a0a;
  content: "";
  cursor: pointer;
  display: block;
  height: 20px;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 20px;
  z-index: 1;
  opacity: 1;
  top: -6px;
}
.material_checkbox:checked:before {
  border-top-style: none;
  border-right-style: none;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.material_checkbox:after {
  background: #fff;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  top: 0;
  width: 20;
  z-index: 2;
  opacity: 1;
}
.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.5s ease-in-out;
  transition: -webkit-filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
}
.grayscale:hover,
.grayscale:focus,
a:hover .grayscale,
a:focus .grayscale {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.image-swipe {
  overflow: hidden;
  -webkit-animation: swipe-wrapper 2s cubic-bezier(0.77, 0, 0.175, 1) 1;
  animation: swipe-wrapper 2s cubic-bezier(0.77, 0, 0.175, 1) 1;
}
.image-swipe .image-swipe-animate {
  -webkit-animation: swipe-inner 2s cubic-bezier(0.77, 0, 0.175, 1) 1;
  animation: swipe-inner 2s cubic-bezier(0.77, 0, 0.175, 1) 1;
}
.image-swipe-animate img {
  height: 100%;
  max-width: initial;
}
@-webkit-keyframes swipe-wrapper {
  0% {
    width: 0;
  }
  50% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes swipe-wrapper {
  0% {
    width: 0;
  }
  50% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes swipe-inner {
  0% {
    margin-left: -200px;
  }
  50% {
    margin-left: -200px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes swipe-inner {
  0% {
    margin-left: -200px;
  }
  50% {
    margin-left: -200px;
  }
  100% {
    margin-left: 0;
  }
}
.heading-animate {
  position: relative;
}
.heading-animate {
  position: relative;
  display: inline-block;
  white-space: initial;
}
.heading-animate-boxhome {
  position: absolute;
  z-index: 2;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0a0a0a;
  overflow: hidden;
  -webkit-animation: heading-box-animation 1s 0s ease;
  animation: heading-box-animation 1s 0s ease;
}
.heading-animate-text {
  -webkit-animation: heading-box-animation 1s 0s ease forwards;
  animation: heading-box-animation 1s 0s ease forwards;
}
.heading-animate + .heading-animate .heading-animate-text {
  -webkit-animation: heading-box-animation 1s 0.5s ease forwards;
  animation: heading-box-animation 1s 0.5s ease forwards;
}
.heading-animate + .heading-animate .heading-animate-boxhome {
  -webkit-animation: heading-box-animation 1s 0.5s ease;
  animation: heading-box-animation 1s 0.5s ease;
}
.heading-animate + .heading-animate + .heading-animate .heading-animate-text {
  -webkit-animation: heading-box-animation 1s 1s ease forwards;
  animation: heading-box-animation 1s 1s ease forwards;
}
.heading-animate
  + .heading-animate
  + .heading-animate
  .heading-animate-boxhome {
  -webkit-animation: heading-box-animation 1s 1s ease;
  animation: heading-box-animation 1s 1s ease;
}
.text-show {
  visibility: visible;
}
@-webkit-keyframes heading-animation {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes heading-animation {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes heading-box-animation {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@keyframes heading-box-animation {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
.button-wrap {
  display: inline-block;
}
.button-wrap {
  position: relative;
  min-width: 210px;
  height: 57px;
  padding: 0 !important;
}
@media only screen and (max-width: 1280px) {
  .button-wrap {
    min-width: 170px;
  }
}
@media only screen and (max-width: 64em) {
  .button-wrap {
    min-width: 200px;
  }
}
@media only screen and (max-width: 639px) {
  .button-wrap {
    min-width: 100%;
  }
}
.button-wrap .button-swipe {
  position: absolute;
  overflow: hidden;
  width: 100%;
}
.button-wrap + .button-wrap .button-swipe {
  position: absolute;
  overflow: hidden;
  width: 100%;
}
.link-line-animate {
  position: relative;
  padding-bottom: 2px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.link-line-animate:hover,
.link-line-animate:focus,
.link-line-animate:hover *,
.link-line-animate:focus * {
  opacity: 0.6;
  text-decoration: none !important;
}
.link-line-animate::after {
  content: "";
  border-bottom: 1px solid #0a0a0a;
  width: 88%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.white .link-line-animate::after {
  border-bottom: 1px solid #fff;
}
.link-line-animate-full {
  position: relative;
  padding-bottom: 2px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-bottom: 1px solid #0a0a0a;
  width: 100%;
}
.white .link-line-animate-full {
  border-bottom: 1px solid #fff;
}
.link-line-animate-full:hover,
.link-line-animate-full:focus,
.link-line-animate-full:hover *,
.link-line-animate-full:focus * {
  opacity: 0.6;
}
.position-right.is-transition-push:after {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.off-canvas {
  background: #fff;
}
.off-canvas .menu li {
  margin-bottom: 0;
  position: relative;
}
.off-canvas .menu li > span {
  padding: 15.5px 20px;
  border-bottom: 1px solid #191816;
  line-height: 1.3;
  color: #0a0a0a;
  display: block;
  cursor: pointer;
}
.off-canvas .menu li > span.promo {
  color: #f44336;
}
.off-canvas .menu li a {
  line-height: 1.3;
  color: #0a0a0a;
  padding: 15.5px 20px;
}
.off-canvas .menu li a.red {
  color: #f44336;
}
.off-canvas .menu li a.bg-black {
  color: #fff;
}
.off-canvas .menu li a.icon {
  display: block;
  padding: initial;
  position: absolute;
  right: 0;
  z-index: 3;
  top: 0;
}
.off-canvas .menu li a:not(.icon) {
  border-bottom: 1px solid #191816;
}
.off-canvas .menu li a:hover,
.off-canvas .menu li a:focus {
  text-decoration: none;
}
.off-canvas .menu li .off-canvas-close {
  color: #0a0a0a;
  padding: 26px 20px;
  height: 70px;
}
.off-canvas .menu li .off-canvas-user {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
  color: #fff;
}
.off-canvas .menu li .off-canvas-user-icons {
  position: absolute;
  right: 10px;
}
.off-canvas .menu li .off-canvas-user-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.off-canvas .menu li .off-canvas-user-options.logged-in {
  padding-left: 20px;
}
.off-canvas .menu li .off-canvas-user-options > span {
  font-size: 1rem;
}
.off-canvas .menu li .off-canvas-user .off-canvas-close {
  padding: 0;
  height: auto;
}
.off-canvas .menu li .off-canvas-user a {
  color: #fff;
  border-bottom: none;
  display: inline;
  font-size: 1rem;
}
.off-canvas .menu li.is-submenu-item:hover,
.off-canvas .menu li li.is-submenu-item:hover a {
  background: transparent;
  color: #0a0a0a;
}
.off-canvas .menu li.active > a,
.off-canvas .menu li.active > span {
  background: none;
  color: #0a0a0a;
  font-weight: 700;
  text-decoration: none;
}
.off-canvas .sub-menu li a,
.off-canvas .sub-menu li > span {
  padding-left: 30px;
}
.off-canvas .inner-menu li a {
  padding-left: 50px;
}
.offcanvas-menu .is-accordion-submenu-parent > a:after {
  font-family: fontawesome;
  border: none;
  content: "\f196";
  position: absolute;
  top: 0;
  right: 1%;
  height: 52px;
  width: 44px;
  text-align: center;
  padding-top: 17px;
}
.offcanvas-menu .is-accordion-submenu-parent[aria-expanded="true"] > a:after {
  -webkit-transform: initial;
  transform: initial;
  -webkit-transform-origin: initial;
  transform-origin: initial;
  font-family: fontawesome;
  border: none;
  content: "\f147";
}
.js-off-canvas-overlay.is-overlay-fixed {
  background: rgba(0, 0, 0, 0.5);
}
.tabs {
  border: none;
  background: none;
}
.tabs a.active {
  text-decoration: none;
}
.tabs .btn-black.active {
  color: #fff;
}
.tabs-title:not(.tabs__item) > a {
  background: #fff;
  color: #0a0a0a;
  font-weight: bold;
  padding: 10px 25px;
  border: 2px solid #0a0a0a;
  margin-right: 15px;
  text-align: center;
  font-size: 1.125rem;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.tabs-title:not(.tabs__item) > a:not(.button):hover,
.tabs-title:not(.tabs__item) > a:not(.button):focus,
.tabs-title:not(.tabs__item) > a:hover {
  text-decoration: none;
}
.tabs-title:not(.tabs__item) > a:active,
.tabs-title:not(.tabs__item) > a:focus,
.tabs-title:not(.tabs__item) > a[aria-selected="true"] {
  background: #0a0a0a;
  color: #fff;
}
.tabs-content {
  border: none;
}
.callout.black {
  background-color: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 2.5rem 0;
  text-align: left;
}
@media only screen and (min-width: 39.9375em) {
  .callout.black {
    padding: 2rem 3rem 0;
  }
}
@media only screen and (min-width: 49.063em) {
  .callout.black {
    padding: 2rem 5rem 0;
  }
}
.callout.black .checkmarks {
  width: 100%;
}
@media only screen and (min-width: 49.063em) {
  .callout.black .checkmarks {
    width: 50%;
  }
}
.callout-button {
  position: absolute;
  color: white;
  bottom: 10px;
  right: 40px;
  font-weight: bold;
  cursor: pointer;
}
.callout-button:hover {
  text-decoration: underline;
}
.callout-image {
  -ms-flex-item-align: end;
  align-self: flex-end;
  bottom: 0;
  max-width: 100%;
  position: relative;
  right: 0;
  width: 100%;
}
@media only screen and (min-width: 49.063em) {
  .callout-image {
    max-width: 50%;
  }
}
.tooltip {
  border-radius: 5px;
  line-height: 1.2;
  max-width: 400px;
  min-width: 200px;
  opacity: 0.9;
  word-break: break-word;
}
@media only screen and (max-width: 39.9375em) {
  .tooltip {
    max-width: 90%;
    min-width: unset;
  }
}
.tooltip-clinic {
  border-bottom: 0;
  bottom: 15px;
  color: #289ef6;
  font-size: 14px;
  font-weight: normal;
  left: 10px;
  position: absolute;
}
.tooltip-clinic:hover {
  cursor: pointer;
}
.tooltip-tooltip {
  line-height: 1.2;
  width: 300px;
}
.slide-down {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  z-index: -1;
  display: none;
}
.slide-down.active {
  opacity: 1;
  z-index: 2;
}
.loading-container {
  height: 200px;
}
.loading-component {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loading-component:before {
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top-color: #fff;
  content: "";
  -webkit-animation: spinner 1s linear infinite;
  animation: spinner 1s linear infinite;
}
.loading-container .loading-component:before {
  height: 50px;
  width: 50px;
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.modal-dialog {
  background-color: rgba(166, 166, 166, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
}
.modal-dialog-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  background-color: #fff;
}
.modal-dialog-container.full {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-right: 0;
  -webkit-transform: none;
  transform: none;
}
.modal-dialog-container.full .modal-dialog-content-border {
  border: none;
}
.modal-dialog-container.large {
  width: 70%;
  height: 80%;
}
.modal-dialog-container.large.video {
  max-width: 900px;
  height: auto;
  background-color: transparent;
}
.modal-dialog-container.large.video .modal-dialog-title {
  display: none;
}
.modal-dialog-container.large.video .modal-dialog-content-border {
  border: none;
  margin: 0;
  height: auto;
}
.modal-dialog-container.small {
  width: 600px;
  max-width: 90%;
  max-height: 90%;
}
.modal-dialog-content {
  position: relative;
  width: 100%;
}
.modal-dialog-content ul {
  margin-left: 28px;
}
.modal-dialog-content-border {
  position: relative;
  border: 2px solid #0a0a0a;
  margin: 15px;
  height: calc(100% - 85px);
  overflow-y: auto;
}
.modal-dialog-content-border.with-cta {
  height: calc(100% - 140px);
  margin-bottom: 0;
}
@media screen and (min-width: 640px) {
  .modal-dialog-content-border {
    margin: 15px 30px 30px 30px;
  }
  .modal-dialog-content-border::-webkit-scrollbar,
  .modal-dialog-content-border::-moz-scrollbar {
    background: #a6a6a6;
    width: 6px;
  }
  .modal-dialog-content-border::-webkit-scrollbar-thumb,
  .modal-dialog-content-border::-moz-scrollbar-thumb {
    background-color: #58595b;
  }
}
.modal-dialog-button {
  float: right;
  margin: 15px 30px;
}
.modal-dialog-title {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  position: absolute;
  background-color: #fff;
  color: #0a0a0a;
  top: 27px;
  left: 45px;
  padding: 15px;
  z-index: 2;
}
.modal-dialog-close {
  text-align: right;
  padding: 15px 30px 0 0;
  cursor: pointer;
  font-size: 20px;
}
.modal-dialog-html-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 40.9375em) and (max-width: 63em) {
  .modal-dialog-container.large {
    width: 80%;
  }
  .modal-dialog-container.large.video {
    height: auto;
  }
}
@media only screen and (max-width: 39.9375em) {
  .modal-dialog-container.large {
    width: 100%;
    height: 100%;
  }
  .modal-dialog-container.large.video {
    height: auto;
  }
  .modal-dialog-container.small {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
  .modal-dialog-close {
    padding-right: 15px;
  }
}
body.disableScroll {
  overflow: hidden !important;
}
.tab-list {
  padding: 0 10px;
}
.tab-list-button {
  margin-right: 10px;
}
.tab-list-button:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 39.9375em) {
  .tab-list {
    padding: 0;
  }
  .tab-list-button {
    margin-right: 5px;
  }
  .tab-list-button:last-child {
    margin-right: 0;
  }
}
.btn-link {
  background: transparent;
  background-color: transparent;
  color: #0a0a0a;
}
.btn-link:focus,
.btn-link:hover {
  background-color: #0a0a0a;
  color: #fff;
  opacity: 0.1;
}
.btn-triangle {
  overflow: visible;
}
.btn-triangle::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;
  bottom: -10px;
  content: " ";
  display: block;
  height: 0;
  left: 47%;
  position: absolute;
  width: 0;
}
.btn-social {
  color: #289ef6;
}
.btn-social:hover {
  cursor: pointer;
  text-decoration: underline;
}
.ikon {
  display: inline-block;
  fill: currentColor;
  float: none;
  height: 1em;
  left: unset;
  position: static;
  top: unset;
  vertical-align: middle;
  width: 1em;
}
.ikon--large {
  height: 2em;
  width: 2em;
}
.ikon--xlarge {
  height: 4em;
  width: 4em;
}
button.facebook-login-button {
  background: #3f5bb0;
}
button.facebook-login-button:hover,
button.facebook-login-button:active,
button.facebook-login-button:focus {
  background: #3f5bb0;
}
button.google-login-button {
  background: #df4932;
}
button.google-login-button:hover,
button.google-login-button:active,
button.google-login-button:focus {
  background: #df4932;
}
.checkbox-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkbox-error {
  margin-top: 50px;
}
.checkbox-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 50px;
  flex-basis: 50px;
}
.checkbox-label {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.checkbox-label-signin {
  margin-bottom: 0;
}
.checkbox p,
.checkbox .font-p {
  margin-bottom: 0;
}
.slider {
  margin-bottom: 10px;
}
.slider-container {
  padding-bottom: 35px;
}
.slider-label {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 1.125rem;
  line-height: 26px;
  color: #0a0a0a;
}
.slider-handle {
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  background-color: #fff;
}
.slider-handle:hover,
.slider-handle.is-dragging {
  background-color: #58595b;
}
.slider-fill {
  background-color: #0a0a0a;
}
.form-error.relative {
  position: relative;
  margin-bottom: 0;
}
.form-group.multi {
  padding-top: 10px;
}
.form-group .control-label.top {
  top: -15px;
  font-size: 0.8125rem;
  line-height: 13px;
  padding-left: 0;
  color: #0a0a0a;
}
.form-group .read-only-label {
  height: 32px;
  line-height: 32px;
}
@media print, screen and (max-width: 40em) {
  .booking-form .helper.subscribe {
    display: block;
    width: 86%;
    float: left;
  }
}
@media print, screen and (max-width: 40em) {
  .material_checkbox {
    float: left;
    margin-right: 5px;
  }
}
.form-group .control-label.top {
  top: -15px;
  font-size: 0.8125rem;
  line-height: 13px;
  padding-left: 0;
  color: #0a0a0a;
}
.markers {
  display: inline-block;
}
.marker {
  cursor: pointer;
  font-size: 12px;
  color: #a6a6a6;
  display: inline-block;
}
.marker:last-child {
  text-align: right;
}
@-webkit-keyframes onAutoFillStart {
  from {
  }
  to {
  }
}
@keyframes onAutoFillStart {
  from {
  }
  to {
  }
}
@-webkit-keyframes onAutoFillCancel {
  from {
  }
  to {
  }
}
@keyframes onAutoFillCancel {
  from {
  }
  to {
  }
}
input:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
  animation-name: onAutoFillStart;
}
input:not(:-webkit-autofill) {
  -webkit-animation-name: onAutoFillCancel;
  animation-name: onAutoFillCancel;
}
.styled-upload {
  border: 1px black solid;
  padding: 15px;
}
.styled-upload .fa-file-image-o {
  font-size: 1.875rem;
}
.styled-upload p,
.styled-upload .font-p {
  margin-bottom: 0;
}
.radio-buttons-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.radio-buttons-options input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
  opacity: 0;
}
.radio-buttons-options .button {
  min-width: 60px;
  padding: 10px;
}
.radio-buttons-options .button.btn-black {
  border: 2px solid #0a0a0a;
}
@media only screen and (max-width: 39.9375em) {
  .radio-buttons-options .button {
    margin-left: 0;
  }
}
.radio-buttons-options--wide {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.radio-buttons-options--wide .button {
  min-width: 100px;
  margin: 5px;
}
.radio-buttons-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.radio-buttons-item--other .form-group {
  margin: 5px;
  margin-top: auto;
}
input[type="radio"] ~ .radio-buttons-item--circle {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 21px;
  width: 21px;
  border: 2.5px solid #2f2d2d;
  border-radius: 50%;
  margin-right: 10px;
}
input[type="radio"] ~ .radio-buttons-item--circle::before {
  content: "";
}
input[type="radio"] ~ .radio-buttons-item--circle.checked::before {
  content: "";
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background: #2f2d2d;
}
.radio-buttons--error .radio-buttons-item label,
.radio-buttons--error .radio-buttons-item--circle {
  border: 2px solid #f44336;
}
.radio-buttons--error .radio-buttons-item--other .control-label {
  border: none;
}
.g-recaptcha {
  height: 78px;
}
.select-dropdown-indicator {
  outline-color: #0a0a0a;
}
input.promo-input {
  display: inline;
  border: solid #0a0a0a 2px;
  height: 3rem;
}
.flatpicker-calender {
  max-height: 680px;
}
.flatpicker-calender.showTimeInput.hasTime .flatpickr-time {
  height: 80px;
  max-height: 80px;
  line-height: 80px;
}
.flatpicker-calender.showTimeInput.hasTime .flatpickr-time .numInputWrapper {
  height: 80px;
}
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  span.arrowUp:after,
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  span.arrowDown:after {
  margin-left: 40%;
  margin-right: 40%;
}
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  .arrowUp,
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  .arrowDown {
  opacity: 1;
  width: 50%;
}
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  .flatpickr-hour,
.flatpicker-calender.showTimeInput.hasTime
  .flatpickr-time
  .numInputWrapper
  .flatpickr-minute {
  float: left;
  width: 50%;
}
.cents {
  font-size: 0.7em;
}
.scroll-arrow {
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  display: inline-block;
  font-size: 1.5rem;
  left: 50%;
  line-height: 0;
  position: absolute;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 2;
}
.scroll-arrow .ikon {
  -webkit-animation: bobbing 2s ease-out infinite;
  animation: bobbing 2s ease-out infinite;
  line-height: 0.5;
  position: relative;
}
.scroll-arrow--clear {
  background-color: transparent;
}
.scroll-arrow--right {
  left: auto;
  right: 1rem;
}
@-webkit-keyframes bobbing {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  40% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bobbing {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  40% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.divider {
  max-width: 100%;
  border-bottom: 1px solid #e7e8e8;
  margin: 0;
}
.divider--simple {
  border: 0;
  height: 1px;
}
.tabs-header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  overflow-x: auto;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 35px;
  position: relative;
}
.tabs-header-name {
  font-weight: bold;
  padding: 10px 25px;
  border: 2px solid #0a0a0a;
  margin-right: 15px;
  background-color: #fff;
  color: #0a0a0a;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  min-width: unset;
}
.tabs-header-name:last-of-type {
  margin-right: 0;
}
.tabs-header-name.active {
  background-color: #0a0a0a;
  color: #fff;
  position: relative;
}
.tabs-header-name.active:after {
  content: "";
  border-bottom: 2px solid #0a0a0a;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
}
.tabs-header-name.disabled {
  background-color: #a6a6a6;
  color: #fff;
  cursor: auto;
}
.tabs__list {
  border-bottom: 1px solid #ddd9d2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 0;
}
.tabs__item {
  border: 0;
  float: none;
  font-size: inherit;
  margin: 0;
  position: relative;
}
.tabs__item > a,
.tabs__item.accordion-item > a.accordion-title {
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  border-bottom: 4px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: inherit;
}
.tabs__item > a,
.tabs__item > a:focus,
.tabs__item > a:hover,
.tabs__item > a[aria-selected="true"] {
  background-color: transparent;
  color: #76736d;
  font-size: inherit;
  text-decoration: none;
}
.tabs__item > a:focus,
.tabs__item > a:hover {
  text-decoration: none;
}
.tabs__item.is-active > a {
  color: #191816;
  border-bottom-color: currentColor;
}
.tabs__item.is-disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
.tabs-content,
.tabs__content {
  background-color: transparent;
}
.tabs__list--stacked {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media print, screen and (max-width: 63.99875em) {
  .tabs__list--accordion {
    border-bottom: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .tabs__list--accordion .accordion-content {
    margin: 0;
    padding-bottom: 0;
  }
  .tabs__list--accordion .tabs__item {
    border-bottom: 1px solid #ddd9d2;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
  }
  .tabs__list--accordion .tabs__item > a,
  .tabs__list--accordion .tabs__item:not(.is-active) > a {
    border: 0;
  }
  .tabs__list--accordion .tabs__item > a::before {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 24px;
    margin: auto;
    right: 16px;
    top: 0;
  }
  .tabs__list--stacked .is-active-promo.is-active a {
    color: #ed6e52;
  }
  .tabs__list--stacked .is-active-promo.is-active a::before {
    color: #191816;
  }
}
@media print, screen and (min-width: 64em) {
  .tabs__item > a,
  .tabs__item.accordion-item > a.accordion-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .tabs__list--accordion {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tabs__list--stacked a {
    padding-top: 24px;
    padding-bottom: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-width: 1px;
  }
  .tabs__list--stacked .is-active-promo.is-active a {
    border: 0;
    color: #fff;
  }
}
.my-account-nav {
  display: none;
}
@media only screen and (min-width: 64em) {
  .my-account-nav {
    display: block;
    width: 250px;
  }
}
ul.accordian-menu li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2px;
}
ul.accordian-menu li a {
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  padding: 0 1rem;
  -webkit-transition: 0ms ease;
  transition: 0ms ease;
}
ul.accordian-menu li a:after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  right: 20px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
ul.accordian-menu li a.sub-menu::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
ul.accordian-menu li a:hover,
ul.accordian-menu li a:focus {
  text-decoration: none;
}
ul.accordian-menu li a:hover {
  color: #aaa;
}
ul.accordian-menu li.is-accordion-submenu-parent {
  background-color: inherit;
}
ul.accordian-menu li.is-submenu-item a {
  height: 50px;
  line-height: 50px;
  font-size: 14px;
}
ul.accordian-menu li.is-submenu-item a:hover {
  background-color: #ddc6af;
}
ul.accordian-menu li.is-submenu-item a.is-active:hover {
  background-color: #b58362;
}
ul.accordian-menu li ul.is-accordion-submenu li:first-of-type {
  margin-top: 2px;
}
ul.accordian-menu li ul.is-accordion-submenu li:last-of-type {
  margin-bottom: 0;
}
ul.accordian-menu
  .is-accordion-submenu-parent[aria-expanded="true"]
  > a::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.clinic-banner {
  background-color: #191816;
  color: #fff;
  margin: 0 auto;
  text-align: center;
}
.clinic-name {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  cursor: pointer;
}
.clinic-name:before {
  font-family: icomoon;
  position: absolute;
  content: "\e907";
  font-size: 20px;
  width: 20px;
  top: 0;
  left: -3px;
}
.progress-header-container {
  background-color: #e7e8e8;
  border-top: 1px solid #a6a6a6;
}
.progress-header {
  margin: 0 auto;
  padding: 0 0.625rem;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: center;
}
.progress-item {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-preferred-size: 200px;
  flex-basis: 200px;
  -ms-flex-item-align: center;
  align-self: center;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 1rem;
  color: #a6a6a6;
  background-color: #fff;
  border: 1px solid #a6a6a6;
}
.progress-item.active {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}
.progress-item.active a {
  color: #fff;
}
.progress-item.disabled {
  background-color: #a6a6a6;
  border-color: #a6a6a6;
  color: #fff;
}
.progress-item.disabled a {
  color: #fff;
}
.progress-item a {
  color: #a6a6a6;
}
.progress-item a:hover {
  text-decoration: none;
}
.progress-item-spacer {
  height: 1px;
  max-width: 100px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  align-self: center;
  border-top: 1px solid #a6a6a6;
  top: 50%;
}
@media only screen and (max-width: 64em) {
  .progress-header {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 48.063em) {
  .progress-header {
    height: 90px;
  }
  .progress-item {
    height: 35px;
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 39.9375em) {
  .progress-header {
    padding: 0;
    height: 60px;
  }
  .progress-item {
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .progress-item-spacer {
    display: none;
  }
}
.clinic-card {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 550px;
  max-height: 550px;
  margin-bottom: 0;
  text-align: left;
  background-color: #fff;
  color: #0a0a0a;
}
.clinic-card:hover,
.clinic-card:focus {
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}
.clinic-card-container {
  height: 550px;
}
.clinic-card .card-divider {
  background-color: #fff;
  padding-bottom: 0;
}
.clinic-card .card-divider .ribbon {
  position: absolute;
  top: 84px;
}
.clinic-card .card-divider .pin-black {
  background: url("../assets/images/pin-black-5333d650bb.svg") no-repeat;
  background-size: contain;
}
.clinic-card .card-divider .icon {
  height: 50px;
  width: 50px;
  margin-right: 7px;
}
.clinic-card .card-divider .heading {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: inherit;
  padding-left: 10px;
  width: 90%;
}
.clinic-card .card-divider .expand-arrow {
  font-size: 36px;
  padding-right: 15px;
}
.clinic-card .card-section {
  height: 65%;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.clinic-card .card-section .directions {
  border-bottom: 2px solid #e7e8e8;
}
.clinic-card .card-section .directions-icon {
  font-size: 1.5rem;
  float: right;
}
.clinic-card .card-section p,
.clinic-card .card-section .font-p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.clinic-card .card-section .hours p,
.clinic-card .card-section .hours .font-p {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}
.clinic-card .card-section .hours .slide-down {
  width: 100%;
}
.clinic-card .card-section .hours .fa-plus-circle {
  -webkit-transition: -webkit-transform 0.2s linear 0.2s;
  transition: -webkit-transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
}
.clinic-card .card-section .hours .fa-plus-circle.expanded {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.clinic-card .card-section .hours-open {
  color: #26c0a1;
}
.clinic-card .card-section .hours-closed {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.clinic-card .card-section .hours-left {
  float: left;
}
.clinic-card .card-section .hours-right {
  float: right;
}
.clinic-card .card-footer {
  position: absolute;
  bottom: 0;
  width: 98%;
  padding: 10px 16px;
  color: #5d5c5c;
}
.clinic-card .card-footer .card-nav {
  float: right;
}
.clinic-card .card-footer .card-nav .result-number {
  display: inline-block;
  margin-bottom: 0;
  font-size: 12px;
}
.clinic-card .card-footer .card-nav .arrow {
  right: 0;
  font-size: 25px;
  vertical-align: middle;
}
.clinic-card .card-footer .card-nav .disabled {
  color: #5d5c5c;
}
.clinic-card.collapsed {
  max-height: 82px;
  overflow: hidden;
}
.clinic-card.collapsed .card-section,
.clinic-card.collapsed .card-footer {
  display: none;
}
.clinic-card.selected {
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
}
.clinic-card.selected .pin-black {
  background: url("../assets/images/pin-black-solid-c5b70ae43a.svg") no-repeat;
  background-size: contain;
}
.clinic-card-slider {
  width: 370px;
  margin-left: 15%;
  -webkit-transition: margin-left 0.5s;
  transition: margin-left 0.5s;
}
@media screen and (max-width: 1320px) {
  .clinic-card-slider {
    margin-left: 10%;
  }
}
@media screen and (max-width: 1250px) {
  .clinic-card-slider {
    margin-left: 5%;
  }
}
.info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 50px 30px;
  color: #0a0a0a;
}
.info-box-head {
  margin-bottom: 10px;
}
.info-box-content p,
.info-box-content .font-p {
  margin-bottom: 10px;
}
.user-status {
  position: relative;
  z-index: 2;
}
.user-status-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.user-status.logged-in {
  position: relative;
  cursor: pointer;
}
.user-status-sign-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.user-status-sign-in > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  padding: 0 1rem;
}
.user-status-sign-in > a:hover,
.user-status-sign-in > a:focus {
  color: inherit;
}
.user-status-sign-in i {
  margin-right: 10px;
}
.user-status-menu {
  opacity: 0;
  position: absolute;
  right: 25%;
  text-transform: initial;
  top: -100vh;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  visibility: hidden;
  width: 0;
  border: 1px solid black;
  border-top: none;
}
.user-status-menu.open {
  opacity: 1;
  top: 100%;
  visibility: visible;
  width: 200px;
}
.user-status-menu-item {
  border-bottom: 1px solid #191816;
}
.user-status-menu-item:last-child {
  border-bottom: 0;
}
.user-status .user-status-menu-item > a {
  padding: 1rem;
}
.user-status-menu::before {
  border-bottom: 15px solid #191816;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: "";
  display: block;
  position: absolute;
  right: 15%;
  top: -15px;
}
.pac-container {
  z-index: 99999999 !important;
}
.google-autocomplete {
  position: relative;
}
.promo-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.promo-stats__stat {
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.promo-stats__stat:last-child {
  border-bottom: 0;
}
.promo-stats__num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 40%;
}
.promo-stats--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.promo-stats--row .promo-stats__stat {
  border-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}
.promo-stats--row .promo-stats__stat:nth-child(even) {
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
.promo-stats--row .promo-stats__stat:last-child {
  border-right: 0;
}
.promo-stats--row .promo-stats__num {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media print, screen and (min-width: 40em) {
  .promo-stats {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .promo-stats__stat {
    padding-left: 24px;
    padding-right: 24px;
    border-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
    padding-top: 0;
    text-align: center;
  }
  .promo-stats__stat:nth-child(even) {
    border-left: 1px solid currentColor;
    border-right: 1px solid currentColor;
  }
  .promo-stats__stat:last-child {
    border-right: 0;
  }
  .promo-stats__num {
    min-width: auto;
  }
  .promo-stats--row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .promo-stats--row .promo-stats__stat {
    padding-left: 24px;
    padding-right: 24px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media print, screen and (min-width: 75em) {
  .promo-stats__stat {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.promo-bar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.promo-bar__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}
.promo-bar__item:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 75em) {
  .promo-bar__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.trustpilot {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.trustpilot__info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
}
@media print, screen and (min-width: 40em) {
  .trustpilot:not(.trustpilot--centered) {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
  .trustpilot__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.tile__content {
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}
.tile__image {
  width: 100%;
}
.tile__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: auto;
}
@media print, screen and (min-width: 40em) {
  .tile__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .tile .button + .button {
    margin-left: 16px;
    margin-top: 0;
  }
}
.checker-tiles__image {
  height: 150px;
}
@media print, screen and (min-width: 64em) {
  .checker-tiles__image {
    height: 320px;
  }
  .checker-tiles__item:nth-child(n + 5) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .checker-tiles__item:nth-child(n + 6) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .checker-tiles__item:nth-child(n + 7) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .checker-tiles__item:nth-child(n + 8) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
.header a,
.header a:focus,
.header a:hover {
  text-decoration: none;
}
.header .search-input {
  color: #58595b;
  padding: 8px 0;
}
.header .form-group.search-input:before {
  font-size: 1.75rem;
  top: 10px;
}
.header-container {
  position: relative;
  z-index: 30;
}
.header .top-menu {
  padding: 0;
}
.header .top-menu li {
  padding-left: 35px;
}
.header .top-menu a {
  color: #0a0a0a;
}
.header .top-menu a:hover,
.header .top-menu a:focus {
  color: #0a0a0a;
  opacity: 0.6;
}
.header .top-menu .menu {
  height: 36px;
}
.header .top-menu .menu li a {
  font-size: 14px;
  font-weight: 300;
  color: #0a0a0a;
}
.header .top-menu .menu li.active a {
  color: #0a0a0a;
  opacity: 0.6;
}
.header .top-menu .icon-search:before {
  font-size: 17px;
  position: relative;
  top: -3px;
}
.header .form-group {
  margin: 0;
}
.header .form-group input.has-value ~ .control-label,
.header .form-group input:focus ~ .control-label {
  top: -0.2rem;
}
.header .form-group .control-label {
  top: 0.9rem;
}
.header input.search_input,
.header input.search_input:focus {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  color: #58595b;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
}
.header #search-btn {
  padding: 8px;
}
.header .main-menu .columns,
.header .main-menu .columns .columns {
  height: 100px;
}
.header .main-menu .vertical-align-middle {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.header .main-menu .menu li {
  padding: 2.15rem 28px;
}
.header .main-menu .menu li a {
  padding: 0.5rem 0;
  font-weight: 300;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .main-menu .menu li a:hover,
.header .main-menu .menu li a:focus {
  color: #fff;
  opacity: 0.6;
}
.header .main-menu .menu li.active a {
  color: #fff;
  opacity: 0.6;
}
.header .main-menu img.logo {
  width: 200px !important;
  height: 49px !important;
}
.header .main-menu .button {
  min-width: 33.3333%;
}
.header .main-menu .menu--shylock .menu__link::after,
.header .main-menu .menu--shylock .menu__link::before {
  background: #fff;
}
.header .menu li a {
  font-size: 18px;
  padding: 0.5rem 0;
  line-height: 18px;
  letter-spacing: 0.54px;
}
.header .menu > li > a i {
  margin-right: 0;
}
.header .menu .active > a {
  background: none;
  color: #0a0a0a;
  opacity: 0.6;
  text-decoration: none;
}
.header-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 30;
}
#sticky-title-bar {
  -webkit-backface-visibility: hidden;
  bottom: initial;
  max-height: 70px;
  position: fixed;
  top: 0;
  -webkit-transform: translateY(-75px);
  transform: translateY(-75px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 100%;
  z-index: 11;
}
#sticky-title-bar.pull-down {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.title-bar {
  padding: 20px 25px;
}
.title-bar-right {
  position: absolute;
  text-align: center;
  height: 50px;
  width: 85px;
  right: 0;
  top: 20px;
  z-index: 50;
}
@media only screen and (max-width: 1441px) {
  .header .top-menu .menu {
    height: 52px;
  }
  .header .top-menu .menu li {
    padding-left: 0;
  }
  .header .top-menu .menu li a {
    font-size: 16px;
  }
  .header .menu li a {
    font-size: 16px;
    padding: 1rem 10px;
    letter-spacing: 1px;
  }
  .header .main-menu .menu li {
    padding: 6% 18px;
  }
  .header .main-menu .menu li a {
    padding: 0.5rem 0;
    color: #fff;
  }
  .header .main-menu img.logo {
    width: 200px !important;
    height: 49px !important;
  }
  .header .main-menu .button {
    font-size: 1rem;
    line-height: 26px;
    padding: 12px 0;
  }
  .header .main-menu .button.btn-transparent {
    padding: 11px 0;
  }
}
@media only screen and (max-width: 1280px) {
  .header .menu li a {
    font-size: 14px;
  }
  .header .main-menu .button {
    font-size: 0.875rem;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1170px) {
  .header .main-menu .menu li {
    padding: 7% 8px;
  }
}
@media only screen and (max-width: 1111px) {
  .header .top-menu li {
    padding-left: 15px;
  }
  .header .logo img {
    width: 170px;
  }
}
.header-au .top-menu li {
  padding-left: 0;
  padding-right: 35px;
  margin-bottom: 0;
}
.header-au .top-menu .menu {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-au .top-menu .menu a,
.header-au .top-menu .menu span {
  font-size: 14px;
}
.header-au .top-menu .menu i {
  font-size: 24px;
  margin-right: 10px;
}
.header-au .top-menu #status-container {
  position: absolute;
  right: 0;
}
.header-au .top-menu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-au .main-menu .menu {
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.header-au .main-menu .menu li {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 0;
  padding: 0;
}
.header-au .main-menu .menu li a {
  font-size: 16px;
}
.header-au .main-menu .menu li a.promo {
  color: #f44336;
}
.header-au .main-menu .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: padding-right 0.3s;
  transition: padding-right 0.3s;
  padding: 0;
}
.header-au .main-menu .ctas.show-cart {
  padding-right: 50px;
}
.header-au .main-menu .ctas > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 10px;
}
.header-au .main-menu .ctas > div:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 0px;
  flex: 0 1 0;
  margin-right: 0;
}
.header-au .main-menu .ctas .button.full {
  padding-right: 10px;
  padding-left: 10px;
}
.title-bar-au {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  z-index: 1000;
}
.title-bar-left {
  position: absolute;
  text-align: left;
  left: 0;
  top: 0;
  padding: 20px 15px;
  z-index: 50;
}
.title-bar #cart-icon-container {
  position: absolute;
  text-align: left;
  top: 5px;
  right: 15px;
}
@media screen and (max-width: 480px) {
  .title-bar #cart-icon-container .tag {
    width: 15%;
  }
}
@media screen and (max-width: 360px) {
  .title-bar #cart-icon-container {
    right: 5px;
  }
}
.title-bar #cart-icon-container .cart-icon-container {
  height: 55px;
}
.title-bar #cart-icon-container .cart-icon {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.title-bar #cart-icon-container .mini-cart-panel {
  left: auto;
  max-width: 400px;
  right: 0;
  top: 91%;
  width: calc(100vw - 30px);
}
@media screen and (max-width: 360px) {
  .title-bar #cart-icon-container .mini-cart-panel {
    width: calc(100vw - 10px);
  }
}
.title-bar #booking-icon-container {
  position: absolute;
  text-align: left;
  top: 2px;
  right: 72px;
}
.title-bar #booking-icon-container .booking-icon {
  padding: 15px;
  cursor: pointer;
}
.title-bar #booking-icon-container .fa-clock-o {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .title-bar #booking-icon-container {
    right: 62px;
  }
  .title-bar #booking-icon-container .booking-icon {
    padding-right: 10px;
  }
}
@media screen and (max-width: 360px) {
  .title-bar #booking-icon-container {
    right: 50px;
  }
}
@media only screen and (max-width: 1441px) {
  .header-au .top-menu .menu span {
    font-size: 16px;
  }
  .header-au .top-menu .menu i {
    font-size: 30px;
  }
  .header-au .menu li a {
    padding: 1rem 0;
  }
  .header-au .main-menu .menu li {
    padding: 0;
  }
  .header-au .main-menu .ctas > div {
    padding-right: 0;
  }
  .header-au .main-menu .button.btn-transparent {
    padding: 11px 5px;
  }
}
@media only screen and (max-width: 1280px) {
  .header-au .top-menu .menu {
    height: 45px;
  }
  .header-au .top-menu .menu span {
    font-size: 14px;
  }
  .header-au .top-menu .menu i {
    font-size: 26px;
  }
  .header-au .top-menu .menu a {
    font-size: 14px;
  }
  .header-au .main-menu .menu li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1151px) {
  .header-au .top-menu li {
    padding-left: 0;
    padding-right: 15px;
  }
  .header-au .main-menu .ctas > div {
    margin-right: 5px;
  }
  .header-au .main-menu .ctas > div:last-child {
    margin-right: 0;
  }
  .header-au .main-menu .ctas .button.full {
    padding-right: 5px;
    padding-left: 5px;
  }
}
#mainMenuBlack {
  position: fixed;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 250ms;
  transition: 250ms;
  width: 100%;
  z-index: -1;
}
#mainMenuBlack.onTop {
  -webkit-transform: translateY(-37px);
  transform: translateY(-37px);
}
.sticky-container,
.is-stuck {
  z-index: 31;
}
.middle-menu .logo img {
  -webkit-transition: width 0.25s ease;
  transition: width 0.25s ease;
}
.is-stuck .middle-menu .logo {
  bottom: 4px;
}
.is-stuck .middle-menu .logo img {
  width: 153px;
}
.middle-menu .menu__link {
  height: 60px;
}
.upper-menu a,
.middle-menu a {
  padding: 0.5rem 1rem;
}
.bottom-menu-container {
  border-bottom: 1px solid #fff;
}
.bottom-menu .menu__link {
  border-bottom: 4px solid #fff;
  border-top: 4px solid #fff;
  height: 56px;
  padding: 1rem;
}
.bottom-menu .menu__link.active {
  border-bottom-color: #191816;
}
.bottom-menu .menu__link:hover,
.bottom-menu .menu__link:focus {
  border-bottom-color: #191816;
  text-decoration: none;
}
.upper-menu .menu__link,
.middle-menu .menu__link,
.bottom-menu .menu__link {
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.upper-menu .menu__link:hover,
.upper-menu .menu__link:focus,
.middle-menu .menu__link:hover,
.middle-menu .menu__link:focus,
.bottom-menu .menu__link:hover,
.bottom-menu .menu__link:focus {
  color: inherit;
}
footer {
  bottom: 0;
  width: 100%;
  z-index: 5;
}
.footer ul.footer-list-menu li {
  margin-bottom: 20px;
}
.footer ul.social-list li {
  padding-right: 35px;
}
.footer ul.social-list .fa {
  font-size: 1.125rem;
}
.footer .menu--shylock .menu__link {
  color: #fff;
  padding: 0.5rem 0;
  text-decoration: none;
}
.footer .menu--shylock .menu__link:hover,
.footer .menu--shylock .menu__link:focus {
  color: #fff;
}
.footer .menu--shylock .menu__link::before {
  background: #fff;
}
.footer a {
  color: #fff;
}
.footer a:hover,
.footer a:focus {
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
}
.credits a {
  color: #0a0a0a;
  text-decoration: underline;
}
.credits a:hover,
.credits a:focus {
  color: #0a0a0a !important;
  opacity: 0.6;
  text-decoration: underline;
}
.trustpilot-footer {
  clear: both;
  display: block;
  position: relative;
  top: 15px;
}
.trustpilot-footer-logo {
  display: inline-block;
  background: url("../assets/images/trustpilot_logo_white-371d4c4c95.svg")
    no-repeat;
  width: 150px;
  max-width: 150px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.trustpilot-footer .stars {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 1px;
}
.trustpilot-footer .stars i {
  margin-right: 3px;
  font-size: 1rem;
}
.trustpilot-footer .ratings {
  letter-spacing: 1px;
  position: relative;
  bottom: 3px;
}
#subscribe-section {
  border-top: 1px solid #e7e8e8;
}
@media only screen and (max-width: 39.9375em) {
  .credits .font13 {
    font-size: 12px;
  }
  .footer-list-menu {
    margin: 16px 0;
  }
}
#footer ul.social-list li {
  padding-right: 35px;
}
.footer a {
  color: #fff;
}
.footer a:hover,
.footer a:focus {
  color: #e7e8e8;
}
.credits a {
  color: #0a0a0a;
}
.credits a:hover,
.credits a:focus {
  color: violet;
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 736px) {
  body .videoWrapper iframe:last-of-type {
    display: block;
  }
}
.header-submenu {
  position: absolute;
  top: 57px;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  width: 100%;
  z-index: 32;
}
.header-submenu .row {
  padding: 3.125rem 0;
}
.header-submenu .border-left {
  border-left: 1px solid #ededed;
}
.header-submenu .img-wrapper {
  margin: 0 0 18px 14px;
  position: relative;
}
.header-submenu .img-wrapper .cent-text {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  line-height: 2.7rem;
  width: 100%;
}
.header-submenu p,
.header-submenu .font-p {
  font-size: 46px;
  line-height: 46.93px;
  letter-spacing: -1.38px;
}
.header-submenu .menu__link {
  font-weight: 400;
  padding-bottom: 5px;
}
.header-submenu .menu__link::before,
.header-submenu .menu__link::after {
  content: none;
}
.submenu-item {
  display: none;
}
.submenu-item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.submenu-tiles {
  border-right: 1px solid #ddbfaf;
}
.submenu-columns > div {
  border-right: 1px solid #ddbfaf;
}
.submenu-columns > div:last-child {
  border-right: 0;
}
@media screen and (max-width: 1441px) {
  #mainMenuBlack.onTop {
    -webkit-transform: translateY(-53px);
    transform: translateY(-53px);
  }
}
div#header-container.stick .header-submenu {
  position: fixed;
  width: 100%;
  z-index: 32;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  top: 100px;
}
.schedule-box {
  border: 1px solid #e7e8e8;
  padding: 50px;
}
@media only screen and (max-width: 48.063em) {
  .schedule-box {
    padding: 30px 20px;
  }
}
.treatment-block .grey-box {
  border: 1px solid #e7e8e8;
}
.treatment-block .pricing-list li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 1616px) {
  .treatment-block .pricing-list li {
    max-width: 240px;
    width: 240px;
  }
  .treatment-block table.pricing-table.text-left tr td:first-child {
    width: 35%;
  }
}
@media screen and (max-width: 1615px) {
  .treatment-block .pricing-list li {
    max-width: 208px;
    width: 208px;
  }
}
.treatment-block .grid-item {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .treatment-block .pricing-container .grid-item {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 39.9375em) {
  .treatment-block .pricing-list li {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .treatment-block .tm-sess .columns {
    font-size: 12px;
  }
  .treatment-block .tm-sess .columns:first-child {
    font-weight: bold;
  }
}
@media only screen and (max-width: 736px) {
  .treatment-block h1.banner-heading,
  .treatment-block h1.font-banner-heading,
  .treatment-block .font-banner-heading.font-h1,
  .treatment-block .banner-heading.font-h1 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 667px) {
  .treatment-block h1.banner-heading,
  .treatment-block h1.font-banner-heading,
  .treatment-block .font-banner-heading.font-h1,
  .treatment-block .banner-heading.font-h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .treatment-block h1.banner-heading,
  .treatment-block h1.font-banner-heading,
  .treatment-block .font-banner-heading.font-h1,
  .treatment-block .banner-heading.font-h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 340px) {
  .treatment-block h1.banner-heading,
  .treatment-block h1.font-banner-heading,
  .treatment-block .font-banner-heading.font-h1,
  .treatment-block .banner-heading.font-h1 {
    font-size: 28px;
  }
}
.page-banner-image-wrap {
  position: relative;
  min-height: 100%;
}
.page-banner-image-wrap img {
  position: absolute;
  bottom: 0;
  right: 10px;
}
.page-banner-content h1,
.page-banner-content .font-h1,
.page-banner-content h2,
.page-banner-content .font-h2,
.page-banner-content h3,
.page-banner-content .font-h3,
.page-banner-content h4,
.page-banner-content .font-h4,
.page-banner-content h5,
.page-banner-content .font-h5,
.page-banner-content h6,
.page-banner-content .font-h6,
.page-banner-content p,
.page-banner-content .font-p,
.page-banner-content b,
.page-banner-content i {
  margin-bottom: 1.875rem;
}
.page-banner-content .button:nth-of-type(1) {
  margin-right: 3%;
}
@media only screen and (max-width: 64em) {
  .page-banner .show-for-phone-tablet h2,
  .page-banner .show-for-phone-tablet .font-h2,
  .page-banner .show-for-phone-tablet .header-mobile {
    font-size: 46px;
    line-height: 52px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 39.9375em) {
  .page-banner .show-for-phone-tablet h2,
  .page-banner .show-for-phone-tablet .font-h2,
  .page-banner .show-for-phone-tablet .header-mobile {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 74.125rem) {
  .page-banner .button:nth-of-type(1) {
    margin-right: 0;
  }
}
.page-banner-black {
  background-color: #0a0a0a;
  color: #fff;
}
.page-banner-white {
  background-color: #fff;
  border-bottom: 1px solid #e7e8e8;
}
.page-banner-dark-grey {
  background-color: #a6a6a6;
}
.page-banner-treatment {
  border-bottom: 1px solid #e7e8e8;
}
.inner-banner-btn.row {
  margin-left: 0;
  margin-right: 0;
}
.inner-banner-btn.row .small-6:nth-child(1) {
  padding-left: 0;
}
.inner-banner-btn.row .small-6:nth-child(2) {
  padding-right: 0;
}
.inner-banner-btn.row .button {
  min-width: 100% !important;
}
ul.button-list li:first-child {
  margin-left: 0 !important;
}
.page-banner-button-list {
  min-width: 210px;
}
.button-list .btn-small {
  min-width: 180px;
}
.btn-big .button {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.6px;
}
@media only screen and (max-width: 1280px) {
  .btn-big .button {
    font-size: 1rem;
    line-height: 26px;
  }
}
@media only screen and (max-width: 48.063em) {
  .btn-big .button {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.42px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .btn-big .button {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.42px;
  }
}
.no-overflow {
  overflow: visible !important;
}
.animated-active.button-wrap.btn-big {
  min-width: 225px;
  height: 50px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (min-width: 1026px) {
  .small-centered:last-child:not(:first-child).img-container {
    float: left;
    clear: initial;
  }
  .caption-container {
    padding: 5rem 0.625rem;
  }
  .img-container {
    float: left;
  }
  .caption-container {
    float: right;
  }
}
@media only screen and (min-width: 1024px) {
  .animated-active.button-wrap.btn-big {
    min-width: 160px;
    height: 49px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .caption-container {
    padding-top: 5.3125rem;
  }
  .caption-container,
  .img-container {
    width: 83.33333%;
    float: none;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .animated-active.button-wrap.btn-big {
    min-width: 155px;
    height: 50px;
  }
}
@media only screen and (max-width: 1280px) {
  .btn-big .button {
    padding: 18px 0;
  }
  .btn-big.btn-transparent-container .button {
    padding: 16px 0;
  }
  .animated-active.button-wrap.btn-big {
    min-width: 180px;
    height: 68px;
  }
}
@media only screen and (min-width: 1366px) {
  .animated-active.button-wrap.btn-big {
    min-width: 200px;
    height: 68px;
  }
}
@media only screen and (min-width: 1281px) {
  .btn-big .button {
    padding: 25px 0;
  }
  .btn-big .button.btn-white-transparent,
  .btn-big .button.btn-black-transparent {
    padding: 23px 0;
  }
}
@media only screen and (min-width: 1600px) {
  .animated-active.button-wrap.btn-big {
    min-width: 225px;
    height: 79px;
  }
}
@media only screen and (max-width: 1024px) {
  .btn-big .button {
    min-width: 155px;
  }
}
@media only screen and (max-width: 640px) {
  .animated-active.button-wrap.btn-big {
    min-width: 154px;
    height: 50px;
  }
  .btn-big .button {
    min-width: 115px;
  }
}
@media only screen and (max-width: 375px) {
  .animated-active.button-wrap.btn-big {
    min-width: 138px;
    height: 50px;
  }
}
@media only screen and (max-width: 320px) {
  .animated-active.button-wrap.btn-big {
    min-width: 115px;
    height: 50px;
  }
}
.list-content-container {
  padding: 0 60px;
}
@media only screen and (max-width: 1024px) {
  .list-content-container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 640px) {
  .list-content-container {
    padding: 0;
  }
}
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
  content: " ";
  display: block;
  background: white;
  position: absolute;
  z-index: 20;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
  width: 1px;
  height: 9999px;
  left: 55%;
  margin-left: -1.5px;
}
.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
}
.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.twentytwenty-before-label,
.twentytwenty-after-label {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
}
.twentytwenty-horizontal .twentytwenty-before-label:before,
.twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  margin-top: -19px;
}
.twentytwenty-vertical .twentytwenty-before-label:before,
.twentytwenty-vertical .twentytwenty-after-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px;
}
.twentytwenty-left-arrow,
.twentytwenty-right-arrow,
.twentytwenty-up-arrow,
.twentytwenty-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}
.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px;
}
.twentytwenty-up-arrow,
.twentytwenty-down-arrow {
  left: 50%;
  margin-left: -6px;
}
.twentytwenty-container {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  max-width: 670px;
}
.twentytwenty-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
}
.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active :hover.twentytwenty-overlay {
  background: rgba(0, 0, 0, 0);
}
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active
  :hover.twentytwenty-overlay
  .twentytwenty-before-label,
.twentytwenty-container.active
  :hover.twentytwenty-overlay
  .twentytwenty-after-label {
  opacity: 0;
}
.twentytwenty-container * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.twentytwenty-before-label {
  opacity: 0;
}
.twentytwenty-after-label {
  opacity: 0;
}
.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px;
}
.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px;
}
.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px;
}
.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px;
}
.twentytwenty-overlay {
  -webkit-transition-property: background;
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 15;
}
.twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1;
}
.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}
.twentytwenty-before {
  z-index: 20;
}
.twentytwenty-after {
  z-index: 10;
}
.twentytwenty-handle {
  height: 20px;
  width: 23px;
  position: absolute;
  top: 92%;
  margin-left: -11px;
  margin-top: -22px;
  background: #ffffff;
  z-index: 20;
  cursor: pointer;
}
.twentytwenty-container label {
  position: absolute;
  font-size: 13px;
  color: #c8c8c8;
  font-weight: 400;
  top: 20px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  z-index: 21;
}
label.twenty-before {
  left: 0;
}
label.twenty-after {
  right: 0;
}
.twentytwenty-bar {
  position: absolute;
  bottom: 8.3%;
  height: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}
@-webkit-keyframes boing {
  from {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(-20px, 0px);
    transform: translate(-20px, 0px);
  }
  to {
    -webkit-transform: translate(20px, 0px);
    transform: translate(20px, 0px);
  }
}
@keyframes boing {
  from {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(-20px, 0px);
    transform: translate(-20px, 0px);
  }
  to {
    -webkit-transform: translate(20px, 0px);
    transform: translate(20px, 0px);
  }
}
.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 55%;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 3px 0 white, 0px 0px 6px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0px 0px 6px rgba(51, 51, 51, 0.5);
}
.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 55%;
  margin-top: 10px;
  -webkit-box-shadow: 0 -3px 0 white, 0px 0px 6px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0px 0px 6px rgba(51, 51, 51, 0.5);
}
.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-left-arrow {
  display: inline-block;
  display: none;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  left: 2px;
  top: 10px;
  font-weight: bold;
}
.twentytwenty-left-arrow:before {
  content: "\f104";
}
.twentytwenty-right-arrow {
  display: inline-block;
  display: none;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  right: 8px;
  top: 10px;
  font-weight: bold;
}
.twentytwenty-right-arrow:before {
  content: "\f105";
}
.twentytwenty-up-arrow {
  border-bottom: 6px solid white;
  top: 50%;
  margin-top: -17px;
}
.twentytwenty-down-arrow {
  border-top: 6px solid white;
  bottom: 50%;
  margin-bottom: -17px;
}
@media only screen and (max-width: 1025px) {
  .twentytwenty-bar {
    bottom: 8.5%;
  }
}
@media only screen and (max-width: 768px) {
  .twentytwenty-bar {
    bottom: 8.9%;
  }
}
.twentytwenty-bar {
  background: rgba(255, 255, 255, 0.65);
  height: 30px;
  bottom: 6.6%;
}
@media only screen and (max-width: 1651px) {
  .twentytwenty-bar {
    height: 26px !important;
  }
}
@media only screen and (max-width: 954px) {
  .twentytwenty-bar {
    height: 20px !important;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-bar {
    bottom: 7%;
  }
}
.twentytwenty-horizontal .twentytwenty-handle {
  width: 120px;
  height: 52px;
  top: 90.2%;
  left: 10px;
  margin-left: -61px;
  background: #0a0a0a;
}
@media only screen and (max-width: 1280px) {
  .twentytwenty-horizontal .twentytwenty-handle {
    top: 90%;
  }
}
@media only screen and (max-width: 64em) {
  .twentytwenty-horizontal .twentytwenty-handle {
    height: 46px;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-horizontal .twentytwenty-handle {
    width: 96px;
    height: 40px;
    margin-left: -47px;
    top: 91%;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-horizontal .twentytwenty-handle {
    top: 89%;
  }
}
@media only screen and (max-width: 639px) {
  .twentytwenty-horizontal .twentytwenty-handle {
    top: 91%;
  }
}
@media only screen and (max-width: 499px) {
  .twentytwenty-horizontal .twentytwenty-handle {
    top: 90%;
  }
}
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
  margin-left: -6.5px;
}
.twentytwenty-horizontal .twentytwenty-handle:before {
  margin-bottom: 10px;
  bottom: 87%;
}
.twentytwenty-horizontal .twentytwenty-handle:after {
  margin-top: 10px;
  top: 87%;
}
.twentytwenty-container label {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial !important;
  font-size: 18px !important;
  color: #0a0a0a !important;
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
  top: initial !important;
  bottom: 6.6% !important;
}
@media only screen and (max-width: 1441px) {
  .twentytwenty-container label {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 64em) {
  .twentytwenty-container label {
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-container label {
    font-size: 12px !important;
    bottom: 6% !important;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-container label {
    bottom: 10% !important;
  }
}
@media only screen and (max-width: 639px) {
  .twentytwenty-container label {
    bottom: 10.5% !important;
  }
}
.twentytwenty-container .twenty-before {
  left: 24% !important;
}
@media only screen and (max-width: 1441px) {
  .twentytwenty-container .twenty-before {
    left: 15% !important;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-container .twenty-before {
    left: 10% !important;
  }
}
.twentytwenty-container .twenty-after {
  right: 24% !important;
}
@media only screen and (max-width: 1441px) {
  .twentytwenty-container .twenty-after {
    right: 15% !important;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-container .twenty-after {
    right: 10% !important;
  }
}
.twentytwenty-left-arrow {
  font-size: inherit !important;
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  left: 0 !important;
  top: 0 !important;
  color: inherit !important;
  display: inline-block !important;
}
.twentytwenty-left-arrow::before {
  content: none !important;
}
.twentytwenty-left-arrow::after {
  content: "Slide Me";
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 18px;
  line-height: 25px;
  width: 100%;
  top: 12px;
  left: 20px;
  position: relative;
  color: #fff;
}
@media only screen and (max-width: 64em) {
  .twentytwenty-left-arrow::after {
    font-size: 16px;
    line-height: 24px;
    top: 9px;
    left: 23px;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-left-arrow::after {
    font-size: 14px;
    top: 7px;
    left: 17px;
  }
}
.twentytwenty-right-arrow {
  display: inline-block !important;
  position: relative;
  right: initial;
  left: -25px !important;
  top: -34px !important;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  height: 20px;
  border: none;
  width: 140%;
}
@media only screen and (max-width: 1441px) {
  .twentytwenty-right-arrow {
    top: -35px !important;
  }
}
@media only screen and (max-width: 64em) {
  .twentytwenty-right-arrow {
    top: -33px !important;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-right-arrow {
    left: -18px !important;
    top: -30px !important;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-right-arrow {
    top: -28px !important;
  }
}
@media only screen and (max-width: 599px) {
  .twentytwenty-right-arrow {
    top: -29px !important;
  }
}
@media only screen and (max-width: 559px) {
  .twentytwenty-right-arrow {
    top: -30px !important;
  }
}
@media only screen and (max-width: 499px) {
  .twentytwenty-right-arrow {
    top: -27px !important;
  }
}
@media only screen and (max-width: 399px) {
  .twentytwenty-right-arrow {
    top: -29px !important;
  }
}
.twentytwenty-right-arrow::before {
  content: "\f104" !important;
  font-family: fontawesome;
  display: block;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  top: 0;
}
.twentytwenty-right-arrow::after {
  content: "\f105" !important;
  font-family: fontawesome;
  display: block;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 39.9375em) {
  .product-tabs .twentytwenty-top {
    width: 100%;
  }
  .product-tabs .twentytwenty-top .twentytwenty-container {
    margin-bottom: 1.875rem;
  }
}
.cs-reveal {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(10, 10, 10, 0.45);
}
.cs-reveal-content {
  display: inline-block;
  padding: 45px;
  position: relative;
  top: 2.2em;
}
.reveal.relative {
  padding: 45px 0;
}
.cs-reveal-close {
  font-size: 40px;
  cursor: pointer;
}
.cs-reveal.cs-reveal-open {
  display: block;
}
.reveal-modal {
  position: fixed;
}
body.is-reveal-open {
  overflow: visible !important;
}
.reveal-overlay {
  overflow: hidden;
}
.twentytwenty-top .twentytwenty-container label {
  bottom: 0 !important;
  top: 3.5% !important;
}
.twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
  top: 36px !important;
}
.twentytwenty-top .twentytwenty-bar {
  top: 25px !important;
  bottom: inherit !important;
}
@media only screen and (max-width: 1651px) {
  .twentytwenty-top .twentytwenty-bar {
    height: 26px !important;
  }
}
@media only screen and (max-width: 954px) {
  .twentytwenty-top .twentytwenty-bar {
    height: 20px !important;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-top .twentytwenty-bar {
    top: 7% !important;
    bottom: inherit !important;
  }
}
@media only screen and (max-width: 1280px) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    top: 36px !important;
  }
}
@media only screen and (max-width: 64em) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    height: 46px;
  }
}
@media only screen and (max-width: 48.063em) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    width: 96px;
    height: 40px;
    margin-left: -47px;
    top: 36px !important;
  }
}
@media only screen and (max-width: 699px) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    top: 36px !important;
  }
}
@media only screen and (max-width: 639px) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    top: 36px !important;
  }
}
@media only screen and (max-width: 499px) {
  .twentytwenty-top .twentytwenty-horizontal .twentytwenty-handle {
    top: 36px !important;
  }
}
.treatment-details .treatment-content-banner h2,
.treatment-details .treatment-content-banner .font-h2,
.treatment-details .treatment-content-banner h3,
.treatment-details .treatment-content-banner .font-h3,
.treatment-details .treatment-content-banner h4,
.treatment-details .treatment-content-banner .font-h4,
.treatment-details .treatment-content-banner h5,
.treatment-details .treatment-content-banner .font-h5,
.treatment-details .treatment-content-banner h6,
.treatment-details .treatment-content-banner .font-h6 {
  margin-bottom: 1.875rem;
  text-align: center;
}
.treatment-details .treatment-content-banner .button:nth-of-type(1) {
  margin-right: 2%;
}
.treatment-details .before-after-content h1,
.treatment-details .before-after-content .font-h1,
.treatment-details .before-after-content h2,
.treatment-details .before-after-content .font-h2,
.treatment-details .before-after-content h3,
.treatment-details .before-after-content .font-h3,
.treatment-details .before-after-content h4,
.treatment-details .before-after-content .font-h4,
.treatment-details .before-after-content h5,
.treatment-details .before-after-content .font-h5,
.treatment-details .before-after-content h6,
.treatment-details .before-after-content .font-h6 {
  margin-bottom: 3.125rem;
}
@media only screen and (max-width: 1186px) {
  .treatment-details .treatment-content-banner .button:nth-of-type(1) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 39.9375em) {
  .cosmetic-injections-treatments-content {
    padding: 0;
  }
  .treatment-details .treatment-content-banner .button {
    width: 100%;
  }
  .treatment-details .treatment-content-banner .button:nth-of-type(1) {
    margin-bottom: 10px;
  }
  .treatment-details .before-after-content h1,
  .treatment-details .before-after-content .font-h1,
  .treatment-details .before-after-content h2,
  .treatment-details .before-after-content .font-h2,
  .treatment-details .before-after-content h3,
  .treatment-details .before-after-content .font-h3,
  .treatment-details .before-after-content h4,
  .treatment-details .before-after-content .font-h4,
  .treatment-details .before-after-content h5,
  .treatment-details .before-after-content .font-h5,
  .treatment-details .before-after-content h6,
  .treatment-details .before-after-content .font-h6 {
    margin-bottom: 1.875rem;
  }
}
.border-red {
  border: 1px solid #f44336;
}
.border-grey {
  border: 1px solid #e7e8e8;
}
.border-top-grey {
  border-top: 1px solid #e7e8e8;
}
.border-bottom-grey {
  border-bottom: 1px solid #e7e8e8;
}
.pricing-table {
  border-collapse: collapse;
}
.pricing-table tbody {
  border: 1px solid #e7e8e8;
  background: #fff;
}
.pricing-table td b {
  line-height: 30px;
  line-height: 1;
}
.pricing-table th,
.pricing-table thead {
  background-color: #0a0a0a;
  color: #fff;
  padding: 20px;
}
.pricing-table td,
.pricing-table tr,
.pricing-table tr td,
.pricing-table tbody,
.pricing-table tr:nth-child(even) {
  background-color: transparent;
  padding: 0;
}
.pricing-table tr > td:first-child {
  margin-left: 20px;
}
.pricing-table tr > td:last-child {
  margin-right: 20px;
}
.pricing-table tr:last-child td > div {
  border-bottom: none;
}
.pricing-table tr > td {
  border-bottom: 1px solid #e7e8e8;
  padding: 20px !important;
}
.pricing-table .grid-item {
  width: 47.5%;
}
.pricing-table .grey-box {
  border: 1px solid #e7e8e8;
}
.pricing-table .pricing-list li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
thead th,
thead td,
tfoot th,
tfoot td {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.pricing-container .grid-item {
  width: 47.5%;
  margin: 1%;
}
@media screen and (max-width: 1280px) {
  .pricing-container .grid-item {
    width: 90%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 639px) {
  .pricing-container .pricing-table td b {
    line-height: 1;
  }
  .pricing-container .grid-item {
    width: 98%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-container table th,
  .pricing-container table thead,
  .pricing-container table tr,
  .pricing-container table tr > td {
    padding: 10px !important;
    font-size: 12px;
    line-height: 1.4;
  }
}
.face-map-cont {
  border: solid 1px #0a0a0a;
  padding: 0 10px 0 10px;
  position: relative;
}
.face-map-cont .link-line-animate::after {
  width: 92%;
}
.face-map-cont.flexi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.face-map-cont .cont-main-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0 0 4rem;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.face-map-cont .cont-main-text .explanation {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding: 3rem 0;
  border-bottom: solid 1px #ededed;
}
.product-tabs .face-map-cont .cont-main-text .explanation {
  padding: 20px 0;
}
.face-map-cont .cont-main-text .explanation p,
.face-map-cont .cont-main-text .explanation .font-p {
  font-size: 13px;
}
.face-map-cont .cont-main-text .explanation .guide p,
.face-map-cont .cont-main-text .explanation .guide .font-p {
  margin-bottom: 0;
}
.face-map-cont .cont-main-text .explanation .base p,
.face-map-cont .cont-main-text .explanation .base .font-p {
  font-size: 16px;
}
.face-map-cont .cont-main-text .explanation .img-txt-nav ul {
  margin-bottom: 0;
}
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li {
  color: #f44336;
  cursor: pointer;
  width: 28%;
  display: inline-block;
  margin-left: 22px;
  vertical-align: top;
  margin-bottom: 0;
  padding: 6px 0;
}
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li:before {
  color: #f44336;
  content: "";
  display: list-item;
  position: absolute;
}
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li.active p,
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li.active .font-p {
  color: #f44336;
}
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li p,
.face-map-cont .cont-main-text .explanation .img-txt-nav ul li .font-p {
  color: #0a0a0a;
  margin-bottom: 0;
  font-size: 16px;
}
.face-map-cont .cont-main-text .mapText {
  -ms-flex: 1 1 0;
  -webkit-box-flex: 1;
  flex: 1 1 0;
  position: relative;
  display: none;
  -webkit-transition: all 1s;
  transition: all 1s;
  padding: 3rem 0;
}
.face-map-cont .cont-main-text .mapText .text-cont {
  display: none;
}
.face-map-cont .cont-main-text .mapText .text-cont p,
.face-map-cont .cont-main-text .mapText .text-cont .font-p {
  font-size: 16px;
  margin-bottom: 0;
}
.face-map-cont .cont-main-text .mapText .text-cont h4,
.face-map-cont .cont-main-text .mapText .text-cont .font-h4 {
  margin-bottom: 1.875rem;
}
.face-map-cont .cont-main-text .mapText .text-cont.base {
  display: block;
}
.face-map-cont .cont-main-text .mapText .text-cont.base p,
.face-map-cont .cont-main-text .mapText .text-cont.base .font-p {
  padding-top: 10px;
}
.face-map-cont .mapster_el {
  opacity: 0 !important;
}
.face-map-cont .cont-main-img {
  padding: 30px 0;
}
.face-map-cont .cont-main-img #imagemap-cont {
  position: relative;
  max-width: 480px;
  max-height: 695px;
  margin: auto;
  opacity: 0;
}
.face-map-cont .cont-main-img #imagemap-cont img {
  width: 100%;
}
.face-map-cont .cont-main-img #imagemap-cont .mapHover {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.face-map-cont .cont-main-img #imagemap-cont .mapBase {
  position: absolute;
  top: 0;
  left: 0;
}
.face-map-cont .cont-main-img #imagemap-cont #imgMap {
  opacity: 0;
}
.face-map-cont .cont-main-img #imagemap-cont .mapActive {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.face-map-cont .cont-main-img map area {
  cursor: pointer;
}
.face-map-cont .loader {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.face-map-cont .loader .def-loader {
  width: 60px;
  height: 60px;
  top: 45%;
  left: 50%;
  display: block;
  margin-top: -20px;
  margin-left: -20px;
  border: solid 3px;
  border-color: #555 #fff;
  border-radius: 1000px;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotate;
  -moz-animation-duration: 1.5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -o-animation-name: rotate;
  -o-animation-duration: 1.5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
  animation-name: rotate;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 1440px) {
  .face-map-cont .cont-main-text .explanation .img-txt-nav ul li {
    width: 44%;
  }
}
@media only screen and (max-width: 1142px) {
  .face-map-cont .cont-main-text .explanation .img-txt-nav ul li {
    width: 40%;
  }
}
@media only screen and (max-width: 1023px) {
  .face-map-cont.flexi {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .face-map-cont .cont-main-text {
    padding: 0 1rem 0 1rem;
  }
  .face-map-cont .cont-main-img {
    padding: 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .face-map-cont .cont-main-img {
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 544px) {
  .face-map-cont .cont-main-text .explanation .img-txt-nav ul li {
    width: 90%;
  }
}
@media print, screen and (max-width: 40em) {
  .face-map-cont .cont-main-text {
    padding: 1rem;
  }
  .face-map-cont .cont-main-text .mapText {
    padding: 1rem 0rem;
  }
  .face-map-cont .cont-main-text .mapText .text-cont {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
.product-tabs .face-map h3,
.product-tabs .face-map .font-h3 {
  margin-bottom: 30px;
}
.product-tabs .face-map-cont {
  margin-left: 0;
  margin-right: 0;
}
.subscribe-section .form-group {
  margin: 18px 0 30px;
}
.subscribe-section .form-group.search-input input {
  padding-bottom: 10px;
  letter-spacing: 1px;
}
.accordion {
  margin-bottom: 0;
}
.accordion-item {
  border-bottom: 1px solid #979797;
  position: relative;
  margin-bottom: 0;
}
.accordion-item:first-child > :first-child {
  padding-top: 0;
}
.accordion-item:first-child > :first-child:before {
  top: 8px;
}
.accordion-title {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 18px;
  line-height: 25px;
  border: none;
  margin-bottom: 0;
  color: #0a0a0a;
  padding: 20px 0;
  padding-right: 20px;
  text-decoration: none;
}
.accordion-title:focus,
.accordion-title:hover {
  background: none;
  text-decoration: none !important;
  opacity: 0.6;
}
.accordion-title:before {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 28px;
}
.accordion-content {
  border: none;
  padding: 0 0 1.875rem;
}
.accordion-content:last-child {
  margin-bottom: 0;
}
footer .accordion-item {
  border: 0;
}
footer .accordion-title {
  padding-bottom: 10px;
}
footer .accordion-title:focus {
  color: #fff;
  opacity: 1;
}
footer .accordion-title::before {
  font-size: 28px;
}
footer .accordion-content {
  padding: 0;
}
footer .accordion-content > div {
  margin: 0 20px;
}
footer .accordion-content .menu__item:last-child {
  margin-bottom: 8px;
}
.accordion--plus .accordion-title:before,
.accordion--plus .is-active .accordion-title:before {
  content: "";
  font-family: sans-serif;
  height: 100%;
  margin: 0;
  right: 8px;
  top: 0;
  width: 16px;
}
.accordion--plus .accordion-title:before {
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill=''%3E%3Cpath d='M22 11h-9V2c0-.6-.4-1-1-1s-1 .4-1 1v9H2c-.6 0-1 .4-1 1s.4 1 1 1h9v9c0 .6.4 1 1 1s1-.4 1-1v-9h9c.6 0 1-.4 1-1s-.4-1-1-1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13 1v22h-2V1h2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 11h22v2H1v-2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 16px;
}
.accordion--plus .is-active .accordion-title:before {
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8A8 8 0 110 8a8 8 0 0116 0z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.5 8a.5.5 0 01.5-.5h10a.5.5 0 010 1H3a.5.5 0 01-.5-.5z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 16px;
}
.accordion--plus .accordion-item:first-child > :first-child:before {
  top: 0;
}
.accordion--plus .accordion-title {
  padding-right: 32px;
}
.is-active > .accordion-title:before {
  font-family: FontAwesome;
  content: "\f106";
}
:last-child > .accordion-content:last-child,
:last-child:not(.is-active) > .accordion-title {
  border: none;
}
.line-list li {
  list-style: none;
  display: block;
  padding: 5px 0 5px 30px;
  margin-bottom: 15px;
  position: relative;
}
.line-list li:focus:before,
.line-list li:hover:before,
.line-list li.active:before {
  content: "";
  border-left: 2px solid #0a0a0a;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}
.line-list li.active a {
  font-weight: 700;
  text-decoration: none;
}
.line-list li:focus a,
.line-list li:hover a {
  color: #0a0a0a;
  font-weight: regular;
  text-decoration: none !important;
}
.line-list li a {
  color: black;
  display: block;
  text-decoration: none;
}
#search-by-clinic {
  position: relative;
  z-index: 10;
}
.medical-team-search {
  position: relative;
  z-index: 10;
}
.medical-team-list--item {
  padding: 0 50px;
}
.medical-team-list--item img {
  border-radius: 50%;
  background: #e7e8e8;
}
@media only screen and (max-width: 1441px) {
  .medical-team-list--item {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 64em) {
  .medical-team-list--item {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .medical-team-list--item {
    padding: 0;
  }
}
.pagination {
  margin-bottom: 0;
}
.pagination li {
  font-size: 18px;
  display: inline-block;
  list-style: none;
}
.pagination.webapp {
  clear: both;
  text-align: center;
  padding-top: 32px;
}
.pagination.webapp a,
.pagination.webapp span,
.pagination.webapp .pag-current {
  display: inline-block;
  margin: 0 15px;
  padding: 0 3px 2px;
}
.pagination.webapp a:hover,
.pagination.webapp a:focus {
  background: none;
  color: #0a0a0a;
  border-bottom: 2px solid;
}
.pagination.webapp .pag-current {
  color: #0a0a0a;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  border-bottom: 2px solid;
  padding-bottom: 1px;
}
.pag-prev a:before {
  content: "\f104";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
  font-size: 1.125rem;
}
.pag-next a:after {
  content: "\f105";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 39.9375em) {
  .pagination.webapp a,
  .pagination.webapp span,
  .pagination.webapp .pag-current {
    font-size: 14px;
    padding: 0 3px 2px;
    margin: 0 6px;
  }
}
.promo-banner {
  min-height: 64px;
}
.promo-banner .slide-prev {
  left: 0;
}
.promo-banner .slide-next {
  right: 0;
}
.promo-list-container {
  border-bottom: 1px solid #ededed;
  padding-bottom: 5.3125rem;
}
@media only screen and (min-width: 1441px) {
  .promo-list-container .button-wrap {
    min-width: 230px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .promo-list-container .button-wrap {
    min-width: 100%;
  }
}
.promo-list-container .button-wrap .button {
  width: 100%;
}
.promo-list-container .promo-content--item {
  border: 1px solid #0a0a0a;
  padding: 15px 14px 25px;
  margin: 0 7px 15px;
  position: relative;
  min-width: 256px;
  max-width: 256px;
}
.promo-list-container .promo-content--item .promo-price {
  bottom: 25px;
}
.promo-list-container .promo-content--item .promo-price p,
.promo-list-container .promo-content--item .promo-price .font-p {
  margin-bottom: 5px;
}
.promo-list-container .promo-content--item .promo-price p span,
.promo-list-container .promo-content--item .promo-price .font-p span {
  font-weight: 700;
}
.promo-list-container .promo-content--item .promo-price p.font13,
.promo-list-container .promo-content--item .promo-price .font13.font-p,
.promo-list-container .promo-content--item .promo-price p.font14,
.promo-list-container .promo-content--item .promo-price .font14.font-p {
  line-height: 16px;
  margin-top: 12px;
}
.promo-list-container:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.pricing-table .promo-details-mobile {
  margin-top: 8px;
}
@media only screen and (max-width: 1441px) {
  .promo-list-container {
    padding-bottom: 3.125rem;
  }
}
#laser-hair-removal.promo-list-container,
#skin-treatments.promo-list-container {
  padding-top: 85px;
}
@media screen and (max-width: 640px) {
  #laser-hair-removal.promo-list-container,
  #skin-treatments.promo-list-container {
    padding-top: 50px;
  }
}
.error-summary li {
  display: block;
}
#map #map {
  height: 100%;
}
#map html,
#map body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#map,
#indoormap {
  height: 400px;
  width: 100%;
}
#map {
  height: 700px;
}
@media screen and (max-width: 1280px) {
  .widen-on-small {
    width: 100%;
    display: block;
  }
}
.result-item:hover,
.result-item:focus {
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}
.result-item .accordion-item {
  border: none;
}
.result-item a:hover,
.result-item a:focus {
  color: #0a0a0a;
  text-decoration: none;
}
.result-item ul.links.no-list li a {
  margin-bottom: 10px;
}
.result-item > .row {
  margin: 0 !important;
  border: 1px solid #e7e8e8;
  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
.location-item {
  margin-bottom: 1%;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .location-item {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media screen and (min-width: 640px) {
  .location-item {
    width: 47%;
    margin: 1%;
  }
}
@media screen and (min-width: 1024px) {
  .location-item {
    width: 30%;
    margin: 0.5%;
  }
}
@media screen and (min-width: 1440px) {
  .location-item {
    width: 23%;
    margin: 0.5%;
  }
}
.result-box-item {
  margin: 0 !important;
  border: 1px solid #e7e8e8;
  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ribbon {
  color: #fff;
  padding: 2px 20px;
  display: inline-block;
  border-radius: 3px;
  margin-top: 10px;
}
.rbn-red {
  background: #e03e52;
}
.rbn-grey {
  background: #c8c8c8;
}
.rbn-drkgrey {
  background-color: #303030;
}
.d-orange {
  background-color: #df7d1e;
}
.result-area-container {
  display: block;
} /*! CSS Used from: https://www.laserclinics.com.au/StyleSheets/ModuleStyleSheets.css */
@media screen and (max-width: 1680px) {
  #clinics-page h4 > a,
  #clinics-page .font-h4 > a {
    font-size: 1.5em;
    font-size: 24px;
    line-height: 1;
  }
}
@media print, screen and (min-width: 64em) {
  .our-story .medium-centered,
  .our-story .medium-centered:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
}
.our-story .container {
  height: 933px;
  overflow: hidden;
  margin: 30px auto 0;
  overflow-y: scroll;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
@media only screen and (max-width: 39.9375em) {
  .our-story .container {
    max-height: 635px;
  }
}
.our-story .container::-webkit-scrollbar {
  background: #dedede;
  width: 6px;
}
.our-story .container::-moz-scrollbar {
  background: #dedede;
  width: 6px;
}
.our-story .container::-moz-scrollbar {
  background: #dedede;
  width: 6px;
}
.our-story .container::-webkit-scrollbar-thumb {
  background-color: #8f8f8f;
}
.our-story .container::-moz-scrollbar-thumb {
  background-color: #8f8f8f;
}
.our-story .date-right {
  display: inline-block;
}
.our-story .day-name {
  font-size: 1.6em;
}
.our-story .month {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.6em;
  letter-spacing: 2px;
  margin-top: 2px;
}
.our-story .timeline ul {
  padding: 1em 0 0 2em;
  margin: 0;
  list-style: none;
  position: relative;
  padding-top: 0;
}
.our-story .timeline ul::before {
  content: " ";
  height: 100%;
  width: 1px;
  background-color: #d9d9d9;
  position: absolute;
  top: 0;
  left: 2.49em;
  z-index: 1;
}
.our-story .timeline li div {
  display: inline-block;
  margin: 1em 0;
  vertical-align: top;
}
.our-story .timeline li div.desc {
  margin-top: 0;
}
.our-story .timeline .bullet {
  width: 1.75em;
  height: 1.75em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  background: white;
  z-index: 1;
  margin-right: 1.3em;
  position: relative;
  padding-top: 0;
  margin-top: 0;
  margin-left: -8px;
  margin-bottom: 2.5em;
}
.our-story .timeline .bullet.pink {
  border: 2px solid #0a0a0a;
}
.our-story .timeline .bullet.black {
  border: 2px solid #0a0a0a;
}
.our-story .timeline .bullet.orange {
  border: 2px solid #eb8b6e;
}
.our-story .timeline .time {
  width: 23%;
  margin-top: 0;
}
.our-story .timeline .desc {
  width: 50%;
}
.our-story .timeline h3,
.our-story .timeline .font-h3 {
  font-size: 0.9em;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
.our-story .timeline h4,
.our-story .timeline .font-h4 {
  margin: 0;
  font-size: 0.7em;
  font-weight: 400;
  color: #808080;
}
.our-story .timeline li div.images-container {
  margin-top: 2.4em;
  display: block;
}
.our-story .timeline .desc p,
.our-story .timeline .desc .font-p {
  margin-bottom: 0;
}
.our-story .timeline ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 2560px) {
  .our-story .timeline ul::before {
    left: 44px;
  }
}
@media screen and (max-width: 1441px) {
  .our-story .timeline ul::before {
    left: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .our-story .timeline ul {
    padding: 1em 0 0 10px;
  }
  .our-story .timeline ul::before {
    left: 14px;
    top: 20px;
  }
}
#topAnchor .sticky {
  max-height: 70vh;
  padding-right: 30px;
  overflow-y: auto;
}
#topAnchor .sticky::-webkit-scrollbar {
  background: #dedede;
  width: 6px;
}
#topAnchor .sticky::-moz-scrollbar {
  background: #dedede;
  width: 6px;
}
#topAnchor .sticky::-webkit-scrollbar-thumb {
  background-color: #8f8f8f;
}
#topAnchor .sticky::-moz-scrollbar-thumb {
  background-color: #8f8f8f;
}
#terms-page .sticky.is-stuck.overflow {
  overflow-y: auto;
}
.terms-and-conditions ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  display: list-item;
  text-align: left;
  margin-left: 30px;
}
.terms-and-conditions ul li::before {
  content: "\22c5";
  color: #0a0a0a;
  font-size: 40px;
  position: absolute;
  left: -8px;
  top: -2px;
}
.terms-and-conditions h4,
.terms-and-conditions .font-h4 {
  margin-bottom: 3.125rem;
}
.tnc-select-container.spacer-m-bottom.is-stuck {
  position: fixed;
  top: 0;
  margin: auto;
  display: block;
  background: white;
  width: 100%;
  padding: 20px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) and (min-width: 640px) {
  #tnc .line-list li {
    margin-bottom: 10px;
  }
  div#topAnchor > div.sticky.is-stuck {
    margin-top: 5em;
  }
  .tnc-block {
    float: left;
  }
}
@media screen and (max-width: 639px) {
  #terms-page .terms-and-conditions ul li {
    margin-left: 0;
  }
  .tnc-block {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 640) {
  .tnc-block {
    float: left;
  }
}
#topAnchor .sticky {
  max-height: 70vh;
  padding-right: 30px;
  overflow-y: auto;
}
i.fa-spinner {
  margin-right: 5px;
}
.name .popular {
  display: block;
  font-size: 0.875rem;
  line-height: 15px;
}
.popular {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-style: italic;
  color: #ccb46d;
}
.price-dropdown {
  position: relative;
  cursor: pointer;
}
.price-dropdown-description {
  display: none;
  color: #a6a6a6;
  text-align: left;
  padding: 5px 0;
}
.price-dropdown-description .right {
  float: right;
}
.price-dropdown-button {
  font-size: 0.875rem;
  position: relative;
  border: 1px solid #0a0a0a;
  padding: 10px 40px 10px 15px;
  color: #0a0a0a;
  text-align: left;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.5);
  min-width: 180px;
}
.price-dropdown-button.select {
  background-color: #ccb46d;
}
.price-dropdown-button.select span {
  color: #fff;
}
.price-dropdown-button i.fa-check {
  padding-right: 5px;
  color: #fff;
}
.price-dropdown-button i.fa-spinner {
  font-size: 1.375rem;
}
.price-dropdown-arrow {
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg' fill=''%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M.646 3.646a.5.5 0 01.708 0L8 10.293l6.646-6.647a.5.5 0 01.708.708l-7 7a.5.5 0 01-.708 0l-7-7a.5.5 0 010-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 2px;
  padding: 10px 16px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.price-dropdown-arrow.open {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.price-dropdown-options {
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #fff;
  border: 2px solid #0a0a0a;
  position: absolute;
  right: 15px;
  top: 47px;
  width: 300px;
  z-index: 99;
}
.price-dropdown-options .loading {
  background-color: #a6a6a6;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.price-dropdown-options .loading .fa {
  position: absolute;
  color: #fff;
  top: 50%;
  left: calc(50% - 1rem);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2rem;
}
.price-dropdown-options > div {
  text-align: left;
  border-top: 1px solid #0a0a0a;
}
.price-dropdown-options > div:first-of-type {
  border-top: none;
}
.price-dropdown-options > div:last-of-type {
  border-bottom: 1px solid #0a0a0a;
}
.price-dropdown-options > div i {
  padding-right: 5px;
  color: #ccb46d;
}
.price-dropdown-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 10px;
  min-height: 55px;
}
.price-dropdown-row.remove-item {
  line-height: 35px;
}
.price-dropdown-row.quantity {
  padding: 25px 10px 40px 10px;
}
.price-dropdown-row.quantity .form-group {
  margin: 0 15px 0 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.price-dropdown-row.quantity .form-group .control-label {
  font-size: 0.875rem;
}
.price-dropdown-text {
  font-size: 1rem;
  -ms-flex-item-align: center;
  align-self: center;
  word-break: break-word;
  line-height: 16px;
}
.price-dropdown-super,
.price-dropdown-sub {
  font-size: 0.75rem;
  position: absolute;
}
.price-dropdown-super {
  margin-top: -16px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  color: #ccb46d;
}
.price-dropdown-sub {
  font-family: "Helvetica Neue Italic", "Helvetica", Arial;
  font-style: italic;
  padding-left: 15px;
}
.price-dropdown-sub_small,
.price-dropdown-sub .cents {
  font-size: 0.625rem;
}
.price-dropdown-tag {
  background-color: #e7e8e8;
  padding: 5px 10px;
  margin-left: 5px;
  word-break: break-word;
}
.price-dropdown-add {
  font-size: 0.875rem;
  min-width: 90px;
  height: 35px;
  padding: 0;
  margin: auto 0;
}
.price-dropdown > .form-error {
  position: relative;
  padding-top: 10px;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .price-dropdown-button {
    min-width: 122px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .price-dropdown-options {
    top: 70px;
    right: 10px;
    width: 100%;
  }
  .price-dropdown-description {
    display: inline-block;
    width: 100%;
  }
  .name .popular {
    display: none;
  }
}
.skin-tone-item-container {
  padding: 5px;
  border: 2px solid #fff;
  position: relative;
  background-color: #fff;
  cursor: pointer;
}
.skin-tone-item-container.active {
  border: 2px solid #ccb46d;
}
.skin-tone-item-container.active .fa-check-circle {
  display: block;
}
.skin-tone-img {
  background-repeat: no-repeat;
}
.skin-tone-caption {
  border: 2px solid #0a0a0a;
  font-weight: bold;
  text-align: center;
  font-size: 0.9375rem;
  margin-bottom: 2px;
  padding: 10px;
}
.skin-tone--error .skin-tone-item-container {
  border: 2px solid #f44336;
}
.skin-tone .fa-check-circle {
  position: absolute;
  color: #ccb46d;
  font-size: 2.25rem;
  left: 50%;
  margin-left: -13px;
  background-color: #fff;
  display: none;
}
.skin-tone-item-container {
  max-width: 200px;
  padding-bottom: 15px;
}
.skin-tone-img {
  background-size: contain;
  padding-bottom: 150%;
  height: 140px;
  margin-bottom: 10px;
}
.skin-tone .columns {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media print, screen and (max-width: 1023px) {
  .skin-tone .columns {
    padding-bottom: 8px;
  }
}
@media print, screen and (max-width: 1200px) {
  .skin-tone .skin-tone-caption {
    font-size: 0.75rem;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media print, screen and (max-width: 875px) {
  .skin-tone .columns {
    width: 33.3333333333%;
    padding-left: 0;
    padding-right: 0;
  }
}
.table {
  width: 100%;
}
.table-header-row,
.table-body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  border-bottom: 1px solid #a6a6a6;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 15px 0;
}
.table-header-row:last-of-type,
.table-body-row:last-of-type {
  border-bottom: 2px solid #0a0a0a;
}
.table-header-cell,
.table-body-cell {
  -ms-flex-preferred-size: 150px;
  flex-basis: 150px;
  text-align: center;
}
.addons-table .table-header-cell,
.addons-table .table-body-cell {
  -ms-flex-preferred-size: initial;
  flex-basis: initial;
}
.addons-table .table-header-cell .price,
.addons-table .table-body-cell .price {
  padding-right: 15px;
}
.table-header-cell.remove-item,
.table-body-cell.remove-item {
  -ms-flex-preferred-size: 25px;
  flex-basis: 25px;
  margin-left: 10px;
  padding-bottom: 10px;
}
.table-header-cell.amount,
.table-body-cell.amount {
  padding-right: 2%;
  text-align: right;
}
.table-header-cell .treatment-icon,
.table-body-cell .treatment-icon {
  width: 50px;
  height: 50px;
  background-size: 50px 50px;
  background-repeat: no-repeat;
}
.table-header-cell .treatment-icon-CI,
.table-body-cell .treatment-icon-CI {
  background-image: url("../assets/images/CI-icon-e2b1460935.png");
}
.table-header-cell .treatment-icon-LHR,
.table-body-cell .treatment-icon-LHR {
  background-image: url("../assets/images/LHR-icon-e4b6e2ce15.png");
}
.table-header-cell .treatment-icon-SK,
.table-body-cell .treatment-icon-SK {
  background-image: url("../assets/images/SK-icon-da13eb0bb7.png");
}
.table-header-cell .treatment-icon-CS,
.table-body-cell .treatment-icon-CS {
  background-image: url("../assets/images/CS-icon-f45c08a606.jpg");
}
.table-header-cell:last-of-type,
.table-body-cell:last-of-type {
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
}
.table-header-cell:first-of-type,
.table-body-cell:first-of-type {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
}
.table .name {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 1rem;
}
.table-header-row {
  line-height: 15px;
}
.table-header-cell {
  font-weight: 600;
}
.zip-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: -30px;
}
.zip-footer-logo {
  height: 30px;
  width: 75px;
  margin-right: 15px;
  background: url("../assets/images/Zip_logo_black-808f57e962.svg") left center
    no-repeat;
}
.zip-footer-message {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
@media only screen and (max-width: 39.9375em) {
  .table-header-cell {
    display: none;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .table-header-cell:first-of-type {
    display: block;
    width: 60%;
  }
  .table-header-cell:nth-of-type(2) {
    display: block;
    text-align: right;
    width: 40%;
  }
  .table-body-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .table-body-cell {
    display: none;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .table-body-cell:first-of-type {
    display: block;
    width: 60%;
  }
  .table-body-cell:nth-of-type(2) {
    display: block;
    width: 40%;
    padding-left: 5px;
    text-align: right;
  }
  .table-body-cell:last-of-type {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.header-with-buttons .button-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.header-with-buttons .button-row a {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: 0;
  padding: 4px;
  text-align: left;
  width: auto;
}
.header-with-buttons .button-tag {
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
  border: 1px solid #0a0a0a;
  padding: 10px;
  color: #0a0a0a;
  background-color: #fff;
  margin-right: 15px;
  min-width: 50px;
  position: relative;
}
.header-with-buttons .button-tag-text img {
  max-height: 42px;
  max-width: 220px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}
.header-with-buttons .isActive .button-tag {
  border: 1px solid #fff;
}
@media print, screen and (min-width: 40em) {
  .header-with-buttons .button-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-with-buttons .button-row a {
    margin-right: 16px;
  }
  .header-with-buttons .button-tag {
    margin-right: 10px;
  }
}
.carousel-select .slick-arrow {
  background: none;
  color: #0a0a0a;
}
.carousel-select .slick-next:before,
.carousel-select .slick-prev:before {
  background-color: none;
  color: #0a0a0a;
  font-size: 30px;
  line-height: 0;
}
.carousel-select .slick-next {
  right: -15px;
}
.carousel-select .slick-prev {
  left: -25px;
}
.carousel-select-item {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 0 10px;
}
.carousel-select-item.disabled {
  cursor: auto;
  opacity: 0.5;
}
.carousel-select-name {
  text-align: center;
}
.carousel-select-name.selected {
  background-color: #d0f0ea;
}
.carousel-select-name.relative {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel-select-image {
  display: block;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.carousel-select-unavailable {
  background-color: #e7e8e8;
  padding: 30px;
  margin: 30px 0;
}
.carousel-select-unavailable i.fa-exclamation-circle {
  padding-right: 10px;
  font-size: 1.875rem;
}
.carousel-simple {
  position: relative;
  margin-bottom: 30px;
}
.carousel-simple .slick-arrow {
  background: none;
  color: #0a0a0a;
}
.carousel-simple .slick-next:before,
.carousel-simple .slick-prev:before {
  background-color: none;
  color: #0a0a0a;
  font-size: 30px;
  line-height: 0;
}
.carousel-simple .slick-next {
  right: -15px;
}
.carousel-simple .slick-prev {
  left: -25px;
}
.carousel-simple-header {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}
.carousel-simple-item {
  display: block;
  position: relative;
  margin: 0 10px;
}
.carousel-simple-item.disabled {
  cursor: auto;
  opacity: 0.5;
}
.carousel-simple-name {
  text-align: center;
}
.carousel-simple-name.relative {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel-simple-image {
  display: block;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.carousel-simple-image:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.terms-conditions {
  position: relative;
  background-color: #e7e8e8;
  margin-top: 0;
}
.terms-conditions .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.terms-conditions-image {
  position: relative;
}
.terms-conditions-image img {
  position: absolute;
  bottom: 0;
}
.terms-conditions-text {
  padding: 30px 15px;
  text-align: justify;
}
@media only screen and (min-width: 64em) {
  .terms-conditions {
    margin-top: 150px;
  }
}
.cart-review {
  padding: 0 5px;
}
.cart-review .change-clinic {
  color: #58595b;
}
.cart-review .change-clinic:hover,
.cart-review .change-clinic:active {
  text-decoration: underline;
  cursor: pointer;
}
.cart-review.empty {
  text-align: center;
}
.cart-review .change-clinic {
  text-decoration: underline;
  cursor: pointer;
  padding-left: 5px;
}
.cart-review .clinic-text div {
  display: inline-block;
}
.cart-review .continue {
  margin-top: 40px;
}
.cart-review .continue a {
  position: relative;
  padding-left: 15px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.cart-review .continue a:before {
  position: absolute;
  left: 0;
  font-family: FontAwesome;
  font-size: 1.25rem;
  font-weight: bold;
  content: "\f107";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cart-review .table {
  margin-top: 50px;
}
.cart-review .table-header-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: none;
}
.cart-review .table-header-cell:nth-of-type(1) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 100px;
  flex-basis: 100px;
  text-align: left;
}
.cart-review .table-header-cell:nth-of-type(2) {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-preferred-size: 170px;
  flex-basis: 170px;
  text-align: left;
}
.cart-review .table-header-cell:nth-of-type(4) {
  -ms-flex-preferred-size: 50px;
  flex-basis: 50px;
}
.cart-review .table-body-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
}
.cart-review .table-body-cell:nth-of-type(1) {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-preferred-size: 85px;
  flex-basis: 85px;
  text-align: left;
}
.cart-review .table-body-cell:nth-of-type(2) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
}
.cart-review .table-body-cell:nth-of-type(4) {
  -ms-flex-preferred-size: 50px;
  flex-basis: 50px;
}
.cart-review .table-body-cell .cell-label {
  display: none;
}
.cart-review .table.summary-table .table-body-row {
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cart-review .table.summary-table .table-body-cell {
  padding-left: 5px;
}
.cart-review .table.summary-table .table-body-cell:nth-of-type(1) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: right;
}
.cart-review .table.summary-table .table-body-cell:nth-of-type(2) {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  text-align: right;
  -ms-flex-preferred-size: 150px;
  flex-basis: 150px;
  padding-right: 5px;
}
.cart-review .details {
  padding-left: 15px;
}
.cart-review .details .treatment-name {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1.125rem;
}
.cart-review .details .quantity {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-preferred-size: 215px;
  flex-basis: 215px;
  text-align: center;
  padding-left: 15px;
}
.cart-review .details .quantity .price-dropdown-description {
  display: none;
}
.cart-review .amount > div:first-child {
  font-size: 1.125rem;
}
.cart-review .amount > div:nth-child(2) {
  line-height: 15px;
}
.cart-review .remove-item {
  position: relative;
  padding-right: 0;
  text-align: right;
}
.cart-review .remove-item > span {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 16px;
}
.cart-review .remove-item .remove-img {
  height: 24px;
  margin-right: 16px;
  width: 24px;
}
.cart-review .remove-item .remove-img:hover {
  cursor: pointer;
}
.cart-review .fa-trash {
  position: absolute;
  top: calc(50% - 13px);
  right: 10px;
  font-size: 26px;
  cursor: pointer;
}
.cart-review .promo-code {
  float: right;
}
.cart-review .promo-code .form-group.promo-code-input-field {
  display: inline-block;
  margin: 0;
  min-width: 250px;
  margin-right: 15px;
}
.cart-review .promo-code .promo-code-button {
  display: inline-block;
}
.cart-review .promo-code .form-error.gold {
  font-weight: bold;
  color: #ccb46d;
}
.cart-review .conditions {
  padding: 15px;
}
.cart-review .conditions p,
.cart-review .conditions .font-p {
  margin-bottom: 0;
}
.cart-review .conditions a {
  font-weight: bold;
  text-decoration: underline;
}
.cart-review .saved-row {
  font-size: 0.9rem;
}
.cart-review .saved-row .table-body-cell {
  padding-bottom: 0;
}
.cart-review .tax-row {
  font-size: 0.9rem;
}
.cart-review .tax-row .table-body-cell {
  padding-top: 5px;
}
.cart-review .total-row .table-body-cell {
  padding-top: 5px;
}
.cart-review hr {
  border-bottom: 2px solid #0a0a0a;
}
.cart-review .number-box {
  background: #0a0a0a;
  color: #fff;
  height: 50px;
  width: auto;
  padding-left: 8px;
  padding-right: 9px;
  display: inline-block;
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 1280px) {
  .cart-review .number-box {
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-review .number-box {
    height: 38px;
  }
}
@media only screen and (max-width: 639px) {
  .cart-review .number-box {
    height: 35px;
  }
}
.cart-review a {
  font-size: inherit;
}
.cart-items-table .table-body > .table-body-row {
  padding-left: 10px;
  padding-right: 10px;
  border: 2px solid #efefef;
}
.cart-items-table .table-body > .table-body-row:nth-of-type(odd) {
  background-color: #efefef;
}
.empty-cart-icon {
  display: inline-block;
  height: 100px;
  width: 100px;
  border: 1px solid;
  border-radius: 50%;
  margin-bottom: 40px;
}
.empty-cart .fa-shopping-cart {
  line-height: 100px;
  font-size: 48px;
}
.empty-cart h4,
.empty-cart .font-h4 {
  margin-bottom: 20px;
}
.cart-modal {
  padding: 30px;
  text-align: center;
}
.cart-modal > div button:first-child {
  margin-right: 30px;
}
.payment-methods {
  text-align: left;
}
.payment-methods-types div {
  display: inline-block;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.payment-methods-types div img {
  height: 100%;
}
.payment-methods-types .mastercard {
  background-image: url("../assets/images/mastercard-5450f1635e.svg");
}
.payment-methods-types .visa {
  background-image: url("../assets/images/visa-5462f6ba14.svg");
}
.payment-methods-types .amex {
  background-image: url("../assets/images/amex-d3b028936e.svg");
}
.payment-methods-types .zippay {
  background-image: url("../assets/images/zip-9c7e914c83.svg");
}
.payment-methods-types .klarna {
  background-image: url("../assets/images/klarna-2ba4bba5ee.svg");
}
@media only screen and (max-width: 1023px) {
  .cart-review .continue {
    margin-top: 20px;
  }
  .cart-review .table {
    margin-top: 30px;
    font-size: 17px;
  }
  .cart-review .table-header-cell {
    display: none;
  }
  .cart-review .table-header-cell:first-child {
    display: block;
  }
  .cart-review .table-body-cell {
    display: none;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .cart-review .table-body-cell:nth-of-type(n) {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .cart-review .table-body-cell:nth-of-type(1) {
    -ms-flex-preferred-size: 50px;
    flex-basis: 50px;
  }
  .cart-review .table-body-cell:nth-of-type(2) {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .cart-review .table-body-cell:nth-of-type(3) {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
  .cart-review .table-body-cell.details .table-body-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cart-review .table-body-cell.treatment-name {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-bottom: 5px;
  }
  .cart-review .table-body-cell.quantity {
    padding-top: 0;
    padding-left: 0;
    text-align: left;
    max-width: 200px;
  }
  .cart-review .table-body-cell .cell-label {
    display: inline;
  }
  .cart-review
    .table.summary-table
    .table-body-row.saved-row
    .table-body-cell:nth-of-type(1) {
    text-align: left;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto;
  }
  .cart-review
    .table.summary-table
    .table-body-row.saved-row
    .table-body-cell:nth-of-type(2) {
    text-align: right;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: auto;
  }
  .cart-review
    .table.summary-table
    .table-body-row.total-row
    .table-body-cell:nth-of-type(1) {
    text-align: left;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 40%;
  }
  .cart-review
    .table.summary-table
    .table-body-row.total-row
    .table-body-cell:nth-of-type(2) {
    text-align: right;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: auto;
  }
}
@media only screen and (max-width: 39.9375em) {
  .cart-review {
    padding-bottom: 15px;
  }
  .cart-review .promo-code {
    float: none;
  }
  .cart-review .promo-code-button {
    width: 100%;
  }
  .cart-review .promo-code .form-group.promo-code-input-field {
    margin-bottom: 10px;
    width: 100%;
  }
  .cart-review
    .promo-code
    .form-group.promo-code-input-field.promo-code-invalid,
  .cart-review .promo-code .form-group.promo-code-input-field.has-value {
    margin-bottom: 22px;
  }
  .cart-review .table {
    margin-top: 0;
    min-width: 340px;
  }
  .cart-review .table-body-row {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .cart-review .table-body-cell.treatment-name {
    padding-bottom: 15px;
    padding-top: 10px;
    word-break: break-word;
  }
  .cart-review .table-body-cell.quantity {
    max-width: inherit;
  }
  .cart-review .table-body-cell.amount {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-top: 15px;
    padding-right: 50px;
    text-align: right;
  }
  .cart-review .table-body-cell.remove-item {
    -ms-flex-preferred-size: 25px;
    flex-basis: 25px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    padding-bottom: 10px;
  }
  .cart-review .table-body-cell.remove-item > span {
    display: none;
  }
  .cart-review .proceed-button {
    width: 100%;
  }
}
@media only screen and (max-width: 568px) {
  .cart-modal .button + .button {
    margin-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .cart-modal {
    padding: 30px 15px 15px;
  }
  .cart-modal .button {
    margin: 0;
    width: 100%;
  }
  .cart-modal .button:first-child {
    margin-right: 0;
  }
  .cart-modal .button:last-child {
    margin-top: 15px;
  }
}
.cart-icon {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  margin-top: -130px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 1199px) {
  .cart-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.show-cart .cart-icon {
  opacity: 1;
  visibility: visible;
  margin-top: 11px;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.cart-icon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.cart-icon > i {
  position: relative;
  font-size: 30px;
  padding-right: 5px;
}
.mini-cart {
  position: relative;
}
.top-menu .mini-cart a:hover {
  color: #fff;
}
.mini-cart .saved-row .saved-text,
.mini-cart .saved-row .price {
  font-size: 0.875rem;
}
#prepay-icon-container .mini-cart {
  width: 100%;
}
.mini-cart > button.btn-white {
  border: 1px solid #fff;
}
.mini-cart-button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}
.mini-cart-panel {
  max-height: calc(100vh - 70px);
  max-width: 100%;
  opacity: 0;
  overflow-y: auto;
  padding-top: 15px;
  position: absolute;
  right: 40px;
  text-transform: initial;
  top: 75%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  width: 400px;
  z-index: 1;
}
#prepay-icon-container .mini-cart-panel {
  position: absolute;
  right: -40px;
}
.mini-cart-panel.open {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}
.mini-cart-panel i {
  cursor: pointer;
}
.mini-cart-panel::before {
  border-bottom: 15px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  right: 5%;
  top: 0;
  width: 0;
}
.mini-cart-panel > div {
  background: transparent;
  padding: 0;
  position: relative;
}
.mini-cart-panel > div > div {
  padding: 16px;
}
.mini-cart-panel > div:last-of-type {
  border-bottom: none;
}
.mini-cart-panel .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}
.mini-cart-panel .content:nth-child(even) {
  background-color: #efefef;
}
.mini-cart-panel .content > div {
  margin-right: 10px;
}
.mini-cart-panel .content > div:first-child {
  -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
}
.mini-cart-panel .content > div:nth-child(2) {
  -webkit-box-flex: 6.5;
  -ms-flex: 6.5;
  flex: 6.5;
}
@media screen and (max-width: 360px) {
  .mini-cart-panel .content > div:nth-child(2) {
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }
}
.mini-cart-panel .content > div:last-child {
  -webkit-box-flex: 3.5;
  -ms-flex: 3.5;
  flex: 3.5;
  margin-right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mini-cart-panel .header,
.mini-cart-panel .footer,
.mini-cart-panel .price,
.mini-cart-panel .treatment {
  font-size: 1.125rem;
}
.mini-cart-panel .treatment {
  width: calc(70% - 32px);
}
.mini-cart-panel .price {
  text-align: right;
  width: 30%;
}
.mini-cart-panel .remove-img {
  height: 16px;
  width: 16px;
}
.mini-cart-panel .remove-img:hover {
  cursor: pointer;
}
.mini-cart-panel i {
  padding: 0 15px;
  font-size: 16px;
}
.mini-cart-panel i.fa-close {
  padding: 0;
  font-size: 24px;
}
.mini-cart-panel .tag {
  text-transform: capitalize;
  border: 1px solid #0a0a0a;
  width: calc(15% - 15px);
  padding: 5px;
}
.mini-cart-panel .item {
  width: 85%;
}
@media only screen and (min-width: 1580px) {
  .mini-cart-panel .button-wrapper a.button {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 568px) {
  .mini-cart-panel .button-wrapper a.button + .button {
    margin-top: 0;
  }
}
.mini-cart .total {
  background-color: #ed6e52;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
}
.mini-cart .total-label {
  margin-right: 2px;
}
.mini-cart .mini-cart-panel .row .columns,
.mini-cart .mini-cart-panel .row .columns .columns {
  height: auto;
}
@media only screen and (max-width: 39.9375em) {
  .mini-cart .price,
  .mini-cart .treatment {
    font-size: 1rem;
  }
  .mini-cart .treatment {
    word-break: break-word;
  }
}
.carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.carousel .slick-arrow {
  padding: 16px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  background: none;
  color: #191816;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 2rem;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.carousel .slick-arrow.slick-disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.carousel .slick-next,
.carousel .slick-prev {
  font-size: 0;
  height: 64px;
  width: 64px;
}
.carousel .slick-next::before,
.carousel .slick-prev::before {
  display: none;
}
.carousel .slick-next {
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' fill=''%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M30.5 17h-28v-1h28v1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.5 6.793l9.707 9.707-9.707 9.707-.707-.707 9-9-9-9 .707-.707z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  position: relative;
  right: unset;
}
.carousel .slick-prev {
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' fill=''%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.5 16h28v1h-28v-1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.207 7.5l-9 9 9 9-.707.707L1.793 16.5 11.5 6.793l.707.707z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  left: unset;
  position: absolute;
  right: 48px;
  top: 0;
}
.carousel--flex-slides .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.carousel--flex-slides .slick-slide {
  height: inherit;
}
@media print, screen and (max-width: 39.99875em) {
  .carousel--peek .slick-list {
    padding-right: 48px;
  }
}
.modal-dialog .clinic-map {
  position: relative;
  height: 300px;
}
.modal-dialog .clinic-location-wrapper,
.modal-dialog .content-wrapper {
  height: 100%;
}
.content-wrapper {
  height: 700px;
}
.normal-text {
  padding: 0;
  font-size: 0.875rem;
  font-family: "Helvetica Neue", "Helvetica", Arial;
}
.clinic-item {
  border-top: 1px solid #e7e8e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 30px;
}
.clinic-item .button {
  -webkit-transition: unset;
  transition: unset;
}
.clinic-item .btn-black {
  border: 2px solid #0a0a0a;
}
.clinic-item .selected {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-left: 18px;
  color: #ccb46d;
}
.clinic-item .selected > i {
  position: absolute;
  top: 2px;
  left: 0;
}
.clinic-item .clinic-select-button:first-child {
  margin-right: 15px;
}
.clinic-item .clinic-select-button .button {
  min-width: auto;
  padding: 5px 30px;
}
.clinic-item.borderless {
  border-top: none;
  padding: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.clinic-text {
  margin: auto 0;
  padding-top: 17.75px;
  padding-bottom: 17.75px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.clinic-prepay-unavailable {
  font-size: 0.625rem;
}
.clinic-book-button {
  margin-top: auto;
  margin-bottom: auto;
}
.clinic-book-button .button {
  float: right;
}
.react-autosuggest__container {
  width: 100%;
  position: relative;
}
.react-autosuggest__suggestions-container {
  display: none;
}
.react-autosuggest__suggestions-container--open {
  width: 100%;
  display: block;
  position: absolute;
  background-color: #fff;
  z-index: 99;
  min-width: 250px;
  max-height: 400px;
  overflow-y: hidden;
}
.react-autosuggest__suggestions-list {
  list-style: none;
  display: block;
}
.react-autosuggest__suggestion .map-result-item {
  display: inline-block;
  text-align: left;
  cursor: pointer;
}
.highlighted {
  background-color: #e7e8e8;
}
@media only screen and (max-width: 64em) {
  .modal-dialog .clinic-map {
    display: none;
  }
  .modal-dialog .react-autosuggest__suggestions-container--open {
    max-height: 200px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .clinic-item .clinic-select-button .button {
    padding: 5px 15px;
  }
}
.credit-agreement {
  margin-top: 15px;
}
.credit-agreement-sub {
  padding-left: 40px;
}
.credit-card-term * {
  text-align: left;
  font-size: 0.75rem;
}
@media only screen and (min-width: 39.9375em) {
  .credit-card-term * {
    font-size: 0.875rem;
  }
}
.credit-card-term .checkbox-field {
  margin-bottom: 10px;
}
@media only screen and (min-width: 320px) {
  .credit-card-term .checkbox-field {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 39.9375em) {
  .credit-card-term .checkbox-field {
    margin-bottom: 20px;
  }
}
.credit-card-term .checkbox-text p,
.credit-card-term .checkbox-text .font-p {
  margin-bottom: 0;
}
@media only screen and (max-width: 39.9375em) {
  .credit-card-term .checkbox-text {
    padding-left: 10px;
  }
}
.credit-card-term .checkbox-label {
  margin-bottom: 0;
}
.credit-card-term .checkbox-label input {
  margin: 0;
}
@media only screen and (min-width: 39.9375em) {
  .credit-card-term .checkbox-label input {
    margin: 0 20px 0 0;
  }
}
.clinic-confirmation p,
.clinic-confirmation .font-p {
  margin-bottom: 0;
}
.payment-container .tabs-header-icon {
  height: 23px;
}
@media only screen and (min-width: 64em) {
  .payment-container .tabs-header-name {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    min-width: 180px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .no-pd-mobile {
    padding: 0;
  }
}
.order-summary-panel {
  background-color: #0a0a0a;
  border: 2px solid #0a0a0a;
  display: block;
}
.order-summary-opener {
  display: none;
}
.order-summary-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.order-summary-line {
  border-bottom: 1px solid #a6a6a6;
  margin: 0 30px;
}
.order-summary-header,
.order-summary-clinic {
  padding: 15px 30px;
  color: #fff;
}
.order-summary-header a,
.order-summary-clinic a {
  color: #fff;
}
.order-summary-header a:hover,
.order-summary-clinic a:hover {
  color: #fff;
}
.order-summary-opener .large-text {
  font-size: 1.5rem;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.order-summary .change-clinic {
  color: #fff;
}
.order-summary .change-clinic:hover,
.order-summary .change-clinic:active {
  text-decoration: underline;
  cursor: pointer;
}
.order-summary .saving {
  color: #ccb46d;
}
.order-summary-treatment {
  padding: 15px 30px;
  background-color: #fff;
  border-bottom: 2px solid #0a0a0a;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.order-summary-footer {
  background-color: #fff;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  padding: 15px 30px;
}
.order-summary-close {
  display: none;
}
@media only screen and (max-width: 64em) {
  .order-summary-panel {
    display: none;
    position: absolute;
    top: -65px;
    right: 0;
    left: 0;
    z-index: 2;
    margin-left: 0;
  }
  .order-summary-panel.isOpen {
    display: block;
  }
  .order-summary-opener {
    display: block;
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #0a0a0a;
    text-align: center;
    z-index: 2;
    height: 65px;
    margin-top: 0;
    padding-top: 15px;
    cursor: pointer;
  }
  .order-summary-opener > .columns:first-of-type {
    padding-left: 0;
  }
  .order-summary-opener > .columns:last-of-type {
    padding-right: 0;
  }
  .order-summary-opener .fa-chevron-down {
    position: absolute;
    bottom: 10px;
    left: 50%;
  }
  .order-summary-close {
    display: block;
    background-color: #0a0a0a;
    font-family: "Helvetica Neue Bold", "Helvetica", Arial;
    color: #fff;
    text-align: center;
    cursor: pointer;
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .order-summary-line {
    margin: 0 15px;
  }
  .order-summary-treatment,
  .order-summary-footer,
  .order-summary-header,
  .order-summary-clinic {
    padding: 15px;
  }
}
.disabled {
  pointer-events: none;
}
.table .prepay-tag {
  margin: -15px 0;
  padding: 10px 0;
}
.table-body-row.prepay {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3px;
}
.table-body-row.prepay:first-child {
  border-top: 1px solid #a6a6a6;
}
.table-body-cell.prepays {
  -ms-flex-preferred-size: 150px;
  flex-basis: 150px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  text-align: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.table-body-cell.prepays.selected {
  -webkit-box-shadow: inset 10px 0 0 0 #ccb46d;
  box-shadow: inset 10px 0 0 0 #ccb46d;
}
@media screen and (max-width: 1200px) {
  .table-body-cell.prepays {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.table-body-cell.details {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding-left: 15px;
  padding-right: 15px;
}
.table-body-cell.details .table-body-row {
  border-bottom: none;
  padding: 0;
}
.table-body-cell.treatment {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media screen and (max-width: 1200px) {
  .table-body-cell.treatment {
    min-width: auto;
  }
}
.table-body-cell.location {
  -ms-flex-preferred-size: 300px;
  flex-basis: 300px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  text-align: left;
  padding-left: 15px;
}
@media screen and (max-width: 1440px) {
  .table-body-cell.location {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.table-body-cell.expires {
  text-align: left;
}
.table-body-cell.icon {
  -ms-flex-preferred-size: 75px;
  flex-basis: 75px;
}
.table-body-cell.action {
  -ms-flex-preferred-size: 475px;
  flex-basis: 475px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.table-body-cell.action .top-up {
  margin-right: 10px;
}
.table-body-cell.action .book {
  padding-left: 13px;
  padding-right: 13px;
}
.table-body-cell.action .action-cell {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 1600px) {
  .table-body-cell.action {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-preferred-size: 250px;
    flex-basis: 250px;
  }
  .table-body-cell.action .action-cell {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .table-body-cell.action .top-up {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: (small: 0, medium: 640px, large: 1024px, xlarge: 1200px, xxlarge: 1440px, xxxlarge: 1580px) xlarge) {
  .table-body-cell.action {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
  }
}
.prepay {
  height: 100%;
}
.prepay-amount {
  font-size: 2.25rem;
}
.prepay-view {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.prepay-view:after {
  position: absolute;
  top: 1px;
  right: -16px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  font-family: FontAwesome;
  font-size: 1.25rem;
  content: "\f107";
}
.prepay-view.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.prepay-label {
  color: #a6a6a6;
}
.prepay-warning {
  color: #f44336;
}
.prepay-warning .prepay-label {
  color: #f44336;
}
.prepay-validity {
  text-align: left;
  font-size: 0.875rem;
}
.prepay-date {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.875rem;
  text-align: left;
  padding-left: 15px;
}
.prepay-date:last-of-type {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.prepay-row {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.prepay-row:last-child {
  padding-bottom: 20px;
}
.top-up {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-up .price {
  font-size: 0.875rem;
}
.info-panel {
  padding: 20px;
  text-align: center;
  font-family: "Helvetica Neue", "Helvetica", Arial;
  font-size: 1.25rem;
  border-bottom: 2px solid;
}
.info-panel .treatment-content {
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.info-panel .treatment-details {
  text-align: left;
}
.info-panel .treatment-name {
  margin-bottom: 0;
}
.info-panel .treatment-duration {
  color: #a6a6a6;
}
.info-panel .no-border {
  border-bottom: none;
}
.info-panel a {
  font-size: 1.25rem;
}
@media only screen and (max-width: 480px) {
  .info-panel {
    font-size: 1.125rem;
  }
  .info-panel a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1024px) {
  .table-body-row.prepay {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .table-body-cell.icon {
    display: none;
  }
  .table-body-cell.action {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 30px;
    padding: 0;
  }
  .table-body-cell.action .top-up {
    margin-right: 10px;
    margin-bottom: 0;
  }
  .table-body-cell.action .re-book {
    margin-right: 0;
  }
  .table-body-cell.spacer-cell {
    display: none;
  }
  .table-body-cell.prepay-date {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
@media only screen and (max-width: 39.9375em) {
  .table-body-cell.details {
    padding-right: 0;
  }
  .table-body-cell.details .table-body-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .table-body-cell.details .table-body-row .detail {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-top: 0;
    padding-bottom: 5px;
  }
  .table-body-cell.details .treatment {
    font-size: 1.125rem;
  }
  .table-body-cell.details .location {
    padding-left: 0;
  }
  .table-body-cell > .prepay-label {
    display: none;
  }
}
@media screen and (max-width: 568px) {
  .table-body-cell.action {
    margin-top: 15px;
  }
  .table-body-cell.action .top-up {
    margin-top: 10px;
  }
}
@media screen and (max-width: 360px) {
  .truncate-label {
    display: none;
  }
}
.clinic-location-wrapper {
  height: 550px;
}
.clinic-map-container {
  position: relative;
}
.clinic-map {
  position: absolute;
  height: 550px;
  width: 100%;
}
.react-autosuggest__container {
  width: 100%;
  position: relative;
}
.react-autosuggest__container .form-group {
  margin: 0;
}
.react-autosuggest__suggestions-container {
  display: none;
}
.react-autosuggest__suggestions-container--open {
  width: 100%;
  display: block;
  position: absolute;
  background-color: #fff;
  z-index: 99;
  max-height: 400px;
  overflow-y: scroll;
}
.react-autosuggest__suggestions-list {
  list-style: none;
  display: block;
}
.react-autosuggest__suggestion .map-result-item {
  display: inline-block;
}
.highlighted {
  background-color: #e7e8e8;
}
#clinic-finder-search {
  font-size: 16px;
}
.medical-team-search {
  display: inline-block;
  width: 100%;
}
.medical-clinic-finder .react-autosuggest__suggestions-container--open {
  width: 100%;
}
.medical-clinic-finder .search-section-header {
  background-color: #e7e8e8;
  padding-left: 15px;
}
.medical-clinic-finder .search-suggestion {
  padding-left: 15px;
}
.medical-clinic-finder .search-suggestion:hover {
  background-color: #ededed;
}
.small-clinic-finder #clinic-finder-search {
  margin: 18px 0 3px;
}
.small-clinic-finder .react-autosuggest__suggestions-container--open {
  width: 100%;
}
.small-clinic-finder .search-section-header {
  background-color: #e7e8e8;
  padding-left: 15px;
}
.small-clinic-finder .search-suggestion {
  padding-left: 15px;
}
.small-clinic-finder .search-suggestion:hover {
  background-color: #ededed;
}
.small-clinic-finder__cover {
  min-height: 50vh;
  overflow: hidden;
  position: relative;
}
.small-clinic-finder__cover img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.blog {
  position: relative;
}
.blog hr {
  margin: 0;
}
.blog .form-group.search-input {
  margin: 5px 0 0;
}
.blog .form-group.search-input:before {
  top: 4px;
}
@media only screen and (max-width: 769px) {
  .blog .form-group.search-input:before {
    top: 6px;
  }
}
.blog .form-group.search-input > input {
  margin-bottom: 5px;
}
.blog .mobi-basic-btn {
  padding: 12px;
}
.blog-details-title p,
.blog-details-title .font-p {
  margin-bottom: 0;
}
.tags a {
  display: inline-block;
  color: #0a0a0a;
  padding: 0 25px;
  margin-bottom: 10px;
}
.blog-details-share a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
  padding: 11px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-details-share a#twitter-share {
  color: #26c4f1;
  fill: #26c4f1;
  border: solid 1px #26c4f1;
}
.blog-details-share a#twitter-share:hover,
.blog-details-share a#twitter-share:focus {
  background: #26c4f1;
  color: #fff;
  fill: #fff;
}
.blog-details-share a#fb-share {
  color: #47639e;
  fill: #47639e;
  border: solid 1px #47639e;
}
.blog-details-share a#fb-share:hover,
.blog-details-share a#fb-share:focus {
  background: #47639e;
  color: #fff;
  fill: #fff;
}
.blog-details-share a#google-share {
  color: #e93f2e;
  fill: #e93f2e;
  border: solid 1px #e93f2e;
}
.blog-details-share a#google-share:hover,
.blog-details-share a#google-share:focus {
  background: #e93f2e;
  color: #fff;
  fill: #fff;
}
.blog-details-share a#email-share {
  color: #444444;
  fill: #444444;
  border: solid 1px #444444;
}
.blog-details-share a#email-share:hover,
.blog-details-share a#email-share:focus {
  background: #444444;
  color: #fff;
  fill: #fff;
}
.blog-details-share .rrssb-icon {
  margin-right: 5px;
}
.blog-details-share .rrssb-icon svg {
  width: 28px;
  height: 28px;
}
.blog-details-share .rrssb-text {
  line-height: 26px;
}
@media only screen and (max-width: 39.9375em) {
  .blog-details-share a {
    margin-bottom: 10px;
    padding: 10px 0;
  }
}
.related-treatments {
  color: #0a0a0a;
}
.related-treatments-header .h2 {
  font-family: "Helvetica Neue", "Helvetica", Arial;
  font-size: 2.375rem;
}
.related-treatments-cta-button {
  margin: 0 20px 20px 0;
  display: inline-block;
}
.related-treatments-image {
  width: 100%;
}
.related-treatments .img-wrapper {
  margin-bottom: 15px;
}
.related-treatments p,
.related-treatments .font-p {
  padding: 15px 0;
}
@media screen and (max-width: 640px) {
  .related-treatments p,
  .related-treatments .font-p {
    margin-bottom: 0;
  }
}
.testimonial-carousel .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.testimonial-carousel .slick-dots {
  width: 100%;
  right: initial;
}
.testimonial-carousel .slick-dots li button:before {
  border-radius: 50%;
}
.testimonial-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.testimonial-text {
  color: #fff;
  font-family: "Helvetica Neue", "Helvetica", Arial;
  font-size: 1.125rem;
  line-height: 23px;
}
.testimonial-image {
  height: auto;
  width: auto;
  max-height: 290px;
  max-width: 290px;
  margin: 0 auto;
}
.testimonial-image img {
  border-radius: 50%;
}
@media screen and (max-width: 640px) {
  .testimonial-image {
    height: 150px;
    width: 150px;
    margin-bottom: 30px;
  }
}
.location-snapshot .icon {
  height: 25px;
}
.notification {
  height: 80px;
  overflow: hidden;
  background-color: #303030;
  display: none;
  padding: 5px 0;
}
.notification-mobile-wrapper {
  display: none;
}
.notification-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 70px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.notification-row > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.notification.show-notification {
  display: block;
  position: relative;
}
.notification img {
  display: inline-block;
  width: 90px;
  margin-right: 40px;
  vertical-align: middle;
}
.notification p,
.notification .font-p {
  color: #fff;
  display: inline-block;
  margin: auto;
}
.notification .x-button {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.notification .x-button img {
  width: 10px;
  height: 10px;
  display: block;
}
@media screen and (max-width: 40em) {
  .notification img {
    width: 74px;
    margin-right: 15px;
  }
  .notification p,
  .notification .font-p {
    letter-spacing: -0.5px;
  }
  .notification .x-button {
    width: 5px;
    height: 5px;
    right: 5px;
    top: 10px;
  }
  .notification .x-button img {
    width: 5px;
    height: 5px;
  }
}
@media screen and (max-width: 64em) {
  .notification-mobile-wrapper {
    margin-top: -1px;
    display: block;
  }
  .notification-mobile-wrapper .notification {
    height: auto;
  }
  main.has-notification {
    margin-top: 0;
  }
}
.countdown {
  height: 80px;
  overflow: hidden;
  background-color: #0a0a0a;
  color: #af9750;
  width: 100%;
  display: none;
  position: relative;
}
.countdown-grey {
  background-color: #303030;
  color: #fff;
}
.countdown-grey a {
  color: #fff;
}
.countdown-grey a:hover {
  color: #fff;
}
.countdown-grey ul#countdown {
  color: #fff;
}
.countdown-black a {
  color: #af9750;
}
.countdown-black a:hover {
  color: #af9750;
}
.countdown.showTimer {
  display: block;
  padding: 5px 0;
}
.countdown-content {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 600px;
  max-height: 25px;
  overflow: hidden;
}
.countdown-row {
  margin: 0 auto;
  max-width: 1050px;
  padding: 0 10px;
}
.countdown .x-button {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.countdown .x-button img {
  width: 10px;
  height: 10px;
  display: block;
}
@media screen and (max-width: 1023px) {
  main.has-countdown-timer {
    margin-top: 155px;
  }
  .countdown {
    height: 155px;
  }
  .countdown-content {
    max-height: 19px;
  }
}
@media screen and (max-width: 40em) {
  main.has-countdown-timer {
    margin-top: 140px;
  }
  .countdown {
    height: 140px;
  }
  .countdown-content {
    max-height: 19px;
  }
}
.notification-mobile-wrapper .countdown {
  position: absolute;
  left: 0;
}
.notification-mobile-wrapper .countdown-row {
  text-align: center;
}
.notification-mobile-wrapper .countdown-row img {
  width: 100%;
  margin: 25px 0 10px;
  max-width: 762px;
}
.notification-mobile-wrapper ul#countdown {
  width: 100%;
  max-width: 500px;
}
ul#countdown {
  border-width: 1px 0;
  color: #af9750;
  display: inline-block;
  font-weight: bold;
  line-height: 1rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  width: 38%;
}
ul#countdown li {
  display: inline-block;
  font-size: 38px;
  margin: 10px auto 0;
  text-align: center;
  width: 23%;
}
ul#countdown li .label {
  background-color: transparent;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  margin-top: 9px;
  text-transform: uppercase;
}
#ModalPhone {
  background-image: url(../../Images/mobile-modal/white-top-bg.html),
    url(../../Images/mobile-modal/device-top-line.html);
  background-repeat: no-repeat, repeat;
  background-position: center 16px, center center;
  background-size: auto, auto;
  border-radius: 35px;
  -moz-border-radius: 35px;
  border: none;
  height: auto;
  overflow: visible;
  max-width: 330px;
  min-height: inherit;
  width: 100%;
}
#ModalPhone:before {
  background: url(../../Images/mobile-modal/ring-right.html) no-repeat center
    center;
  content: "";
  height: 168px;
  position: absolute;
  width: 100px;
  left: -130px;
  top: -5px;
}
#ModalPhone:after {
  background: url(../../Images/mobile-modal/ring-left.html) no-repeat center
    center;
  content: "";
  height: 168px;
  position: absolute;
  width: 100px;
  right: -130px;
  top: 90px;
}
#ModalPhone .head {
  margin-bottom: 1rem;
}
#ModalPhone .head img {
  width: 100%;
}
#ModalPhone .close-button {
  top: 2rem;
  right: -3rem;
  color: #fff;
}
#ModalPhone .close-button:after {
  background: url(../../Images/mobile-modal/device-close.html) no-repeat center
    center;
  content: "";
  height: 24px;
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
}
#ModalPhone .close-button span {
  opacity: 0;
  -moz-opacity: 0;
}
#ModalPhone .content {
  padding: 1rem;
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  -moz-border-radius: 0 0 30px 30px;
  margin-top: 3.7rem;
}
#ModalPhone .content p,
#ModalPhone .content .font-p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}
#ModalPhone .content p.title,
#ModalPhone .content .title.font-p {
  font-size: 30px;
}
#ModalPhone .content p .button,
#ModalPhone .content .font-p .button {
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 25px;
  min-width: auto;
}
@media screen and (max-width: 40em) {
  #ModalPhone {
    position: absolute;
    left: 50%;
    margin-left: -135px;
    background-size: 240px, auto;
    max-width: 270px;
  }
  #ModalPhone:before,
  #ModalPhone:after {
    content: none;
  }
  #ModalPhone .close-button {
    top: -1rem;
    right: -1rem;
    color: #fff;
  }
  #ModalPhone .close-button.medium {
    top: -1rem;
    right: -1rem;
    color: #fff;
  }
  #ModalPhone .content {
    margin-top: 2.7em;
  }
  #ModalPhone .content p,
  #ModalPhone .content .font-p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  #ModalPhone .content p.title,
  #ModalPhone .content .title.font-p {
    font-size: 24px;
  }
  #ModalPhone .content p .button,
  #ModalPhone .content .font-p .button {
    font-size: 12px;
  }
}
.animated.shake-animate {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes shake-animate {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake-animate {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake-animate {
  -webkit-animation-name: shake-animate;
  animation-name: shake-animate;
}
.fo-gallery .slide {
  top: 30%;
  height: unset;
  margin-top: unset;
}
.fo-gallery .slide-prev {
  left: -10%;
}
.fo-gallery .slide-next {
  right: -10%;
}
.fo-gallery .image-item {
  padding: 0 10px;
  display: "inline-block";
}
.fo-gallery .image-item.slick-item:not(:first-of-type) {
  display: inline-block;
}
.carousel .banner {
  font-family: "Helvetica Neue", "Helvetica", Arial;
  position: relative;
}
.carousel .banner .height-carousel {
  height: 100%;
}
.carousel .banner-slider {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.carousel .banner .pre-loader {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 0;
}
.carousel .banner-img-container {
  position: relative;
  padding-left: 0;
}
@media only screen and (min-width: 1024px) {
  .carousel .banner-img-container {
    padding-right: 2.5%;
  }
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-img-container {
    padding: 0;
  }
}
.carousel .banner-img-container .youness {
  position: absolute;
  top: 0;
  left: 0;
  width: 96.3%;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-img-container .youness {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .carousel .banner-img-container + .height-carousel {
    position: absolute;
    bottom: 0;
  }
  .carousel .banner-img-container + .height-carousel .banner-content {
    padding: 0;
    min-height: auto;
  }
  .carousel
    .banner-img-container
    + .height-carousel
    .banner-content-price-content,
  .carousel .banner-img-container + .height-carousel .banner-content-heading {
    display: none;
  }
}
.carousel .banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.carousel .banner-content-heading:empty {
  display: none;
}
.carousel .banner-content .subheading > p,
.carousel .banner-content .subheading > .font-p {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  padding-top: 15px;
  margin-bottom: 0;
}
.carousel .banner-content .tac > p,
.carousel .banner-content .tac > .font-p {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 0.625rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-content {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 48.063em) {
  .carousel .banner-content {
    min-height: 465px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .carousel .banner-content {
    min-height: 200px;
  }
}
.carousel .banner-content .content-vertical-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: left;
  -ms-flex-align: left;
  align-items: left;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-content .content-vertical-middle {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.carousel .banner-content-subtext-top,
.carousel .banner-content-subtext-bottom {
  font-weight: 700;
}
.carousel .banner-content-price-content {
  width: 100%;
}
.carousel .banner-content-price-content:empty {
  display: none;
}
.carousel .banner-content-price-content img {
  width: 56%;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-content-price-content img {
    width: 80%;
    margin: 0 auto;
    left: 0 !important;
  }
}
@media only screen and (max-width: 39.9375em) {
  .carousel .banner-content-price-content img {
    width: 70%;
  }
}
@media only screen and (max-width: 39.9375em) {
  .carousel .banner-content .button:not(.inline) {
    min-width: 100%;
  }
}
.carousel .banner #scrollArrowContainer .scrollArrow {
  padding: 60px 10px 10px 10px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 70px;
  bottom: 0;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1024px) {
  .carousel .banner #scrollArrowContainer .scrollArrow {
    left: 10%;
  }
}
.carousel .banner #scrollArrowContainer .scrollArrow span {
  bottom: 32px;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 24px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1;
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: rotate(45deg) translate(0, 0);
    transform: rotate(45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(45deg) translate(10px, 10px);
    transform: rotate(45deg) translate(10px, 10px);
  }
  40% {
    -webkit-transform: rotate(45deg) translate(0, 0);
    transform: rotate(45deg) translate(0, 0);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: rotate(45deg) translate(0, 0);
    transform: rotate(45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(45deg) translate(10px, 10px);
    transform: rotate(45deg) translate(10px, 10px);
  }
  40% {
    -webkit-transform: rotate(45deg) translate(0, 0);
    transform: rotate(45deg) translate(0, 0);
  }
}
img {
  border-style: none;
}
*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  outline: 0;
}
img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
@media print {
  * {
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }
  img {
    page-break-inside: avoid;
    max-width: 100% !important;
  }
}
.slick-slide img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .slick-dots {
    position: relative;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 0;
  }
  .slick-dots li button:before {
    border: 8px solid #c7c7c7;
    border-radius: 50%;
  }
  .slick-active li button:before {
    border: 8px solid #000;
  }
}
.carousel .banner-content-price-content img {
  width: auto;
  position: relative;
}
.carousel .banner-content.heading {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner-content-price-content img {
    width: 80%;
    margin: 0 auto;
    left: 0 !important;
  }
}
@media only screen and (max-width: 39.9375em) {
  .carousel .banner .height-carousel {
    height: auto;
  }
  .carousel .banner-content {
    padding-bottom: 30px;
  }
  .carousel .banner-content-price-content img {
    width: 70%;
  }
}
.banner-content .banner-content-price-content img {
  max-width: 56%;
}
@media only screen and (max-width: 1023px) {
  .carousel .banner .height-carousel {
    height: auto;
  }
  .banner-content .banner-content-price-content img {
    max-width: 200px;
  }
}
@media print, screen and (min-width: 64em) {
  .height-full {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.width-full {
  width: 100%;
}
.promo-slider-item-card {
  border: none;
}
.promo-slider .slick-slide {
  text-align: center;
}
.promo-slider .slick-item:not(:first-of-type) {
  display: block;
}
.promo-slider a:hover {
  text-decoration: none;
}
.promo-slider .promo-content--item {
  padding: 15px;
}
.promo-slider .promo-content--item.promo-slider-promobox {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  margin: 15px auto;
}
.promo-slider .promo-content--item.promo-slider-promobox:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.promo-slider .promo-content--item-card {
  position: relative;
  max-width: 360px;
  max-height: 425px;
  margin: 0 auto;
  border: 0;
}
.promo-slider .promo-content--item-card hr {
  border-bottom: 1px solid black;
}
.promo-slider .promo-content--item-card .card h5,
.promo-slider .promo-content--item-card .card .font-h5 {
  font-size: 1.125rem;
}
.promo-slider .promo-content--item-card .card-footer {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.promo-slider-item--simple .card {
  background-color: transparent;
  color: inherit;
}
.before-after-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.before-after-gallery-text {
  margin: 0 auto;
  max-width: 500px;
  padding: 5px 10px;
  text-align: left;
}
.before-after-gallery-text p,
.before-after-gallery-text .font-p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.before-after-gallery-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
}
.before-after-gallery-item > a {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vw * 0.85);
}
@media only screen and (min-width: 39.9375em) {
  .before-after-gallery-item > a {
    height: calc(100vw * 0.25);
  }
}
.before-after-gallery-item > a > img {
  display: none;
}
.before-after-gallery-item .before-after-gallery-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0;
  max-width: unset;
  width: 100%;
}
.video-snapshot-image {
  width: 117px;
}
.injector-carousel {
  padding: 0 20px;
}
.injector-carousel .slick-dots {
  position: relative;
  margin-top: 10px;
}
.injector-carousel .slick-dots li button:before {
  border-radius: 50%;
  border-color: #0a0a0a;
}
.injector-carousel .slide-prev {
  left: 0;
  width: 50px;
}
.injector-carousel .slide-next {
  right: 0;
  width: 50px;
}
.medical-injector-list--item img {
  background: #e7e8e8;
  border-radius: 50%;
  margin: auto;
  width: 80%;
}
@media screen and (max-width: 640px) {
  .medical-injector-list--item img {
    width: 40%;
  }
}
.clinic-page-header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #bbbdbf;
}
.clinic-page-map {
  position: absolute;
  background-size: cover;
  height: 550px;
}
@media screen and (max-width: 550px) {
  .clinic-page-map {
    height: 100vw;
  }
}
@media screen and (max-width: 860px) {
  .clinic-page-map {
    position: relative;
  }
}
.clinic-page .clinic-card {
  width: 370px;
  display: block;
  margin-left: 10%;
}
@media screen and (max-width: 1024px) {
  .clinic-page .clinic-card {
    margin-left: 2%;
  }
}
@media screen and (max-width: 860px) {
  .clinic-page .clinic-card {
    text-align: center;
    height: 500px;
    margin: 30px auto;
  }
}
.billing-form {
  padding: 0 5px;
}
.billing-form-actions .button:first-child {
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .billing-form-actions .button:first-child {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 568px) {
  .billing-form {
    padding: 0;
  }
  .billing-form-actions .button {
    width: 100%;
  }
  .billing-form-actions .button:first-child {
    margin-right: 0;
  }
}
.product-tabs {
  padding-bottom: 20px;
}
.product-tabs .accordion-item.is-active .accordion-title:before {
  content: "\f068";
}
.product-tabs .accordion-title {
  padding: 15px 0;
}
.product-tabs .accordion-title:before {
  content: "\f067";
  font-size: 16px;
  top: 24px;
  right: 15px;
}
.product-tabs .accordion-content {
  margin-top: -3.125rem;
}
.product-tabs .tabs-header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (min-width: 671px) {
  .product-tabs .tabs-header-row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.product-tabs .tabs-title {
  float: none;
  display: inline-block;
}
.product-tabs .tabs-title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 640px) {
  .product-tabs .tabs-title a {
    min-width: 150px;
  }
}
.product-tabs .tabs-panel {
  margin-top: -3.125rem;
}
.tabs {
  text-align: center;
}
.tabs-text-left {
  text-align: left;
}
.promo-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.promo-cards-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding-bottom: 30px;
  border: none;
}
.promo-cards-item hr {
  border-bottom: 1px solid black;
}
.promo-cards-item h5,
.promo-cards-item .font-h5 {
  font-size: 1.125rem;
}
.promo-cards-item-header {
  padding-top: 5px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.promo-cards-item-footer {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
@media only screen and (max-width: 64em) and (min-width: 39.9375em) {
  .promo-cards {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .promo-cards-item {
    -ms-flex-preferred-size: calc(50% - 15px);
    flex-basis: calc(50% - 15px);
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media only screen and (max-width: 39.9375em) {
  .promo-cards-item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.my-appointments-header {
  list-style: none;
  margin-bottom: 0;
}
.my-appointments-header li {
  display: inline-block;
  font-size: 1rem;
  cursor: pointer;
}
.my-appointments-header li:first-child {
  margin-right: 30px;
}
.my-appointments-info {
  text-align: left;
  margin: auto;
  max-width: 800px;
}
.my-appointments-info p,
.my-appointments-info .font-p {
  margin-bottom: 1rem;
}
.my-appointments-info ul {
  margin-left: 1.25rem;
}
.my-appointments .slide-down .info-panel {
  background-color: #fafafa;
  line-height: 22px;
  font-family: "Helvetica Neue", "Helvetica", Arial;
}
.my-appointments .slide-down .info-panel-no-pd {
  padding-left: 0;
  padding-right: 0;
}
.my-appointments .slide-down .info-panel .no-border {
  border-bottom: none;
}
.my-appointments .slide-down .info-panel .treatment-content {
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.my-appointments .slide-down .info-panel .treatment-details {
  text-align: left;
}
.my-appointments .slide-down .info-panel .treatment-name {
  margin-bottom: 0;
}
.my-appointments .slide-down .info-panel .treatment-duration {
  color: #a6a6a6;
}
.my-appointments .slide-down .info-panel .button + .button {
  margin-top: 0;
}
.my-appointments .booking-row {
  margin-left: 0;
  margin-right: 0;
}
.my-appointments .table-body-cell.treatment {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.my-appointments .table-body-cell.location {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.my-appointments .table-body-cell.location:last-of-type {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 39.063em) {
  .my-appointments .table-body-cell.location:last-of-type {
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
  }
}
.booking-times,
.booking-week {
  min-width: 95%;
  width: 0;
}
.dashboard-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.dashboard-welcome {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 15px;
}
.dashboard-welcome p,
.dashboard-welcome .font-p {
  margin-bottom: 0;
}
.dashboard-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}
.dashboard-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.dashboard-total {
  margin-right: 15px;
  text-align: center;
}
.dashboard-total-amount {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  font-size: 2.375rem;
  line-height: 2.375rem;
}
.dashboard-total a,
.dashboard-total a:hover {
  color: #fff;
}
.dashboard-ctas .button.btn-transparent {
  padding-left: 10px;
  padding-right: 10px;
}
.dashboard-ctas .button.btn-transparent:first-child {
  margin-bottom: 15px;
}
.dashboard-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;
}
.dashboard-table {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-right: 0;
  margin-bottom: 40px;
}
.dashboard-table:first-child {
  margin-right: 0;
}
.dashboard-table-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.dashboard-table-header h4,
.dashboard-table-header .font-h4 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 15px;
  margin-bottom: 0;
}
.dashboard-table-content {
  margin-top: 15px;
}
.dashboard-table .table-body-cell.icon {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.dashboard-table .table-body-cell.treatment,
.dashboard-table .table-body-cell.location {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.dashboard-table .table-body-cell.expires {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.dashboard-no-content {
  padding: 40px;
  text-align: center;
}
.dashboard-no-content a {
  margin-top: 10px;
}
@media only screen and (min-width: 64em) {
  .dashboard-container {
    margin-top: 40px;
    padding: 0;
  }
  .dashboard-table {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .dashboard-table:first-child {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 40.9375em) and (max-width: 63em) {
  .dashboard-welcome {
    background-position-x: right;
  }
  .dashboard .table-body-cell {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .dashboard .table-body-cell.details {
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
  }
  .dashboard .table-body-cell.icon {
    -webkit-box-flex: 0.4;
    -ms-flex: 0.4;
    flex: 0.4;
    display: block;
  }
}
@media only screen and (max-width: 39.9375em) {
  .dashboard-header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px -15px 0;
  }
  .dashboard-welcome {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-top: 10px;
    padding-bottom: 0;
    background: none;
  }
  .dashboard-welcome h1,
  .dashboard-welcome .font-h1 {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .dashboard-welcome p,
  .dashboard-welcome .font-p {
    display: none;
  }
  .dashboard-actions {
    position: relative;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-top: 0;
    padding-bottom: 10px;
    background: none;
  }
  .dashboard-action {
    text-align: left;
  }
  .dashboard-view-all {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  }
  .dashboard .table-body-cell {
    display: block;
  }
  .dashboard-total {
    text-align: center;
    margin-right: 0;
  }
  .dashboard-total-amount {
    text-align: left;
  }
  .dashboard-ctas {
    display: none;
  }
}
.account-details .row {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.in-page-anchor {
  position: absolute;
  top: -100px;
  height: 0;
}
@media screen and (max-width: 1024px) {
  .in-page-anchor {
    top: -75px;
  }
}
.in-page-anchor-container {
  position: relative;
  visibility: hidden;
}
.ba-upload-container .status-legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.625rem;
}
.ba-upload-container .status-legend-item .fa {
  padding-right: 5px;
  font-size: 1.625rem;
}
.ba-upload-container .tabs-header-name.disabled {
  background-color: #fff;
  color: #a6a6a6;
  border-color: #a6a6a6;
}
.ba-upload-container .tabs-header-row {
  padding: 0 15px 35px;
}
.ba-upload-container .tabs-header-row:before,
.ba-upload-container .tabs-header-row:after {
  content: none;
}
.ba-upload-container .accordion-item {
  border: 1px solid #0a0a0a;
  margin: 5px 15px;
}
.ba-upload-container .accordion-item:first-child > :first-child {
  padding-top: 15px;
}
.ba-upload-container .accordion-item:first-child > :first-child:before {
  top: 24px;
}
.ba-upload-container .accordion-item.is-active .accordion-title:before {
  content: "\f068";
}
.ba-upload-container .accordion-item img.approved {
  border: 2px solid #53b064;
}
.ba-upload-container .accordion-item img.pending {
  border: 2px solid #ff9000;
}
.ba-upload-container .accordion-item img.rejected {
  border: 2px solid #f44336;
}
.ba-upload-container .accordion-title {
  padding: 15px 0;
}
.ba-upload-container .accordion-title:before {
  content: "\f067";
  font-size: 16px;
  top: 24px;
  right: 15px;
}
.ba-upload-container .accordion-content-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ba-upload-form-container {
  overflow-x: hidden;
}
@-webkit-keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.image-upload-container {
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 15px;
}
.image-upload-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.image-upload-container img {
  max-height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.image-upload-container:last-child {
  margin-bottom: 15px;
}
.image-upload-container.preview {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.image-upload-container .placeholder {
  border: 2px dashed #0a0a0a;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #e7e8e8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.image-upload-container .placeholder.box {
  padding-left: 40px;
  padding-right: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.image-upload-container .placeholder.box > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.image-upload-container .placeholder .fa-camera {
  color: #58595b;
  font-size: 5rem;
}
.image-upload-container .delete-confirmation {
  -webkit-animation: 0.2s ease-in-out 0s 1 slideInFromTop;
  animation: 0.2s ease-in-out 0s 1 slideInFromTop;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f44336;
  color: white;
}
.image-upload-container .delete-confirmation p,
.image-upload-container .delete-confirmation .font-p {
  font-size: 1rem;
  margin-bottom: 0;
}
.image-upload-container .delete-confirmation-icon {
  font-size: 1.875rem;
  padding: 15px;
}
.image-upload-container .fa-pencil,
.image-upload-container .fa-trash {
  position: absolute;
  bottom: 7px;
  right: 7px;
  font-size: 1.875rem;
}
.image-upload-container .status {
  position: absolute;
  bottom: 7px;
  left: 7px;
  font-size: 1.875rem;
}
.zip-pay-container {
  text-align: left;
}
.zip-pay-button {
  margin-top: 30px;
}
.sitemap {
  -webkit-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 60px;
  column-gap: 60px;
}
@media only screen and (max-width: 1023px) {
  .sitemap {
    -webkit-column-count: 2;
    column-count: 2;
  }
}
@media only screen and (max-width: 640px) {
  .sitemap {
    -webkit-column-count: 1;
    column-count: 1;
  }
}
.sitemap ul li ul li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid-column;
}
@media only screen and (max-width: 39.9375em) {
  .product-tabs .two-col-container {
    width: 100%;
    padding: 0 15px !important;
  }
}
.product-tabs .two-col-container img {
  margin-bottom: 1.875rem;
}
.col-wrapper {
  padding-left: 5px;
  padding-right: 5px;
}
.col-wrapper-image img {
  display: block;
}
@media screen and (min-width: 640px) {
  .col-wrapper-image {
    padding-right: 30px;
  }
}
.col-wrapper-header {
  padding: 0 10px;
}
.col-wrapper-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  padding-top: 30px;
}
.col-wrapper-buttons-item {
  -ms-flex-preferred-size: calc(50% - 30px);
  flex-basis: calc(50% - 30px);
  margin-right: 15px;
}
@media only screen and (max-width: 39.9375em) {
  .col-wrapper-buttons-item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .col-wrapper-text h1,
  .col-wrapper-text .font-h1 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  .col-wrapper-text-content {
    text-align: justify;
    text-justify: inter-word;
  }
}
@media only screen and (max-width: 736px) {
  .col-wrapper h1.col-banner-heading,
  .col-wrapper .col-banner-heading.font-h1 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 667px) {
  .col-wrapper h1.col-banner-heading,
  .col-wrapper .col-banner-heading.font-h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .col-wrapper p,
  .col-wrapper .font-p {
    font-size: 1rem;
    line-height: 24px;
  }
  .col-wrapper h1.col-banner-heading,
  .col-wrapper .col-banner-heading.font-h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 340px) {
  .col-wrapper h1.col-banner-heading,
  .col-wrapper .col-banner-heading.font-h1 {
    font-size: 28px;
  }
}
.breadcrumbs {
  padding-left: 10px;
  padding-top: 10px;
}
.breadcrumbs a {
  font-size: 15px;
}
.feature-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feature-wrapper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.feature-wrapper-image {
  margin-top: auto;
}
.feature-wrapper-image img {
  max-height: inherit;
  display: block;
}
@media screen and (min-width: 640px) {
  .feature-wrapper-image {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .feature-wrapper-image {
    max-height: 500px;
    min-width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 800px) {
  .feature-wrapper-text-content {
    text-align: justify;
    text-justify: inter-word;
  }
}
.breadcrumbs-container {
  position: absolute;
  padding-top: 10px;
  padding-left: 10px;
}
.breadcrumbs-container .breadcrumbs li {
  font-size: 15px;
  color: inherit;
}
.breadcrumbs-container .breadcrumbs li a {
  color: inherit;
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 20px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 736px) {
  .videoWrapper iframe:last-of-type {
    display: block;
  }
}
.grey-div-l {
  background-color: #e7e8e8;
}
.fo-logos img {
  width: auto;
  display: block;
  margin: 0 auto;
  max-width: 130px;
}
@media only screen and (max-width: 39.063em) {
  .fo-logos img {
    width: 80%;
  }
}
.registration {
  padding: 0 5px;
}
.registration-modal {
  padding: 30px;
  text-align: center;
}
.registration-modal .button {
  min-width: 220px;
}
.small-cta-label-text {
  color: #4a4a4a;
  text-align: center;
  font-size: 0.75rem;
}
@media only screen and (max-width: 39.9375em) {
  .small-cta-label-text {
    margin-top: 10px;
  }
}
.text-divider-line-break {
  border-bottom: #a6a6a6 1px solid;
  color: #a6a6a6;
  line-height: 0.1em;
  margin-bottom: 1em;
}
.text-divider-text {
  background-color: #fff;
  padding: 0 8px;
}
.advance-before-after .image-container {
  height: 480px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.advance-before-after .directions {
  position: absolute;
  left: 10px;
  top: 10px;
}
.advance-before-after .tag {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.advance-before-after .directions > div,
.advance-before-after .filters > div {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  cursor: pointer;
  padding: 5px 10px;
  background-color: #0a0a0a;
  color: #fff;
  margin-top: 10px;
  text-align: center;
  text-transform: capitalize;
  border: 2px solid #0a0a0a;
  display: block;
}
.advance-before-after .directions > div:hover,
.advance-before-after .directions > div:active,
.advance-before-after .directions > div.active,
.advance-before-after .filters > div:hover,
.advance-before-after .filters > div:active,
.advance-before-after .filters > div.active {
  background-color: #fff;
  color: #0a0a0a;
}
.advance-before-after .filters > div {
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (min-width: 40.9375em) and (max-width: 63em) {
  .advance-before-after .image-container {
    height: 290px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .advance-before-after .image-container {
    height: 250px;
    margin-bottom: 15px;
  }
  .advance-before-after .filters,
  .advance-before-after .directions {
    position: relative;
    margin-top: 50px;
    top: -50px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .advance-before-after .filters > div,
  .advance-before-after .directions > div {
    display: inline-block;
    margin-right: 5px;
  }
}
.modal-dialog-content-border .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  text-align: center;
}
.modal-dialog-content-border .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.treatment-table.booking .prerequisite {
  cursor: pointer;
}
.treatment-table.booking .skinTone {
  cursor: pointer;
  color: #f44336;
}
.treatment-table.booking .prerequisite,
.treatment-table.booking .skinTone {
  font-size: 1rem;
}
.treatment-table.booking .prerequisite .text,
.treatment-table.booking .skinTone .text {
  display: none;
}
@media only screen and (max-width: 39.9375em) {
  .treatment-table.booking .prerequisite,
  .treatment-table.booking .skinTone {
    margin-top: 15px;
    width: 50%;
    text-align: left;
  }
  .treatment-table.booking .prerequisite .text,
  .treatment-table.booking .skinTone .text {
    display: inline-block;
    margin-right: 15px;
  }
}
.treatment-table.booking .book {
  position: relative;
  margin-top: 0;
  padding-left: 10px;
}
.treatment-table.booking .book .button {
  font-size: 1rem;
}
.treatment-table.booking .book .form-error {
  margin-top: 1px;
  right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 39.9375em) {
  .treatment-table.booking .table-header-cell:first-of-type,
  .treatment-table.booking .table-body-cell:first-of-type {
    width: 70%;
  }
  .treatment-table.booking .table-header-cell:nth-of-type(2),
  .treatment-table.booking .table-body-cell:nth-of-type(2) {
    width: 30%;
  }
  .treatment-table.booking .book {
    margin-top: 10px;
    padding-left: 0;
  }
}
.countdown-timer.counter {
  color: #f44336;
}
.countdown-timer.text {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  padding: 10px 0;
}
.custom-time-picker {
  height: 55px;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  border: 2px solid #0a0a0a;
  padding: 5px 10px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1rem;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.custom-time-picker:focus {
  outline: 2px #ccb46d solid;
}
.custom-time-picker:hover {
  background-color: #e7e8e8;
}
.custom-time-picker-icon {
  font-size: 1.75rem;
  margin-right: 10px;
}
.custom-time-picker-select {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.custom-time-picker-select-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.custom-time-picker-select-row .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.custom-time-picker-select-row .icon {
  -ms-flex-preferred-size: 52px;
  flex-basis: 52px;
  -ms-flex-item-align: center;
  align-self: center;
}
.custom-time-picker-arrow {
  margin-left: 10px;
}
.custom-time-picker-panel {
  font-family: "Helvetica Neue", "Helvetica", Arial;
  background-color: #fff;
  position: absolute;
  border: 2px solid #0a0a0a;
  width: 100%;
  left: 0;
  top: 50px;
  z-index: 10;
}
.custom-time-picker-row {
  padding: 5px 10px;
  border-bottom: 1px solid #0a0a0a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #0a0a0a;
  background-color: #fff;
}
.custom-time-picker-row.focused,
.custom-time-picker-row:hover {
  color: #fff;
  background-color: #0a0a0a;
}
.custom-time-picker-row:last-of-type {
  border-bottom: none;
}
.custom-time-picker-row .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  align-self: center;
}
.custom-time-picker-row .count:hover {
  color: #0a0a0a;
}
.custom-time-picker-select-row .count,
.custom-time-picker-row .count {
  margin-left: 10px;
  background-color: #ccb46d;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  border-radius: 50%;
  padding: 5px;
  width: 35px;
  text-align: center;
  color: #0a0a0a;
}
.custom-injector-picker {
  height: 55px;
  width: 100%;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  border: 2px solid #0a0a0a;
  padding: 5px 10px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1rem;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.custom-injector-picker:focus {
  outline: 2px #ccb46d solid;
}
.custom-injector-picker:hover {
  background-color: #e7e8e8;
}
.custom-injector-picker-icon {
  font-size: 1.75rem;
  margin-right: 10px;
}
.custom-injector-picker-select {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.custom-injector-picker-select-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.custom-injector-picker-select-row .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.custom-injector-picker-select-row .icon {
  -ms-flex-preferred-size: 52px;
  flex-basis: 52px;
  -ms-flex-item-align: center;
  align-self: center;
}
.custom-injector-picker-arrow {
  margin-left: 10px;
}
.custom-injector-picker-panel {
  font-family: "Helvetica Neue", "Helvetica", Arial;
  background-color: #fff;
  position: absolute;
  border: 2px solid #0a0a0a;
  width: 100%;
  left: 0;
  top: 50px;
  z-index: 10;
}
.custom-injector-picker-row {
  padding: 5px 10px;
  border-bottom: 1px solid #0a0a0a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #0a0a0a;
  background-color: #fff;
}
.custom-injector-picker-row.focused,
.custom-injector-picker-row:hover {
  color: #fff;
  background-color: #0a0a0a;
}
.custom-injector-picker-row:last-of-type {
  border-bottom: none;
}
.custom-injector-picker-row .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  align-self: center;
}
.custom-injector-picker-row .count:hover {
  color: #0a0a0a;
}
.custom-injector-picker-select-row .count,
.custom-injector-picker-row .count {
  margin-left: 10px;
  background-color: #ccb46d;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  border-radius: 50%;
  padding: 5px;
  width: 35px;
  text-align: center;
  color: #0a0a0a;
}
.custom-date-picker {
  height: 55px;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  border: 2px solid #0a0a0a;
  padding: 5px 10px;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1rem;
}
.custom-date-picker-icon {
  font-size: 1.75rem;
  margin-right: 10px;
}
.custom-date-picker-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.custom-date-picker-select > div:first-of-type {
  width: 100%;
}
.custom-date-picker-select .flatpickr-input {
  margin-top: 17px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: none;
}
.custom-date-picker-arrow {
  position: absolute;
  right: 10px;
  top: 14px;
}
.custom-date-picker-calendar-overlay {
  display: none;
}
.custom-date-picker-calendar-overlay.loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  background: white;
  color: #dfdfdf;
}
.custom-date-picker-calendar-overlay.loading .fa-calendar {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  font-size: 50pt;
}
.custom-date-picker.inline {
  display: none;
}
.custom-date-picker.inline .focused {
  border: 2px solid blue;
  outline: none;
}
.custom-date-picker.inline + .flatpickr-calendar {
  display: block;
  position: relative;
  top: auto !important;
  left: auto !important;
  margin: auto;
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  z-index: auto;
  width: 100%;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-rContainer {
  width: 100%;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-monthDropdown-months {
  border: none;
  padding: 0;
  height: auto;
  text-align: center;
  font-weight: bold;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-days {
  width: 100%;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-days .dayContainer {
  min-width: 100%;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-current-month
  .cur-month:hover {
  background-color: transparent;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-current-month
  .numInputWrapper {
  pointer-events: none;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-current-month
  .numInputWrapper:hover {
  background-color: transparent;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-current-month
  .numInputWrapper:hover
  span {
  opacity: 0;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-months {
  margin-bottom: 15px;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-weekday {
  font-size: 100%;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day {
  color: #bbb6b0;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day:focus {
  background-color: transparent;
  border-color: transparent;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day:focus::after {
  content: " ";
  position: absolute;
  background-color: #e7e8e8;
  width: 32px;
  height: 32px;
  display: block;
  bottom: 2px;
  border-radius: 100%;
  z-index: -1;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day:hover {
  background-color: transparent;
  border-color: transparent;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day:not(.selected):not(.highlight) {
  pointer-events: auto;
  cursor: not-allowed;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day:not(.selected):not(.highlight):hover {
  background-color: transparent;
  border-color: transparent;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.highlight:not(.selected) {
  color: #0a0a0a;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.highlight:not(.selected)::before {
  content: " ";
  position: absolute;
  background-color: #ccb46d;
  width: 5px;
  height: 5px;
  display: block;
  bottom: 4px;
  border-radius: 100%;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.highlight:not(.selected):hover {
  background-color: transparent;
  border-color: transparent;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.highlight:not(.selected):hover::before {
  background-color: #0a0a0a;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.highlight:not(.selected):hover::after {
  content: " ";
  position: absolute;
  background-color: #e7e8e8;
  width: 32px;
  height: 32px;
  display: block;
  bottom: 2px;
  border-radius: 100%;
  z-index: -1;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day.selected {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.selected::after {
  content: " ";
  position: absolute;
  background-color: black;
  width: 32px;
  height: 32px;
  display: block;
  bottom: 2px;
  border-radius: 100%;
  z-index: -1;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.selected.highlight::before {
  content: " ";
  position: absolute;
  background-color: #ccb46d;
  width: 5px;
  height: 5px;
  display: block;
  bottom: 4px;
  border-radius: 100%;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day.disabled,
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.disabled.highlight {
  color: #ddd9d2;
  cursor: not-allowed;
  pointer-events: none;
}
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.disabled::before,
.custom-date-picker.inline
  + .flatpickr-calendar
  .flatpickr-day.disabled.highlight::before {
  background-color: #ddd9d2;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day.today::after {
  content: " ";
  position: absolute;
  border-color: #ddd9d2;
  border-width: 1px;
  border-style: solid;
  width: 32px;
  height: 32px;
  display: block;
  bottom: 2px;
  border-radius: 100%;
  z-index: -1;
}
.custom-date-picker.inline + .flatpickr-calendar .flatpickr-day.nextMonthDay {
  color: #e7e8e8;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.booking-date-picker .form-error {
  position: relative;
  padding-top: 15px;
}
.booking-times-inner {
  position: relative;
  height: 400px;
}
.booking-times-inner .booking-times {
  overflow: auto;
  height: 400px;
  min-width: 100%;
  position: relative;
  padding-bottom: 20px;
  margin: 0 0 30px;
}
.booking-times-inner .booking-times .booking-times-item {
  margin: 0 0 5px;
}
.booking-times-inner .scroll-gradient {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    to(#fff)
  );
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}
.booking-week,
.booking-times {
  margin: 0 auto 30px;
}
.booking-week .slick-arrow,
.booking-times .slick-arrow {
  background: none;
  color: #0a0a0a;
}
.booking-week .slick-next:before,
.booking-week .slick-prev:before,
.booking-times .slick-next:before,
.booking-times .slick-prev:before {
  background-color: none;
  color: #0a0a0a;
  font-size: 30px;
  line-height: 0;
}
.booking-week .slick-next,
.booking-times .slick-next {
  right: -25px;
}
.booking-week .slick-prev,
.booking-times .slick-prev {
  left: -35px;
}
.booking-week-day {
  cursor: pointer;
  text-align: center;
  padding: 10px 5px;
  font-size: 0.875rem;
  margin: 0 5px;
  border: 2px solid #0a0a0a;
}
.booking-week-day > div:nth-child(2) {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.booking-week-day.selected {
  background-color: #ccb46d;
  border: 2px solid #ccb46d;
}
.booking-times-item {
  width: auto;
  margin: 0 5px;
  text-align: center;
  border: 2px solid #0a0a0a;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.booking-times-item.selected,
.booking-times-item.selected:hover {
  background-color: #0a0a0a;
  border: 2px solid #0a0a0a;
  color: #fff;
}
.booking-times-item:hover {
  background-color: #e7e8e8;
  border: 2px solid #0a0a0a;
  color: #0a0a0a;
}
.booking-times-error {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: white;
  opacity: 0.9;
  z-index: 4;
}
.booking-times-error .message {
  font-weight: bold;
  color: #f44336;
}
.booking-times-error .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
* {
  min-height: 0;
  min-width: 0;
}
#MB_WEBCHAT_WIDGET * {
  min-height: auto;
  min-width: auto;
}
@media only screen and (max-width: 39.9375em) {
  .booking-week,
  .booking-times {
    margin: 0 5px 30px;
  }
  .booking-week .slick-next,
  .booking-times .slick-next {
    right: -15px;
  }
  .booking-week .slick-prev,
  .booking-times .slick-prev {
    left: -25px;
  }
  .booking-week .slick-prev,
  .booking-week .slick-next {
    top: 30px;
  }
  .booking-week-day {
    font-size: 0.75rem;
    padding: 5px;
  }
  .booking-times .slick-prev,
  .booking-times .slick-next {
    top: 19px;
  }
}
.booking-review-confirmation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}
.booking-review-confirmation .checkbox-field {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.booking-review-confirmation
  .checkbox-field
  .checkbox-error.form-error.is-visible {
  margin-top: 0;
  position: relative;
  width: 100%;
}
.booking-review-panel {
  background-color: #a6a6a6;
  border: 2px solid #a6a6a6;
  border-bottom: none;
  padding-top: 30px;
}
@media screen and (max-width: 640px) {
  .booking-review-panel {
    border: none;
  }
}
.booking-review-header {
  padding: 0 30px 10px;
}
.booking-review-header .large-text {
  font-size: 1.625rem;
}
.booking-review-clinic,
.booking-review-appointment,
.booking-review-injector {
  padding: 0 30px;
}
.booking-review-services {
  padding: 0 30px 30px 30px;
}
.booking-review-line {
  margin: 15px 30px;
  border-bottom: 1px solid #0a0a0a;
}
.booking-review .change-clinic:hover,
.booking-review .change-clinic:active {
  text-decoration: underline;
  cursor: pointer;
}
.booking-review-treatment {
  padding: 15px 30px;
  background-color: #fff;
  border-bottom: 2px solid #a6a6a6;
}
.booking-review-treatment .fa-times-thin {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.875rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.booking-review-treatment .fa-times-thin:hover,
.booking-review-treatment .fa-times-thin:active {
  opacity: 0.7;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  cursor: pointer;
}
.booking-review-treatment .form-error {
  position: relative;
  margin-bottom: 0;
}
.booking-review-treatment .has-tip {
  border: none;
}
.booking-review-footer {
  background-color: #fff;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  padding: 15px 30px;
}
.booking-review-close {
  display: none;
}
@media only screen and (max-width: 64em) {
  .booking-review-clinic,
  .booking-review-appointment {
    margin-bottom: 5px;
  }
  .booking-review-panel.mobile {
    display: none;
    position: absolute;
    top: -65px;
    right: 0;
    left: 0;
    z-index: 2;
    margin-left: 0;
    border: 2px solid #a6a6a6;
  }
  .booking-review-panel.mobile.isOpen {
    display: block;
  }
  .booking-review-close {
    display: block;
    background-color: #0a0a0a;
    font-family: "Helvetica Neue Bold", "Helvetica", Arial;
    color: #fff;
    text-align: center;
    cursor: pointer;
    padding: 15px 30px;
  }
}
.booking-extra-fields .form-group {
  min-height: 55px;
}
@media screen and (max-width: 992px) {
  .prepays .tabs,
  .booking .tabs {
    position: relative;
  }
  .prepays .tabs-header-row,
  .booking .tabs-header-row {
    position: unset;
  }
  .prepays .tabs-header-row:before,
  .booking .tabs-header-row:before {
    position: absolute;
    top: 85px;
    left: 0;
    font-family: FontAwesome;
    content: "\f104";
    font-size: 1.25rem;
    opacity: 0.5;
  }
  .prepays .tabs-header-row:after,
  .booking .tabs-header-row:after {
    position: absolute;
    top: 85px;
    right: 0;
    font-family: FontAwesome;
    content: "\f105";
    font-size: 1.25rem;
    opacity: 0.5;
  }
}
.gift-card__emailTemplate-item-container {
  padding: 5px;
  border: 2px solid #fff;
  position: relative;
  background-color: #fff;
  cursor: pointer;
}
.gift-card__emailTemplate-item-container.active {
  border: 2px solid #ccb46d;
}
.gift-card__emailTemplate-item-container.active .fa-check-circle {
  display: block;
}
.gift-card__emailTemplate-img {
  background-repeat: no-repeat;
}
.gift-card__emailTemplate-caption {
  border: 2px solid #0a0a0a;
  font-weight: bold;
  text-align: center;
  font-size: 0.9375rem;
  margin-bottom: 2px;
  padding: 10px;
}
.gift-card__emailTemplate--error .gift-card__emailTemplate-item-container {
  border: 2px solid #f44336;
}
.gift-card__emailTemplate .fa-check-circle {
  position: absolute;
  color: #ccb46d;
  font-size: 2.25rem;
  left: 50%;
  margin-left: -13px;
  background-color: #fff;
  display: none;
}
@media screen and (max-width: 1023px) {
  .gift-card__emailTemplate-item-container {
    margin-bottom: 30px;
  }
}
.gift-card__emailTemplate-img {
  padding-bottom: 76%;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 640px) {
  .gift-card__emailTemplate-img {
    padding-bottom: 45%;
  }
}
.gift-card__emailTemplate-caption {
  display: none;
}
.gift-card__preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.gift-card__preview-body {
  white-space: pre-line;
  word-wrap: break-word;
}
.gift-card__title {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  position: absolute;
  background-color: #fff;
  color: #0a0a0a;
  top: -13px;
  left: 17px;
  padding: 0 15px;
  z-index: 2;
}
.gift-card__border {
  position: relative;
  border: 2px solid #0a0a0a;
  width: 100%;
  padding: 15px;
}
@media screen and (min-width: 1024px) {
  .gift-card__select-amount {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1023px) {
  .gift-card__select-amount {
    margin-left: 5px;
    margin-bottom: 10px;
  }
}
.gift-card hr {
  border-bottom: 1px solid #000;
}
.gift-card .change-clinic {
  text-decoration: underline;
}
.gift-card .change-clinic:hover,
.gift-card .change-clinic:active {
  cursor: pointer;
}
.grid-item-image {
  width: 150px;
}
.adyen-dropin-container {
  position: relative;
}
.adyen-dropin-container:not(.check) .adyen-checkout__dropin {
  opacity: 0.1;
  pointer-events: none;
}
.adyen-dropin-container:not(.check) .adyen-checkout__dropin:hover {
  cursor: not-allowed;
}
.adyen-dropin-mask {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.adyen-error {
  color: #f44336;
}
.adyen-credit-card-term {
  float: none;
}
.adyen-checkboxes {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 140px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 64em) {
  .adyen-checkboxes {
    margin-bottom: 0;
  }
}
.adyen-checkout__dropin {
  margin-bottom: 90px;
}
.adyen-checkout__label__text,
.adyen-checkout__checkbox__label {
  font-weight: bolder;
  text-align: left;
}
.adyen-checkout__input {
  color: #0a0a0a;
}
.adyen-dropin-container .adyen-checkout__input {
  background-color: #fff;
  border: 1px solid #979797;
}
.adyen-dropin-container .adyen-checkout__button {
  background: #0a0a0a;
  border-radius: 0;
}
.adyen-checkout__button__content {
  font-weight: 900;
}
.adyen-checkout__button:hover {
  color: #fff;
  opacity: 0.6;
}
.adyen-checkout__button:hover .adyen-checkout__button__icon {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.adyen-checkout__button.adyen-checkout__button--pay.disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.adyen-checkout__payment-method__header__title {
  font-family: "Helvetica Neue Bold", "Helvetica", "Arial";
}
.adyen-checkout__payment-method--next-selected,
.adyen-checkout__payment-method:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.adyen-checkout__payment-method--selected + .adyen-checkout__payment-method,
.adyen-checkout__payment-method:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.adyen-checkout__checkbox {
  text-align: left;
}
.adyen-checkout-input__inline-validation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.adyen-total {
  font-weight: 900;
}
.accept-cookie-popup {
  position: fixed;
  max-width: 600px;
  padding: 15px 20px;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  background: #0a0a0a;
  right: 20px;
  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;
}
.accept-cookie-popup a,
.accept-cookie-popup a:hover,
.accept-cookie-popup p,
.accept-cookie-popup .font-p,
.accept-cookie-popup {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  color: #fff;
}
.accept-cookie-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.accept-cookie-text {
  padding-right: 20px;
  overflow-wrap: break-word;
}
.accept-cookie-close {
  -ms-flex-item-align: normal;
  align-self: normal;
  margin-top: -7px;
}
@media screen and (max-width: 640px) {
  .accept-cookie-popup {
    max-width: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  .accept-cookie-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .accept-cookie-text {
    padding-bottom: 20px;
    text-align: center;
  }
  .accept-cookie-close {
    position: fixed;
    right: 10px;
  }
}
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  min-height: 400px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.hero__inner {
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}
.hero__cover {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  width: 100%;
}
.hero__image {
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  width: 100%;
}
.hero__content {
  position: relative;
  width: 100%;
  z-index: 2;
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero--responsive .hero__content {
  bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  left: 0;
  position: absolute;
  top: 0;
}
.hero--responsive .hero__description {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.hero--responsive .hero__cover {
  height: 510px;
  min-height: 100%;
}
.hero--responsive .hero__image {
  height: inherit;
  min-height: 100%;
  position: absolute;
}
.hero--responsive .hero__tagline {
  font-size: 1rem;
  width: 50%;
}
.hero--responsive .hero__buttons {
  width: 50%;
}
@media print, screen and (min-width: 40em) {
  .hero {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    min-height: 480px;
  }
  .hero__content {
    width: calc(100% - 2rem);
  }
  .hero__cover,
  .hero__image {
    height: inherit;
    min-height: 100%;
    position: absolute;
  }
  .hero__buttons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: inherit;
  }
  .hero__buttons .button {
    white-space: nowrap;
    width: auto;
  }
  .hero__buttons .button + .button {
    margin-left: 16px;
  }
  .hero--split {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .hero--split .hero__inner {
    margin-left: 40%;
    width: 60%;
  }
  .hero--split .hero__cover {
    width: 40%;
  }
  .hero--split .hero__cover,
  .hero--split .hero__image {
    position: absolute;
  }
  .hero--split .hero__image {
    height: 100%;
  }
  .hero--responsive {
    min-height: 400px;
  }
  .hero--responsive .hero__content {
    width: calc(66.6666666667% - 2rem);
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    position: relative;
  }
  .hero--responsive .hero__description {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .hero--responsive .hero__cover {
    height: inherit;
  }
  .hero--responsive .hero__buttons,
  .hero--responsive .hero__tagline {
    width: 100%;
  }
  .hero--responsive .hero__tagline {
    font-size: 1.125rem;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--split .hero__inner {
    padding-left: 32px;
    margin-left: 50%;
    width: 50%;
  }
  .hero--split .hero__cover {
    width: 50%;
  }
  .hero--split .hero__content {
    width: calc(83.3333333333% - 2rem);
  }
  .hero--responsive {
    min-height: 600px;
  }
}
@media print, screen and (min-width: 75em) {
  .hero {
    min-height: 550px;
  }
  .hero__content {
    width: calc(66.6666666667% - 2rem);
  }
  .hero--split .hero__inner {
    padding-left: 91.2px;
  }
  .hero--responsive {
    min-height: 650px;
  }
}
.treatment-cards__card {
  height: 100%;
  min-height: 220px;
  position: relative;
}
.treatment-cards__popular {
  padding: 2px 4px;
  position: absolute;
  top: -8px;
}
.confirmation {
  margin-bottom: 30px;
  font-size: 1rem;
}
.confirmation .promo-cards {
  margin-top: 60px;
}
.confirmation h1,
.confirmation .font-h1 {
  margin-bottom: 30px;
  margin-top: 60px;
}
.confirmation-content {
  border: 1px solid #e7e8e8;
  padding: 30px;
  border-radius: 5px;
}
.confirmation-content-heading {
  text-transform: uppercase;
  color: #a6a6a6;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  margin-bottom: 15px;
}
.confirmation-content-description {
  color: #a6a6a6;
}
.confirmation-content-black-bold {
  color: #0a0a0a;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.confirmation-content-bold {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.confirmation-buttons {
  margin-top: 60px;
}
.confirmation a.text-link {
  display: block;
  margin-top: 15px;
  color: #a6a6a6;
  text-transform: capitalize;
}
.confirmation a.text-link:hover,
.confirmation a.text-link:active {
  text-decoration: underline;
}
.confirmation a.text-link i {
  padding-right: 10px;
}
@media only screen and (max-width: 64em) {
  .confirmation .sidebar-left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .confirmation .sidebar-right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .confirmation .promo-cards {
    margin-top: 30px;
  }
  .confirmation h1,
  .confirmation .font-h1 {
    margin-bottom: 15px;
    margin-top: 30px;
  }
}
.sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.sidebar-nav {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.sidebar-left,
.sidebar-right {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding: 0 0.3125rem;
}
.sidebar-right {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media only screen and (min-width: 64em) {
  .sidebar-left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-preferred-size: calc(100% - 350px);
    flex-basis: calc(100% - 350px);
    padding-right: 30px;
  }
  .sidebar-right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-preferred-size: 350px;
    flex-basis: 350px;
  }
}
@media only screen and (min-width: 100em) {
  .sidebar-left {
    -ms-flex-preferred-size: calc(100% - 450px);
    flex-basis: calc(100% - 450px);
  }
  .sidebar-right {
    -ms-flex-preferred-size: 450px;
    flex-basis: 450px;
  }
}
.my-account {
  margin-bottom: 30px;
}
.my-account-content {
  position: relative;
  padding: 15px 15px 0;
}
.my-account-id {
  position: absolute;
  top: 0;
  right: 15px;
}
@media only screen and (max-width: 1040px) {
  .my-account-id {
    top: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .my-account-id {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 10px;
  }
}
.my-account #ChangePassword {
  margin-bottom: 20px;
}
@media only screen and (min-width: 64em) {
  .my-account {
    padding: 40px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .my-account-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 0;
    margin-top: 0;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 80px;
  }
}
.treatment-table {
  margin-top: 5.3125rem;
  margin-bottom: 5.3125rem;
  padding: 0 15px;
}
@media only screen and (max-width: 39.9375em) {
  .treatment-table {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
  .prepays > .bg-light-grey > .row,
  .prepays > .row {
    padding: 0 5px;
  }
  .prepays .proceed-button {
    width: 100%;
  }
}
.payment-page .payment-container {
  width: 100%;
}
.payment-page .payment-container,
.payment-page .address-container {
  margin-top: 5.3125rem;
}
@media only screen and (max-width: 64em) {
  .payment-page .payment-container,
  .payment-page .address-container {
    margin-top: 3.125rem;
  }
}
@media only screen and (min-width: 96em) {
  .payment-page .payment-container {
    width: 66%;
  }
}
@media only screen and (max-width: 39.9375em) {
  .payment-page .payment-container,
  .payment-page .address-container {
    margin-top: 1.875rem;
  }
}
.skin-booking-form input[name="skinTone"] {
  display: none;
}
.skin-booking-form .skin-tone {
  margin: 0 10px;
}
.skin-booking-form .skin-tone .columns {
  margin-bottom: 0;
}
.skin-booking-form .prerequisite-link {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  cursor: pointer;
  text-decoration: underline;
}
.skin-tone-modal-row {
  margin-bottom: 10px;
}
.skin-tone-modal-heading {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.skin-tone-modal-prerequisite-guide-text {
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
  text-align: center;
}
@media print, screen and (max-width: 875px) {
  .skin-booking-form .skin-tone .columns {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .skin-booking-form .checkbox-field .checkbox-label {
    margin: 0 15px 0 0;
  }
  .skin-booking-form .checkbox-field .checkbox-error {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .booking .next-button {
    width: 100%;
    max-width: 100%;
  }
}
.addons {
  position: relative;
}
.addons-info {
  position: relative;
}
.addons-info::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 150%;
  border-top: 10px solid #191816;
  border-right: 10px solid #191816;
}
.addons-table {
  margin-top: 5.3125rem;
  margin-bottom: 1.875rem;
}
.addons-button {
  font-size: 14px;
  font-weight: 700;
  font-family: "Helvetica Neue Bold", "Helvetica", Arial;
}
.addons-button:hover {
  cursor: pointer;
}
.addons-button .more {
  display: inline;
}
.addons-button .less {
  display: none;
}
.addons-button.hover .more {
  display: none;
}
.addons-button.hover .less {
  display: inline;
}
.addons-button.hover i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.addons-dropdown {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: initial;
  top: 0 !important;
  left: 0 !important;
}
@media only screen and (max-width: 39.9375em) {
  .addons-table {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
  .prepays > .row,
  .prepays > .bg-skin-1 > .row {
    padding: 0 5px;
  }
  .prepays .proceed-button {
    width: 100%;
  }
}
.c-promo {
  color: #ed6e52;
}
.c-black {
  color: #191816;
}
.c-white {
  color: #fff;
}
.c-grey-40 {
  color: #67625b;
}
.c-skin-1 {
  color: #fff5f0;
}
.c-skin-2 {
  color: #ffebdc;
}
.c-skin-3 {
  color: #d1c7c7;
}
.c-skin-4 {
  color: #ddc6af;
}
.c-skin-5 {
  color: #ddbfaf;
}
.c-skin-12 {
  color: #82635b;
}
.bg-skin-1 {
  background-color: #fff5f0;
}
.bg-skin-2 {
  background-color: #ffebdc;
}
.bg-skin-3 {
  background-color: #d1c7c7;
}
.bg-skin-4 {
  background-color: #ddc6af;
}
.bg-skin-10 {
  background-color: #b58362;
}
.bg-promo {
  background-color: #ed6e52;
}
.bg-grey-10 {
  background-color: #191816;
}
.bg-grey-80 {
  background-color: #ddd9d2;
}
.bg-grey-91 {
  background-color: #e7e8e8;
}
.bg-black {
  background-color: #191816;
}
.bg-gold {
  background-color: #d0b361;
}
.bg-white {
  background-color: #fff;
}
.bg-current {
  background-color: currentColor;
}
.bg-lhr-3 {
  background-color: #ffe8c2;
}
.bg-sk-3 {
  background-color: #d0f0ea;
}
.bg-cs-3 {
  background-color: #c0c8ec;
}
.bg-inject-3 {
  background-color: #ffd6e0;
}
.u-fill-promo {
  fill: #ed6e52;
}
.u-fill-white {
  fill: #fff;
}
.link {
  position: relative;
  display: inline-block;
  padding-right: 15px;
}
.link:after {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-family: FontAwesome;
  font-size: 1.25rem;
  content: "\f107";
}
@font-face {
  font-display: swap;
  font-family: "Reckless Neue";
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/RecklessNeue-Regular-64c7f94256.woff2")
      format("woff2"),
    url("../assets/fonts/RecklessNeue-Regular-ce4b51720f.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Reckless Neue";
  font-style: italic;
  font-weight: normal;
  src: url("../assets/fonts/RecklessNeue-RegularItalic-04eb6eb16b.woff2")
      format("woff2"),
    url("../assets/fonts/RecklessNeue-RegularItalic-251497191e.woff")
      format("woff");
}
body,
.f-default {
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1.4;
}
.f-kronos {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 48px;
  font-weight: normal;
  line-height: 1.1;
}
h1,
.font-h1,
.f-baham {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 32px;
  font-weight: normal;
  line-height: 1.3;
}
h2,
.font-h2,
.f-omega {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.4;
}
.accordion--plus .accordion-title,
h3,
.font-h3,
h4,
.font-h4,
h5,
.font-h5,
.f-tali {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4;
}
h6,
.font-h6,
.f-meni {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
}
.f-benno {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
}
.f-dani {
  font-family: "Reckless Neue", Georgia, Times, serif;
  font-size: 12px;
  font-weight: normal;
}
.f-venta {
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 18px;
}
.f-hadir {
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
}
.f-mera {
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: normal;
}
.f-vega {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4;
}
.f-legal,
.f-thuban {
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-weight: normal;
}
@media screen and (min-width: 40em) {
  body,
  .f-default {
    font-size: 16px;
  }
}
@media screen and (min-width: 64em) {
  body,
  .f-default {
    font-size: 18px;
  }
  .f-kronos {
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1px;
  }
  h1,
  .font-h1,
  .f-baham {
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1px;
  }
  h2,
  .font-h2,
  .f-omega {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -1px;
  }
  .accordion--plus .accordion-title,
  h3,
  .font-h3,
  h4,
  .font-h4,
  h5,
  .font-h5,
  .f-tali {
    font-size: 24px;
  }
  h6,
  .font-h6,
  .f-meni {
    font-size: 18px;
  }
}
@media screen and (min-width: 75em) {
  .f-kronos {
    font-size: 72px;
  }
}
.f-bold {
  font-weight: 600;
}
.f-italic {
  font-style: italic;
}
.f-underline {
  text-decoration: underline;
}
.f-upper {
  text-transform: uppercase;
}
.f-inherit {
  font: inherit;
}
.u-clearfix::before,
.u-clearfix::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.u-clearfix::after {
  clear: both;
}
.u-float-left {
  float: left;
}
.u-float-right {
  float: right;
}
.u-text-center {
  text-align: center;
}
.u-text-left {
  text-align: left;
}
.u-text-right {
  text-align: right;
}
.u-auto-width {
  width: auto;
}
.u-half-width {
  width: 50%;
}
.u-full-width {
  width: 100%;
}
.u-width-1-3 {
  width: calc(100% * 1 / 3);
}
.u-width-2-3 {
  width: calc(100% * 2 / 3);
}
.u-width-3-3 {
  width: 100%;
}
.u-full-height {
  height: 100%;
}
.u-full-vh {
  height: 100vh;
}
.u-min-vh {
  min-height: 100vh;
}
.u-max-200 {
  max-height: 200px;
}
.u-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.u-self-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.u-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.u-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.u-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.u-border-b {
  border-bottom: 1px solid currentColor;
}
.u-border-b-2 {
  border-bottom: 2px solid currentColor;
}
.u-underline {
  text-decoration: underline;
}
.u-overflow-auto {
  overflow: auto;
}
.u-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.u-mt-auto {
  margin-top: auto;
}
@media print, screen and (min-width: 40em) {
  .u-md-text-center {
    text-align: center;
  }
  .u-md-margin-top5 {
    margin-top: 5px;
  }
}
.c-promo {
  color: #ed6e52;
}
.c-white {
  color: #fff;
}
.u-block {
  display: block;
}
.u-inline-block {
  display: inline-block;
}
.u-inline {
  display: inline;
}
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.u-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.u-flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.u-flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.u-flex-no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.u-shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.u-grow-1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.u-relative {
  position: relative;
}
.u-absolute {
  position: absolute;
}
.m-0 {
  margin: 0px;
}
.p-0 {
  padding: 0px;
}
.m-1 {
  margin: 8px;
}
.p-1 {
  padding: 8px;
}
.m-2 {
  margin: 16px;
}
.p-2 {
  padding: 16px;
}
.m-3 {
  margin: 24px;
}
.p-3 {
  padding: 24px;
}
.m-4 {
  margin: 32px;
}
.p-4 {
  padding: 32px;
}
.m-5 {
  margin: 40px;
}
.p-5 {
  padding: 40px;
}
.m-6 {
  margin: 48px;
}
.p-6 {
  padding: 48px;
}
.m-8 {
  margin: 64px;
}
.p-8 {
  padding: 64px;
}
.m-10 {
  margin: 80px;
}
.p-10 {
  padding: 80px;
}
.mt-0 {
  margin-top: 0px;
}
.pt-0 {
  padding-top: 0px;
}
.mt-1 {
  margin-top: 8px;
}
.pt-1 {
  padding-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.pt-2 {
  padding-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.pt-3 {
  padding-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.pt-4 {
  padding-top: 32px;
}
.mt-5 {
  margin-top: 40px;
}
.pt-5 {
  padding-top: 40px;
}
.mt-6 {
  margin-top: 48px;
}
.pt-6 {
  padding-top: 48px;
}
.mt-8 {
  margin-top: 64px;
}
.pt-8 {
  padding-top: 64px;
}
.mt-10 {
  margin-top: 80px;
}
.pt-10 {
  padding-top: 80px;
}
.mb-0 {
  margin-bottom: 0px;
}
.pb-0 {
  padding-bottom: 0px;
}
.mb-1 {
  margin-bottom: 8px;
}
.pb-1 {
  padding-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.pb-2 {
  padding-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.pb-3 {
  padding-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}
.pb-4 {
  padding-bottom: 32px;
}
.mb-5 {
  margin-bottom: 40px;
}
.pb-5 {
  padding-bottom: 40px;
}
.mb-6 {
  margin-bottom: 48px;
}
.pb-6 {
  padding-bottom: 48px;
}
.mb-8 {
  margin-bottom: 64px;
}
.pb-8 {
  padding-bottom: 64px;
}
.mb-10 {
  margin-bottom: 80px;
}
.pb-10 {
  padding-bottom: 80px;
}
.ml-0 {
  margin-left: 0px;
}
.pl-0 {
  padding-left: 0px;
}
.ml-1 {
  margin-left: 8px;
}
.pl-1 {
  padding-left: 8px;
}
.ml-2 {
  margin-left: 16px;
}
.pl-2 {
  padding-left: 16px;
}
.ml-3 {
  margin-left: 24px;
}
.pl-3 {
  padding-left: 24px;
}
.ml-4 {
  margin-left: 32px;
}
.pl-4 {
  padding-left: 32px;
}
.ml-5 {
  margin-left: 40px;
}
.pl-5 {
  padding-left: 40px;
}
.ml-6 {
  margin-left: 48px;
}
.pl-6 {
  padding-left: 48px;
}
.ml-8 {
  margin-left: 64px;
}
.pl-8 {
  padding-left: 64px;
}
.ml-10 {
  margin-left: 80px;
}
.pl-10 {
  padding-left: 80px;
}
.mr-0 {
  margin-right: 0px;
}
.pr-0 {
  padding-right: 0px;
}
.mr-1 {
  margin-right: 8px;
}
.pr-1 {
  padding-right: 8px;
}
.mr-2 {
  margin-right: 16px;
}
.pr-2 {
  padding-right: 16px;
}
.mr-3 {
  margin-right: 24px;
}
.pr-3 {
  padding-right: 24px;
}
.mr-4 {
  margin-right: 32px;
}
.pr-4 {
  padding-right: 32px;
}
.mr-5 {
  margin-right: 40px;
}
.pr-5 {
  padding-right: 40px;
}
.mr-6 {
  margin-right: 48px;
}
.pr-6 {
  padding-right: 48px;
}
.mr-8 {
  margin-right: 64px;
}
.pr-8 {
  padding-right: 64px;
}
.mr-10 {
  margin-right: 80px;
}
.pr-10 {
  padding-right: 80px;
}
.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.mx-1 {
  margin-left: 8px;
  margin-right: 8px;
}
.px-1 {
  padding-left: 8px;
  padding-right: 8px;
}
.mx-2 {
  margin-left: 16px;
  margin-right: 16px;
}
.px-2 {
  padding-left: 16px;
  padding-right: 16px;
}
.mx-3 {
  margin-left: 24px;
  margin-right: 24px;
}
.px-3 {
  padding-left: 24px;
  padding-right: 24px;
}
.mx-4 {
  margin-left: 32px;
  margin-right: 32px;
}
.px-4 {
  padding-left: 32px;
  padding-right: 32px;
}
.mx-5 {
  margin-left: 40px;
  margin-right: 40px;
}
.px-5 {
  padding-left: 40px;
  padding-right: 40px;
}
.mx-6 {
  margin-left: 48px;
  margin-right: 48px;
}
.px-6 {
  padding-left: 48px;
  padding-right: 48px;
}
.mx-8 {
  margin-left: 64px;
  margin-right: 64px;
}
.px-8 {
  padding-left: 64px;
  padding-right: 64px;
}
.mx-10 {
  margin-left: 80px;
  margin-right: 80px;
}
.px-10 {
  padding-left: 80px;
  padding-right: 80px;
}
.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.my-1 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.py-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.my-2 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.py-2 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.my-3 {
  margin-top: 24px;
  margin-bottom: 24px;
}
.py-3 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.my-4 {
  margin-top: 32px;
  margin-bottom: 32px;
}
.py-4 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.my-5 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.py-5 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.my-6 {
  margin-top: 48px;
  margin-bottom: 48px;
}
.py-6 {
  padding-top: 48px;
  padding-bottom: 48px;
}
.my-8 {
  margin-top: 64px;
  margin-bottom: 64px;
}
.py-8 {
  padding-top: 64px;
  padding-bottom: 64px;
}
.my-10 {
  margin-top: 80px;
  margin-bottom: 80px;
}
.py-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 40em) {
  .m-md-0 {
    margin: 0px;
  }
  .p-md-0 {
    padding: 0px;
  }
}
@media (min-width: 40em) {
  .m-md-1 {
    margin: 8px;
  }
  .p-md-1 {
    padding: 8px;
  }
}
@media (min-width: 40em) {
  .m-md-2 {
    margin: 16px;
  }
  .p-md-2 {
    padding: 16px;
  }
}
@media (min-width: 40em) {
  .m-md-3 {
    margin: 24px;
  }
  .p-md-3 {
    padding: 24px;
  }
}
@media (min-width: 40em) {
  .m-md-4 {
    margin: 32px;
  }
  .p-md-4 {
    padding: 32px;
  }
}
@media (min-width: 40em) {
  .m-md-5 {
    margin: 40px;
  }
  .p-md-5 {
    padding: 40px;
  }
}
@media (min-width: 40em) {
  .m-md-6 {
    margin: 48px;
  }
  .p-md-6 {
    padding: 48px;
  }
}
@media (min-width: 40em) {
  .m-md-8 {
    margin: 64px;
  }
  .p-md-8 {
    padding: 64px;
  }
}
@media (min-width: 40em) {
  .m-md-10 {
    margin: 80px;
  }
  .p-md-10 {
    padding: 80px;
  }
}
@media (min-width: 40em) {
  .mt-md-0 {
    margin-top: 0px;
  }
  .pt-md-0 {
    padding-top: 0px;
  }
}
@media (min-width: 40em) {
  .mt-md-1 {
    margin-top: 8px;
  }
  .pt-md-1 {
    padding-top: 8px;
  }
}
@media (min-width: 40em) {
  .mt-md-2 {
    margin-top: 16px;
  }
  .pt-md-2 {
    padding-top: 16px;
  }
}
@media (min-width: 40em) {
  .mt-md-3 {
    margin-top: 24px;
  }
  .pt-md-3 {
    padding-top: 24px;
  }
}
@media (min-width: 40em) {
  .mt-md-4 {
    margin-top: 32px;
  }
  .pt-md-4 {
    padding-top: 32px;
  }
}
@media (min-width: 40em) {
  .mt-md-5 {
    margin-top: 40px;
  }
  .pt-md-5 {
    padding-top: 40px;
  }
}
@media (min-width: 40em) {
  .mt-md-6 {
    margin-top: 48px;
  }
  .pt-md-6 {
    padding-top: 48px;
  }
}
@media (min-width: 40em) {
  .mt-md-8 {
    margin-top: 64px;
  }
  .pt-md-8 {
    padding-top: 64px;
  }
}
@media (min-width: 40em) {
  .mt-md-10 {
    margin-top: 80px;
  }
  .pt-md-10 {
    padding-top: 80px;
  }
}
@media (min-width: 40em) {
  .mb-md-0 {
    margin-bottom: 0px;
  }
  .pb-md-0 {
    padding-bottom: 0px;
  }
}
@media (min-width: 40em) {
  .mb-md-1 {
    margin-bottom: 8px;
  }
  .pb-md-1 {
    padding-bottom: 8px;
  }
}
@media (min-width: 40em) {
  .mb-md-2 {
    margin-bottom: 16px;
  }
  .pb-md-2 {
    padding-bottom: 16px;
  }
}
@media (min-width: 40em) {
  .mb-md-3 {
    margin-bottom: 24px;
  }
  .pb-md-3 {
    padding-bottom: 24px;
  }
}
@media (min-width: 40em) {
  .mb-md-4 {
    margin-bottom: 32px;
  }
  .pb-md-4 {
    padding-bottom: 32px;
  }
}
@media (min-width: 40em) {
  .mb-md-5 {
    margin-bottom: 40px;
  }
  .pb-md-5 {
    padding-bottom: 40px;
  }
}
@media (min-width: 40em) {
  .mb-md-6 {
    margin-bottom: 48px;
  }
  .pb-md-6 {
    padding-bottom: 48px;
  }
}
@media (min-width: 40em) {
  .mb-md-8 {
    margin-bottom: 64px;
  }
  .pb-md-8 {
    padding-bottom: 64px;
  }
}
@media (min-width: 40em) {
  .mb-md-10 {
    margin-bottom: 80px;
  }
  .pb-md-10 {
    padding-bottom: 80px;
  }
}
@media (min-width: 40em) {
  .ml-md-0 {
    margin-left: 0px;
  }
  .pl-md-0 {
    padding-left: 0px;
  }
}
@media (min-width: 40em) {
  .ml-md-1 {
    margin-left: 8px;
  }
  .pl-md-1 {
    padding-left: 8px;
  }
}
@media (min-width: 40em) {
  .ml-md-2 {
    margin-left: 16px;
  }
  .pl-md-2 {
    padding-left: 16px;
  }
}
@media (min-width: 40em) {
  .ml-md-3 {
    margin-left: 24px;
  }
  .pl-md-3 {
    padding-left: 24px;
  }
}
@media (min-width: 40em) {
  .ml-md-4 {
    margin-left: 32px;
  }
  .pl-md-4 {
    padding-left: 32px;
  }
}
@media (min-width: 40em) {
  .ml-md-5 {
    margin-left: 40px;
  }
  .pl-md-5 {
    padding-left: 40px;
  }
}
@media (min-width: 40em) {
  .ml-md-6 {
    margin-left: 48px;
  }
  .pl-md-6 {
    padding-left: 48px;
  }
}
@media (min-width: 40em) {
  .ml-md-8 {
    margin-left: 64px;
  }
  .pl-md-8 {
    padding-left: 64px;
  }
}
@media (min-width: 40em) {
  .ml-md-10 {
    margin-left: 80px;
  }
  .pl-md-10 {
    padding-left: 80px;
  }
}
@media (min-width: 40em) {
  .mr-md-0 {
    margin-right: 0px;
  }
  .pr-md-0 {
    padding-right: 0px;
  }
}
@media (min-width: 40em) {
  .mr-md-1 {
    margin-right: 8px;
  }
  .pr-md-1 {
    padding-right: 8px;
  }
}
@media (min-width: 40em) {
  .mr-md-2 {
    margin-right: 16px;
  }
  .pr-md-2 {
    padding-right: 16px;
  }
}
@media (min-width: 40em) {
  .mr-md-3 {
    margin-right: 24px;
  }
  .pr-md-3 {
    padding-right: 24px;
  }
}
@media (min-width: 40em) {
  .mr-md-4 {
    margin-right: 32px;
  }
  .pr-md-4 {
    padding-right: 32px;
  }
}
@media (min-width: 40em) {
  .mr-md-5 {
    margin-right: 40px;
  }
  .pr-md-5 {
    padding-right: 40px;
  }
}
@media (min-width: 40em) {
  .mr-md-6 {
    margin-right: 48px;
  }
  .pr-md-6 {
    padding-right: 48px;
  }
}
@media (min-width: 40em) {
  .mr-md-8 {
    margin-right: 64px;
  }
  .pr-md-8 {
    padding-right: 64px;
  }
}
@media (min-width: 40em) {
  .mr-md-10 {
    margin-right: 80px;
  }
  .pr-md-10 {
    padding-right: 80px;
  }
}
@media (min-width: 40em) {
  .mx-md-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .px-md-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 40em) {
  .mx-md-1 {
    margin-left: 8px;
    margin-right: 8px;
  }
  .px-md-1 {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (min-width: 40em) {
  .mx-md-2 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .px-md-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 40em) {
  .mx-md-3 {
    margin-left: 24px;
    margin-right: 24px;
  }
  .px-md-3 {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 40em) {
  .mx-md-4 {
    margin-left: 32px;
    margin-right: 32px;
  }
  .px-md-4 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 40em) {
  .mx-md-5 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .px-md-5 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 40em) {
  .mx-md-6 {
    margin-left: 48px;
    margin-right: 48px;
  }
  .px-md-6 {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 40em) {
  .mx-md-8 {
    margin-left: 64px;
    margin-right: 64px;
  }
  .px-md-8 {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 40em) {
  .mx-md-10 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .px-md-10 {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 40em) {
  .my-md-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .py-md-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 40em) {
  .my-md-1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .py-md-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (min-width: 40em) {
  .my-md-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .py-md-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 40em) {
  .my-md-3 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .py-md-3 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 40em) {
  .my-md-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .py-md-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 40em) {
  .my-md-5 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .py-md-5 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 40em) {
  .my-md-6 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .py-md-6 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 40em) {
  .my-md-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .py-md-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (min-width: 40em) {
  .my-md-10 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .py-md-10 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 64em) {
  .m-lg-0 {
    margin: 0px;
  }
  .p-lg-0 {
    padding: 0px;
  }
}
@media (min-width: 64em) {
  .m-lg-1 {
    margin: 8px;
  }
  .p-lg-1 {
    padding: 8px;
  }
}
@media (min-width: 64em) {
  .m-lg-2 {
    margin: 16px;
  }
  .p-lg-2 {
    padding: 16px;
  }
}
@media (min-width: 64em) {
  .m-lg-3 {
    margin: 24px;
  }
  .p-lg-3 {
    padding: 24px;
  }
}
@media (min-width: 64em) {
  .m-lg-4 {
    margin: 32px;
  }
  .p-lg-4 {
    padding: 32px;
  }
}
@media (min-width: 64em) {
  .m-lg-5 {
    margin: 40px;
  }
  .p-lg-5 {
    padding: 40px;
  }
}
@media (min-width: 64em) {
  .m-lg-6 {
    margin: 48px;
  }
  .p-lg-6 {
    padding: 48px;
  }
}
@media (min-width: 64em) {
  .m-lg-8 {
    margin: 64px;
  }
  .p-lg-8 {
    padding: 64px;
  }
}
@media (min-width: 64em) {
  .m-lg-10 {
    margin: 80px;
  }
  .p-lg-10 {
    padding: 80px;
  }
}
@media (min-width: 64em) {
  .mt-lg-0 {
    margin-top: 0px;
  }
  .pt-lg-0 {
    padding-top: 0px;
  }
}
@media (min-width: 64em) {
  .mt-lg-1 {
    margin-top: 8px;
  }
  .pt-lg-1 {
    padding-top: 8px;
  }
}
@media (min-width: 64em) {
  .mt-lg-2 {
    margin-top: 16px;
  }
  .pt-lg-2 {
    padding-top: 16px;
  }
}
@media (min-width: 64em) {
  .mt-lg-3 {
    margin-top: 24px;
  }
  .pt-lg-3 {
    padding-top: 24px;
  }
}
@media (min-width: 64em) {
  .mt-lg-4 {
    margin-top: 32px;
  }
  .pt-lg-4 {
    padding-top: 32px;
  }
}
@media (min-width: 64em) {
  .mt-lg-5 {
    margin-top: 40px;
  }
  .pt-lg-5 {
    padding-top: 40px;
  }
}
@media (min-width: 64em) {
  .mt-lg-6 {
    margin-top: 48px;
  }
  .pt-lg-6 {
    padding-top: 48px;
  }
}
@media (min-width: 64em) {
  .mt-lg-8 {
    margin-top: 64px;
  }
  .pt-lg-8 {
    padding-top: 64px;
  }
}
@media (min-width: 64em) {
  .mt-lg-10 {
    margin-top: 80px;
  }
  .pt-lg-10 {
    padding-top: 80px;
  }
}
@media (min-width: 64em) {
  .mb-lg-0 {
    margin-bottom: 0px;
  }
  .pb-lg-0 {
    padding-bottom: 0px;
  }
}
@media (min-width: 64em) {
  .mb-lg-1 {
    margin-bottom: 8px;
  }
  .pb-lg-1 {
    padding-bottom: 8px;
  }
}
@media (min-width: 64em) {
  .mb-lg-2 {
    margin-bottom: 16px;
  }
  .pb-lg-2 {
    padding-bottom: 16px;
  }
}
@media (min-width: 64em) {
  .mb-lg-3 {
    margin-bottom: 24px;
  }
  .pb-lg-3 {
    padding-bottom: 24px;
  }
}
@media (min-width: 64em) {
  .mb-lg-4 {
    margin-bottom: 32px;
  }
  .pb-lg-4 {
    padding-bottom: 32px;
  }
}
@media (min-width: 64em) {
  .mb-lg-5 {
    margin-bottom: 40px;
  }
  .pb-lg-5 {
    padding-bottom: 40px;
  }
}
@media (min-width: 64em) {
  .mb-lg-6 {
    margin-bottom: 48px;
  }
  .pb-lg-6 {
    padding-bottom: 48px;
  }
}
@media (min-width: 64em) {
  .mb-lg-8 {
    margin-bottom: 64px;
  }
  .pb-lg-8 {
    padding-bottom: 64px;
  }
}
@media (min-width: 64em) {
  .mb-lg-10 {
    margin-bottom: 80px;
  }
  .pb-lg-10 {
    padding-bottom: 80px;
  }
}
@media (min-width: 64em) {
  .ml-lg-0 {
    margin-left: 0px;
  }
  .pl-lg-0 {
    padding-left: 0px;
  }
}
@media (min-width: 64em) {
  .ml-lg-1 {
    margin-left: 8px;
  }
  .pl-lg-1 {
    padding-left: 8px;
  }
}
@media (min-width: 64em) {
  .ml-lg-2 {
    margin-left: 16px;
  }
  .pl-lg-2 {
    padding-left: 16px;
  }
}
@media (min-width: 64em) {
  .ml-lg-3 {
    margin-left: 24px;
  }
  .pl-lg-3 {
    padding-left: 24px;
  }
}
@media (min-width: 64em) {
  .ml-lg-4 {
    margin-left: 32px;
  }
  .pl-lg-4 {
    padding-left: 32px;
  }
}
@media (min-width: 64em) {
  .ml-lg-5 {
    margin-left: 40px;
  }
  .pl-lg-5 {
    padding-left: 40px;
  }
}
@media (min-width: 64em) {
  .ml-lg-6 {
    margin-left: 48px;
  }
  .pl-lg-6 {
    padding-left: 48px;
  }
}
@media (min-width: 64em) {
  .ml-lg-8 {
    margin-left: 64px;
  }
  .pl-lg-8 {
    padding-left: 64px;
  }
}
@media (min-width: 64em) {
  .ml-lg-10 {
    margin-left: 80px;
  }
  .pl-lg-10 {
    padding-left: 80px;
  }
}
@media (min-width: 64em) {
  .mr-lg-0 {
    margin-right: 0px;
  }
  .pr-lg-0 {
    padding-right: 0px;
  }
}
@media (min-width: 64em) {
  .mr-lg-1 {
    margin-right: 8px;
  }
  .pr-lg-1 {
    padding-right: 8px;
  }
}
@media (min-width: 64em) {
  .mr-lg-2 {
    margin-right: 16px;
  }
  .pr-lg-2 {
    padding-right: 16px;
  }
}
@media (min-width: 64em) {
  .mr-lg-3 {
    margin-right: 24px;
  }
  .pr-lg-3 {
    padding-right: 24px;
  }
}
@media (min-width: 64em) {
  .mr-lg-4 {
    margin-right: 32px;
  }
  .pr-lg-4 {
    padding-right: 32px;
  }
}
@media (min-width: 64em) {
  .mr-lg-5 {
    margin-right: 40px;
  }
  .pr-lg-5 {
    padding-right: 40px;
  }
}
@media (min-width: 64em) {
  .mr-lg-6 {
    margin-right: 48px;
  }
  .pr-lg-6 {
    padding-right: 48px;
  }
}
@media (min-width: 64em) {
  .mr-lg-8 {
    margin-right: 64px;
  }
  .pr-lg-8 {
    padding-right: 64px;
  }
}
@media (min-width: 64em) {
  .mr-lg-10 {
    margin-right: 80px;
  }
  .pr-lg-10 {
    padding-right: 80px;
  }
}
@media (min-width: 64em) {
  .mx-lg-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .px-lg-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 64em) {
  .mx-lg-1 {
    margin-left: 8px;
    margin-right: 8px;
  }
  .px-lg-1 {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (min-width: 64em) {
  .mx-lg-2 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .px-lg-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 64em) {
  .mx-lg-3 {
    margin-left: 24px;
    margin-right: 24px;
  }
  .px-lg-3 {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 64em) {
  .mx-lg-4 {
    margin-left: 32px;
    margin-right: 32px;
  }
  .px-lg-4 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 64em) {
  .mx-lg-5 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .px-lg-5 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 64em) {
  .mx-lg-6 {
    margin-left: 48px;
    margin-right: 48px;
  }
  .px-lg-6 {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 64em) {
  .mx-lg-8 {
    margin-left: 64px;
    margin-right: 64px;
  }
  .px-lg-8 {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 64em) {
  .mx-lg-10 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .px-lg-10 {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 64em) {
  .my-lg-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .py-lg-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 64em) {
  .my-lg-1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .py-lg-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (min-width: 64em) {
  .my-lg-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .py-lg-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 64em) {
  .my-lg-3 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .py-lg-3 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 64em) {
  .my-lg-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .py-lg-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 64em) {
  .my-lg-5 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .py-lg-5 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 64em) {
  .my-lg-6 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .py-lg-6 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 64em) {
  .my-lg-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .py-lg-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (min-width: 64em) {
  .my-lg-10 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .py-lg-10 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 75em) {
  .m-xl-0 {
    margin: 0px;
  }
  .p-xl-0 {
    padding: 0px;
  }
}
@media (min-width: 75em) {
  .m-xl-1 {
    margin: 8px;
  }
  .p-xl-1 {
    padding: 8px;
  }
}
@media (min-width: 75em) {
  .m-xl-2 {
    margin: 16px;
  }
  .p-xl-2 {
    padding: 16px;
  }
}
@media (min-width: 75em) {
  .m-xl-3 {
    margin: 24px;
  }
  .p-xl-3 {
    padding: 24px;
  }
}
@media (min-width: 75em) {
  .m-xl-4 {
    margin: 32px;
  }
  .p-xl-4 {
    padding: 32px;
  }
}
@media (min-width: 75em) {
  .m-xl-5 {
    margin: 40px;
  }
  .p-xl-5 {
    padding: 40px;
  }
}
@media (min-width: 75em) {
  .m-xl-6 {
    margin: 48px;
  }
  .p-xl-6 {
    padding: 48px;
  }
}
@media (min-width: 75em) {
  .m-xl-8 {
    margin: 64px;
  }
  .p-xl-8 {
    padding: 64px;
  }
}
@media (min-width: 75em) {
  .m-xl-10 {
    margin: 80px;
  }
  .p-xl-10 {
    padding: 80px;
  }
}
@media (min-width: 75em) {
  .mt-xl-0 {
    margin-top: 0px;
  }
  .pt-xl-0 {
    padding-top: 0px;
  }
}
@media (min-width: 75em) {
  .mt-xl-1 {
    margin-top: 8px;
  }
  .pt-xl-1 {
    padding-top: 8px;
  }
}
@media (min-width: 75em) {
  .mt-xl-2 {
    margin-top: 16px;
  }
  .pt-xl-2 {
    padding-top: 16px;
  }
}
@media (min-width: 75em) {
  .mt-xl-3 {
    margin-top: 24px;
  }
  .pt-xl-3 {
    padding-top: 24px;
  }
}
@media (min-width: 75em) {
  .mt-xl-4 {
    margin-top: 32px;
  }
  .pt-xl-4 {
    padding-top: 32px;
  }
}
@media (min-width: 75em) {
  .mt-xl-5 {
    margin-top: 40px;
  }
  .pt-xl-5 {
    padding-top: 40px;
  }
}
@media (min-width: 75em) {
  .mt-xl-6 {
    margin-top: 48px;
  }
  .pt-xl-6 {
    padding-top: 48px;
  }
}
@media (min-width: 75em) {
  .mt-xl-8 {
    margin-top: 64px;
  }
  .pt-xl-8 {
    padding-top: 64px;
  }
}
@media (min-width: 75em) {
  .mt-xl-10 {
    margin-top: 80px;
  }
  .pt-xl-10 {
    padding-top: 80px;
  }
}
@media (min-width: 75em) {
  .mb-xl-0 {
    margin-bottom: 0px;
  }
  .pb-xl-0 {
    padding-bottom: 0px;
  }
}
@media (min-width: 75em) {
  .mb-xl-1 {
    margin-bottom: 8px;
  }
  .pb-xl-1 {
    padding-bottom: 8px;
  }
}
@media (min-width: 75em) {
  .mb-xl-2 {
    margin-bottom: 16px;
  }
  .pb-xl-2 {
    padding-bottom: 16px;
  }
}
@media (min-width: 75em) {
  .mb-xl-3 {
    margin-bottom: 24px;
  }
  .pb-xl-3 {
    padding-bottom: 24px;
  }
}
@media (min-width: 75em) {
  .mb-xl-4 {
    margin-bottom: 32px;
  }
  .pb-xl-4 {
    padding-bottom: 32px;
  }
}
@media (min-width: 75em) {
  .mb-xl-5 {
    margin-bottom: 40px;
  }
  .pb-xl-5 {
    padding-bottom: 40px;
  }
}
@media (min-width: 75em) {
  .mb-xl-6 {
    margin-bottom: 48px;
  }
  .pb-xl-6 {
    padding-bottom: 48px;
  }
}
@media (min-width: 75em) {
  .mb-xl-8 {
    margin-bottom: 64px;
  }
  .pb-xl-8 {
    padding-bottom: 64px;
  }
}
@media (min-width: 75em) {
  .mb-xl-10 {
    margin-bottom: 80px;
  }
  .pb-xl-10 {
    padding-bottom: 80px;
  }
}
@media (min-width: 75em) {
  .ml-xl-0 {
    margin-left: 0px;
  }
  .pl-xl-0 {
    padding-left: 0px;
  }
}
@media (min-width: 75em) {
  .ml-xl-1 {
    margin-left: 8px;
  }
  .pl-xl-1 {
    padding-left: 8px;
  }
}
@media (min-width: 75em) {
  .ml-xl-2 {
    margin-left: 16px;
  }
  .pl-xl-2 {
    padding-left: 16px;
  }
}
@media (min-width: 75em) {
  .ml-xl-3 {
    margin-left: 24px;
  }
  .pl-xl-3 {
    padding-left: 24px;
  }
}
@media (min-width: 75em) {
  .ml-xl-4 {
    margin-left: 32px;
  }
  .pl-xl-4 {
    padding-left: 32px;
  }
}
@media (min-width: 75em) {
  .ml-xl-5 {
    margin-left: 40px;
  }
  .pl-xl-5 {
    padding-left: 40px;
  }
}
@media (min-width: 75em) {
  .ml-xl-6 {
    margin-left: 48px;
  }
  .pl-xl-6 {
    padding-left: 48px;
  }
}
@media (min-width: 75em) {
  .ml-xl-8 {
    margin-left: 64px;
  }
  .pl-xl-8 {
    padding-left: 64px;
  }
}
@media (min-width: 75em) {
  .ml-xl-10 {
    margin-left: 80px;
  }
  .pl-xl-10 {
    padding-left: 80px;
  }
}
@media (min-width: 75em) {
  .mr-xl-0 {
    margin-right: 0px;
  }
  .pr-xl-0 {
    padding-right: 0px;
  }
}
@media (min-width: 75em) {
  .mr-xl-1 {
    margin-right: 8px;
  }
  .pr-xl-1 {
    padding-right: 8px;
  }
}
@media (min-width: 75em) {
  .mr-xl-2 {
    margin-right: 16px;
  }
  .pr-xl-2 {
    padding-right: 16px;
  }
}
@media (min-width: 75em) {
  .mr-xl-3 {
    margin-right: 24px;
  }
  .pr-xl-3 {
    padding-right: 24px;
  }
}
@media (min-width: 75em) {
  .mr-xl-4 {
    margin-right: 32px;
  }
  .pr-xl-4 {
    padding-right: 32px;
  }
}
@media (min-width: 75em) {
  .mr-xl-5 {
    margin-right: 40px;
  }
  .pr-xl-5 {
    padding-right: 40px;
  }
}
@media (min-width: 75em) {
  .mr-xl-6 {
    margin-right: 48px;
  }
  .pr-xl-6 {
    padding-right: 48px;
  }
}
@media (min-width: 75em) {
  .mr-xl-8 {
    margin-right: 64px;
  }
  .pr-xl-8 {
    padding-right: 64px;
  }
}
@media (min-width: 75em) {
  .mr-xl-10 {
    margin-right: 80px;
  }
  .pr-xl-10 {
    padding-right: 80px;
  }
}
@media (min-width: 75em) {
  .mx-xl-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .px-xl-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 75em) {
  .mx-xl-1 {
    margin-left: 8px;
    margin-right: 8px;
  }
  .px-xl-1 {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (min-width: 75em) {
  .mx-xl-2 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .px-xl-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 75em) {
  .mx-xl-3 {
    margin-left: 24px;
    margin-right: 24px;
  }
  .px-xl-3 {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 75em) {
  .mx-xl-4 {
    margin-left: 32px;
    margin-right: 32px;
  }
  .px-xl-4 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 75em) {
  .mx-xl-5 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .px-xl-5 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 75em) {
  .mx-xl-6 {
    margin-left: 48px;
    margin-right: 48px;
  }
  .px-xl-6 {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 75em) {
  .mx-xl-8 {
    margin-left: 64px;
    margin-right: 64px;
  }
  .px-xl-8 {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 75em) {
  .mx-xl-10 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .px-xl-10 {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 75em) {
  .my-xl-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .py-xl-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 75em) {
  .my-xl-1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .py-xl-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (min-width: 75em) {
  .my-xl-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .py-xl-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 75em) {
  .my-xl-3 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .py-xl-3 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 75em) {
  .my-xl-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .py-xl-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 75em) {
  .my-xl-5 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .py-xl-5 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 75em) {
  .my-xl-6 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .py-xl-6 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 75em) {
  .my-xl-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .py-xl-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (min-width: 75em) {
  .my-xl-10 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .py-xl-10 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.u-reset {
  border: 0;
  margin: 0;
  padding: 0;
}
.u-flat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.u-list-none {
  list-style: none;
}
.u-lineheight-1 {
  line-height: 1;
}
.u-lineheight-1-3 {
  line-height: 1.3;
}
.u-lineheigth-2 {
  line-height: 2;
}
.u-text-align-center {
  text-align: center;
}
.u-uppercase {
  text-transform: uppercase;
}
.u-capitalize {
  text-transform: capitalize;
}
.u-bold {
  font-weight: bold;
}
.benefit_box p {
    margin-bottom: 0px !important;
}

.benefit_box {
    background: #ffc7c7;
    padding: 30px 15px;
    min-height: 280px;
    margin-bottom: 30px;
}

.book_now a {
  background: #ed6e52;
  padding: 15px 30px;
  text-decoration: none;
  /* margin-bottom: 30px; */
}
.preparation_box ul li {
    list-style: none;
}