/**
 * Swiper 4.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 1, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color .2s;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:hover {
  color: #fff; }

.fancybox-button:focus {
  outline: none; }

.fancybox-button.fancybox-focus {
  outline: 1px dotted; }

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none; }

/* Fix IE11 */
.fancybox-button div {
  height: 100%; }

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%; }

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0; }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none; }

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none; }

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  transform-origin: 0;
  transition-property: -webkit-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401; }

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0; }

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px; }

.fancybox-navigation .fancybox-button div {
  padding: 7px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0; }

/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0;
  text-align: center;
  z-index: 99996; }

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAD6CAQAAADKSeXYAAAAYklEQVQoz42RwQ3AMAgDjfcfup8WoRykfBAK5mQHKSz5rbXJPis1hjiV3CIqgG0hLZPkVkA4p4x5oR1bVeDrdCLrW2Q0D5bcwY3TGMHbdw3mPRuOtaspYP1w//G1OIcW148H0DMCqI/3mMMAAAAASUVORK5CYII=);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -44px;
  z-index: -1; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-caption {
    padding: 12px; }
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px; }
  .fancybox-slide--image {
    padding: 6px 0; }
  .fancybox-close-small {
    right: -6px; }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px; } }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs__list a:focus::before {
  opacity: .5; }

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px); } }
@charset "UTF-8";
/*
Theme Name: FLIP
Theme URI: http://flip.co.id/
Author: Definite
Author URI: http://definite.co.id/
Description: FLIP Official Theme
Version: 1.0.0
License: 
License URI: 
Tags: 
Text Domain: flip
Domain Path: /languages
*/
/* Dependencies */
/*!
 * Bootstrap v4.1.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/* Path */
/* Spacing */
/* Color */
/* Scaffolding */
/* Fonts */
/* Headings */
/* Button */
/* Form */
/* Max Width */
/* Grid */
/* Unit-less `line-height` for use in components like buttons. */
/* Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc. */
:root {
  --blue: #3A4F95;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #ED8286;
  --red: #DD1C23;
  --orange: #F37320;
  --yellow: #ffc107;
  --green: #6EB982;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #4a4a4a;
  --secondary: #6c757d;
  --success: #6EB982;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #DD1C23;
  --light: #f8f9fa;
  --dark: #4a4a4a;
  --lighter: #F9F7F4;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #4a4a4a;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2.5px;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #3A4F95;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #2c3c70;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [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 {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 2.5px;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.4;
  color: inherit;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.25rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.display-2 {
  font-size: 1.688rem;
  font-weight: 600;
  line-height: 1.4;
}

.display-3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.display-4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

hr {
  margin-top: 5px;
  margin-bottom: 5px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.75rem;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

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

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014   \A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 2.5px;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #ED8286;
  word-break: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 580px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 860px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1080px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -30px;
  margin-left: -30px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 30px;
  padding-left: 30px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333333%;
          flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66666667%;
          flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333333%;
          flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66666667%;
          flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333333%;
          flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66666667%;
          flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333333%;
          flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66666667%;
          flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 5px;
  background-color: transparent;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #cccccc;
}

.table-hover .table-primary:hover {
  background-color: #bfbfbf;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #bfbfbf;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #d6ebdc;
}

.table-hover .table-success:hover {
  background-color: #c5e3cd;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #c5e3cd;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5bfc1;
}

.table-hover .table-danger:hover {
  background-color: #f2a9ac;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f2a9ac;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #cccccc;
}

.table-hover .table-dark:hover {
  background-color: #bfbfbf;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #bfbfbf;
}

.table-lighter,
.table-lighter > th,
.table-lighter > td {
  background-color: #fdfdfc;
}

.table-hover .table-lighter:hover {
  background-color: #f3f3ed;
}

.table-hover .table-lighter:hover > td,
.table-hover .table-lighter:hover > th {
  background-color: #f3f3ed;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.35rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #8a8a8a;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.6;
  color: #4a4a4a;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #6EB982;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #212529;
  background-color: rgba(110, 185, 130, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:valid, .form-control.is-valid, .was-validated
.custom-select:valid,
.custom-select.is-valid {
  border-color: #6EB982;
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated
.custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #6EB982;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip, .was-validated
.custom-select:valid ~ .valid-feedback,
.was-validated
.custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #6EB982;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #6EB982;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #c4e3cc;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #90caa0;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(110, 185, 130, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(110, 185, 130, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #6EB982;
}

.was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after {
  border-color: inherit;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #DD1C23;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(221, 28, 35, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  border-color: #DD1C23;
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
.custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #DD1C23;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip, .was-validated
.custom-select:invalid ~ .invalid-feedback,
.was-validated
.custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #DD1C23;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #DD1C23;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #f0898c;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e7454b;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(221, 28, 35, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(221, 28, 35, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #DD1C23;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after {
  border-color: inherit;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.25);
}

.form-inline {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    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;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    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;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 4px;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

.btn-primary:hover {
  color: #fff;
  background-color: #373737;
  border-color: #313030;
}

.btn-primary:focus, .btn-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #313030;
  border-color: #2a2a2a;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #212529;
  background-color: #6EB982;
  border-color: #6EB982;
}

.btn-success:hover {
  color: #fff;
  background-color: #54ad6c;
  border-color: #4fa566;
}

.btn-success:focus, .btn-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  color: #212529;
  background-color: #6EB982;
  border-color: #6EB982;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #4fa566;
  border-color: #4b9c61;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #DD1C23;
  border-color: #DD1C23;
}

.btn-danger:hover {
  color: #fff;
  background-color: #bb181e;
  border-color: #b0161c;
}

.btn-danger:focus, .btn-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #DD1C23;
  border-color: #DD1C23;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b0161c;
  border-color: #a4151a;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

.btn-dark:hover {
  color: #fff;
  background-color: #373737;
  border-color: #313030;
}

.btn-dark:focus, .btn-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #313030;
  border-color: #2a2a2a;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
}

.btn-lighter {
  color: #212529;
  background-color: #F9F7F4;
  border-color: #F9F7F4;
}

.btn-lighter:hover {
  color: #212529;
  background-color: #ece5db;
  border-color: #e7dfd3;
}

.btn-lighter:focus, .btn-lighter.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(249, 247, 244, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(249, 247, 244, 0.5);
}

.btn-lighter.disabled, .btn-lighter:disabled {
  color: #212529;
  background-color: #F9F7F4;
  border-color: #F9F7F4;
}

.btn-lighter:not(:disabled):not(.disabled):active, .btn-lighter:not(:disabled):not(.disabled).active,
.show > .btn-lighter.dropdown-toggle {
  color: #212529;
  background-color: #e7dfd3;
  border-color: #e3d9cb;
}

.btn-lighter:not(:disabled):not(.disabled):active:focus, .btn-lighter:not(:disabled):not(.disabled).active:focus,
.show > .btn-lighter.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(249, 247, 244, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(249, 247, 244, 0.5);
}

.btn-outline-primary {
  color: #4a4a4a;
  background-color: transparent;
  background-image: none;
  border-color: #4a4a4a;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #4a4a4a;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #6EB982;
  background-color: transparent;
  background-image: none;
  border-color: #6EB982;
}

.btn-outline-success:hover {
  color: #212529;
  background-color: #6EB982;
  border-color: #6EB982;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #6EB982;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #212529;
  background-color: #6EB982;
  border-color: #6EB982;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(110, 185, 130, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #DD1C23;
  background-color: transparent;
  background-image: none;
  border-color: #DD1C23;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #DD1C23;
  border-color: #DD1C23;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #DD1C23;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #DD1C23;
  border-color: #DD1C23;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221, 28, 35, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #4a4a4a;
  background-color: transparent;
  background-image: none;
  border-color: #4a4a4a;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #4a4a4a;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.5);
}

.btn-outline-lighter {
  color: #F9F7F4;
  background-color: transparent;
  background-image: none;
  border-color: #F9F7F4;
}

.btn-outline-lighter:hover {
  color: #212529;
  background-color: #F9F7F4;
  border-color: #F9F7F4;
}

.btn-outline-lighter:focus, .btn-outline-lighter.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(249, 247, 244, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(249, 247, 244, 0.5);
}

.btn-outline-lighter.disabled, .btn-outline-lighter:disabled {
  color: #F9F7F4;
  background-color: transparent;
}

.btn-outline-lighter:not(:disabled):not(.disabled):active, .btn-outline-lighter:not(:disabled):not(.disabled).active,
.show > .btn-outline-lighter.dropdown-toggle {
  color: #212529;
  background-color: #F9F7F4;
  border-color: #F9F7F4;
}

.btn-outline-lighter:not(:disabled):not(.disabled):active:focus, .btn-outline-lighter:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-lighter.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(249, 247, 244, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(249, 247, 244, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #3A4F95;
  background-color: transparent;
}

.btn-link:hover {
  color: #2c3c70;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #4a4a4a;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 2.5px 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #4a4a4a;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.6rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #4a4a4a;
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
}

.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #a3a3a3;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
}

.custom-control-label::before {
  position: absolute;
  top: 0.3rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #dee2e6;
}

.custom-control-label::after {
  position: absolute;
  top: 0.3rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #4a4a4a;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #4a4a4a;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(74, 74, 74, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(74, 74, 74, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #4a4a4a;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(74, 74, 74, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.35rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.6;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #8a8a8a;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(138, 138, 138, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(138, 138, 138, 0.5);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.35rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.35rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #8a8a8a;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
}

.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #8a8a8a;
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.35rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.35rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.6;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #4a4a4a;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #a3a3a3;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #4a4a4a;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #a3a3a3;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #4a4a4a;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #a3a3a3;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    transition: none;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #4a4a4a;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.5px 5px;
}

.navbar > .container,
.navbar > .container-fluid {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  margin-right: 5px;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

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

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-deck .card {
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -30px;
    margin-left: -30px;
  }
  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 30px;
    margin-bottom: 0;
    margin-left: 30px;
  }
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-group > .card {
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-top,
  .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-top,
  .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-bottom,
  .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-top,
  .card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-bottom,
  .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #3A4F95;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #2c3c70;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #4a4a4a;
}

.badge-primary[href]:hover, .badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #313030;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-secondary[href]:hover, .badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}

.badge-success {
  color: #212529;
  background-color: #6EB982;
}

.badge-success[href]:hover, .badge-success[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #4fa566;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.badge-info[href]:hover, .badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.badge-warning[href]:hover, .badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}

.badge-danger {
  color: #fff;
  background-color: #DD1C23;
}

.badge-danger[href]:hover, .badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #b0161c;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.badge-light[href]:hover, .badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

.badge-dark {
  color: #fff;
  background-color: #4a4a4a;
}

.badge-dark[href]:hover, .badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #313030;
}

.badge-lighter {
  color: #212529;
  background-color: #F9F7F4;
}

.badge-lighter[href]:hover, .badge-lighter[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #e7dfd3;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #262626;
  background-color: #dbdbdb;
  border-color: #cccccc;
}

.alert-primary hr {
  border-top-color: #bfbfbf;
}

.alert-primary .alert-link {
  color: #0d0c0c;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #396044;
  background-color: #e2f1e6;
  border-color: #d6ebdc;
}

.alert-success hr {
  border-top-color: #c5e3cd;
}

.alert-success .alert-link {
  color: #26402d;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #730f12;
  background-color: #f8d2d3;
  border-color: #f5bfc1;
}

.alert-danger hr {
  border-top-color: #f2a9ac;
}

.alert-danger .alert-link {
  color: #46090b;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #262626;
  background-color: #dbdbdb;
  border-color: #cccccc;
}

.alert-dark hr {
  border-top-color: #bfbfbf;
}

.alert-dark .alert-link {
  color: #0d0c0c;
}

.alert-lighter {
  color: #81807f;
  background-color: #fefdfd;
  border-color: #fdfdfc;
}

.alert-lighter hr {
  border-top-color: #f3f3ed;
}

.alert-lighter .alert-link {
  color: #676766;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  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;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #4a4a4a;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #4a4a4a;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item:hover, .list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

.list-group-item-primary {
  color: #262626;
  background-color: #cccccc;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #262626;
  background-color: #bfbfbf;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #262626;
  border-color: #262626;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #396044;
  background-color: #d6ebdc;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #396044;
  background-color: #c5e3cd;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #396044;
  border-color: #396044;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #730f12;
  background-color: #f5bfc1;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #730f12;
  background-color: #f2a9ac;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #730f12;
  border-color: #730f12;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #262626;
  background-color: #cccccc;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #262626;
  background-color: #bfbfbf;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #262626;
  border-color: #262626;
}

.list-group-item-lighter {
  color: #81807f;
  background-color: #fdfdfc;
}

.list-group-item-lighter.list-group-item-action:hover, .list-group-item-lighter.list-group-item-action:focus {
  color: #81807f;
  background-color: #f3f3ed;
}

.list-group-item-lighter.list-group-item-action.active {
  color: #fff;
  background-color: #81807f;
  border-color: #81807f;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.6;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}

.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}


.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}

.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}


.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  left: 1px;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow {
  top: calc((0.5rem + 1px) * -1);
}

.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}

.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}


.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}

.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}


.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  right: 1px;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #4a4a4a;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.carousel-item-next,
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-item-next,
  .active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.carousel-item-prev,
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-item-prev,
  .active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 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;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #4a4a4a !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #313030 !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #6EB982 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #4fa566 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #DD1C23 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #b0161c !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #4a4a4a !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #313030 !important;
}

.bg-lighter {
  background-color: #F9F7F4 !important;
}

a.bg-lighter:hover, a.bg-lighter:focus,
button.bg-lighter:hover,
button.bg-lighter:focus {
  background-color: #e7dfd3 !important;
}

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

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #4a4a4a !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #6EB982 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #DD1C23 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #4a4a4a !important;
}

.border-lighter {
  border-color: #F9F7F4 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

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

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

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

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

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

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

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 5px !important;
}

.mt-1,
.my-1 {
  margin-top: 5px !important;
}

.mr-1,
.mx-1 {
  margin-right: 5px !important;
}

.mb-1,
.my-1 {
  margin-bottom: 5px !important;
}

.ml-1,
.mx-1 {
  margin-left: 5px !important;
}

.m-2 {
  margin: 10px !important;
}

.mt-2,
.my-2 {
  margin-top: 10px !important;
}

.mr-2,
.mx-2 {
  margin-right: 10px !important;
}

.mb-2,
.my-2 {
  margin-bottom: 10px !important;
}

.ml-2,
.mx-2 {
  margin-left: 10px !important;
}

.m-3 {
  margin: 15px !important;
}

.mt-3,
.my-3 {
  margin-top: 15px !important;
}

.mr-3,
.mx-3 {
  margin-right: 15px !important;
}

.mb-3,
.my-3 {
  margin-bottom: 15px !important;
}

.ml-3,
.mx-3 {
  margin-left: 15px !important;
}

.m-4 {
  margin: 20px !important;
}

.mt-4,
.my-4 {
  margin-top: 20px !important;
}

.mr-4,
.mx-4 {
  margin-right: 20px !important;
}

.mb-4,
.my-4 {
  margin-bottom: 20px !important;
}

.ml-4,
.mx-4 {
  margin-left: 20px !important;
}

.m-5 {
  margin: 25px !important;
}

.mt-5,
.my-5 {
  margin-top: 25px !important;
}

.mr-5,
.mx-5 {
  margin-right: 25px !important;
}

.mb-5,
.my-5 {
  margin-bottom: 25px !important;
}

.ml-5,
.mx-5 {
  margin-left: 25px !important;
}

.m-6 {
  margin: 30px !important;
}

.mt-6,
.my-6 {
  margin-top: 30px !important;
}

.mr-6,
.mx-6 {
  margin-right: 30px !important;
}

.mb-6,
.my-6 {
  margin-bottom: 30px !important;
}

.ml-6,
.mx-6 {
  margin-left: 30px !important;
}

.m-7 {
  margin: 35px !important;
}

.mt-7,
.my-7 {
  margin-top: 35px !important;
}

.mr-7,
.mx-7 {
  margin-right: 35px !important;
}

.mb-7,
.my-7 {
  margin-bottom: 35px !important;
}

.ml-7,
.mx-7 {
  margin-left: 35px !important;
}

.m-8 {
  margin: 40px !important;
}

.mt-8,
.my-8 {
  margin-top: 40px !important;
}

.mr-8,
.mx-8 {
  margin-right: 40px !important;
}

.mb-8,
.my-8 {
  margin-bottom: 40px !important;
}

.ml-8,
.mx-8 {
  margin-left: 40px !important;
}

.m-9 {
  margin: 45px !important;
}

.mt-9,
.my-9 {
  margin-top: 45px !important;
}

.mr-9,
.mx-9 {
  margin-right: 45px !important;
}

.mb-9,
.my-9 {
  margin-bottom: 45px !important;
}

.ml-9,
.mx-9 {
  margin-left: 45px !important;
}

.m-10 {
  margin: 50px !important;
}

.mt-10,
.my-10 {
  margin-top: 50px !important;
}

.mr-10,
.mx-10 {
  margin-right: 50px !important;
}

.mb-10,
.my-10 {
  margin-bottom: 50px !important;
}

.ml-10,
.mx-10 {
  margin-left: 50px !important;
}

.m-11 {
  margin: 55px !important;
}

.mt-11,
.my-11 {
  margin-top: 55px !important;
}

.mr-11,
.mx-11 {
  margin-right: 55px !important;
}

.mb-11,
.my-11 {
  margin-bottom: 55px !important;
}

.ml-11,
.mx-11 {
  margin-left: 55px !important;
}

.m-12 {
  margin: 60px !important;
}

.mt-12,
.my-12 {
  margin-top: 60px !important;
}

.mr-12,
.mx-12 {
  margin-right: 60px !important;
}

.mb-12,
.my-12 {
  margin-bottom: 60px !important;
}

.ml-12,
.mx-12 {
  margin-left: 60px !important;
}

.m-13 {
  margin: 65px !important;
}

.mt-13,
.my-13 {
  margin-top: 65px !important;
}

.mr-13,
.mx-13 {
  margin-right: 65px !important;
}

.mb-13,
.my-13 {
  margin-bottom: 65px !important;
}

.ml-13,
.mx-13 {
  margin-left: 65px !important;
}

.m-14 {
  margin: 70px !important;
}

.mt-14,
.my-14 {
  margin-top: 70px !important;
}

.mr-14,
.mx-14 {
  margin-right: 70px !important;
}

.mb-14,
.my-14 {
  margin-bottom: 70px !important;
}

.ml-14,
.mx-14 {
  margin-left: 70px !important;
}

.m-15 {
  margin: 75px !important;
}

.mt-15,
.my-15 {
  margin-top: 75px !important;
}

.mr-15,
.mx-15 {
  margin-right: 75px !important;
}

.mb-15,
.my-15 {
  margin-bottom: 75px !important;
}

.ml-15,
.mx-15 {
  margin-left: 75px !important;
}

.m-16 {
  margin: 80px !important;
}

.mt-16,
.my-16 {
  margin-top: 80px !important;
}

.mr-16,
.mx-16 {
  margin-right: 80px !important;
}

.mb-16,
.my-16 {
  margin-bottom: 80px !important;
}

.ml-16,
.mx-16 {
  margin-left: 80px !important;
}

.m-17 {
  margin: 85px !important;
}

.mt-17,
.my-17 {
  margin-top: 85px !important;
}

.mr-17,
.mx-17 {
  margin-right: 85px !important;
}

.mb-17,
.my-17 {
  margin-bottom: 85px !important;
}

.ml-17,
.mx-17 {
  margin-left: 85px !important;
}

.m-18 {
  margin: 90px !important;
}

.mt-18,
.my-18 {
  margin-top: 90px !important;
}

.mr-18,
.mx-18 {
  margin-right: 90px !important;
}

.mb-18,
.my-18 {
  margin-bottom: 90px !important;
}

.ml-18,
.mx-18 {
  margin-left: 90px !important;
}

.m-19 {
  margin: 95px !important;
}

.mt-19,
.my-19 {
  margin-top: 95px !important;
}

.mr-19,
.mx-19 {
  margin-right: 95px !important;
}

.mb-19,
.my-19 {
  margin-bottom: 95px !important;
}

.ml-19,
.mx-19 {
  margin-left: 95px !important;
}

.m-20 {
  margin: 100px !important;
}

.mt-20,
.my-20 {
  margin-top: 100px !important;
}

.mr-20,
.mx-20 {
  margin-right: 100px !important;
}

.mb-20,
.my-20 {
  margin-bottom: 100px !important;
}

.ml-20,
.mx-20 {
  margin-left: 100px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 5px !important;
}

.pt-1,
.py-1 {
  padding-top: 5px !important;
}

.pr-1,
.px-1 {
  padding-right: 5px !important;
}

.pb-1,
.py-1 {
  padding-bottom: 5px !important;
}

.pl-1,
.px-1 {
  padding-left: 5px !important;
}

.p-2 {
  padding: 10px !important;
}

.pt-2,
.py-2 {
  padding-top: 10px !important;
}

.pr-2,
.px-2 {
  padding-right: 10px !important;
}

.pb-2,
.py-2 {
  padding-bottom: 10px !important;
}

.pl-2,
.px-2 {
  padding-left: 10px !important;
}

.p-3 {
  padding: 15px !important;
}

.pt-3,
.py-3 {
  padding-top: 15px !important;
}

.pr-3,
.px-3 {
  padding-right: 15px !important;
}

.pb-3,
.py-3 {
  padding-bottom: 15px !important;
}

.pl-3,
.px-3 {
  padding-left: 15px !important;
}

.p-4 {
  padding: 20px !important;
}

.pt-4,
.py-4 {
  padding-top: 20px !important;
}

.pr-4,
.px-4 {
  padding-right: 20px !important;
}

.pb-4,
.py-4 {
  padding-bottom: 20px !important;
}

.pl-4,
.px-4 {
  padding-left: 20px !important;
}

.p-5 {
  padding: 25px !important;
}

.pt-5,
.py-5 {
  padding-top: 25px !important;
}

.pr-5,
.px-5 {
  padding-right: 25px !important;
}

.pb-5,
.py-5 {
  padding-bottom: 25px !important;
}

.pl-5,
.px-5 {
  padding-left: 25px !important;
}

.p-6 {
  padding: 30px !important;
}

.pt-6,
.py-6 {
  padding-top: 30px !important;
}

.pr-6,
.px-6 {
  padding-right: 30px !important;
}

.pb-6,
.py-6 {
  padding-bottom: 30px !important;
}

.pl-6,
.px-6 {
  padding-left: 30px !important;
}

.p-7 {
  padding: 35px !important;
}

.pt-7,
.py-7 {
  padding-top: 35px !important;
}

.pr-7,
.px-7 {
  padding-right: 35px !important;
}

.pb-7,
.py-7 {
  padding-bottom: 35px !important;
}

.pl-7,
.px-7 {
  padding-left: 35px !important;
}

.p-8 {
  padding: 40px !important;
}

.pt-8,
.py-8 {
  padding-top: 40px !important;
}

.pr-8,
.px-8 {
  padding-right: 40px !important;
}

.pb-8,
.py-8 {
  padding-bottom: 40px !important;
}

.pl-8,
.px-8 {
  padding-left: 40px !important;
}

.p-9 {
  padding: 45px !important;
}

.pt-9,
.py-9 {
  padding-top: 45px !important;
}

.pr-9,
.px-9 {
  padding-right: 45px !important;
}

.pb-9,
.py-9 {
  padding-bottom: 45px !important;
}

.pl-9,
.px-9 {
  padding-left: 45px !important;
}

.p-10 {
  padding: 50px !important;
}

.pt-10,
.py-10 {
  padding-top: 50px !important;
}

.pr-10,
.px-10 {
  padding-right: 50px !important;
}

.pb-10,
.py-10 {
  padding-bottom: 50px !important;
}

.pl-10,
.px-10 {
  padding-left: 50px !important;
}

.p-11 {
  padding: 55px !important;
}

.pt-11,
.py-11 {
  padding-top: 55px !important;
}

.pr-11,
.px-11 {
  padding-right: 55px !important;
}

.pb-11,
.py-11 {
  padding-bottom: 55px !important;
}

.pl-11,
.px-11 {
  padding-left: 55px !important;
}

.p-12 {
  padding: 60px !important;
}

.pt-12,
.py-12 {
  padding-top: 60px !important;
}

.pr-12,
.px-12 {
  padding-right: 60px !important;
}

.pb-12,
.py-12 {
  padding-bottom: 60px !important;
}

.pl-12,
.px-12 {
  padding-left: 60px !important;
}

.p-13 {
  padding: 65px !important;
}

.pt-13,
.py-13 {
  padding-top: 65px !important;
}

.pr-13,
.px-13 {
  padding-right: 65px !important;
}

.pb-13,
.py-13 {
  padding-bottom: 65px !important;
}

.pl-13,
.px-13 {
  padding-left: 65px !important;
}

.p-14 {
  padding: 70px !important;
}

.pt-14,
.py-14 {
  padding-top: 70px !important;
}

.pr-14,
.px-14 {
  padding-right: 70px !important;
}

.pb-14,
.py-14 {
  padding-bottom: 70px !important;
}

.pl-14,
.px-14 {
  padding-left: 70px !important;
}

.p-15 {
  padding: 75px !important;
}

.pt-15,
.py-15 {
  padding-top: 75px !important;
}

.pr-15,
.px-15 {
  padding-right: 75px !important;
}

.pb-15,
.py-15 {
  padding-bottom: 75px !important;
}

.pl-15,
.px-15 {
  padding-left: 75px !important;
}

.p-16 {
  padding: 80px !important;
}

.pt-16,
.py-16 {
  padding-top: 80px !important;
}

.pr-16,
.px-16 {
  padding-right: 80px !important;
}

.pb-16,
.py-16 {
  padding-bottom: 80px !important;
}

.pl-16,
.px-16 {
  padding-left: 80px !important;
}

.p-17 {
  padding: 85px !important;
}

.pt-17,
.py-17 {
  padding-top: 85px !important;
}

.pr-17,
.px-17 {
  padding-right: 85px !important;
}

.pb-17,
.py-17 {
  padding-bottom: 85px !important;
}

.pl-17,
.px-17 {
  padding-left: 85px !important;
}

.p-18 {
  padding: 90px !important;
}

.pt-18,
.py-18 {
  padding-top: 90px !important;
}

.pr-18,
.px-18 {
  padding-right: 90px !important;
}

.pb-18,
.py-18 {
  padding-bottom: 90px !important;
}

.pl-18,
.px-18 {
  padding-left: 90px !important;
}

.p-19 {
  padding: 95px !important;
}

.pt-19,
.py-19 {
  padding-top: 95px !important;
}

.pr-19,
.px-19 {
  padding-right: 95px !important;
}

.pb-19,
.py-19 {
  padding-bottom: 95px !important;
}

.pl-19,
.px-19 {
  padding-left: 95px !important;
}

.p-20 {
  padding: 100px !important;
}

.pt-20,
.py-20 {
  padding-top: 100px !important;
}

.pr-20,
.px-20 {
  padding-right: 100px !important;
}

.pb-20,
.py-20 {
  padding-bottom: 100px !important;
}

.pl-20,
.px-20 {
  padding-left: 100px !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 5px !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 5px !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 5px !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 5px !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 5px !important;
  }
  .m-sm-2 {
    margin: 10px !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 10px !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 10px !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 10px !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 10px !important;
  }
  .m-sm-3 {
    margin: 15px !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 15px !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 15px !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 15px !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 15px !important;
  }
  .m-sm-4 {
    margin: 20px !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 20px !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 20px !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 20px !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 20px !important;
  }
  .m-sm-5 {
    margin: 25px !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 25px !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 25px !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 25px !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 25px !important;
  }
  .m-sm-6 {
    margin: 30px !important;
  }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 30px !important;
  }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 30px !important;
  }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 30px !important;
  }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 30px !important;
  }
  .m-sm-7 {
    margin: 35px !important;
  }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 35px !important;
  }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 35px !important;
  }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 35px !important;
  }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 35px !important;
  }
  .m-sm-8 {
    margin: 40px !important;
  }
  .mt-sm-8,
  .my-sm-8 {
    margin-top: 40px !important;
  }
  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 40px !important;
  }
  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 40px !important;
  }
  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 40px !important;
  }
  .m-sm-9 {
    margin: 45px !important;
  }
  .mt-sm-9,
  .my-sm-9 {
    margin-top: 45px !important;
  }
  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 45px !important;
  }
  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 45px !important;
  }
  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 45px !important;
  }
  .m-sm-10 {
    margin: 50px !important;
  }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 50px !important;
  }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 50px !important;
  }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 50px !important;
  }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 50px !important;
  }
  .m-sm-11 {
    margin: 55px !important;
  }
  .mt-sm-11,
  .my-sm-11 {
    margin-top: 55px !important;
  }
  .mr-sm-11,
  .mx-sm-11 {
    margin-right: 55px !important;
  }
  .mb-sm-11,
  .my-sm-11 {
    margin-bottom: 55px !important;
  }
  .ml-sm-11,
  .mx-sm-11 {
    margin-left: 55px !important;
  }
  .m-sm-12 {
    margin: 60px !important;
  }
  .mt-sm-12,
  .my-sm-12 {
    margin-top: 60px !important;
  }
  .mr-sm-12,
  .mx-sm-12 {
    margin-right: 60px !important;
  }
  .mb-sm-12,
  .my-sm-12 {
    margin-bottom: 60px !important;
  }
  .ml-sm-12,
  .mx-sm-12 {
    margin-left: 60px !important;
  }
  .m-sm-13 {
    margin: 65px !important;
  }
  .mt-sm-13,
  .my-sm-13 {
    margin-top: 65px !important;
  }
  .mr-sm-13,
  .mx-sm-13 {
    margin-right: 65px !important;
  }
  .mb-sm-13,
  .my-sm-13 {
    margin-bottom: 65px !important;
  }
  .ml-sm-13,
  .mx-sm-13 {
    margin-left: 65px !important;
  }
  .m-sm-14 {
    margin: 70px !important;
  }
  .mt-sm-14,
  .my-sm-14 {
    margin-top: 70px !important;
  }
  .mr-sm-14,
  .mx-sm-14 {
    margin-right: 70px !important;
  }
  .mb-sm-14,
  .my-sm-14 {
    margin-bottom: 70px !important;
  }
  .ml-sm-14,
  .mx-sm-14 {
    margin-left: 70px !important;
  }
  .m-sm-15 {
    margin: 75px !important;
  }
  .mt-sm-15,
  .my-sm-15 {
    margin-top: 75px !important;
  }
  .mr-sm-15,
  .mx-sm-15 {
    margin-right: 75px !important;
  }
  .mb-sm-15,
  .my-sm-15 {
    margin-bottom: 75px !important;
  }
  .ml-sm-15,
  .mx-sm-15 {
    margin-left: 75px !important;
  }
  .m-sm-16 {
    margin: 80px !important;
  }
  .mt-sm-16,
  .my-sm-16 {
    margin-top: 80px !important;
  }
  .mr-sm-16,
  .mx-sm-16 {
    margin-right: 80px !important;
  }
  .mb-sm-16,
  .my-sm-16 {
    margin-bottom: 80px !important;
  }
  .ml-sm-16,
  .mx-sm-16 {
    margin-left: 80px !important;
  }
  .m-sm-17 {
    margin: 85px !important;
  }
  .mt-sm-17,
  .my-sm-17 {
    margin-top: 85px !important;
  }
  .mr-sm-17,
  .mx-sm-17 {
    margin-right: 85px !important;
  }
  .mb-sm-17,
  .my-sm-17 {
    margin-bottom: 85px !important;
  }
  .ml-sm-17,
  .mx-sm-17 {
    margin-left: 85px !important;
  }
  .m-sm-18 {
    margin: 90px !important;
  }
  .mt-sm-18,
  .my-sm-18 {
    margin-top: 90px !important;
  }
  .mr-sm-18,
  .mx-sm-18 {
    margin-right: 90px !important;
  }
  .mb-sm-18,
  .my-sm-18 {
    margin-bottom: 90px !important;
  }
  .ml-sm-18,
  .mx-sm-18 {
    margin-left: 90px !important;
  }
  .m-sm-19 {
    margin: 95px !important;
  }
  .mt-sm-19,
  .my-sm-19 {
    margin-top: 95px !important;
  }
  .mr-sm-19,
  .mx-sm-19 {
    margin-right: 95px !important;
  }
  .mb-sm-19,
  .my-sm-19 {
    margin-bottom: 95px !important;
  }
  .ml-sm-19,
  .mx-sm-19 {
    margin-left: 95px !important;
  }
  .m-sm-20 {
    margin: 100px !important;
  }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 100px !important;
  }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 100px !important;
  }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 100px !important;
  }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 100px !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 5px !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 5px !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 5px !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 5px !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 5px !important;
  }
  .p-sm-2 {
    padding: 10px !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 10px !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 10px !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 10px !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 10px !important;
  }
  .p-sm-3 {
    padding: 15px !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 15px !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 15px !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 15px !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 15px !important;
  }
  .p-sm-4 {
    padding: 20px !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 20px !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 20px !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 20px !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 20px !important;
  }
  .p-sm-5 {
    padding: 25px !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 25px !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 25px !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 25px !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 25px !important;
  }
  .p-sm-6 {
    padding: 30px !important;
  }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 30px !important;
  }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 30px !important;
  }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 30px !important;
  }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 30px !important;
  }
  .p-sm-7 {
    padding: 35px !important;
  }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 35px !important;
  }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 35px !important;
  }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 35px !important;
  }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 35px !important;
  }
  .p-sm-8 {
    padding: 40px !important;
  }
  .pt-sm-8,
  .py-sm-8 {
    padding-top: 40px !important;
  }
  .pr-sm-8,
  .px-sm-8 {
    padding-right: 40px !important;
  }
  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 40px !important;
  }
  .pl-sm-8,
  .px-sm-8 {
    padding-left: 40px !important;
  }
  .p-sm-9 {
    padding: 45px !important;
  }
  .pt-sm-9,
  .py-sm-9 {
    padding-top: 45px !important;
  }
  .pr-sm-9,
  .px-sm-9 {
    padding-right: 45px !important;
  }
  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 45px !important;
  }
  .pl-sm-9,
  .px-sm-9 {
    padding-left: 45px !important;
  }
  .p-sm-10 {
    padding: 50px !important;
  }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 50px !important;
  }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 50px !important;
  }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 50px !important;
  }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 50px !important;
  }
  .p-sm-11 {
    padding: 55px !important;
  }
  .pt-sm-11,
  .py-sm-11 {
    padding-top: 55px !important;
  }
  .pr-sm-11,
  .px-sm-11 {
    padding-right: 55px !important;
  }
  .pb-sm-11,
  .py-sm-11 {
    padding-bottom: 55px !important;
  }
  .pl-sm-11,
  .px-sm-11 {
    padding-left: 55px !important;
  }
  .p-sm-12 {
    padding: 60px !important;
  }
  .pt-sm-12,
  .py-sm-12 {
    padding-top: 60px !important;
  }
  .pr-sm-12,
  .px-sm-12 {
    padding-right: 60px !important;
  }
  .pb-sm-12,
  .py-sm-12 {
    padding-bottom: 60px !important;
  }
  .pl-sm-12,
  .px-sm-12 {
    padding-left: 60px !important;
  }
  .p-sm-13 {
    padding: 65px !important;
  }
  .pt-sm-13,
  .py-sm-13 {
    padding-top: 65px !important;
  }
  .pr-sm-13,
  .px-sm-13 {
    padding-right: 65px !important;
  }
  .pb-sm-13,
  .py-sm-13 {
    padding-bottom: 65px !important;
  }
  .pl-sm-13,
  .px-sm-13 {
    padding-left: 65px !important;
  }
  .p-sm-14 {
    padding: 70px !important;
  }
  .pt-sm-14,
  .py-sm-14 {
    padding-top: 70px !important;
  }
  .pr-sm-14,
  .px-sm-14 {
    padding-right: 70px !important;
  }
  .pb-sm-14,
  .py-sm-14 {
    padding-bottom: 70px !important;
  }
  .pl-sm-14,
  .px-sm-14 {
    padding-left: 70px !important;
  }
  .p-sm-15 {
    padding: 75px !important;
  }
  .pt-sm-15,
  .py-sm-15 {
    padding-top: 75px !important;
  }
  .pr-sm-15,
  .px-sm-15 {
    padding-right: 75px !important;
  }
  .pb-sm-15,
  .py-sm-15 {
    padding-bottom: 75px !important;
  }
  .pl-sm-15,
  .px-sm-15 {
    padding-left: 75px !important;
  }
  .p-sm-16 {
    padding: 80px !important;
  }
  .pt-sm-16,
  .py-sm-16 {
    padding-top: 80px !important;
  }
  .pr-sm-16,
  .px-sm-16 {
    padding-right: 80px !important;
  }
  .pb-sm-16,
  .py-sm-16 {
    padding-bottom: 80px !important;
  }
  .pl-sm-16,
  .px-sm-16 {
    padding-left: 80px !important;
  }
  .p-sm-17 {
    padding: 85px !important;
  }
  .pt-sm-17,
  .py-sm-17 {
    padding-top: 85px !important;
  }
  .pr-sm-17,
  .px-sm-17 {
    padding-right: 85px !important;
  }
  .pb-sm-17,
  .py-sm-17 {
    padding-bottom: 85px !important;
  }
  .pl-sm-17,
  .px-sm-17 {
    padding-left: 85px !important;
  }
  .p-sm-18 {
    padding: 90px !important;
  }
  .pt-sm-18,
  .py-sm-18 {
    padding-top: 90px !important;
  }
  .pr-sm-18,
  .px-sm-18 {
    padding-right: 90px !important;
  }
  .pb-sm-18,
  .py-sm-18 {
    padding-bottom: 90px !important;
  }
  .pl-sm-18,
  .px-sm-18 {
    padding-left: 90px !important;
  }
  .p-sm-19 {
    padding: 95px !important;
  }
  .pt-sm-19,
  .py-sm-19 {
    padding-top: 95px !important;
  }
  .pr-sm-19,
  .px-sm-19 {
    padding-right: 95px !important;
  }
  .pb-sm-19,
  .py-sm-19 {
    padding-bottom: 95px !important;
  }
  .pl-sm-19,
  .px-sm-19 {
    padding-left: 95px !important;
  }
  .p-sm-20 {
    padding: 100px !important;
  }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 100px !important;
  }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 100px !important;
  }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 100px !important;
  }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 100px !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 5px !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 5px !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 5px !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 5px !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 5px !important;
  }
  .m-md-2 {
    margin: 10px !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 10px !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 10px !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 10px !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 10px !important;
  }
  .m-md-3 {
    margin: 15px !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 15px !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 15px !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 15px !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 15px !important;
  }
  .m-md-4 {
    margin: 20px !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 20px !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 20px !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 20px !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 20px !important;
  }
  .m-md-5 {
    margin: 25px !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 25px !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 25px !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 25px !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 25px !important;
  }
  .m-md-6 {
    margin: 30px !important;
  }
  .mt-md-6,
  .my-md-6 {
    margin-top: 30px !important;
  }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 30px !important;
  }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 30px !important;
  }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 30px !important;
  }
  .m-md-7 {
    margin: 35px !important;
  }
  .mt-md-7,
  .my-md-7 {
    margin-top: 35px !important;
  }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 35px !important;
  }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 35px !important;
  }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 35px !important;
  }
  .m-md-8 {
    margin: 40px !important;
  }
  .mt-md-8,
  .my-md-8 {
    margin-top: 40px !important;
  }
  .mr-md-8,
  .mx-md-8 {
    margin-right: 40px !important;
  }
  .mb-md-8,
  .my-md-8 {
    margin-bottom: 40px !important;
  }
  .ml-md-8,
  .mx-md-8 {
    margin-left: 40px !important;
  }
  .m-md-9 {
    margin: 45px !important;
  }
  .mt-md-9,
  .my-md-9 {
    margin-top: 45px !important;
  }
  .mr-md-9,
  .mx-md-9 {
    margin-right: 45px !important;
  }
  .mb-md-9,
  .my-md-9 {
    margin-bottom: 45px !important;
  }
  .ml-md-9,
  .mx-md-9 {
    margin-left: 45px !important;
  }
  .m-md-10 {
    margin: 50px !important;
  }
  .mt-md-10,
  .my-md-10 {
    margin-top: 50px !important;
  }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 50px !important;
  }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 50px !important;
  }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 50px !important;
  }
  .m-md-11 {
    margin: 55px !important;
  }
  .mt-md-11,
  .my-md-11 {
    margin-top: 55px !important;
  }
  .mr-md-11,
  .mx-md-11 {
    margin-right: 55px !important;
  }
  .mb-md-11,
  .my-md-11 {
    margin-bottom: 55px !important;
  }
  .ml-md-11,
  .mx-md-11 {
    margin-left: 55px !important;
  }
  .m-md-12 {
    margin: 60px !important;
  }
  .mt-md-12,
  .my-md-12 {
    margin-top: 60px !important;
  }
  .mr-md-12,
  .mx-md-12 {
    margin-right: 60px !important;
  }
  .mb-md-12,
  .my-md-12 {
    margin-bottom: 60px !important;
  }
  .ml-md-12,
  .mx-md-12 {
    margin-left: 60px !important;
  }
  .m-md-13 {
    margin: 65px !important;
  }
  .mt-md-13,
  .my-md-13 {
    margin-top: 65px !important;
  }
  .mr-md-13,
  .mx-md-13 {
    margin-right: 65px !important;
  }
  .mb-md-13,
  .my-md-13 {
    margin-bottom: 65px !important;
  }
  .ml-md-13,
  .mx-md-13 {
    margin-left: 65px !important;
  }
  .m-md-14 {
    margin: 70px !important;
  }
  .mt-md-14,
  .my-md-14 {
    margin-top: 70px !important;
  }
  .mr-md-14,
  .mx-md-14 {
    margin-right: 70px !important;
  }
  .mb-md-14,
  .my-md-14 {
    margin-bottom: 70px !important;
  }
  .ml-md-14,
  .mx-md-14 {
    margin-left: 70px !important;
  }
  .m-md-15 {
    margin: 75px !important;
  }
  .mt-md-15,
  .my-md-15 {
    margin-top: 75px !important;
  }
  .mr-md-15,
  .mx-md-15 {
    margin-right: 75px !important;
  }
  .mb-md-15,
  .my-md-15 {
    margin-bottom: 75px !important;
  }
  .ml-md-15,
  .mx-md-15 {
    margin-left: 75px !important;
  }
  .m-md-16 {
    margin: 80px !important;
  }
  .mt-md-16,
  .my-md-16 {
    margin-top: 80px !important;
  }
  .mr-md-16,
  .mx-md-16 {
    margin-right: 80px !important;
  }
  .mb-md-16,
  .my-md-16 {
    margin-bottom: 80px !important;
  }
  .ml-md-16,
  .mx-md-16 {
    margin-left: 80px !important;
  }
  .m-md-17 {
    margin: 85px !important;
  }
  .mt-md-17,
  .my-md-17 {
    margin-top: 85px !important;
  }
  .mr-md-17,
  .mx-md-17 {
    margin-right: 85px !important;
  }
  .mb-md-17,
  .my-md-17 {
    margin-bottom: 85px !important;
  }
  .ml-md-17,
  .mx-md-17 {
    margin-left: 85px !important;
  }
  .m-md-18 {
    margin: 90px !important;
  }
  .mt-md-18,
  .my-md-18 {
    margin-top: 90px !important;
  }
  .mr-md-18,
  .mx-md-18 {
    margin-right: 90px !important;
  }
  .mb-md-18,
  .my-md-18 {
    margin-bottom: 90px !important;
  }
  .ml-md-18,
  .mx-md-18 {
    margin-left: 90px !important;
  }
  .m-md-19 {
    margin: 95px !important;
  }
  .mt-md-19,
  .my-md-19 {
    margin-top: 95px !important;
  }
  .mr-md-19,
  .mx-md-19 {
    margin-right: 95px !important;
  }
  .mb-md-19,
  .my-md-19 {
    margin-bottom: 95px !important;
  }
  .ml-md-19,
  .mx-md-19 {
    margin-left: 95px !important;
  }
  .m-md-20 {
    margin: 100px !important;
  }
  .mt-md-20,
  .my-md-20 {
    margin-top: 100px !important;
  }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 100px !important;
  }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 100px !important;
  }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 100px !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 5px !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 5px !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 5px !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 5px !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 5px !important;
  }
  .p-md-2 {
    padding: 10px !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 10px !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 10px !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 10px !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 10px !important;
  }
  .p-md-3 {
    padding: 15px !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 15px !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 15px !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 15px !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 15px !important;
  }
  .p-md-4 {
    padding: 20px !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 20px !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 20px !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 20px !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 20px !important;
  }
  .p-md-5 {
    padding: 25px !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 25px !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 25px !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 25px !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 25px !important;
  }
  .p-md-6 {
    padding: 30px !important;
  }
  .pt-md-6,
  .py-md-6 {
    padding-top: 30px !important;
  }
  .pr-md-6,
  .px-md-6 {
    padding-right: 30px !important;
  }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 30px !important;
  }
  .pl-md-6,
  .px-md-6 {
    padding-left: 30px !important;
  }
  .p-md-7 {
    padding: 35px !important;
  }
  .pt-md-7,
  .py-md-7 {
    padding-top: 35px !important;
  }
  .pr-md-7,
  .px-md-7 {
    padding-right: 35px !important;
  }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 35px !important;
  }
  .pl-md-7,
  .px-md-7 {
    padding-left: 35px !important;
  }
  .p-md-8 {
    padding: 40px !important;
  }
  .pt-md-8,
  .py-md-8 {
    padding-top: 40px !important;
  }
  .pr-md-8,
  .px-md-8 {
    padding-right: 40px !important;
  }
  .pb-md-8,
  .py-md-8 {
    padding-bottom: 40px !important;
  }
  .pl-md-8,
  .px-md-8 {
    padding-left: 40px !important;
  }
  .p-md-9 {
    padding: 45px !important;
  }
  .pt-md-9,
  .py-md-9 {
    padding-top: 45px !important;
  }
  .pr-md-9,
  .px-md-9 {
    padding-right: 45px !important;
  }
  .pb-md-9,
  .py-md-9 {
    padding-bottom: 45px !important;
  }
  .pl-md-9,
  .px-md-9 {
    padding-left: 45px !important;
  }
  .p-md-10 {
    padding: 50px !important;
  }
  .pt-md-10,
  .py-md-10 {
    padding-top: 50px !important;
  }
  .pr-md-10,
  .px-md-10 {
    padding-right: 50px !important;
  }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 50px !important;
  }
  .pl-md-10,
  .px-md-10 {
    padding-left: 50px !important;
  }
  .p-md-11 {
    padding: 55px !important;
  }
  .pt-md-11,
  .py-md-11 {
    padding-top: 55px !important;
  }
  .pr-md-11,
  .px-md-11 {
    padding-right: 55px !important;
  }
  .pb-md-11,
  .py-md-11 {
    padding-bottom: 55px !important;
  }
  .pl-md-11,
  .px-md-11 {
    padding-left: 55px !important;
  }
  .p-md-12 {
    padding: 60px !important;
  }
  .pt-md-12,
  .py-md-12 {
    padding-top: 60px !important;
  }
  .pr-md-12,
  .px-md-12 {
    padding-right: 60px !important;
  }
  .pb-md-12,
  .py-md-12 {
    padding-bottom: 60px !important;
  }
  .pl-md-12,
  .px-md-12 {
    padding-left: 60px !important;
  }
  .p-md-13 {
    padding: 65px !important;
  }
  .pt-md-13,
  .py-md-13 {
    padding-top: 65px !important;
  }
  .pr-md-13,
  .px-md-13 {
    padding-right: 65px !important;
  }
  .pb-md-13,
  .py-md-13 {
    padding-bottom: 65px !important;
  }
  .pl-md-13,
  .px-md-13 {
    padding-left: 65px !important;
  }
  .p-md-14 {
    padding: 70px !important;
  }
  .pt-md-14,
  .py-md-14 {
    padding-top: 70px !important;
  }
  .pr-md-14,
  .px-md-14 {
    padding-right: 70px !important;
  }
  .pb-md-14,
  .py-md-14 {
    padding-bottom: 70px !important;
  }
  .pl-md-14,
  .px-md-14 {
    padding-left: 70px !important;
  }
  .p-md-15 {
    padding: 75px !important;
  }
  .pt-md-15,
  .py-md-15 {
    padding-top: 75px !important;
  }
  .pr-md-15,
  .px-md-15 {
    padding-right: 75px !important;
  }
  .pb-md-15,
  .py-md-15 {
    padding-bottom: 75px !important;
  }
  .pl-md-15,
  .px-md-15 {
    padding-left: 75px !important;
  }
  .p-md-16 {
    padding: 80px !important;
  }
  .pt-md-16,
  .py-md-16 {
    padding-top: 80px !important;
  }
  .pr-md-16,
  .px-md-16 {
    padding-right: 80px !important;
  }
  .pb-md-16,
  .py-md-16 {
    padding-bottom: 80px !important;
  }
  .pl-md-16,
  .px-md-16 {
    padding-left: 80px !important;
  }
  .p-md-17 {
    padding: 85px !important;
  }
  .pt-md-17,
  .py-md-17 {
    padding-top: 85px !important;
  }
  .pr-md-17,
  .px-md-17 {
    padding-right: 85px !important;
  }
  .pb-md-17,
  .py-md-17 {
    padding-bottom: 85px !important;
  }
  .pl-md-17,
  .px-md-17 {
    padding-left: 85px !important;
  }
  .p-md-18 {
    padding: 90px !important;
  }
  .pt-md-18,
  .py-md-18 {
    padding-top: 90px !important;
  }
  .pr-md-18,
  .px-md-18 {
    padding-right: 90px !important;
  }
  .pb-md-18,
  .py-md-18 {
    padding-bottom: 90px !important;
  }
  .pl-md-18,
  .px-md-18 {
    padding-left: 90px !important;
  }
  .p-md-19 {
    padding: 95px !important;
  }
  .pt-md-19,
  .py-md-19 {
    padding-top: 95px !important;
  }
  .pr-md-19,
  .px-md-19 {
    padding-right: 95px !important;
  }
  .pb-md-19,
  .py-md-19 {
    padding-bottom: 95px !important;
  }
  .pl-md-19,
  .px-md-19 {
    padding-left: 95px !important;
  }
  .p-md-20 {
    padding: 100px !important;
  }
  .pt-md-20,
  .py-md-20 {
    padding-top: 100px !important;
  }
  .pr-md-20,
  .px-md-20 {
    padding-right: 100px !important;
  }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 100px !important;
  }
  .pl-md-20,
  .px-md-20 {
    padding-left: 100px !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 5px !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 5px !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 5px !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 5px !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 5px !important;
  }
  .m-lg-2 {
    margin: 10px !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 10px !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 10px !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 10px !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 10px !important;
  }
  .m-lg-3 {
    margin: 15px !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 15px !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 15px !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 15px !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 15px !important;
  }
  .m-lg-4 {
    margin: 20px !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 20px !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 20px !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 20px !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 20px !important;
  }
  .m-lg-5 {
    margin: 25px !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 25px !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 25px !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 25px !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 25px !important;
  }
  .m-lg-6 {
    margin: 30px !important;
  }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 30px !important;
  }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 30px !important;
  }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 30px !important;
  }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 30px !important;
  }
  .m-lg-7 {
    margin: 35px !important;
  }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 35px !important;
  }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 35px !important;
  }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 35px !important;
  }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 35px !important;
  }
  .m-lg-8 {
    margin: 40px !important;
  }
  .mt-lg-8,
  .my-lg-8 {
    margin-top: 40px !important;
  }
  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 40px !important;
  }
  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 40px !important;
  }
  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 40px !important;
  }
  .m-lg-9 {
    margin: 45px !important;
  }
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 45px !important;
  }
  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 45px !important;
  }
  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 45px !important;
  }
  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 45px !important;
  }
  .m-lg-10 {
    margin: 50px !important;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 50px !important;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 50px !important;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 50px !important;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 50px !important;
  }
  .m-lg-11 {
    margin: 55px !important;
  }
  .mt-lg-11,
  .my-lg-11 {
    margin-top: 55px !important;
  }
  .mr-lg-11,
  .mx-lg-11 {
    margin-right: 55px !important;
  }
  .mb-lg-11,
  .my-lg-11 {
    margin-bottom: 55px !important;
  }
  .ml-lg-11,
  .mx-lg-11 {
    margin-left: 55px !important;
  }
  .m-lg-12 {
    margin: 60px !important;
  }
  .mt-lg-12,
  .my-lg-12 {
    margin-top: 60px !important;
  }
  .mr-lg-12,
  .mx-lg-12 {
    margin-right: 60px !important;
  }
  .mb-lg-12,
  .my-lg-12 {
    margin-bottom: 60px !important;
  }
  .ml-lg-12,
  .mx-lg-12 {
    margin-left: 60px !important;
  }
  .m-lg-13 {
    margin: 65px !important;
  }
  .mt-lg-13,
  .my-lg-13 {
    margin-top: 65px !important;
  }
  .mr-lg-13,
  .mx-lg-13 {
    margin-right: 65px !important;
  }
  .mb-lg-13,
  .my-lg-13 {
    margin-bottom: 65px !important;
  }
  .ml-lg-13,
  .mx-lg-13 {
    margin-left: 65px !important;
  }
  .m-lg-14 {
    margin: 70px !important;
  }
  .mt-lg-14,
  .my-lg-14 {
    margin-top: 70px !important;
  }
  .mr-lg-14,
  .mx-lg-14 {
    margin-right: 70px !important;
  }
  .mb-lg-14,
  .my-lg-14 {
    margin-bottom: 70px !important;
  }
  .ml-lg-14,
  .mx-lg-14 {
    margin-left: 70px !important;
  }
  .m-lg-15 {
    margin: 75px !important;
  }
  .mt-lg-15,
  .my-lg-15 {
    margin-top: 75px !important;
  }
  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 75px !important;
  }
  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 75px !important;
  }
  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 75px !important;
  }
  .m-lg-16 {
    margin: 80px !important;
  }
  .mt-lg-16,
  .my-lg-16 {
    margin-top: 80px !important;
  }
  .mr-lg-16,
  .mx-lg-16 {
    margin-right: 80px !important;
  }
  .mb-lg-16,
  .my-lg-16 {
    margin-bottom: 80px !important;
  }
  .ml-lg-16,
  .mx-lg-16 {
    margin-left: 80px !important;
  }
  .m-lg-17 {
    margin: 85px !important;
  }
  .mt-lg-17,
  .my-lg-17 {
    margin-top: 85px !important;
  }
  .mr-lg-17,
  .mx-lg-17 {
    margin-right: 85px !important;
  }
  .mb-lg-17,
  .my-lg-17 {
    margin-bottom: 85px !important;
  }
  .ml-lg-17,
  .mx-lg-17 {
    margin-left: 85px !important;
  }
  .m-lg-18 {
    margin: 90px !important;
  }
  .mt-lg-18,
  .my-lg-18 {
    margin-top: 90px !important;
  }
  .mr-lg-18,
  .mx-lg-18 {
    margin-right: 90px !important;
  }
  .mb-lg-18,
  .my-lg-18 {
    margin-bottom: 90px !important;
  }
  .ml-lg-18,
  .mx-lg-18 {
    margin-left: 90px !important;
  }
  .m-lg-19 {
    margin: 95px !important;
  }
  .mt-lg-19,
  .my-lg-19 {
    margin-top: 95px !important;
  }
  .mr-lg-19,
  .mx-lg-19 {
    margin-right: 95px !important;
  }
  .mb-lg-19,
  .my-lg-19 {
    margin-bottom: 95px !important;
  }
  .ml-lg-19,
  .mx-lg-19 {
    margin-left: 95px !important;
  }
  .m-lg-20 {
    margin: 100px !important;
  }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 100px !important;
  }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 100px !important;
  }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 100px !important;
  }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 100px !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 5px !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 5px !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 5px !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 5px !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 5px !important;
  }
  .p-lg-2 {
    padding: 10px !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 10px !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 10px !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 10px !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 10px !important;
  }
  .p-lg-3 {
    padding: 15px !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 15px !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 15px !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 15px !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 15px !important;
  }
  .p-lg-4 {
    padding: 20px !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 20px !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 20px !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 20px !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 20px !important;
  }
  .p-lg-5 {
    padding: 25px !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 25px !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 25px !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 25px !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 25px !important;
  }
  .p-lg-6 {
    padding: 30px !important;
  }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 30px !important;
  }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 30px !important;
  }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 30px !important;
  }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 30px !important;
  }
  .p-lg-7 {
    padding: 35px !important;
  }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 35px !important;
  }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 35px !important;
  }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 35px !important;
  }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 35px !important;
  }
  .p-lg-8 {
    padding: 40px !important;
  }
  .pt-lg-8,
  .py-lg-8 {
    padding-top: 40px !important;
  }
  .pr-lg-8,
  .px-lg-8 {
    padding-right: 40px !important;
  }
  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 40px !important;
  }
  .pl-lg-8,
  .px-lg-8 {
    padding-left: 40px !important;
  }
  .p-lg-9 {
    padding: 45px !important;
  }
  .pt-lg-9,
  .py-lg-9 {
    padding-top: 45px !important;
  }
  .pr-lg-9,
  .px-lg-9 {
    padding-right: 45px !important;
  }
  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 45px !important;
  }
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 45px !important;
  }
  .p-lg-10 {
    padding: 50px !important;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 50px !important;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 50px !important;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 50px !important;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 50px !important;
  }
  .p-lg-11 {
    padding: 55px !important;
  }
  .pt-lg-11,
  .py-lg-11 {
    padding-top: 55px !important;
  }
  .pr-lg-11,
  .px-lg-11 {
    padding-right: 55px !important;
  }
  .pb-lg-11,
  .py-lg-11 {
    padding-bottom: 55px !important;
  }
  .pl-lg-11,
  .px-lg-11 {
    padding-left: 55px !important;
  }
  .p-lg-12 {
    padding: 60px !important;
  }
  .pt-lg-12,
  .py-lg-12 {
    padding-top: 60px !important;
  }
  .pr-lg-12,
  .px-lg-12 {
    padding-right: 60px !important;
  }
  .pb-lg-12,
  .py-lg-12 {
    padding-bottom: 60px !important;
  }
  .pl-lg-12,
  .px-lg-12 {
    padding-left: 60px !important;
  }
  .p-lg-13 {
    padding: 65px !important;
  }
  .pt-lg-13,
  .py-lg-13 {
    padding-top: 65px !important;
  }
  .pr-lg-13,
  .px-lg-13 {
    padding-right: 65px !important;
  }
  .pb-lg-13,
  .py-lg-13 {
    padding-bottom: 65px !important;
  }
  .pl-lg-13,
  .px-lg-13 {
    padding-left: 65px !important;
  }
  .p-lg-14 {
    padding: 70px !important;
  }
  .pt-lg-14,
  .py-lg-14 {
    padding-top: 70px !important;
  }
  .pr-lg-14,
  .px-lg-14 {
    padding-right: 70px !important;
  }
  .pb-lg-14,
  .py-lg-14 {
    padding-bottom: 70px !important;
  }
  .pl-lg-14,
  .px-lg-14 {
    padding-left: 70px !important;
  }
  .p-lg-15 {
    padding: 75px !important;
  }
  .pt-lg-15,
  .py-lg-15 {
    padding-top: 75px !important;
  }
  .pr-lg-15,
  .px-lg-15 {
    padding-right: 75px !important;
  }
  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 75px !important;
  }
  .pl-lg-15,
  .px-lg-15 {
    padding-left: 75px !important;
  }
  .p-lg-16 {
    padding: 80px !important;
  }
  .pt-lg-16,
  .py-lg-16 {
    padding-top: 80px !important;
  }
  .pr-lg-16,
  .px-lg-16 {
    padding-right: 80px !important;
  }
  .pb-lg-16,
  .py-lg-16 {
    padding-bottom: 80px !important;
  }
  .pl-lg-16,
  .px-lg-16 {
    padding-left: 80px !important;
  }
  .p-lg-17 {
    padding: 85px !important;
  }
  .pt-lg-17,
  .py-lg-17 {
    padding-top: 85px !important;
  }
  .pr-lg-17,
  .px-lg-17 {
    padding-right: 85px !important;
  }
  .pb-lg-17,
  .py-lg-17 {
    padding-bottom: 85px !important;
  }
  .pl-lg-17,
  .px-lg-17 {
    padding-left: 85px !important;
  }
  .p-lg-18 {
    padding: 90px !important;
  }
  .pt-lg-18,
  .py-lg-18 {
    padding-top: 90px !important;
  }
  .pr-lg-18,
  .px-lg-18 {
    padding-right: 90px !important;
  }
  .pb-lg-18,
  .py-lg-18 {
    padding-bottom: 90px !important;
  }
  .pl-lg-18,
  .px-lg-18 {
    padding-left: 90px !important;
  }
  .p-lg-19 {
    padding: 95px !important;
  }
  .pt-lg-19,
  .py-lg-19 {
    padding-top: 95px !important;
  }
  .pr-lg-19,
  .px-lg-19 {
    padding-right: 95px !important;
  }
  .pb-lg-19,
  .py-lg-19 {
    padding-bottom: 95px !important;
  }
  .pl-lg-19,
  .px-lg-19 {
    padding-left: 95px !important;
  }
  .p-lg-20 {
    padding: 100px !important;
  }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 100px !important;
  }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 100px !important;
  }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 100px !important;
  }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 100px !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 5px !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 5px !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 5px !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 5px !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 5px !important;
  }
  .m-xl-2 {
    margin: 10px !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 10px !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 10px !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 10px !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 10px !important;
  }
  .m-xl-3 {
    margin: 15px !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 15px !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 15px !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 15px !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 15px !important;
  }
  .m-xl-4 {
    margin: 20px !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 20px !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 20px !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 20px !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 20px !important;
  }
  .m-xl-5 {
    margin: 25px !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 25px !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 25px !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 25px !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 25px !important;
  }
  .m-xl-6 {
    margin: 30px !important;
  }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 30px !important;
  }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 30px !important;
  }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 30px !important;
  }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 30px !important;
  }
  .m-xl-7 {
    margin: 35px !important;
  }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 35px !important;
  }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 35px !important;
  }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 35px !important;
  }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 35px !important;
  }
  .m-xl-8 {
    margin: 40px !important;
  }
  .mt-xl-8,
  .my-xl-8 {
    margin-top: 40px !important;
  }
  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 40px !important;
  }
  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 40px !important;
  }
  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 40px !important;
  }
  .m-xl-9 {
    margin: 45px !important;
  }
  .mt-xl-9,
  .my-xl-9 {
    margin-top: 45px !important;
  }
  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 45px !important;
  }
  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 45px !important;
  }
  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 45px !important;
  }
  .m-xl-10 {
    margin: 50px !important;
  }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 50px !important;
  }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 50px !important;
  }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 50px !important;
  }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 50px !important;
  }
  .m-xl-11 {
    margin: 55px !important;
  }
  .mt-xl-11,
  .my-xl-11 {
    margin-top: 55px !important;
  }
  .mr-xl-11,
  .mx-xl-11 {
    margin-right: 55px !important;
  }
  .mb-xl-11,
  .my-xl-11 {
    margin-bottom: 55px !important;
  }
  .ml-xl-11,
  .mx-xl-11 {
    margin-left: 55px !important;
  }
  .m-xl-12 {
    margin: 60px !important;
  }
  .mt-xl-12,
  .my-xl-12 {
    margin-top: 60px !important;
  }
  .mr-xl-12,
  .mx-xl-12 {
    margin-right: 60px !important;
  }
  .mb-xl-12,
  .my-xl-12 {
    margin-bottom: 60px !important;
  }
  .ml-xl-12,
  .mx-xl-12 {
    margin-left: 60px !important;
  }
  .m-xl-13 {
    margin: 65px !important;
  }
  .mt-xl-13,
  .my-xl-13 {
    margin-top: 65px !important;
  }
  .mr-xl-13,
  .mx-xl-13 {
    margin-right: 65px !important;
  }
  .mb-xl-13,
  .my-xl-13 {
    margin-bottom: 65px !important;
  }
  .ml-xl-13,
  .mx-xl-13 {
    margin-left: 65px !important;
  }
  .m-xl-14 {
    margin: 70px !important;
  }
  .mt-xl-14,
  .my-xl-14 {
    margin-top: 70px !important;
  }
  .mr-xl-14,
  .mx-xl-14 {
    margin-right: 70px !important;
  }
  .mb-xl-14,
  .my-xl-14 {
    margin-bottom: 70px !important;
  }
  .ml-xl-14,
  .mx-xl-14 {
    margin-left: 70px !important;
  }
  .m-xl-15 {
    margin: 75px !important;
  }
  .mt-xl-15,
  .my-xl-15 {
    margin-top: 75px !important;
  }
  .mr-xl-15,
  .mx-xl-15 {
    margin-right: 75px !important;
  }
  .mb-xl-15,
  .my-xl-15 {
    margin-bottom: 75px !important;
  }
  .ml-xl-15,
  .mx-xl-15 {
    margin-left: 75px !important;
  }
  .m-xl-16 {
    margin: 80px !important;
  }
  .mt-xl-16,
  .my-xl-16 {
    margin-top: 80px !important;
  }
  .mr-xl-16,
  .mx-xl-16 {
    margin-right: 80px !important;
  }
  .mb-xl-16,
  .my-xl-16 {
    margin-bottom: 80px !important;
  }
  .ml-xl-16,
  .mx-xl-16 {
    margin-left: 80px !important;
  }
  .m-xl-17 {
    margin: 85px !important;
  }
  .mt-xl-17,
  .my-xl-17 {
    margin-top: 85px !important;
  }
  .mr-xl-17,
  .mx-xl-17 {
    margin-right: 85px !important;
  }
  .mb-xl-17,
  .my-xl-17 {
    margin-bottom: 85px !important;
  }
  .ml-xl-17,
  .mx-xl-17 {
    margin-left: 85px !important;
  }
  .m-xl-18 {
    margin: 90px !important;
  }
  .mt-xl-18,
  .my-xl-18 {
    margin-top: 90px !important;
  }
  .mr-xl-18,
  .mx-xl-18 {
    margin-right: 90px !important;
  }
  .mb-xl-18,
  .my-xl-18 {
    margin-bottom: 90px !important;
  }
  .ml-xl-18,
  .mx-xl-18 {
    margin-left: 90px !important;
  }
  .m-xl-19 {
    margin: 95px !important;
  }
  .mt-xl-19,
  .my-xl-19 {
    margin-top: 95px !important;
  }
  .mr-xl-19,
  .mx-xl-19 {
    margin-right: 95px !important;
  }
  .mb-xl-19,
  .my-xl-19 {
    margin-bottom: 95px !important;
  }
  .ml-xl-19,
  .mx-xl-19 {
    margin-left: 95px !important;
  }
  .m-xl-20 {
    margin: 100px !important;
  }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 100px !important;
  }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 100px !important;
  }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 100px !important;
  }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 100px !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 5px !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 5px !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 5px !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 5px !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 5px !important;
  }
  .p-xl-2 {
    padding: 10px !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 10px !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 10px !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 10px !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 10px !important;
  }
  .p-xl-3 {
    padding: 15px !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 15px !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 15px !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 15px !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 15px !important;
  }
  .p-xl-4 {
    padding: 20px !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 20px !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 20px !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 20px !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 20px !important;
  }
  .p-xl-5 {
    padding: 25px !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 25px !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 25px !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 25px !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 25px !important;
  }
  .p-xl-6 {
    padding: 30px !important;
  }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 30px !important;
  }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 30px !important;
  }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 30px !important;
  }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 30px !important;
  }
  .p-xl-7 {
    padding: 35px !important;
  }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 35px !important;
  }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 35px !important;
  }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 35px !important;
  }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 35px !important;
  }
  .p-xl-8 {
    padding: 40px !important;
  }
  .pt-xl-8,
  .py-xl-8 {
    padding-top: 40px !important;
  }
  .pr-xl-8,
  .px-xl-8 {
    padding-right: 40px !important;
  }
  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 40px !important;
  }
  .pl-xl-8,
  .px-xl-8 {
    padding-left: 40px !important;
  }
  .p-xl-9 {
    padding: 45px !important;
  }
  .pt-xl-9,
  .py-xl-9 {
    padding-top: 45px !important;
  }
  .pr-xl-9,
  .px-xl-9 {
    padding-right: 45px !important;
  }
  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 45px !important;
  }
  .pl-xl-9,
  .px-xl-9 {
    padding-left: 45px !important;
  }
  .p-xl-10 {
    padding: 50px !important;
  }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 50px !important;
  }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 50px !important;
  }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 50px !important;
  }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 50px !important;
  }
  .p-xl-11 {
    padding: 55px !important;
  }
  .pt-xl-11,
  .py-xl-11 {
    padding-top: 55px !important;
  }
  .pr-xl-11,
  .px-xl-11 {
    padding-right: 55px !important;
  }
  .pb-xl-11,
  .py-xl-11 {
    padding-bottom: 55px !important;
  }
  .pl-xl-11,
  .px-xl-11 {
    padding-left: 55px !important;
  }
  .p-xl-12 {
    padding: 60px !important;
  }
  .pt-xl-12,
  .py-xl-12 {
    padding-top: 60px !important;
  }
  .pr-xl-12,
  .px-xl-12 {
    padding-right: 60px !important;
  }
  .pb-xl-12,
  .py-xl-12 {
    padding-bottom: 60px !important;
  }
  .pl-xl-12,
  .px-xl-12 {
    padding-left: 60px !important;
  }
  .p-xl-13 {
    padding: 65px !important;
  }
  .pt-xl-13,
  .py-xl-13 {
    padding-top: 65px !important;
  }
  .pr-xl-13,
  .px-xl-13 {
    padding-right: 65px !important;
  }
  .pb-xl-13,
  .py-xl-13 {
    padding-bottom: 65px !important;
  }
  .pl-xl-13,
  .px-xl-13 {
    padding-left: 65px !important;
  }
  .p-xl-14 {
    padding: 70px !important;
  }
  .pt-xl-14,
  .py-xl-14 {
    padding-top: 70px !important;
  }
  .pr-xl-14,
  .px-xl-14 {
    padding-right: 70px !important;
  }
  .pb-xl-14,
  .py-xl-14 {
    padding-bottom: 70px !important;
  }
  .pl-xl-14,
  .px-xl-14 {
    padding-left: 70px !important;
  }
  .p-xl-15 {
    padding: 75px !important;
  }
  .pt-xl-15,
  .py-xl-15 {
    padding-top: 75px !important;
  }
  .pr-xl-15,
  .px-xl-15 {
    padding-right: 75px !important;
  }
  .pb-xl-15,
  .py-xl-15 {
    padding-bottom: 75px !important;
  }
  .pl-xl-15,
  .px-xl-15 {
    padding-left: 75px !important;
  }
  .p-xl-16 {
    padding: 80px !important;
  }
  .pt-xl-16,
  .py-xl-16 {
    padding-top: 80px !important;
  }
  .pr-xl-16,
  .px-xl-16 {
    padding-right: 80px !important;
  }
  .pb-xl-16,
  .py-xl-16 {
    padding-bottom: 80px !important;
  }
  .pl-xl-16,
  .px-xl-16 {
    padding-left: 80px !important;
  }
  .p-xl-17 {
    padding: 85px !important;
  }
  .pt-xl-17,
  .py-xl-17 {
    padding-top: 85px !important;
  }
  .pr-xl-17,
  .px-xl-17 {
    padding-right: 85px !important;
  }
  .pb-xl-17,
  .py-xl-17 {
    padding-bottom: 85px !important;
  }
  .pl-xl-17,
  .px-xl-17 {
    padding-left: 85px !important;
  }
  .p-xl-18 {
    padding: 90px !important;
  }
  .pt-xl-18,
  .py-xl-18 {
    padding-top: 90px !important;
  }
  .pr-xl-18,
  .px-xl-18 {
    padding-right: 90px !important;
  }
  .pb-xl-18,
  .py-xl-18 {
    padding-bottom: 90px !important;
  }
  .pl-xl-18,
  .px-xl-18 {
    padding-left: 90px !important;
  }
  .p-xl-19 {
    padding: 95px !important;
  }
  .pt-xl-19,
  .py-xl-19 {
    padding-top: 95px !important;
  }
  .pr-xl-19,
  .px-xl-19 {
    padding-right: 95px !important;
  }
  .pb-xl-19,
  .py-xl-19 {
    padding-bottom: 95px !important;
  }
  .pl-xl-19,
  .px-xl-19 {
    padding-left: 95px !important;
  }
  .p-xl-20 {
    padding: 100px !important;
  }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 100px !important;
  }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 100px !important;
  }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 100px !important;
  }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 100px !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.text-right {
  text-align: right !important;
}

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

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

.text-primary {
  color: #4a4a4a !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #313030 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important;
}

.text-success {
  color: #6EB982 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #4fa566 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #117a8b !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important;
}

.text-danger {
  color: #DD1C23 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #b0161c !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important;
}

.text-dark {
  color: #4a4a4a !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #313030 !important;
}

.text-lighter {
  color: #F9F7F4 !important;
}

a.text-lighter:hover, a.text-lighter:focus {
  color: #e7dfd3 !important;
}

.text-body {
  color: #4a4a4a !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/* Variable */
/* Path */
/* Spacing */
/* Color */
/* Scaffolding */
/* Fonts */
/* Headings */
/* Button */
/* Form */
/* Max Width */
/* Grid */
/* Unit-less `line-height` for use in components like buttons. */
/* Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc. */
/* Helpers */
.bg-white {
  background-color: #fff;
}

.bg-dark {
  background-color: #4a4a4a;
}

.bg-green {
  background-color: #6EB982;
}

.bg-dgreen {
  background-color: #2C9D4A;
}

.bg-orange {
  background-color: #F37320;
}

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

.bg-blue {
  background-color: #3A4F95;
}

.bg-cream {
  background-color: #F9F7F4;
}

.bg-gray {
  background-color: #e4e4e4;
}

.centering {
  margin: 0 auto;
  float: none;
}

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

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

@media (min-width: 801px) {
  .left-to-center {
    text-align: left;
  }
  .center-to-left {
    text-align: center;
  }
}

.underline {
  text-decoration: underline;
}

.italic {
  font-size: italic;
}

.bold {
  font-weight: bold;
}

.regular {
  font-weight: normal !important;
}

.light {
  font-weight: lighter !important;
}

.mg-b-5-resp {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .mg-b-5-resp {
    margin-bottom: 0;
  }
}

.waving {
  width: 140px;
  overflow: hidden;
}

.wave {
  -webkit-animation: moveTheWave 2400ms linear infinite;
          animation: moveTheWave 2400ms linear infinite;
  stroke-dasharray: 0 16 101 16;
}

@-webkit-keyframes moveTheWave {
  0% {
    stroke-dashoffset: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    stroke-dashoffset: -133;
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
}

@keyframes moveTheWave {
  0% {
    stroke-dashoffset: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    stroke-dashoffset: -133;
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
}

.c-white {
  color: #fff;
}

.c-dark {
  color: #4a4a4a;
}

.c-green {
  color: #6EB982;
}

.c-orange {
  color: #F37320;
}

.c-red {
  color: #DD1C23;
}

.c-blue {
  color: #3A4F95;
}

.c-cream {
  color: #F9F7F4;
}

.c-gray {
  color: #e4e4e4;
}

/* Core */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  overflow-x: hidden;
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.active {
  overflow-y: hidden;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #3A4F95;
  text-decoration: none;
}

a:hover, a:focus {
  color: #2c3c70;
  text-decoration: none;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #e4e4e4;
}

/* Components */
button, input[type="button"], input[type="reset"], input[type="submit"],
.button {
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
  border: 0;
  margin: 0 0 1rem 0;
  vertical-align: middle;
  font-family: inherit;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
  color: white;
  height: 45px;
  padding: 0 30px;
  background-color: transparent;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  outline: 0;
  display: inline-block;
  margin-left: 10px;
  white-space: nowrap;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

button:before, input[type="button"]:before, input[type="reset"]:before, input[type="submit"]:before,
.button:before {
  content: '';
  position: absolute;
  display: block;
  top: 7px;
  right: 7px;
  width: 100%;
  height: 100%;
  background-color: #3A4F95;
  border-radius: 3px;
  z-index: -10;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

button:after, input[type="button"]:after, input[type="reset"]:after, input[type="submit"]:after,
.button:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #DD1C23;
  border-radius: 3px;
  z-index: -10;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover,
.button:hover {
  color: white;
}

button:hover:before, input[type="button"]:hover:before, input[type="reset"]:hover:before, input[type="submit"]:hover:before,
.button:hover:before {
  top: 0;
  right: 0;
}

button:active, button:focus, input[type="button"]:active, input[type="button"]:focus, input[type="reset"]:active, input[type="reset"]:focus, input[type="submit"]:active, input[type="submit"]:focus,
.button:active,
.button:focus {
  color: white;
}

button.button--wide, input[type="button"].button--wide, input[type="reset"].button--wide, input[type="submit"].button--wide,
.button.button--wide {
  padding: 0 2.2em;
}

button.button--orange:before, input[type="button"].button--orange:before, input[type="reset"].button--orange:before, input[type="submit"].button--orange:before,
.button.button--orange:before {
  background-color: #F37320;
}

button.button--orange:after, input[type="button"].button--orange:after, input[type="reset"].button--orange:after, input[type="submit"].button--orange:after,
.button.button--orange:after {
  border-color: #3A4F95;
}

button.button--white-border:after, input[type="button"].button--white-border:after, input[type="reset"].button--white-border:after, input[type="submit"].button--white-border:after,
.button.button--white-border:after {
  border-color: white;
}

/* Desktop Screen */
@media screen and (min-width: 801px) {
  button, input[type="button"], input[type="reset"], input[type="submit"],
  .button {
    height: 55px;
    line-height: 55px;
    font-size: 16px;
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.burger {
  width: 50px;
  height: 50px;
  top: 10px;
  line-height: 50px;
  display: inline-block;
  position: relative;
  float: right;
  right: 0;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: block;
}

@media (min-width: 992px) {
  .burger {
    display: none;
  }
}

.burger.is-clicked span {
  background: transparent;
}

.burger.is-clicked span:before {
  background: #3A4F95;
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}

.burger.is-clicked span:after {
  background: #3A4F95;
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

.burger span {
  width: 23px;
  height: 3px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  background-color: #3A4F95;
  left: 14px;
  border-radius: 2px;
}

.burger span:before, .burger span:after {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border-radius: 2px;
  content: '';
  position: absolute;
  display: block;
  width: 23px;
  height: 3px;
  background-color: #3A4F95;
}

.burger span:before {
  top: 8px;
}

.burger span:after {
  top: -8px;
}

.burger--close {
  opacity: 0;
  position: absolute;
  top: 1.1rem;
  right: 0.9rem;
  height: 50px;
  width: 50px;
  line-height: 50px;
  padding: 0 13px;
  display: inline-block;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.burger--close__sidebar {
  padding: 0;
  right: 1.1rem;
  width: 130px;
}

.burger--close.active {
  opacity: 1;
}

.burger--close span {
  width: 23px;
  height: 3px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  background-color: transparent;
  border-radius: 2px;
}

.burger--close span:before {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border-radius: 2px;
  content: '';
  position: absolute;
  display: block;
  width: 23px;
  height: 3px;
  background-color: #3A4F95;
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}

.burger--close span:after {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border-radius: 2px;
  content: '';
  position: absolute;
  display: block;
  width: 23px;
  height: 3px;
  background-color: #3A4F95;
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

.burger--close span:before {
  top: 8px;
}

.burger--close span:after {
  top: -8px;
}

.burger--close label {
  cursor: pointer;
  margin-right: 5px;
}

main {
  margin-top: 70px;
}

.separator--before {
  position: relative;
  padding-top: 40px;
  margin-top: 80px;
}

.separator--before:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #3A4F95;
  height: 1px;
  width: 100%;
  opacity: 0.4;
}

.separator--curly {
  width: 55px;
  height: 4px;
  background-image: url(assets/img/curly/curly-red.png);
  margin: 30px auto 20px;
  background-repeat: no-repeat;
  background-size: contain;
}

.separator--curly-green {
  height: 5px;
  width: 78px;
  background-image: url(assets/img/curly/curly-green.png);
  margin-left: 0;
  margin-right: 0;
}

.separator--circle {
  position: relative;
}

.separator--circle:before {
  content: '';
  width: 38px;
  height: 38px;
  background-color: #6EB982;
  display: block;
  border-radius: 50%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.separator--circle:after {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  display: block;
  border: 2px solid #3A4F95;
  border-radius: 50%;
  top: 9px;
  left: -9px;
}

.underlined {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-size: 16px;
  font-weight: bold;
  padding: 0 5px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.underlined:hover, .underlined:focus {
  color: #fff;
}

.underlined:hover:before, .underlined:focus:before {
  height: 25px;
}

.underlined:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 13px;
  background-color: #DD1C23;
  z-index: -1;
  opacity: 0.5;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.underlined:after {
  content: "\E5C8";
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: inherit;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  margin-left: 5px;
}

.underlined--solid:before {
  opacity: 1;
}

.underlined--solid:hover {
  color: #fff;
}

.underlined--orange:before {
  background-color: #F37320;
}

.underlined--big {
  color: #3A4F95;
  font-style: italic;
  text-transform: none !important;
  font-weight: 800 !important;
  font-size: 40px !important;
}

.underlined--big:before {
  bottom: 0.1em;
  height: 0.5em;
  z-index: -1;
  opacity: 0.8;
  background-color: #F37320;
}

.dotted {
  position: relative;
}

.dotted:before {
  content: '';
  display: block;
  width: 5px;
  height: 3px;
  background-color: #DD1C23;
  position: absolute;
  -webkit-box-shadow: 15px 0 0 #DD1C23, 30px 0 0 #DD1C23;
          box-shadow: 15px 0 0 #DD1C23, 30px 0 0 #DD1C23;
  bottom: 18px;
  left: -1.5em;
}

.full {
  width: 100%;
}

/* Desktop Screen */
@media screen and (min-width: 801px) {
  main {
    margin-top: 100px;
  }
  .separator--before {
    padding-top: 0;
    margin-top: 0;
    padding-left: 60px;
  }
  .separator--before:before {
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    height: auto;
  }
  .separator--curly {
    width: 145px;
    height: 10px;
    margin: 15px auto;
    background-image: url(assets/img/curly/curly-red-desktop.png);
  }
  .separator--curly-green {
    height: 5px;
    width: 78px;
    background-image: url(assets/img/curly/curly-green.png);
    margin: 25px 0;
  }
  .dotted:before {
    position: absolute;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    left: -3em;
  }
}

#wrapper-more {
  padding-left: 30px;
  padding-right: 30px;
}

.scroll__banner {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  bottom: 10px;
  z-index: 10;
}

.scroll__banner i {
  font-size: 25px;
  color: #3A4F95;
  -webkit-animation: bounce 2.3s infinite;
  animation: bounce 2.3s infinite;
}

.scroll__banner:hover, .scroll__banner:active, .scroll__banner:focuse {
  color: white;
  outline: none;
}

.scroll__banner:hover i, .scroll__banner:active i, .scroll__banner:focuse i {
  color: white;
  -webkit-animation: bounce 2.3s infinite;
  animation: bounce 2.3s infinite;
}

@media screen and (min-width: 801px) {
  .scroll__banner i {
    color: #fff;
  }
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

form:invalid .form-button {
  opacity: 0.7;
  pointer-events: none;
}

.form-group {
  display: -webkit-box;
}

.form-group span {
  float: left;
  width: 10%;
  vertical-align: top;
  position: relative;
  top: 23px;
}

.form-group .form-input {
  width: 90%;
  float: right;
}

.form-button {
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: background-color .2s, color .2s;
  transition: background-color .2s, color .2s;
}

.form-button:hover, .form-button:focus {
  background-color: rgba(158, 158, 158, 0.2);
}

.form-input {
  height: 70px;
}

.form-input label {
  line-height: 62px;
  height: 46px;
}

.form-textarea {
  height: 152px;
}

.form-textarea label {
  line-height: 62px;
  height: 130px;
}

.form-input, .form-textarea {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}

.form-input label, .form-input input, .form-input textarea, .form-input .error, .form-textarea label, .form-textarea input, .form-textarea textarea, .form-textarea .error {
  position: absolute;
  left: 0;
  width: 100%;
  font-size: 16px;
}

.form-input textarea, .form-textarea textarea {
  height: 100px;
  resize: none;
}

.form-input input, .form-input textarea, .form-textarea input, .form-textarea textarea {
  top: 12px;
  border: none;
  margin: 8px 0;
  background: none;
  z-index: 2;
}

.form-input input:focus, .form-input textarea:focus, .form-textarea input:focus, .form-textarea textarea:focus {
  outline: none;
}

.form-input input:focus + label, .form-input input:valid + label,
.form-input input:not(:placeholder-shown) + label, .form-input textarea:focus + label, .form-input textarea:valid + label,
.form-input textarea:not(:placeholder-shown) + label, .form-textarea input:focus + label, .form-textarea input:valid + label,
.form-textarea input:not(:placeholder-shown) + label, .form-textarea textarea:focus + label, .form-textarea textarea:valid + label,
.form-textarea textarea:not(:placeholder-shown) + label {
  line-height: 18px;
  font-size: 12px;
}

.form-input input:placeholder-shown ~ .error,
.form-input input:valid ~ .error, .form-input textarea:placeholder-shown ~ .error,
.form-input textarea:valid ~ .error, .form-textarea input:placeholder-shown ~ .error,
.form-textarea input:valid ~ .error, .form-textarea textarea:placeholder-shown ~ .error,
.form-textarea textarea:valid ~ .error {
  opacity: 0;
}

.form-input input:focus + label, .form-input textarea:focus + label, .form-textarea input:focus + label, .form-textarea textarea:focus + label {
  color: #3A4F95;
}

.form-input input:focus + label:after, .form-input textarea:focus + label:after, .form-textarea input:focus + label:after, .form-textarea textarea:focus + label:after {
  visibility: visible;
  left: 0;
  width: 100%;
}

.form-input input:focus + label + .error, .form-input textarea:focus + label + .error, .form-textarea input:focus + label + .error, .form-textarea textarea:focus + label + .error {
  opacity: 0;
}

.form-input input:not(:focus):not(:placeholder-shown):invalid, .form-input textarea:not(:focus):not(:placeholder-shown):invalid, .form-textarea input:not(:focus):not(:placeholder-shown):invalid, .form-textarea textarea:not(:focus):not(:placeholder-shown):invalid {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  color: red;
}

.form-input input:not(:focus):not(:placeholder-shown):invalid + label, .form-input textarea:not(:focus):not(:placeholder-shown):invalid + label, .form-textarea input:not(:focus):not(:placeholder-shown):invalid + label, .form-textarea textarea:not(:focus):not(:placeholder-shown):invalid + label {
  -webkit-transition: all .2s 0s;
  transition: all .2s 0s;
  color: red;
}

.form-input input:not(:focus):not(:placeholder-shown):invalid + label:after, .form-input textarea:not(:focus):not(:placeholder-shown):invalid + label:after, .form-textarea input:not(:focus):not(:placeholder-shown):invalid + label:after, .form-textarea textarea:not(:focus):not(:placeholder-shown):invalid + label:after {
  visibility: visible;
  left: 0;
  width: 100%;
  background: red;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.form-input label, .form-textarea label {
  color: #666;
  -webkit-transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: inset 0px -1px #aaa;
          box-shadow: inset 0px -1px #aaa;
  z-index: 1;
}

.form-input label:after, .form-textarea label:after {
  content: '';
  visibility: hidden;
  position: absolute;
  left: calc(50% - 5px);
  bottom: 0;
  background-color: #3A4F95;
  width: 10px;
  height: 2px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.form-input .error, .form-textarea .error {
  position: absolute;
  bottom: 3px;
  color: red;
  font-size: 12px;
  font-style: italic;
  opacity: 1;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media (max-width: 767px) {
  .form-group span {
    width: 15%;
  }
  .form-group .form-input {
    width: 85%;
  }
}

/* vietnamese */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300;
  src: local("Nunito Light"), local("Nunito-Light"), url(https://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAnsSUbuvISTs.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300;
  src: local("Nunito Light"), local("Nunito-Light"), url(https://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAnsSUb-vISTs.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300;
  src: local("Nunito Light"), local("Nunito-Light"), url(https://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAnsSUYevI.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* vietnamese */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: local("Nunito Regular"), local("Nunito-Regular"), url(https://fonts.gstatic.com/s/nunito/v9/XRXV3I6Li01BKofIOuaBXso.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: local("Nunito Regular"), local("Nunito-Regular"), url(https://fonts.gstatic.com/s/nunito/v9/XRXV3I6Li01BKofIO-aBXso.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: local("Nunito Regular"), local("Nunito-Regular"), url(https://fonts.gstatic.com/s/nunito/v9/XRXV3I6Li01BKofINeaB.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* vietnamese */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: local("Nunito Bold"), local("Nunito-Bold"), url(https://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAjsOUbuvISTs.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: local("Nunito Bold"), local("Nunito-Bold"), url(https://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAjsOUb-vISTs.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: local("Nunito Bold"), local("Nunito-Bold"), url(https://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAjsOUYevI.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* vietnamese */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: local("Nunito ExtraBold"), local("Nunito-ExtraBold"), url(https://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAksCUbuvISTs.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: local("Nunito ExtraBold"), local("Nunito-ExtraBold"), url(https://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAksCUb-vISTs.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: local("Nunito ExtraBold"), local("Nunito-ExtraBold"), url(https://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAksCUYevI.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url("../assets/fonts/MaterialIcons-Regular.woff2") format("woff2"), url("../assets/fonts/MaterialIcons-Regular.woff") format("woff"), url("../assets/fonts/MaterialIcons-Regular.ttf") format("truetype");
}

.content__section {
  font-size: 20px;
}

.content__section span {
  font-weight: bold;
}

.content__thumbnail {
  display: block;
  height: 300px;
  width: 100%;
}

.content__thumbnail.has-video {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.content__thumbnail.has-video:before {
  content: '';
  display: block;
  height: 140px;
  width: 140px;
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  background-image: url("data:image/png;base64,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");
}

@media screen and (min-width: 801px) {
  .content__section {
    font-size: 30px;
  }
  .content__thumbnail {
    height: 400px;
  }
}

.circle {
  position: absolute;
  display: block;
  width: 43px;
  height: 43px;
  z-index: 10;
}

.circle:before {
  content: '';
  position: absolute;
  display: block;
  opacity: 0.8;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: #F5A623;
  top: 0;
  left: 0;
  z-index: 1;
}

.circle:after {
  content: '';
  position: absolute;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid black;
  bottom: -7px;
  right: -12px;
  z-index: 2;
}

.circle--large {
  width: 69px;
  height: 69px;
}

.circle--large:before {
  width: 69px;
  height: 69px;
}

.circle--large:after {
  width: 64px;
  height: 64px;
}

.circle--small {
  width: 20px;
  height: 20px;
}

.circle--small:before {
  width: 20px;
  height: 20px;
}

.circle--small:after {
  width: 17px;
  height: 17px;
  border-width: 1px;
  right: auto;
  left: -4px;
  bottom: -2px;
}

.circle--small_green {
  position: relative;
  width: 28px;
  height: 28px;
  margin: 20px 0;
}

.circle--small_green:before {
  content: '';
  position: absolute;
  display: block;
  opacity: 0.8;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #6EB982;
  top: -10px;
  left: 20px;
  z-index: 1;
}

.circle--small_green:after {
  content: '';
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid white;
  bottom: 5px;
  right: -12px;
  z-index: 2;
}

.has-circle {
  position: relative;
}

.has-circle:before {
  content: '';
  display: block;
  position: absolute;
  height: 120px;
  width: 120px;
  background: transparent;
  border: 3px solid #FFF2E7;
  border-radius: 50%;
  opacity: 0.4;
  z-index: -1;
  left: -5%;
  bottom: -25%;
}

.link {
  color: #3A4F95 !important;
  font-weight: 800;
  font-size: 20px;
}

.link:after {
  content: "\E5C8";
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: inherit;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  vertical-align: middle;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  margin-left: 5px;
}

.link--white {
  color: white !important;
}

.list-share {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.list-share li {
  display: inline-block;
  padding: 0 15px;
}

.list-share li a {
  color: #DD1C23;
}

.list-icon {
  padding: 0;
  margin: 0;
}

.list-icon li {
  display: inline-block;
  max-width: 220px;
  min-width: 200px;
  padding: 0 8px;
  vertical-align: top;
}

.list-icon_image {
  text-align: center;
  display: table;
  margin: 0px auto 25px;
}

.list-icon_image_inside {
  display: table-cell;
  vertical-align: bottom;
}

.list-icon_content h3 {
  font-size: 20px;
  font-weight: bold;
}

.list__contact {
  padding: 0;
  margin: 0;
}

.list__contact li {
  display: block;
}

.list__contact li i {
  display: inline-block;
  vertical-align: top;
  color: white;
  margin-right: 10px;
}

.list__contact li p {
  display: inline-block;
  color: white;
}

@media (min-width: 767px) {
  .list-icon li_image {
    text-align: center;
  }
}

.share {
  text-align: center;
  margin: 30px 0;
}

.share span {
  font-size: 16px;
  font-weight: lighter;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 20px;
}

.twitter .twitter-inside:before {
  content: "\F099";
  font-size: 20px;
  line-height: 50px;
  font-family: 'FontAwesome';
  position: absolute;
  left: 15px;
}

.twitter iframe {
  width: 50px !important;
  height: 50px !important;
  opacity: 0;
  margin-top: 15px;
}

.card__slider {
  padding-right: 50px;
  padding-left: 50px;
}

.card__slider-custom .card__list {
  padding-left: 20px;
}

.card__slider-custom .card__thumbnail {
  height: 140px !important;
}

.card__slider-custom .swiper-button-prev, .card__slider-custom .swiper-button-next {
  display: none;
}

.card__slider-custom .swiper-pagination {
  display: none;
}

@media (max-width: 992px) {
  .card__slider-custom .swiper-pagination {
    display: block;
  }
}

.card__slider-custom .swiper-pagination-bullet {
  border: 1px solid #3A4F95;
}

.card__slider-custom .swiper-pagination-bullet-active {
  background: #3A4F95;
}

.card__values {
  padding-bottom: 40px;
}

.card__values .swiper-pagination {
  display: none;
}

@media (max-width: 992px) {
  .card__values .swiper-pagination {
    display: block;
  }
}

@media screen and (min-width: 801px) {
  .card__slider-custom .card__thumbnail {
    height: 180px !important;
  }
}

.tag {
  text-transform: uppercase;
  font-size: 12px;
}

/* Tabs */
.tabs {
  margin: 25px 0;
}

.tabs-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
}

.tabs-nav li {
  float: left;
  font-size: 14px;
  font-weight: bold;
  margin-right: 6px;
  padding: 0 10px;
  border-bottom: none;
  cursor: pointer;
}

.tabs-nav li:first-child {
  padding-left: 0;
}

.tabs-nav li a {
  color: #4a4a4a;
  font-weight: normal;
  font-size: 20px;
}

.tabs-nav li.active a {
  color: #3A4F95;
  font-weight: bold;
  border-bottom: 1px solid #4a4a4a;
}

.tabs__item {
  padding: 25px 0;
  border-top: none;
}

@media screen and (max-width: 801px) {
  .tabs-nav {
    overflow: auto;
    white-space: nowrap;
  }
  .tabs-nav li {
    float: none;
    display: inline-block;
  }
}

#wrapper-more .col-12 {
  display: inline-block;
}

.tooltips {
  position: relative;
  display: inline-block;
}

.tooltips i {
  font-size: 24px;
}

.tooltips .tooltiptext {
  visibility: hidden;
  width: 80px;
  background-color: #888;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: 110%;
  margin-left: -55px;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  line-height: 1;
  font-size: 11px;
}

.tooltips .tooltiptext:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #888 transparent transparent transparent;
}

.tooltips:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.title__primary {
  font-size: 22px;
  font-weight: bold;
}

.title__primary-medium {
  font-size: 20px;
  font-weight: bold;
}

.title__secondary {
  font-size: 20px;
  font-weight: bold;
}

.title__card {
  font-weight: 800;
  font-size: 30px;
}

.title__masthead {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 20px;
}

.title__small {
  font-size: 16px;
  text-transform: uppercase;
}

.title__big {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 20px;
}

.title__big strong {
  color: #F37320;
}

@media screen and (min-width: 801px) {
  .title__primary {
    font-size: 42px;
  }
  .title__primary-medium {
    font-size: 32px;
    font-weight: bold;
  }
  .title__masthead {
    font-size: 50px;
  }
  .title__big {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .title__card {
    font-size: 20px;
  }
}

/* Elements */
.card {
  margin-bottom: 40px;
  border: 0;
  background: transparent;
}

.card__ceo-content {
  background: #FFF2E7;
  position: relative;
  z-index: 2;
  padding: 30px 35px;
  font-size: 20px;
  color: #F37320;
}

.card__ceo .frame:before {
  background: #DD1C23;
}

.card__ceo svg {
  float: right;
  right: 35px;
  position: relative;
}

.card__whole {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card__whole-section {
  width: 50%;
  display: inline-block;
  float: left;
  height: 420px;
  padding: 80px 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card__whole-section .content {
  position: relative;
  top: 50%;
  -webkit-transform: perspective(1px) translateY(-50%);
          transform: perspective(1px) translateY(-50%);
}

.card__whole-left {
  width: 50%;
  display: inline-block;
  float: left;
  height: 420px;
  padding: 80px 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card__whole-right {
  height: 420px;
  width: 50%;
  display: inline-block;
  float: left;
  padding: 80px 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card__rounded {
  background: transparent;
  height: 260px;
  width: 260px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
}

.card__rounded-orange {
  border: 8px solid #F37320;
}

.card__rounded-green {
  border: 8px solid #6EB982;
}

.card__rounded-blue {
  border: 8px solid #3A4F95;
}

.card__rounded-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.card__highlight {
  margin-bottom: 40px;
  display: block;
}

.card__highlight-img {
  height: 350px;
  width: 50%;
  float: left;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card__highlight-content {
  display: inline-block;
  width: 50%;
  padding: 80px 20px;
}

.card__body {
  font-size: 16px;
}

.card__body p {
  font-size: 14px;
}

.card__contact {
  background-color: #3A4F95;
  padding: 50px;
  height: 420px;
}

.card__icon {
  padding: 20px;
}

.card__icon-img {
  margin-bottom: 40px;
}

.card__icon-img-custom {
  height: 90px;
}

.card__icon-desc h3 {
  font-weight: bold;
  font-size: 20px;
}

.card__icon-desc h4 {
  font-weight: bold;
  font-size: 16px;
}

.card__icon-desc p {
  font-size: 14px;
}

.card__play {
  background-color: #2C9D4A;
  padding: 50px;
  -webkit-box-shadow: 0 2px 10px 1px rgba(50, 50, 50, 0.4);
          box-shadow: 0 2px 10px 1px rgba(50, 50, 50, 0.4);
}

.card__play p {
  font-size: 16px;
}

.card__play-wrapper {
  position: relative;
  top: 50%;
  -webkit-transform: perspective(1px) translateY(-50%);
          transform: perspective(1px) translateY(-50%);
}

.card__thumbnail {
  margin-bottom: 15px;
}

.card__thumbnail--bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 400px;
  background-color: #e4e4e4;
}

.card__thumbnail--circle {
  width: 160px;
}

.card__thumbnail--circle img {
  width: 100%;
  border-radius: 50%;
}

.card__thumbnail--full {
  margin-bottom: 0;
}

.card__title {
  text-transform: none !important;
  font-weight: 800;
}

.card__title--large {
  font-size: 42px;
  margin-bottom: 1em;
  margin-top: 30px;
  min-height: 2.5em;
}

.card__title span {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.5em, #F9EE60));
  background-image: linear-gradient(transparent calc(100% - 0.5em), #F9EE60 0.5em);
  background-repeat: no-repeat;
  background-size: 100% 95%;
}

.card__subtitle {
  font-weight: 800;
}

.card--video .card__thumbnail {
  position: relative;
}

.card--video .card__thumbnail:after {
  content: "\F144";
  font-family: FontAwesome;
  display: inline-block;
  font-size: inherit;
  font-weight: normal;
  font-style: normal;
  line-height: inherit;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  vertical-align: middle;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  font-size: 90px;
  color: white;
}

.card--video .card__thumbnail:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  opacity: 0.15;
}

.card--full .card__thumbnail {
  width: calc(50% + 70px);
  float: left;
  margin-left: -70px;
}

.card--full .card__thumbnail img {
  width: 100%;
}

.card--full .card__title {
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
}

.card--full .card__container {
  width: 50%;
  float: right;
  padding-top: 80px;
  padding-left: 125px;
}

.card--full .card__footer {
  margin-top: 60px;
}

.card--full:after {
  content: '';
  display: block;
  clear: both;
}

.card--full-2 .card__thumbnail {
  width: calc(40% + 70px);
  margin-left: auto;
  margin-right: -70px;
  float: right;
}

.card--full-2 .card__container {
  width: 60%;
  float: left;
  padding-left: 0;
  padding-right: 125px;
}

.card--full-3 .card__thumbnail {
  text-align: center;
}

.card--full-3 .card__thumbnail img {
  width: auto;
}

.card--full-3 .card__container {
  padding: 0;
}

.card--full-3 .card__title {
  font-style: normal;
}

.card--full-4 .card__title {
  font-style: normal;
  font-weight: 800;
  font-size: 54px;
}

.card--full-4 .card__thumbnail {
  width: calc(50% - 4px);
  margin-left: auto;
  float: none;
  display: inline-block;
  vertical-align: middle;
}

.card--full-4 .card__container {
  width: calc(50% - 4px);
  float: none;
  display: inline-block;
  padding-top: 0;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .card__highlight {
    display: none;
  }
  .card__contact {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .card__rounded {
    height: 180px;
    width: 180px;
  }
  .card__rounded-image {
    height: 180px;
    width: 180px;
  }
  .card__whole-section {
    width: 100%;
    display: inline-block;
    float: left;
    height: 240px;
    padding: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}

/* Desktop Screen */
@media screen and (min-width: 801px) {
  .card__ceo-content {
    padding: 40px 45px;
    font-size: 26px;
  }
  .card__icon {
    padding: 30px 20px;
  }
  .card__thumbnail {
    margin-bottom: 30px;
  }
  .card__thumbnail--full {
    margin-bottom: 0;
  }
  .card__thumbnail--circle {
    width: 190px;
  }
  .card__title {
    font-size: 30px;
  }
  .card__title--large {
    font-size: 42px;
    margin-bottom: 1em;
    margin-top: 30px;
  }
}

.frame {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

.frame:before {
  content: '';
  position: absolute;
  display: block;
  left: -10px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  background: #F37320;
  border-radius: 3px;
  z-index: 2;
}

.frame .card__thumbnail {
  border-radius: 3px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-bottom: 0;
  width: 100%;
  height: 180px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.frame--green:before {
  background-color: #2C9D4A;
}

.frame--outline {
  display: block;
  margin-left: 20px;
}

.frame--outline:before {
  content: '';
  left: -20px;
  bottom: -20px;
  border: 3px solid #F37320;
  background: white;
  border-radius: 10px;
}

.frame--outline:after {
  content: '';
  position: absolute;
  border-radius: 10px;
  display: block;
  left: -50px;
  bottom: -50px;
  height: 100%;
  width: 100%;
  background-image: url(assets/img/pattern.png);
  background-size: auto;
  opacity: 0.1;
}

.frame--outline .card__thumbnail {
  border-radius: 10px;
}

/* Desktop Screen */
@media screen and (min-width: 801px) {
  .frame {
    margin-bottom: 30px;
  }
  .frame .card__thumbnail {
    height: 230px;
  }
  .frame:before {
    left: -15px;
    bottom: -15px;
  }
  .frame--outline {
    margin-bottom: 80px;
  }
  .frame--outline:before {
    bottom: -40px;
    left: -40px;
  }
  .frame--outline:after {
    left: -90px;
    bottom: -80px;
  }
}

.article {
  padding-bottom: 50px;
}

.article img {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  display: block;
}

.article h2, .article h3, .article h4, .article h5 {
  margin-bottom: 30px;
}

.article ul {
  padding-left: 20px;
}

.article ul li {
  line-height: 30px;
}

.article a {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

@media (max-width: 640px) {
  h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  h5 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.footer {
  padding: 30px 0 20px 0;
  background-image: url("../assets/image/overlay-footer.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer__label {
  text-transform: uppercase;
  color: #3A4F95;
  font-weight: 800;
  text-align: center;
  display: block;
  margin-bottom: 25px;
}

.footer__image {
  margin-top: 30px;
  color: #3A4F95;
}

.footer__image img {
  margin-bottom: 30px;
}

.footer__top .row {
  padding: 40px 0;
}

.footer__middle {
  border-top: 1px solid rgba(74, 74, 74, 0.3);
  padding-top: 40px;
}

.footer h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: #3A4F95;
  margin-bottom: 15px;
}

.footer address {
  font-style: normal;
  color: #3A4F95;
  font-size: 14px;
}

.footer address a {
  color: inherit;
}

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

.footer address ul li i {
  width: 5%;
  text-align: left;
}

.footer__bottom {
  font-size: 14px;
  background: white;
}

.footer .wave {
  display: none;
}

/* Desktop Screen */
@media screen and (min-width: 801px) {
  .footer__image {
    margin-top: 30px;
  }
  .footer__image img {
    margin-bottom: 50px;
  }
  .footer__label {
    margin: 0;
    margin-right: 40px;
    display: inline-block;
  }
  .footer__middle {
    border-top: 0;
    padding-top: 0;
  }
  .footer .wave {
    display: inline-block;
  }
}

.header {
  height: 100px;
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  background: white;
}

.header--white {
  background: #fff;
  line-height: 100px;
}

.header.active {
  background: #fff;
}

.header.hide {
  opacity: 0;
}

.header.nav-up {
  top: -100%;
}

.header.fixed {
  position: fixed;
  top: 0;
  background-color: white;
  z-index: 11;
  -webkit-box-shadow: 0px 2px 7px 0px #bbbbbb;
  box-shadow: 0px 2px 7px 0px #bbbbbb;
}

.header.fixed .navbar ul li.active a {
  color: #3A4F95 !important;
}

.header.fixed .navbar ul li a {
  color: #4a4a4a;
}

.header.fixed .navbar ul li a.button {
  color: #fff !important;
}

.header__logo {
  line-height: 100px;
}

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

.header__logo-mobile {
  display: none;
}

.header__logo img {
  max-height: 45px;
}

@media (max-width: 992px) {
  .header {
    height: 70px;
  }
  .header--white {
    line-height: 70px;
  }
  .header__logo {
    line-height: 70px;
  }
  .header__logo-desktop {
    display: none;
  }
  .header__logo-mobile {
    display: inline-block;
  }
  .header__logo img {
    max-height: 40px;
  }
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}

.menu.address li {
  font-weight: normal;
  text-transform: none;
  color: #3A4F95;
}

.menu li a {
  display: block;
  padding-bottom: 15px;
}

.menu--two-columns {
  -moz-column-count: 2;
  -moz-column-gap: 0.5em;
  -webkit-column-count: 2;
  -webkit-column-gap: 0.5em;
  column-count: 2;
  column-gap: 0.5em;
}

.menu--two-columns-responsive {
  -moz-column-count: 1;
  -moz-column-gap: 0.5em;
  -webkit-column-count: 1;
  -webkit-column-gap: 0.5em;
  column-count: 1;
  column-gap: 0.5em;
}

.menu--small {
  text-transform: none;
  font-weight: normal;
}

.menu--small li a {
  padding: 5px 0;
}

/* Desktop Screen */
@media screen and (min-width: 801px) {
  .menu--small li {
    display: inline-block;
    margin-left: 25px;
  }
  .menu--small li a {
    padding: 0;
  }
  .menu--two-columns-responsive {
    -moz-column-count: 2;
    -moz-column-gap: 0.5em;
    -webkit-column-count: 2;
    -webkit-column-gap: 0.5em;
    column-count: 2;
    column-gap: 0.5em;
  }
}

.map {
  height: 420px;
  border: 1px solid #e4e4e4;
}

.popup-contact {
  position: relative;
  padding: 100px;
  min-width: 960px;
  overflow: initial;
}

.popup-contact .circle {
  position: absolute;
  bottom: 17%;
  right: 20%;
  display: block;
}

.popup-contact .fancybox-button {
  background: white;
  border-radius: 50%;
  top: -10px;
  right: -10px;
  opacity: 1;
}

.popup-contact .fancybox-button:before, .popup-contact .fancybox-button:after {
  display: none;
}

@media (max-width: 992px) {
  .popup-contact {
    width: 100%;
    min-width: auto;
  }
  .popup-contact .circle {
    display: none;
  }
}

@media (max-width: 767px) {
  .popup-contact {
    padding: 25px;
  }
}

.scrollspy.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 101;
}

.scrollspy ul {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e4e4e4;
}

.scrollspy ul li {
  display: inline-block;
  list-style: none;
  padding: 10px 20px;
}

.scrollspy ul li:first-child {
  padding-left: 0;
}

.scrollspy ul li a {
  font-size: 20px;
  font-weight: bold;
  color: #4a4a4a;
  text-transform: uppercase;
}

.scrollspy ul li.active {
  border-bottom: 5px solid #0D9B48;
}

.sticky + .section,
.sticky + div {
  padding-top: 60px;
}

@media (max-width: 992px) {
  .scrollspy ul li {
    padding: 10px;
  }
  .scrollspy ul li a {
    font-size: 12px;
  }
}

.masthead {
  position: relative;
  background-color: #F9F7F4;
}

.masthead .circle {
  bottom: 5%;
  left: 5%;
}

.masthead .circle--large {
  top: 15%;
  left: 32%;
}

@media (max-width: 1120px) {
  .masthead .circle {
    bottom: 5%;
    left: auto;
    right: 5%;
  }
  .masthead .circle--large {
    top: auto;
    left: -99999px;
  }
}

.masthead__ceo {
  margin-top: 100px;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media (max-width: 992px) {
  .masthead__ceo {
    margin-top: 70px;
    height: 250px;
    background-position: 35%;
  }
}

.masthead__inside {
  position: absolute;
  right: 50px;
  bottom: 30px;
}

.masthead__inside-content {
  background: #fff;
  padding: 25px;
  color: #4a4a4a;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  z-index: 2;
  max-width: 450px;
  line-height: 52px;
}

@media (max-width: 992px) {
  .masthead__inside {
    right: 25px;
    bottom: 15px;
  }
  .masthead__inside-content {
    font-size: 20px;
    padding: 10px;
    max-width: 250px;
    line-height: 32px;
  }
  .masthead__inside-content br {
    display: none;
  }
}

.masthead__image {
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(50vh - 50px);
  width: calc(100% - 10px);
  margin-left: 10px;
  z-index: 2;
}

.masthead__image:before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: -15px;
  width: 11px;
  left: -10px;
  background-color: #F37320;
}

.masthead__content {
  padding: 40px 45px;
  position: relative;
  background: #F9F7F4;
  z-index: 1;
  font-size: 14px;
}

.masthead__content .button {
  margin-top: 15px;
}

.masthead__content-head {
  position: relative;
  font-size: 22px;
  font-weight: 400;
  padding-right: 50px;
  margin-bottom: 60px;
  line-height: 1.2;
}

.masthead__content-head span {
  font-size: 32px;
  font-weight: 800;
  color: #F37320;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.07em, #F37320));
  background-image: linear-gradient(transparent calc(100% - 0.07em), #F37320 0.07em);
  background-repeat: no-repeat;
  background-size: 100% 90%;
  -webkit-transition: background-size 1s;
  transition: background-size 1s;
}

.masthead__content-head .circle {
  top: 0;
  right: -10px;
}

.masthead__content-head .circle--small {
  top: auto;
  right: auto;
  left: 7px;
  bottom: -35px;
}

.masthead__content-top_head {
  font-size: 20px;
  color: #3A4F95;
}

.masthead__content .diagonal {
  width: 147px;
  height: 200px;
  bottom: -60px;
  left: -35px;
}

.masthead--full {
  position: relative;
  height: 100vh;
  z-index: 10;
}

.masthead--full .masthead__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
}

.masthead--full .masthead__image:before {
  content: none;
}

.masthead--full .masthead__content {
  position: absolute;
  top: auto;
  bottom: 60px;
  left: 0;
  right: 0;
  height: auto;
  padding: 40px 20px;
}

.masthead--full .masthead__content-head {
  margin-bottom: 0;
}

.masthead--full .masthead__content-head .circle {
  top: -100px;
  right: -28px;
}

.masthead--full .masthead__content-head .circle--small {
  top: auto;
  right: auto;
  left: -29px;
  bottom: -46px;
}

.masthead--full .masthead__content-head .circle:before {
  opacity: 1;
}

.masthead--full .masthead__content .diagonal {
  bottom: -120px;
  left: -66px;
}

.masthead--full .masthead__content:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 12px;
  bottom: 12px;
  width: 10px;
  background-color: #F37320;
}

.masthead--full-withcontent .masthead__content-head {
  margin-bottom: 200px;
}

.masthead--full-withcontent .masthead__content-head .circle--small {
  left: 20%;
}

.masthead--full-withcontent .masthead__content .diagonal {
  bottom: -160px;
}

.masthead--medium {
  padding-top: 160px;
  background-color: white;
}

.masthead--medium .masthead__image {
  width: 100%;
  margin: 0;
  height: calc(100vh - 160px);
  min-height: auto;
}

.masthead--medium .masthead__content {
  position: absolute;
  float: none;
  z-index: 10;
  height: auto;
  min-height: auto;
  top: auto;
  bottom: 0;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  padding: 20px 40px;
  display: block;
  min-width: 670px;
}

.masthead--medium .masthead__content-head {
  margin-bottom: 0;
  padding-right: 60px;
}

.masthead--medium .masthead__content-head .circle {
  right: 10px;
}

.masthead--medium .masthead__content-head .circle--small {
  left: -50px;
  right: auto;
}

.masthead--medium .masthead__content:before {
  content: '';
  position: absolute;
  left: -15px;
  top: 20px;
  bottom: 20px;
  width: 15px;
  background-color: #F37320;
}

.masthead__small {
  height: 180px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.masthead__small:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00000063), to(transparent));
  background-image: linear-gradient(#00000063, transparent);
  z-index: 1;
}

.masthead__medium {
  height: 180px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.masthead__medium:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00000063), to(transparent));
  background-image: linear-gradient(#00000063, transparent);
  z-index: 1;
}

.masthead:after {
  content: '';
  display: block;
  clear: both;
}

/* Desktop Screen */
@media screen and (min-width: 801px) {
  .masthead {
    padding-top: 0;
  }
  .masthead__small {
    height: 420px;
  }
  .masthead__medium {
    height: 600px;
  }
  .masthead__image {
    height: calc(100vh - 100px);
    width: 59%;
    float: right;
    z-index: 10;
    margin-left: 17px;
  }
  .masthead__image:before {
    left: -17px;
    width: 17px;
    top: 30px;
    bottom: 30px;
  }
  .masthead__content {
    height: calc(100vh - 100px);
    width: 41%;
    float: left;
    margin-left: 0;
    margin-right: -17px;
    padding: 85px;
    padding-top: 180px;
    font-size: 16px;
  }
  .masthead__content .button {
    margin-top: 25px;
  }
  .masthead__content-head {
    font-size: 42px;
    margin-bottom: 110px;
    padding-right: 35px;
  }
  .masthead__content-head span {
    font-size: 88px;
  }
  .masthead__content-head .circle {
    top: -40px;
    right: -30px;
  }
  .masthead__content-head .circle--small {
    top: auto;
    bottom: -85px;
  }
  .masthead--full {
    min-height: 800px;
  }
  .masthead--full .masthead__image {
    min-height: 800px;
  }
  .masthead--full .masthead__content {
    min-height: auto;
    z-index: 10;
    left: 120px;
    bottom: 160px;
  }
  .masthead--full .masthead__content .diagonal {
    bottom: -280px;
    left: -120px;
    width: 264px;
    height: 360px;
  }
  .masthead--full .masthead__content:before {
    width: 17px;
    left: -17px;
    top: 25px;
    bottom: 25px;
  }
  .masthead--full-withcontent .masthead__content {
    bottom: 80px;
  }
  .masthead--full-withcontent .masthead__content-head {
    margin-bottom: 200px;
  }
  .masthead--full-withcontent .masthead__content-head .circle {
    top: -70px;
    right: 5px;
  }
  .masthead--full-withcontent .masthead__content-head .circle--small {
    top: auto;
    right: auto;
    left: 20%;
    bottom: -115px;
  }
  .masthead--full-withcontent .masthead__content .diagonal {
    bottom: -160px;
  }
  .masthead--medium {
    padding-top: 160px;
  }
}

.section {
  padding: 60px 0;
  position: relative;
}

.section-ceo {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.section-ceo .circles {
  border: 5px solid #F9CA7E;
  opacity: 0.4;
  background: transparent;
  border-radius: 50%;
  height: 380px;
  width: 380px;
  display: block;
  position: absolute;
  top: -20%;
  left: -10%;
  z-index: -1;
}

.section-ceo .curly {
  position: absolute;
  right: 0;
  top: 40%;
  bottom: auto;
  display: block;
}

.section-ceo .line {
  position: absolute;
  top: 10px;
  right: 0;
  display: block;
}

.section-secondary {
  padding: 50px 0;
}

.section-insight .circle {
  top: 16%;
  left: 0;
  z-index: -1;
}

.section-insight .circle--large {
  bottom: 15%;
  top: auto;
  right: 0;
  left: auto;
}

@media (max-width: 1120px) {
  .section-insight .circle {
    top: 4%;
  }
  .section-insight .circle--large {
    top: auto;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 30px 0;
  }
  .section-secondary {
    padding: 25px 0;
  }
  .section-ceo .circles {
    top: -15%;
    left: -60%;
  }
  .section-ceo .curly {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
    top: auto;
    bottom: 20%;
  }
  .section-ceo .line {
    display: none;
  }
}

.navbar {
  float: right;
  padding: 0;
}

.navbar ul {
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 100px;
}

.navbar ul li {
  display: inline-block;
  padding: 0 12px;
}

.navbar ul li.active a {
  color: #3A4F95;
  font-weight: bold;
}

.navbar ul li a {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: normal;
}

.navbar ul li a.button {
  font-weight: bold;
  color: white;
}

.navbar__reverse ul li a {
  color: #4a4a4a;
}

.navbar__reverse ul li a.button {
  color: #fff;
  font-weight: bold;
}

@media (max-width: 992px) {
  .navbar {
    display: none;
    background: #F9F7F4;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    right: 0;
  }
  .navbar ul {
    padding: 20px 0;
  }
  .navbar ul li {
    display: block;
    padding: 16px 32px;
    line-height: normal;
  }
  .navbar ul li a {
    color: #4a4a4a;
    text-transform: uppercase;
  }
  .navbar ul li a.button {
    color: #fff;
  }
}

.social__navbar {
  display: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.social__navbar span {
  display: inline-block;
  padding: 16px;
}

.social__navbar span i {
  font-size: 28px;
}

.social-icon {
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline-block;
}

.social-icon__list {
  list-style: none;
  margin: 0;
  margin-right: 10px;
  padding: 0;
  display: inline-block;
}

.social-icon__list i {
  font-size: 20px;
}

.social-icon__list:last-child {
  margin-right: 0;
}

@media (max-width: 992px) {
  .social__navbar {
    display: block;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

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

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

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

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

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

.pull-left {
  float: left;
}

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

.fa.pull-right {
  margin-left: .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: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox-toolbar button:before, .fancybox-toolbar input[type="button"]:before, .fancybox-toolbar input[type="reset"]:before, .fancybox-toolbar input[type="submit"]:before, .fancybox-toolbar .button:before {
  background-color: transparent !important;
}

.fancybox-toolbar button:after, .fancybox-toolbar input[type="button"]:after, .fancybox-toolbar input[type="reset"]:after, .fancybox-toolbar input[type="submit"]:after, .fancybox-toolbar .button:after {
  border: 0 !important;
}

.swiper-pagination {
  bottom: -5px !important;
  z-index: 51;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 0.7;
  margin: 0 7px;
  cursor: pointer;
}

.swiper-pagination-bullet:focus, .swiper-pagination-bullet:active {
  outline: none;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

.swiper-button-next {
  background-image: url("data:image/png;base64,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") !important;
  width: 90px;
  height: 90px;
  background-size: 90px 90px;
  right: -5px;
}

.swiper-button-next:focus, .swiper-button-next:active {
  outline: none;
}

@media (max-width: 640px) {
  .swiper-button-next {
    height: 50px;
    width: 50px;
    background-size: 50px 50px;
  }
}

.swiper-button-prev {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABYCAYAAABxlTA0AAAABGdBTUEAALGPC/xhBQAAFotJREFUeAHtnWmMXUV2x7vf624bG4yBQTEyjLABYQ0SYQ9iC0IBIjnAsIhoIJ/mEwFBJBQJESdiC5sQJAjBIAXyKYAEBCWgiIDmAyMDSgJmJkYkINBAxp7BgWGzsbH7LZ3/7/T9V+rdvu/19nqx5SvdPvXuUnXOr849VXep6sGBRbKMjY0N9lOVwcHBsX7mN9O8+mrUVJXoBvOOO+7oqs97773Xse+EE07oCvC2226r3LcQ0DuUniqgmRxXBTUHmgP8/PPPO/TasWNHx2+Xf9BBB3WAPPzww9PvvAKqgM8X7ErFbcBsZRlqDpS8gZrDBOTu3buTTnv27Il0s9lM23KdhoaGAuiSJUsS2KVLl47l4IGew+b8MvC5hF2peG7ETNK9wOZQc6DAPPLIIwcNdXR0NHRrNBpJx1arFel6vZ6ADg8PR3pkZCTB3rp165ih58DLsOcDdFJ+JiDL50wFrKECEs884ogjBoEJSACyzSDb7fbgihUreuq4ffv2sVqtFnABj1cjAQ/0Tz/9NLYB3LDnE3RP5csAe/3O4ToUOK4SBnKweKp+1wxVsGsHH3xwgNW2GoCBS3nIPO9cBy5tw0UWYNvIb775Bi+ONLAVNtr27Bw0+TmE5B7dr7Axa8C58QaL0g4FBrtz584a3ooEIFAPPPDASAMVkNpek/GRNliDJk+XlRsPWIMmrRgO1DZpgQ3A3377bduwly9f3sarkTloQ6acfoKeFWAbjFKG2wssUIEp40IqHARQwHqV0QGavFkNmjLKi8EiWQErwCFJF7/bChttYKtyQwJ7MtD9gjxjwL3gKiTUiLGKdTU8NgerdB2Yio8hZXhIgQzI+o0H1wxYUFOI0DnBWDE7JFCVCLgF7LYq0B4cUr9bgNY5IQW3VQYtffHwMenbzuNzPyDPCLDhdvNawBJj5U0B94ADDqgDFqgyOAdblxfXgSrodeVbk7clwIarbaGnyy3ADujcgGvICgttbWtrP3BbwNa5gCUdgFVWC9iA/u6775CEijYxGtBVYcOgXW7U7hT/TBuwjayCq4alZq/dtWtXnRgryAFVhg4VMAOqfiKHDFdeKw51PDcAGy7bClvKukbPQRUD0PBkAAOXbUobLJBVVLMlGaCRbAC2gLaI0cuWLWsRNoCsBhfgeHTqQ88UclnprvVisBxQhktIIBQcdthh4bXyjLq9Vh6C98qmoSF5EQIPHoImXssCXAM++uijR26++ea169atW3PIIYccJcO/r0MOF7jlKvqgQsEd0menzv9cFfmrr776asv777//8UMPPfTLTz75ZNSAgcyi8y0DtMAim9KtKd2SN0tngLe/+OKLiNECPOuQMW3AVXAdEuQJARavJRzkYGUsbjSMBGYm62edddaKW2+99Yw1a9acK+NPEsThAuR0heqw8YuPP/5447333vsfb7755naV1QK0ZNOSuuZ3DpqwgTcTNnTltRwyukGeariYEmB771TgyqO47IcMV4oPy4OGZNyw3Ag5ZHn33XevvfTSS38oT/p9kaxPl+Ykx7ekw89efPHFf9qwYcMvASo9mplsSI+mHKFhb1blNHXFNPsJeVLAk8H98ssv68RbQoIUC7jAJByolrkWw2tJy6BI33fffcddcskl16oiTpsEUl92S5e3BfofdJV8VABuyK7wYryZNN6sfTq00ZQtAZm4fOihh7aIyzP1ZDcglYYYrne6j0vMJSyU4cpDADisEEF/inUJq/JZirzwwgsPfeedd/70iiuu+Jv5gqtyByjryiuv/FvKRodcJ9JaR9AZ3bEBR8FhcBxsxFZs1jrou1OdE0uZkbdb9vRgn0xoKMOlG6ZegxUZpvVCQUKCvDWULTyY9NAjjzzyg4svvvgvVfAKF75Acvsrr7zy1zfeeON/4c1Se1R24s148ighgzRhQx7cIFyoV9GsislT6Vl09eAcLiCoPW57FdfiOYIbNGrbcLVvBLisOiW8l/TLL798oeDer20LDRdTVqALOpX15Dc24CjYZE/GVhyqsD09YnWbZFZkXl4qAfsEZ4D3Apd+rmqznsN1WLBiKFkoPrJy5cplmzZt+vExxxzzZyq459VSVmyOfw+iE7qho8pKjgFc25KHC2zGdhjAwqHCjMysrHcl4PwghwbFqLj1lawV8SkaNGqasIBiuUeceeaZKzdu3LhBjxt/mOe3mNLoho7oKr3SFYct2IRtit9D9IywGduJx7CoisdVtk0A7JpwzZCR1nSHpsuGgri9jZirdKp9e69uEA544okn/lzHnFJV6GLaho7ois7W3xLbgI2t2Izt3FDljR62mJXZ5fZNAJzvdGgoYk/N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") !important;
  width: 90px;
  height: 90px;
  background-size: 90px 90px;
  left: -5px;
}

.swiper-button-prev:focus, .swiper-button-prev:active {
  outline: none;
}

@media (max-width: 640px) {
  .swiper-button-prev {
    height: 50px;
    width: 50px;
    background-size: 50px 50px;
  }
}

.swiper-button-disabled {
  opacity: 0 !important;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: inherit;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  vertical-align: middle;
  margin-top: -1px;
  z-index: 1;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}
